Skip to content

Commit

Permalink
fix(sqladmin): update the API
Browse files Browse the repository at this point in the history
#### sqladmin:v1beta4

The following keys were changed:
- resources.tiers.methods.list.description
- schemas.DatabaseInstance.properties.databaseVersion.description
- schemas.Flag.properties.type.enumDescriptions
- schemas.Settings.properties.tier.description
- schemas.Tier.properties.tier.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 5, 2021
1 parent 8ab7dc7 commit 90cdd45
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions discovery/sqladmin-v1beta4.json
Expand Up @@ -1649,7 +1649,7 @@
"tiers": {
"methods": {
"list": {
"description": "Lists all available machine types (tiers) for Cloud SQL, for example, db-n1-standard-1. For related information, see Pricing.",
"description": "Lists all available machine types (tiers) for Cloud SQL, for example, db-custom-1-3840. For related information, see Pricing.",
"flatPath": "sql/v1beta4/projects/{project}/tiers",
"httpMethod": "GET",
"id": "sql.tiers.list",
Expand Down Expand Up @@ -1834,7 +1834,7 @@
}
}
},
"revision": "20210310",
"revision": "20210321",
"rootUrl": "https://sqladmin.googleapis.com/",
"schemas": {
"AclEntry": {
Expand Down Expand Up @@ -2250,7 +2250,7 @@
"type": "string"
},
"databaseVersion": {
"description": "The database engine type and version. The *databaseVersion* field cannot be changed after instance creation. MySQL instances: *MYSQL_8_0*, *MYSQL_5_7* (default), or *MYSQL_5_6*. PostgreSQL instances: *POSTGRES_9_6*, *POSTGRES_10*, *POSTGRES_11* or *POSTGRES_12* (default). SQL Server instances: *SQLSERVER_2017_STANDARD* (default), *SQLSERVER_2017_ENTERPRISE*, *SQLSERVER_2017_EXPRESS*, or *SQLSERVER_2017_WEB*.",
"description": "The database engine type and version. The *databaseVersion* field cannot be changed after instance creation. MySQL instances: *MYSQL_8_0*, *MYSQL_5_7* (default), or *MYSQL_5_6*. PostgreSQL instances: *POSTGRES_9_6*, *POSTGRES_10*, *POSTGRES_11*, *POSTGRES_12*, or *POSTGRES_13* (default). SQL Server instances: *SQLSERVER_2017_STANDARD* (default), *SQLSERVER_2017_ENTERPRISE*, *SQLSERVER_2017_EXPRESS*, or *SQLSERVER_2017_WEB*.",
"enum": [
"SQL_DATABASE_VERSION_UNSPECIFIED",
"MYSQL_5_1",
Expand Down Expand Up @@ -2798,7 +2798,7 @@
"String type flag.",
"Integer type flag.",
"Flag type used for a server startup option.",
"Type introduced specically for MySQL TimeZone offset. Accept a string value with the format [-12:59, 13:00].",
"Type introduced specially for MySQL TimeZone offset. Accept a string value with the format [-12:59, 13:00].",
"Float type flag.",
"Comma-separated list of the strings in a SqlFlagType enum."
],
Expand Down Expand Up @@ -3738,7 +3738,7 @@
"type": "string"
},
"tier": {
"description": "The tier (or machine type) for this instance, for example *db-n1-standard-1* (MySQL instances) or *db-custom-1-3840* (PostgreSQL instances).",
"description": "The tier (or machine type) for this instance, for example *db-custom-1-3840* .",
"type": "string"
},
"userLabels": {
Expand Down Expand Up @@ -4075,7 +4075,7 @@
"type": "array"
},
"tier": {
"description": "An identifier for the machine type, for example, db-n1-standard-1. For related information, see Pricing.",
"description": "An identifier for the machine type, for example, db-custom-1-3840. For related information, see Pricing.",
"type": "string"
}
},
Expand Down
8 changes: 4 additions & 4 deletions src/apis/sqladmin/v1beta4.ts
Expand Up @@ -442,7 +442,7 @@ export namespace sqladmin_v1beta4 {
*/
currentDiskSize?: string | null;
/**
* The database engine type and version. The *databaseVersion* field cannot be changed after instance creation. MySQL instances: *MYSQL_8_0*, *MYSQL_5_7* (default), or *MYSQL_5_6*. PostgreSQL instances: *POSTGRES_9_6*, *POSTGRES_10*, *POSTGRES_11* or *POSTGRES_12* (default). SQL Server instances: *SQLSERVER_2017_STANDARD* (default), *SQLSERVER_2017_ENTERPRISE*, *SQLSERVER_2017_EXPRESS*, or *SQLSERVER_2017_WEB*.
* The database engine type and version. The *databaseVersion* field cannot be changed after instance creation. MySQL instances: *MYSQL_8_0*, *MYSQL_5_7* (default), or *MYSQL_5_6*. PostgreSQL instances: *POSTGRES_9_6*, *POSTGRES_10*, *POSTGRES_11*, *POSTGRES_12*, or *POSTGRES_13* (default). SQL Server instances: *SQLSERVER_2017_STANDARD* (default), *SQLSERVER_2017_ENTERPRISE*, *SQLSERVER_2017_EXPRESS*, or *SQLSERVER_2017_WEB*.
*/
databaseVersion?: string | null;
/**
Expand Down Expand Up @@ -1381,7 +1381,7 @@ export namespace sqladmin_v1beta4 {
*/
storageAutoResizeLimit?: string | null;
/**
* The tier (or machine type) for this instance, for example *db-n1-standard-1* (MySQL instances) or *db-custom-1-3840* (PostgreSQL instances).
* The tier (or machine type) for this instance, for example *db-custom-1-3840* .
*/
tier?: string | null;
/**
Expand Down Expand Up @@ -1616,7 +1616,7 @@ export namespace sqladmin_v1beta4 {
*/
region?: string[] | null;
/**
* An identifier for the machine type, for example, db-n1-standard-1. For related information, see Pricing.
* An identifier for the machine type, for example, db-custom-1-3840. For related information, see Pricing.
*/
tier?: string | null;
}
Expand Down Expand Up @@ -8818,7 +8818,7 @@ export namespace sqladmin_v1beta4 {
}

/**
* Lists all available machine types (tiers) for Cloud SQL, for example, db-n1-standard-1. For related information, see Pricing.
* Lists all available machine types (tiers) for Cloud SQL, for example, db-custom-1-3840. For related information, see Pricing.
* @example
* ```js
* // Before running the sample:
Expand Down

0 comments on commit 90cdd45

Please sign in to comment.