tiers
Creates, updates, deletes, gets or lists a tiers resource.
Overview
| Name | tiers |
| Type | Resource |
| Id | google.sqladmin.tiers |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
items | array | List of tiers. |
kind | string | This is always sql#tiersList. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional 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. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
project | string |
SELECT examples
- list
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
items,
kind
FROM google.sqladmin.tiers
WHERE project = '{{ project }}' -- required
;