Skip to content

Commit

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

The following keys were added:
- schemas.Instance.properties.satisfiesPzi.description
- schemas.Instance.properties.satisfiesPzi.readOnly
- schemas.Instance.properties.satisfiesPzi.type

The following keys were changed:
- resources.projects.resources.instances.resources.tables.resources.authorizedViews.methods.list.parameters.view.description
- schemas.CreateAuthorizedViewMetadata.properties.originalRequest.description
  • Loading branch information
yoshi-automation authored and sofisl committed May 8, 2024
1 parent fb8a1bd commit 751fcf5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
11 changes: 8 additions & 3 deletions discovery/bigtableadmin-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1998,7 +1998,7 @@
"type": "string"
},
"view": {
"description": "Optional. The resource_view to be applied to the returned views' fields. Default to NAME_ONLY.",
"description": "Optional. The resource_view to be applied to the returned AuthorizedViews' fields. Default to NAME_ONLY.",
"enum": [
"RESPONSE_VIEW_UNSPECIFIED",
"NAME_ONLY",
Expand Down Expand Up @@ -2194,7 +2194,7 @@
}
}
},
"revision": "20240413",
"revision": "20240429",
"rootUrl": "https://bigtableadmin.googleapis.com/",
"schemas": {
"AppProfile": {
Expand Down Expand Up @@ -2747,7 +2747,7 @@
},
"originalRequest": {
"$ref": "CreateAuthorizedViewRequest",
"description": "The request that prompted the initiation of this CreateInstance operation."
"description": "The request that prompted the initiation of this CreateAuthorizedView operation."
},
"requestTime": {
"description": "The time at which the original request was received.",
Expand Down Expand Up @@ -3293,6 +3293,11 @@
"description": "The unique name of the instance. Values are of the form `projects/{project}/instances/a-z+[a-z0-9]`.",
"type": "string"
},
"satisfiesPzi": {
"description": "Output only. Reserved for future use.",
"readOnly": true,
"type": "boolean"
},
"satisfiesPzs": {
"description": "Output only. Reserved for future use.",
"readOnly": true,
Expand Down
8 changes: 6 additions & 2 deletions src/apis/bigtableadmin/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ export namespace bigtableadmin_v2 {
*/
finishTime?: string | null;
/**
* The request that prompted the initiation of this CreateInstance operation.
* The request that prompted the initiation of this CreateAuthorizedView operation.
*/
originalRequest?: Schema$CreateAuthorizedViewRequest;
/**
Expand Down Expand Up @@ -931,6 +931,10 @@ export namespace bigtableadmin_v2 {
* The unique name of the instance. Values are of the form `projects/{project\}/instances/a-z+[a-z0-9]`.
*/
name?: string | null;
/**
* Output only. Reserved for future use.
*/
satisfiesPzi?: boolean | null;
/**
* Output only. Reserved for future use.
*/
Expand Down Expand Up @@ -7225,7 +7229,7 @@ export namespace bigtableadmin_v2 {
*/
parent?: string;
/**
* Optional. The resource_view to be applied to the returned views' fields. Default to NAME_ONLY.
* Optional. The resource_view to be applied to the returned AuthorizedViews' fields. Default to NAME_ONLY.
*/
view?: string;
}
Expand Down

0 comments on commit 751fcf5

Please sign in to comment.