Skip to content

Commit

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

The following keys were added:
- schemas.Workflow.properties.tags (Total Keys: 2)
  • Loading branch information
yoshi-automation committed Dec 17, 2024
1 parent 6cbba22 commit a2188e9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
15 changes: 15 additions & 0 deletions docs/dyn/workflows_v1.projects.locations.workflows.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ <h3>Method Details</h3>
&quot;details&quot;: &quot;A String&quot;, # Provides specifics about the error.
&quot;type&quot;: &quot;A String&quot;, # The type of this state error.
},
&quot;tags&quot;: { # Optional. Input only. Immutable. Tags associated with this workflow.
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;updateTime&quot;: &quot;A String&quot;, # 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.
&quot;userEnvVars&quot;: { # Optional. User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 4KiB. Keys cannot be empty strings and cannot start with &quot;GOOGLE&quot; or &quot;WORKFLOWS&quot;.
&quot;a_key&quot;: &quot;A String&quot;,
Expand Down Expand Up @@ -254,6 +257,9 @@ <h3>Method Details</h3>
&quot;details&quot;: &quot;A String&quot;, # Provides specifics about the error.
&quot;type&quot;: &quot;A String&quot;, # The type of this state error.
},
&quot;tags&quot;: { # Optional. Input only. Immutable. Tags associated with this workflow.
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;updateTime&quot;: &quot;A String&quot;, # 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.
&quot;userEnvVars&quot;: { # Optional. User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 4KiB. Keys cannot be empty strings and cannot start with &quot;GOOGLE&quot; or &quot;WORKFLOWS&quot;.
&quot;a_key&quot;: &quot;A String&quot;,
Expand Down Expand Up @@ -311,6 +317,9 @@ <h3>Method Details</h3>
&quot;details&quot;: &quot;A String&quot;, # Provides specifics about the error.
&quot;type&quot;: &quot;A String&quot;, # The type of this state error.
},
&quot;tags&quot;: { # Optional. Input only. Immutable. Tags associated with this workflow.
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;updateTime&quot;: &quot;A String&quot;, # 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.
&quot;userEnvVars&quot;: { # Optional. User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 4KiB. Keys cannot be empty strings and cannot start with &quot;GOOGLE&quot; or &quot;WORKFLOWS&quot;.
&quot;a_key&quot;: &quot;A String&quot;,
Expand Down Expand Up @@ -365,6 +374,9 @@ <h3>Method Details</h3>
&quot;details&quot;: &quot;A String&quot;, # Provides specifics about the error.
&quot;type&quot;: &quot;A String&quot;, # The type of this state error.
},
&quot;tags&quot;: { # Optional. Input only. Immutable. Tags associated with this workflow.
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;updateTime&quot;: &quot;A String&quot;, # 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.
&quot;userEnvVars&quot;: { # Optional. User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 4KiB. Keys cannot be empty strings and cannot start with &quot;GOOGLE&quot; or &quot;WORKFLOWS&quot;.
&quot;a_key&quot;: &quot;A String&quot;,
Expand Down Expand Up @@ -437,6 +449,9 @@ <h3>Method Details</h3>
&quot;details&quot;: &quot;A String&quot;, # Provides specifics about the error.
&quot;type&quot;: &quot;A String&quot;, # The type of this state error.
},
&quot;tags&quot;: { # Optional. Input only. Immutable. Tags associated with this workflow.
&quot;a_key&quot;: &quot;A String&quot;,
},
&quot;updateTime&quot;: &quot;A String&quot;, # 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.
&quot;userEnvVars&quot;: { # Optional. User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 4KiB. Keys cannot be empty strings and cannot start with &quot;GOOGLE&quot; or &quot;WORKFLOWS&quot;.
&quot;a_key&quot;: &quot;A String&quot;,
Expand Down
9 changes: 8 additions & 1 deletion googleapiclient/discovery_cache/documents/workflows.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@
}
}
},
"revision": "20240925",
"revision": "20241204",
"rootUrl": "https://workflows.googleapis.com/",
"schemas": {
"Empty": {
Expand Down Expand Up @@ -840,6 +840,13 @@
"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.",
"readOnly": true
},
"tags": {
"additionalProperties": {
"type": "string"
},
"description": "Optional. Input only. Immutable. Tags associated with this workflow.",
"type": "object"
},
"updateTime": {
"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.",
"format": "google-datetime",
Expand Down

0 comments on commit a2188e9

Please sign in to comment.