Skip to content

Commit

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

The following keys were changed:
- auth.oauth2.scopes.https://www.googleapis.com/auth/cloud-platform.description
- 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

#### domains:v1beta1

The following keys were changed:
- auth.oauth2.scopes.https://www.googleapis.com/auth/cloud-platform.description
- 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 20, 2021
1 parent 5b0d5ca commit 1c95b9d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions discovery/domains-v1alpha2.json
Expand Up @@ -3,7 +3,7 @@
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "View and manage your data across Google Cloud Platform services"
"description": "See, edit, configure, and delete your Google Cloud Platform data"
}
}
}
Expand Down Expand Up @@ -144,7 +144,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 @@ -156,13 +156,13 @@
"type": "string"
},
"pageSize": {
"description": "The standard list page size.",
"description": "The maximum number of results to return. If not set, the service selects 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 Down Expand Up @@ -721,7 +721,7 @@
}
}
},
"revision": "20210216",
"revision": "20210412",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down
10 changes: 5 additions & 5 deletions discovery/domains-v1beta1.json
Expand Up @@ -3,7 +3,7 @@
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "View and manage your data across Google Cloud Platform services"
"description": "See, edit, configure, and delete your Google Cloud Platform data"
}
}
}
Expand Down Expand Up @@ -144,7 +144,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 @@ -156,13 +156,13 @@
"type": "string"
},
"pageSize": {
"description": "The standard list page size.",
"description": "The maximum number of results to return. If not set, the service selects 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 Down Expand Up @@ -721,7 +721,7 @@
}
}
},
"revision": "20210216",
"revision": "20210412",
"rootUrl": "https://domains.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down
12 changes: 6 additions & 6 deletions src/apis/domains/v1alpha2.ts
Expand Up @@ -952,13 +952,13 @@ export namespace domains_v1alpha2 {
*
* // Do the magic
* const res = await domains.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 selects 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 @@ -1077,19 +1077,19 @@ export namespace domains_v1alpha2 {
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 selects 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
12 changes: 6 additions & 6 deletions src/apis/domains/v1beta1.ts
Expand Up @@ -952,13 +952,13 @@ export namespace domains_v1beta1 {
*
* // Do the magic
* const res = await domains.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 selects 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 @@ -1077,19 +1077,19 @@ export namespace domains_v1beta1 {
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 selects 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 1c95b9d

Please sign in to comment.