tiers
Creates, updates, deletes, gets or lists a tiers
resource.
Overview
Name | tiers |
Type | Resource |
Id | google.sqladmin.tiers |
Fields
Name | Datatype | Description |
---|---|---|
DiskQuota | string | The maximum disk size of this tier in bytes. |
RAM | string | The maximum RAM usage of this tier in bytes. |
kind | string | This is always sql#tier . |
region | array | The applicable regions for this tier. |
tier | string | An identifier for the machine type, for example, db-custom-1-3840 . For related information, see Pricing. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | project | Lists all available machine types (tiers) for Cloud SQL, for example, db-custom-1-3840 . For more information, see https://cloud.google.com/sql/pricing. |
SELECT
examples
Lists all available machine types (tiers) for Cloud SQL, for example, db-custom-1-3840
. For more information, see https://cloud.google.com/sql/pricing.
SELECT
DiskQuota,
RAM,
kind,
region,
tier
FROM google.sqladmin.tiers
WHERE project = '{{ project }}';