Skip to content

Commit

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

The following keys were added:
- schemas.CloudRunMetadata.properties.job.description
- schemas.CloudRunMetadata.properties.job.readOnly
- schemas.CloudRunMetadata.properties.job.type
  • Loading branch information
yoshi-automation authored and sofisl committed Oct 20, 2023
1 parent b537726 commit 08c66db
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion discovery/clouddeploy-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,7 @@
}
}
},
"revision": "20231004",
"revision": "20231015",
"rootUrl": "https://clouddeploy.googleapis.com/",
"schemas": {
"AbandonReleaseRequest": {
Expand Down Expand Up @@ -1878,6 +1878,11 @@
"description": "CloudRunMetadata contains information from a Cloud Run deployment.",
"id": "CloudRunMetadata",
"properties": {
"job": {
"description": "Output only. The name of the Cloud Run job that is associated with a `Rollout`. Format is projects/{project}/locations/{location}/jobs/{job_name}.",
"readOnly": true,
"type": "string"
},
"revision": {
"description": "Output only. The Cloud Run Revision id associated with a `Rollout`.",
"readOnly": true,
Expand Down
4 changes: 4 additions & 0 deletions src/apis/clouddeploy/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,10 @@ export namespace clouddeploy_v1 {
* CloudRunMetadata contains information from a Cloud Run deployment.
*/
export interface Schema$CloudRunMetadata {
/**
* Output only. The name of the Cloud Run job that is associated with a `Rollout`. Format is projects/{project\}/locations/{location\}/jobs/{job_name\}.
*/
job?: string | null;
/**
* Output only. The Cloud Run Revision id associated with a `Rollout`.
*/
Expand Down

0 comments on commit 08c66db

Please sign in to comment.