Skip to content

Commit

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

The following keys were added:
- schemas.OperationMetadataV1.properties.buildName.description
- schemas.OperationMetadataV1.properties.buildName.type

The following keys were changed:
- resources.projects.resources.locations.methods.list.parameters.pageSize.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 20, 2021
1 parent 063f5cc commit 5dc7909
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions discovery/cloudfunctions-v1.json
Expand Up @@ -197,7 +197,7 @@
"type": "string"
},
"pageSize": {
"description": "The maximum number of results to return. If not set, the service will select a default.",
"description": "The maximum number of results to return. If not set, the service selects a default.",
"format": "int32",
"location": "query",
"type": "integer"
Expand Down Expand Up @@ -546,7 +546,7 @@
}
}
},
"revision": "20210325",
"revision": "20210409",
"rootUrl": "https://cloudfunctions.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -1077,6 +1077,10 @@
"description": "The Cloud Build ID of the function created or updated by an API call. This field is only populated for Create and Update operations.",
"type": "string"
},
"buildName": {
"description": "The Cloud Build Name of the function deployment. This field is only populated for Create and Update operations. projects//locations//builds/.",
"type": "string"
},
"request": {
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
Expand Down
8 changes: 6 additions & 2 deletions src/apis/cloudfunctions/v1.ts
Expand Up @@ -501,6 +501,10 @@ export namespace cloudfunctions_v1 {
* The Cloud Build ID of the function created or updated by an API call. This field is only populated for Create and Update operations.
*/
buildId?: string | null;
/**
* The Cloud Build Name of the function deployment. This field is only populated for Create and Update operations. projects//locations//builds/.
*/
buildName?: string | null;
/**
* The original request that started the operation.
*/
Expand Down Expand Up @@ -961,7 +965,7 @@ export namespace cloudfunctions_v1 {
* filter: 'placeholder-value',
* // The resource that owns the locations collection, if applicable.
* name: 'projects/my-project',
* // The maximum number of results to return. If not set, the service will select a default.
* // The maximum number of results to return. If not set, the service selects a default.
* pageSize: 'placeholder-value',
* // 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',
Expand Down Expand Up @@ -1084,7 +1088,7 @@ export namespace cloudfunctions_v1 {
*/
name?: string;
/**
* The maximum number of results to return. If not set, the service will select a default.
* The maximum number of results to return. If not set, the service selects a default.
*/
pageSize?: number;
/**
Expand Down

0 comments on commit 5dc7909

Please sign in to comment.