Skip to content

Commit

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

The following keys were added:
- schemas.Execution.properties.callLogLevel.description
- schemas.Execution.properties.callLogLevel.enum
- schemas.Execution.properties.callLogLevel.enumDescriptions
- schemas.Execution.properties.callLogLevel.type

The following keys were changed:
- auth.oauth2.scopes.https://www.googleapis.com/auth/cloud-platform.description

#### workflowexecutions:v1

The following keys were added:
- schemas.Execution.properties.callLogLevel.description
- schemas.Execution.properties.callLogLevel.enum
- schemas.Execution.properties.callLogLevel.enumDescriptions
- schemas.Execution.properties.callLogLevel.type

The following keys were changed:
- auth.oauth2.scopes.https://www.googleapis.com/auth/cloud-platform.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Aug 31, 2021
1 parent 1d41d0e commit 264712a
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 4 deletions.
18 changes: 16 additions & 2 deletions discovery/workflowexecutions-v1.json
Expand Up @@ -3,7 +3,7 @@
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "See, edit, configure, and delete your Google Cloud Platform data"
"description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
}
}
}
Expand Down Expand Up @@ -269,7 +269,7 @@
}
}
},
"revision": "20210309",
"revision": "20210817",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"CancelExecutionRequest": {
Expand Down Expand Up @@ -305,6 +305,20 @@
"description": "Input parameters of the execution represented as a JSON string. The size limit is 32KB. *Note*: If you are using the REST API directly to run your workflow, you must escape any JSON string value of `argument`. Example: `'{\"argument\":\"{\\\"firstName\\\":\\\"FIRST\\\",\\\"lastName\\\":\\\"LAST\\\"}\"}'`",
"type": "string"
},
"callLogLevel": {
"description": "The call logging level associated to this execution.",
"enum": [
"CALL_LOG_LEVEL_UNSPECIFIED",
"LOG_ALL_CALLS",
"LOG_ERRORS_ONLY"
],
"enumDescriptions": [
"No call logging specified.",
"Log all call steps within workflows, all call returns, and all exceptions raised.",
"Log only exceptions that are raised from call steps within workflows."
],
"type": "string"
},
"endTime": {
"description": "Output only. Marks the end of execution, successful or not.",
"format": "google-datetime",
Expand Down
18 changes: 16 additions & 2 deletions discovery/workflowexecutions-v1beta.json
Expand Up @@ -3,7 +3,7 @@
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "See, edit, configure, and delete your Google Cloud Platform data"
"description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
}
}
}
Expand Down Expand Up @@ -269,7 +269,7 @@
}
}
},
"revision": "20210309",
"revision": "20210817",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"CancelExecutionRequest": {
Expand Down Expand Up @@ -305,6 +305,20 @@
"description": "Input parameters of the execution represented as a JSON string. The size limit is 32KB. *Note*: If you are using the REST API directly to run your workflow, you must escape any JSON string value of `argument`. Example: `'{\"argument\":\"{\\\"firstName\\\":\\\"FIRST\\\",\\\"lastName\\\":\\\"LAST\\\"}\"}'`",
"type": "string"
},
"callLogLevel": {
"description": "The call logging level associated to this execution.",
"enum": [
"CALL_LOG_LEVEL_UNSPECIFIED",
"LOG_ALL_CALLS",
"LOG_ERRORS_ONLY"
],
"enumDescriptions": [
"No call logging specified.",
"Log all call steps within workflows, all call returns, and all exceptions raised.",
"Log only exceptions that are raised from call steps within workflows."
],
"type": "string"
},
"endTime": {
"description": "Output only. Marks the end of execution, successful or not.",
"format": "google-datetime",
Expand Down
8 changes: 8 additions & 0 deletions src/apis/workflowexecutions/v1.ts
Expand Up @@ -154,6 +154,10 @@ export namespace workflowexecutions_v1 {
* Input parameters of the execution represented as a JSON string. The size limit is 32KB. *Note*: If you are using the REST API directly to run your workflow, you must escape any JSON string value of `argument`. Example: `'{"argument":"{\"firstName\":\"FIRST\",\"lastName\":\"LAST\"\}"\}'`
*/
argument?: string | null;
/**
* The call logging level associated to this execution.
*/
callLogLevel?: string | null;
/**
* Output only. Marks the end of execution, successful or not.
*/
Expand Down Expand Up @@ -317,6 +321,7 @@ export namespace workflowexecutions_v1 {
* // Example response
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand Down Expand Up @@ -453,6 +458,7 @@ export namespace workflowexecutions_v1 {
* // request body parameters
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand All @@ -468,6 +474,7 @@ export namespace workflowexecutions_v1 {
* // Example response
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand Down Expand Up @@ -609,6 +616,7 @@ export namespace workflowexecutions_v1 {
* // Example response
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand Down
8 changes: 8 additions & 0 deletions src/apis/workflowexecutions/v1beta.ts
Expand Up @@ -154,6 +154,10 @@ export namespace workflowexecutions_v1beta {
* Input parameters of the execution represented as a JSON string. The size limit is 32KB. *Note*: If you are using the REST API directly to run your workflow, you must escape any JSON string value of `argument`. Example: `'{"argument":"{\"firstName\":\"FIRST\",\"lastName\":\"LAST\"\}"\}'`
*/
argument?: string | null;
/**
* The call logging level associated to this execution.
*/
callLogLevel?: string | null;
/**
* Output only. Marks the end of execution, successful or not.
*/
Expand Down Expand Up @@ -317,6 +321,7 @@ export namespace workflowexecutions_v1beta {
* // Example response
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand Down Expand Up @@ -456,6 +461,7 @@ export namespace workflowexecutions_v1beta {
* // request body parameters
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand All @@ -471,6 +477,7 @@ export namespace workflowexecutions_v1beta {
* // Example response
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand Down Expand Up @@ -612,6 +619,7 @@ export namespace workflowexecutions_v1beta {
* // Example response
* // {
* // "argument": "my_argument",
* // "callLogLevel": "my_callLogLevel",
* // "endTime": "my_endTime",
* // "error": {},
* // "name": "my_name",
Expand Down

0 comments on commit 264712a

Please sign in to comment.