Skip to content

Commit

Permalink
feat(sql): update the API
Browse files Browse the repository at this point in the history
#### sql:v1beta4
The following keys were added:
- schemas.ExportContext.properties.offload.description
- schemas.ExportContext.properties.offload.type

The following keys were changed:
- schemas.DatabaseInstance.properties.databaseVersion.enum
- schemas.DatabaseInstance.properties.databaseVersion.enumDescriptions
- schemas.Flag.properties.appliesTo.enumDescriptions
- schemas.Flag.properties.appliesTo.items.enum
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jun 5, 2020
1 parent 177d160 commit 6ee5890
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
18 changes: 13 additions & 5 deletions discovery/sql-v1beta4.json
Expand Up @@ -1818,7 +1818,7 @@
}
}
},
"revision": "20200331",
"revision": "20200518",
"rootUrl": "https://sqladmin.googleapis.com/",
"schemas": {
"AclEntry": {
Expand Down Expand Up @@ -2181,7 +2181,8 @@
"SQLSERVER_2017_EXPRESS",
"SQLSERVER_2017_WEB",
"POSTGRES_10",
"POSTGRES_12"
"POSTGRES_12",
"MYSQL_8_0"
],
"enumDescriptions": [
"This is an unknown database version.",
Expand All @@ -2196,7 +2197,8 @@
"The database version is SQL Server 2017 Express.",
"The database version is SQL Server 2017 Web.",
"The database version is PostgreSQL 10.",
"The database version is PostgreSQL 12."
"The database version is PostgreSQL 12.",
"The database version is MySQL 8."
],
"type": "string"
},
Expand Down Expand Up @@ -2525,6 +2527,10 @@
"description": "This is always <code>sql#exportContext</code>.",
"type": "string"
},
"offload": {
"description": "Option for export offload.",
"type": "boolean"
},
"sqlExportOptions": {
"description": "Options for exporting data as SQL statements.",
"properties": {
Expand Down Expand Up @@ -2610,7 +2616,8 @@
"The database version is SQL Server 2017 Express.",
"The database version is SQL Server 2017 Web.",
"The database version is PostgreSQL 10.",
"The database version is PostgreSQL 12."
"The database version is PostgreSQL 12.",
"The database version is MySQL 8."
],
"items": {
"enum": [
Expand All @@ -2626,7 +2633,8 @@
"SQLSERVER_2017_EXPRESS",
"SQLSERVER_2017_WEB",
"POSTGRES_10",
"POSTGRES_12"
"POSTGRES_12",
"MYSQL_8_0"
],
"type": "string"
},
Expand Down
4 changes: 4 additions & 0 deletions src/apis/sql/v1beta4.ts
Expand Up @@ -628,6 +628,10 @@ export namespace sql_v1beta4 {
* This is always &lt;code&gt;sql#exportContext&lt;/code&gt;.
*/
kind?: string | null;
/**
* Option for export offload.
*/
offload?: boolean | null;
/**
* Options for exporting data as SQL statements.
*/
Expand Down

0 comments on commit 6ee5890

Please sign in to comment.