Skip to content

Commit

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

The following keys were changed:
- schemas.Instance.properties.createTime.description
- schemas.Table.properties.deletionProtection.description
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 2, 2023
1 parent da46f3f commit 4681456
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/bigtableadmin-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1966,7 +1966,7 @@
}
}
},
"revision": "20221213",
"revision": "20230114",
"rootUrl": "https://bigtableadmin.googleapis.com/",
"schemas": {
"AppProfile": {
Expand Down Expand Up @@ -2758,7 +2758,7 @@
"id": "Instance",
"properties": {
"createTime": {
"description": "Output only. A server-assigned timestamp representing when this Instance was created. For instances created before this field was added (August 2021), this value is `seconds: 0, nanos: 1`.",
"description": "Output only. A commit timestamp representing when this Instance was created. For instances created before this field was added (August 2021), this value is `seconds: 0, nanos: 1`.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
Expand Down Expand Up @@ -3397,7 +3397,7 @@
"type": "object"
},
"deletionProtection": {
"description": "Set to true to make the table protected against data loss. i.e. deleting the following resources through Admin APIs are prohibited: - The table. - The column families in the table. - The instance containing the table. Note one can still delete the data stored in the table through Data APIs.",
"description": "Set to true to make the table protected against data loss. i.e. deleting the following resources through Admin APIs are prohibited: * The table. * The column families in the table. * The instance containing the table. Note one can still delete the data stored in the table through Data APIs.",
"type": "boolean"
},
"granularity": {
Expand Down
4 changes: 2 additions & 2 deletions src/apis/bigtableadmin/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ export namespace bigtableadmin_v2 {
*/
export interface Schema$Instance {
/**
* Output only. A server-assigned timestamp representing when this Instance was created. For instances created before this field was added (August 2021), this value is `seconds: 0, nanos: 1`.
* Output only. A commit timestamp representing when this Instance was created. For instances created before this field was added (August 2021), this value is `seconds: 0, nanos: 1`.
*/
createTime?: string | null;
/**
Expand Down Expand Up @@ -1153,7 +1153,7 @@ export namespace bigtableadmin_v2 {
*/
columnFamilies?: {[key: string]: Schema$ColumnFamily} | null;
/**
* Set to true to make the table protected against data loss. i.e. deleting the following resources through Admin APIs are prohibited: - The table. - The column families in the table. - The instance containing the table. Note one can still delete the data stored in the table through Data APIs.
* Set to true to make the table protected against data loss. i.e. deleting the following resources through Admin APIs are prohibited: * The table. * The column families in the table. * The instance containing the table. Note one can still delete the data stored in the table through Data APIs.
*/
deletionProtection?: boolean | null;
/**
Expand Down

0 comments on commit 4681456

Please sign in to comment.