Skip to content

Commit

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

The following keys were added:
- schemas.InsightsConfig.properties.queryPlansPerMinute.description
- schemas.InsightsConfig.properties.queryPlansPerMinute.format
- schemas.InsightsConfig.properties.queryPlansPerMinute.type

The following keys were changed:
- schemas.DatabaseInstance.properties.serviceAccountEmailAddress.description
  • Loading branch information
yoshi-automation authored and sofisl committed Jun 4, 2021
1 parent f08fac6 commit c45e34e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 7 additions & 2 deletions discovery/sqladmin-v1beta4.json
Expand Up @@ -1834,7 +1834,7 @@
}
}
},
"revision": "20210420",
"revision": "20210521",
"rootUrl": "https://sqladmin.googleapis.com/",
"schemas": {
"AclEntry": {
Expand Down Expand Up @@ -2413,7 +2413,7 @@
"description": "SSL configuration."
},
"serviceAccountEmailAddress": {
"description": "The service account email address assigned to the instance. This property is applicable only to Second Generation instances.",
"description": "The service account email address assigned to the instance. This property is read-only.",
"type": "string"
},
"settings": {
Expand Down Expand Up @@ -2916,6 +2916,11 @@
"description": "Whether Query Insights feature is enabled.",
"type": "boolean"
},
"queryPlansPerMinute": {
"description": "Number of query plans generated by Insights per minute. Default is 5. Changing this will restart the database.",
"format": "int32",
"type": "integer"
},
"queryStringLength": {
"description": "Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-4500 bytes. Query length more than this field value will be truncated to this value. When unset, query length will be the default value. Changing query length will restart the database.",
"format": "int32",
Expand Down
6 changes: 5 additions & 1 deletion src/apis/sqladmin/v1beta4.ts
Expand Up @@ -542,7 +542,7 @@ export namespace sqladmin_v1beta4 {
*/
serverCaCert?: Schema$SslCert;
/**
* The service account email address assigned to the instance. This property is applicable only to Second Generation instances.
* The service account email address assigned to the instance. This property is read-only.
*/
serviceAccountEmailAddress?: string | null;
/**
Expand Down Expand Up @@ -832,6 +832,10 @@ export namespace sqladmin_v1beta4 {
* Whether Query Insights feature is enabled.
*/
queryInsightsEnabled?: boolean | null;
/**
* Number of query plans generated by Insights per minute. Default is 5. Changing this will restart the database.
*/
queryPlansPerMinute?: number | null;
/**
* Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-4500 bytes. Query length more than this field value will be truncated to this value. When unset, query length will be the default value. Changing query length will restart the database.
*/
Expand Down

0 comments on commit c45e34e

Please sign in to comment.