Skip to content

Commit

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

The following keys were added:
- schemas.Execution.properties.executionHistoryLevel.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jul 25, 2024
1 parent a7863fd commit 7a87be8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ <h3>Method Details</h3>
],
},
},
&quot;executionHistoryLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of the execution history feature to apply to this execution. If not specified, the level of the execution history feature will be determined by its workflow&#x27;s execution history level. If the value is different from its workflow&#x27;s value, it will override the workflow&#x27;s execution history level for this exeuction.
&quot;labels&quot;: { # Labels associated with this execution. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores, and dashes. Label keys must start with a letter. International characters are allowed. By default, labels are inherited from the workflow but are overridden by any labels associated with the execution.
&quot;a_key&quot;: &quot;A String&quot;,
},
Expand Down Expand Up @@ -211,6 +212,7 @@ <h3>Method Details</h3>
],
},
},
&quot;executionHistoryLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of the execution history feature to apply to this execution. If not specified, the level of the execution history feature will be determined by its workflow&#x27;s execution history level. If the value is different from its workflow&#x27;s value, it will override the workflow&#x27;s execution history level for this exeuction.
&quot;labels&quot;: { # Labels associated with this execution. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores, and dashes. Label keys must start with a letter. International characters are allowed. By default, labels are inherited from the workflow but are overridden by any labels associated with the execution.
&quot;a_key&quot;: &quot;A String&quot;,
},
Expand Down Expand Up @@ -265,6 +267,7 @@ <h3>Method Details</h3>
],
},
},
&quot;executionHistoryLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of the execution history feature to apply to this execution. If not specified, the level of the execution history feature will be determined by its workflow&#x27;s execution history level. If the value is different from its workflow&#x27;s value, it will override the workflow&#x27;s execution history level for this exeuction.
&quot;labels&quot;: { # Labels associated with this execution. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores, and dashes. Label keys must start with a letter. International characters are allowed. By default, labels are inherited from the workflow but are overridden by any labels associated with the execution.
&quot;a_key&quot;: &quot;A String&quot;,
},
Expand Down Expand Up @@ -350,6 +353,7 @@ <h3>Method Details</h3>
],
},
},
&quot;executionHistoryLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of the execution history feature to apply to this execution. If not specified, the level of the execution history feature will be determined by its workflow&#x27;s execution history level. If the value is different from its workflow&#x27;s value, it will override the workflow&#x27;s execution history level for this exeuction.
&quot;labels&quot;: { # Labels associated with this execution. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores, and dashes. Label keys must start with a letter. International characters are allowed. By default, labels are inherited from the workflow but are overridden by any labels associated with the execution.
&quot;a_key&quot;: &quot;A String&quot;,
},
Expand Down Expand Up @@ -422,6 +426,7 @@ <h3>Method Details</h3>
],
},
},
&quot;executionHistoryLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of the execution history feature to apply to this execution. If not specified, the level of the execution history feature will be determined by its workflow&#x27;s execution history level. If the value is different from its workflow&#x27;s value, it will override the workflow&#x27;s execution history level for this exeuction.
&quot;labels&quot;: { # Labels associated with this execution. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores, and dashes. Label keys must start with a letter. International characters are allowed. By default, labels are inherited from the workflow but are overridden by any labels associated with the execution.
&quot;a_key&quot;: &quot;A String&quot;,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ <h3>Method Details</h3>
],
},
},
&quot;executionHistoryLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of the execution history feature to apply to this execution. If not specified, the level of the execution history feature will be determined by its workflow&#x27;s execution history level. If the value is different from its workflow&#x27;s value, it will override the workflow&#x27;s execution history level for this exeuction.
&quot;labels&quot;: { # Labels associated with this execution. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores, and dashes. Label keys must start with a letter. International characters are allowed. By default, labels are inherited from the workflow but are overridden by any labels associated with the execution.
&quot;a_key&quot;: &quot;A String&quot;,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@
}
}
},
"revision": "20240625",
"revision": "20240715",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"Callback": {
Expand Down Expand Up @@ -578,6 +578,20 @@
"description": "Output only. The error which caused the execution to finish prematurely. The value is only present if the execution's state is `FAILED` or `CANCELLED`.",
"readOnly": true
},
"executionHistoryLevel": {
"description": "Optional. Describes the level of the execution history feature to apply to this execution. If not specified, the level of the execution history feature will be determined by its workflow's execution history level. If the value is different from its workflow's value, it will override the workflow's execution history level for this exeuction.",
"enum": [
"EXECUTION_HISTORY_LEVEL_UNSPECIFIED",
"EXECUTION_HISTORY_BASIC",
"EXECUTION_HISTORY_DETAILED"
],
"enumDescriptions": [
"The default/unset value.",
"Enable execution history basic feature for this execution.",
"Enable execution history detailed feature for this execution."
],
"type": "string"
},
"labels": {
"additionalProperties": {
"type": "string"
Expand Down

0 comments on commit 7a87be8

Please sign in to comment.