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:
- resources.projects.resources.locations.methods.list.parameters.filter.description
- resources.projects.resources.locations.methods.list.parameters.pageSize.description
- resources.projects.resources.locations.methods.list.parameters.pageToken.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 5, 2021
1 parent 05435f1 commit 4300adc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions discovery/bigtableadmin-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1722,7 +1722,7 @@
],
"parameters": {
"filter": {
"description": "The standard list filter.",
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like \"displayName=tokyo\", and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
"location": "query",
"type": "string"
},
Expand All @@ -1734,13 +1734,13 @@
"type": "string"
},
"pageSize": {
"description": "The standard list page size.",
"description": "The maximum number of results to return. If not set, the service will select a default.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "The standard list page token.",
"description": "A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.",
"location": "query",
"type": "string"
}
Expand All @@ -1764,7 +1764,7 @@
}
}
},
"revision": "20210323",
"revision": "20210314",
"rootUrl": "https://bigtableadmin.googleapis.com/",
"schemas": {
"AppProfile": {
Expand Down
12 changes: 6 additions & 6 deletions src/apis/bigtableadmin/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8125,13 +8125,13 @@ export namespace bigtableadmin_v2 {
*
* // Do the magic
* const res = await bigtableadmin.projects.locations.list({
* // The standard list filter.
* // A filter to narrow down results to a preferred subset. The filtering language accepts strings like "displayName=tokyo", and is documented in more detail in [AIP-160](https://google.aip.dev/160).
* filter: 'placeholder-value',
* // The resource that owns the locations collection, if applicable.
* name: 'projects/my-project',
* // The standard list page size.
* // The maximum number of results to return. If not set, the service will select a default.
* pageSize: 'placeholder-value',
* // The standard list page token.
* // A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.
* pageToken: 'placeholder-value',
* });
* console.log(res.data);
Expand Down Expand Up @@ -8251,19 +8251,19 @@ export namespace bigtableadmin_v2 {
export interface Params$Resource$Projects$Locations$List
extends StandardParameters {
/**
* The standard list filter.
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like "displayName=tokyo", and is documented in more detail in [AIP-160](https://google.aip.dev/160).
*/
filter?: string;
/**
* The resource that owns the locations collection, if applicable.
*/
name?: string;
/**
* The standard list page size.
* The maximum number of results to return. If not set, the service will select a default.
*/
pageSize?: number;
/**
* The standard list page token.
* A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.
*/
pageToken?: string;
}
Expand Down

0 comments on commit 4300adc

Please sign in to comment.