Skip to content

Commit ee97237

Browse files
yoshi-automationsofisl
authored andcommitted
feat(workflows): update the API
#### workflows:v1 The following keys were added: - schemas.Workflow.properties.tags.additionalProperties.type - schemas.Workflow.properties.tags.description - schemas.Workflow.properties.tags.type
1 parent 9d7a90d commit ee97237

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

‎discovery/workflows-v1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@
485485
}
486486
}
487487
},
488-
"revision": "20240925",
488+
"revision": "20241204",
489489
"rootUrl": "https://workflows.googleapis.com/",
490490
"schemas": {
491491
"Empty": {
@@ -840,6 +840,13 @@
840840
"description": "Output only. Error regarding the state of the workflow. For example, this field will have error details if the execution data is unavailable due to revoked KMS key permissions.",
841841
"readOnly": true
842842
},
843+
"tags": {
844+
"additionalProperties": {
845+
"type": "string"
846+
},
847+
"description": "Optional. Input only. Immutable. Tags associated with this workflow.",
848+
"type": "object"
849+
},
843850
"updateTime": {
844851
"description": "Output only. The timestamp for when the workflow was last updated. This is a workflow-wide field and is not tied to a specific revision.",
845852
"format": "google-datetime",

‎src/apis/workflows/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,10 @@ export namespace workflows_v1 {
357357
* Output only. Error regarding the state of the workflow. For example, this field will have error details if the execution data is unavailable due to revoked KMS key permissions.
358358
*/
359359
stateError?: Schema$StateError;
360+
/**
361+
* Optional. Input only. Immutable. Tags associated with this workflow.
362+
*/
363+
tags?: {[key: string]: string} | null;
360364
/**
361365
* Output only. The timestamp for when the workflow was last updated. This is a workflow-wide field and is not tied to a specific revision.
362366
*/

0 commit comments

Comments
 (0)