mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-06 19:45:20 +01:00
update dependencies
This commit is contained in:
@@ -269,7 +269,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20220222",
|
||||
"revision": "20230110",
|
||||
"rootUrl": "https://workflowexecutions.googleapis.com/",
|
||||
"schemas": {
|
||||
"CancelExecutionRequest": {
|
||||
@@ -313,7 +313,7 @@
|
||||
"LOG_ERRORS_ONLY"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"No call logging specified.",
|
||||
"No call logging level 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."
|
||||
],
|
||||
@@ -365,6 +365,11 @@
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"$ref": "Status",
|
||||
"description": "Output only. Status tracks the current steps and progress data of this execution.",
|
||||
"readOnly": true
|
||||
},
|
||||
"workflowRevisionId": {
|
||||
"description": "Output only. Revision of the workflow this execution is using.",
|
||||
"readOnly": true,
|
||||
@@ -445,6 +450,35 @@
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Status": {
|
||||
"description": "Represents the current status of this execution.",
|
||||
"id": "Status",
|
||||
"properties": {
|
||||
"currentSteps": {
|
||||
"description": "A list of currently executing or last executed step names for the workflow execution currently running. If the workflow has succeeded or failed, this is the last attempted or executed step. Presently, if the current step is inside a subworkflow, the list only includes that step. In the future, the list will contain items for each step in the call stack, starting with the outermost step in the `main` subworkflow, and ending with the most deeply nested step.",
|
||||
"items": {
|
||||
"$ref": "Step"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Step": {
|
||||
"description": "Represents a step of the workflow this execution is running.",
|
||||
"id": "Step",
|
||||
"properties": {
|
||||
"routine": {
|
||||
"description": "Name of a routine within the workflow.",
|
||||
"type": "string"
|
||||
},
|
||||
"step": {
|
||||
"description": "Name of a step within the routine.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"servicePath": "",
|
||||
|
||||
Reference in New Issue
Block a user