Cloud SQL Admin API . tiers

Instance Methods

list(project, x__xgafv=None)

Lists all available machine types (tiers) for Cloud SQL, for example,

Method Details

list(project, x__xgafv=None)
Lists all available machine types (tiers) for Cloud SQL, for example,
db-n1-standard-1. For related information, see <a
href="/sql/pricing">Pricing</a>.

Args:
  project: string, Project ID of the project for which to list tiers. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Tiers list response.
    "items": [ # List of tiers.
      { # A Google Cloud SQL service tier resource.
        "tier": "A String", # An identifier for the machine type, for example, db-n1-standard-1. For
            # related information, see <a href="/sql/pricing">Pricing</a>.
        "DiskQuota": "A String", # The maximum disk size of this tier in bytes.
        "region": [ # The applicable regions for this tier.
          "A String",
        ],
        "RAM": "A String", # The maximum RAM usage of this tier in bytes.
        "kind": "A String", # This is always <code>sql#tier</code>.
      },
    ],
    "kind": "A String", # This is always <code>sql#tiersList</code>.
  }