Skip to content

Commit 5f87b4d

Browse files
feat(workflows): update the api
#### workflows:v1 The following keys were added: - schemas.Workflow.properties.callLogLevel.type (Total Keys: 1)
1 parent 3b6624d commit 5f87b4d

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

docs/dyn/workflows_v1.projects.locations.workflows.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ <h3>Method Details</h3>
111111
The object takes the form of:
112112

113113
{ # Workflow program to be executed by Workflows.
114+
&quot;callLogLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence.
114115
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp for when the workflow was created.
115116
&quot;description&quot;: &quot;A String&quot;, # Description of the workflow provided by the user. Must be at most 1000 unicode characters long.
116117
&quot;labels&quot;: { # Labels associated with this workflow. 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.
@@ -206,6 +207,7 @@ <h3>Method Details</h3>
206207
An object of the form:
207208

208209
{ # Workflow program to be executed by Workflows.
210+
&quot;callLogLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence.
209211
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp for when the workflow was created.
210212
&quot;description&quot;: &quot;A String&quot;, # Description of the workflow provided by the user. Must be at most 1000 unicode characters long.
211213
&quot;labels&quot;: { # Labels associated with this workflow. 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.
@@ -246,6 +248,7 @@ <h3>Method Details</h3>
246248
],
247249
&quot;workflows&quot;: [ # The workflows that match the request.
248250
{ # Workflow program to be executed by Workflows.
251+
&quot;callLogLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence.
249252
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp for when the workflow was created.
250253
&quot;description&quot;: &quot;A String&quot;, # Description of the workflow provided by the user. Must be at most 1000 unicode characters long.
251254
&quot;labels&quot;: { # Labels associated with this workflow. 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.
@@ -287,6 +290,7 @@ <h3>Method Details</h3>
287290
The object takes the form of:
288291

289292
{ # Workflow program to be executed by Workflows.
293+
&quot;callLogLevel&quot;: &quot;A String&quot;, # Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence.
290294
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp for when the workflow was created.
291295
&quot;description&quot;: &quot;A String&quot;, # Description of the workflow provided by the user. Must be at most 1000 unicode characters long.
292296
&quot;labels&quot;: { # Labels associated with this workflow. 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.

googleapiclient/discovery_cache/documents/workflows.v1.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@
449449
}
450450
}
451451
},
452-
"revision": "20230308",
452+
"revision": "20230322",
453453
"rootUrl": "https://workflows.googleapis.com/",
454454
"schemas": {
455455
"Empty": {
@@ -648,6 +648,22 @@
648648
"description": "Workflow program to be executed by Workflows.",
649649
"id": "Workflow",
650650
"properties": {
651+
"callLogLevel": {
652+
"description": "Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence.",
653+
"enum": [
654+
"CALL_LOG_LEVEL_UNSPECIFIED",
655+
"LOG_ALL_CALLS",
656+
"LOG_ERRORS_ONLY",
657+
"LOG_NONE"
658+
],
659+
"enumDescriptions": [
660+
"No call logging level specified.",
661+
"Log all call steps within workflows, all call returns, and all exceptions raised.",
662+
"Log only exceptions that are raised from call steps within workflows.",
663+
"Explicitly log nothing."
664+
],
665+
"type": "string"
666+
},
651667
"createTime": {
652668
"description": "Output only. The timestamp for when the workflow was created.",
653669
"format": "google-datetime",

googleapiclient/discovery_cache/documents/workflows.v1beta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@
444444
}
445445
}
446446
},
447-
"revision": "20230308",
447+
"revision": "20230322",
448448
"rootUrl": "https://workflows.googleapis.com/",
449449
"schemas": {
450450
"Empty": {

0 commit comments

Comments
 (0)