update dependencies

This commit is contained in:
Sebastian Thiel
2023-01-25 11:39:00 +01:00
parent 37ccd2238d
commit 3edefb7f01
357 changed files with 128026 additions and 16259 deletions

View File

@@ -110,6 +110,36 @@
"locations": {
"resources": {
"workflows": {
"methods": {
"triggerPubsubExecution": {
"description": "Triggers a new execution using the latest revision of the given workflow by a Pub/Sub push notification.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/workflows/{workflowsId}:triggerPubsubExecution",
"httpMethod": "POST",
"id": "workflowexecutions.projects.locations.workflows.triggerPubsubExecution",
"parameterOrder": [
"workflow"
],
"parameters": {
"workflow": {
"description": "Required. Name of the workflow for which an execution should be created. Format: projects/{project}/locations/{location}/workflows/{workflow}",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/workflows/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+workflow}:triggerPubsubExecution",
"request": {
"$ref": "TriggerPubsubExecutionRequest"
},
"response": {
"$ref": "Execution"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"executions": {
"methods": {
@@ -194,7 +224,7 @@
],
"enumDescriptions": [
"The default / unset value.",
"Includes only basic metadata about the execution. Following fields are returned: name, start_time, end_time, state and workflow_revision_id.",
"Includes only basic metadata about the execution. Following fields are returned: name, start_time, end_time, duration, state and workflow_revision_id.",
"Includes all data."
],
"location": "query",
@@ -219,7 +249,7 @@
],
"parameters": {
"pageSize": {
"description": "Maximum number of executions to return per call. Max supported value depends on the selected Execution view: it's 10000 for BASIC and 100 for FULL. The default value used if the field is not specified is 100, regardless of the selected view. Values greater than the max value will be coerced down to it.",
"description": "Maximum number of executions to return per call. Max supported value depends on the selected Execution view: it's 1000 for BASIC and 100 for FULL. The default value used if the field is not specified is 100, regardless of the selected view. Values greater than the max value will be coerced down to it.",
"format": "int32",
"location": "query",
"type": "integer"
@@ -245,7 +275,7 @@
],
"enumDescriptions": [
"The default / unset value.",
"Includes only basic metadata about the execution. Following fields are returned: name, start_time, end_time, state and workflow_revision_id.",
"Includes only basic metadata about the execution. Following fields are returned: name, start_time, end_time, duration, state and workflow_revision_id.",
"Includes all data."
],
"location": "query",
@@ -269,7 +299,7 @@
}
}
},
"revision": "20220222",
"revision": "20230110",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"CancelExecutionRequest": {
@@ -313,12 +343,18 @@
"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."
],
"type": "string"
},
"duration": {
"description": "Output only. Measures the duration of the execution.",
"format": "google-duration",
"readOnly": true,
"type": "string"
},
"endTime": {
"description": "Output only. Marks the end of execution, successful or not.",
"format": "google-datetime",
@@ -365,6 +401,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,
@@ -413,6 +454,38 @@
},
"type": "object"
},
"PubsubMessage": {
"description": "A message that is published by publishers and consumed by subscribers. The message must contain either a non-empty data field or at least one attribute. Note that client libraries represent this object differently depending on the language. See the corresponding [client library documentation](https://cloud.google.com/pubsub/docs/reference/libraries) for more information. See [quotas and limits] (https://cloud.google.com/pubsub/quotas) for more information about message limits.",
"id": "PubsubMessage",
"properties": {
"attributes": {
"additionalProperties": {
"type": "string"
},
"description": "Attributes for this message. If this field is empty, the message must contain non-empty data. This can be used to filter messages on the subscription.",
"type": "object"
},
"data": {
"description": "The message data field. If this field is empty, the message must contain at least one attribute.",
"format": "byte",
"type": "string"
},
"messageId": {
"description": "ID of this message, assigned by the server when the message is published. Guaranteed to be unique within the topic. This value may be read by a subscriber that receives a `PubsubMessage` via a `Pull` call or a push delivery. It must not be populated by the publisher in a `Publish` call.",
"type": "string"
},
"orderingKey": {
"description": "If non-empty, identifies related messages for which publish order should be respected. If a `Subscription` has `enable_message_ordering` set to `true`, messages published with the same non-empty `ordering_key` value will be delivered to subscribers in the order in which they are received by the Pub/Sub system. All `PubsubMessage`s published in a given `PublishRequest` must specify the same `ordering_key` value. For more information, see [ordering messages](https://cloud.google.com/pubsub/docs/ordering).",
"type": "string"
},
"publishTime": {
"description": "The time at which the message was published, populated by the server when it receives the `Publish` call. It must not be populated by the publisher in a `Publish` call.",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
},
"StackTrace": {
"description": "A collection of stack elements (frames) where an error occurred.",
"id": "StackTrace",
@@ -445,6 +518,54 @@
}
},
"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"
},
"TriggerPubsubExecutionRequest": {
"description": "Request for the TriggerPubsubExecution method.",
"id": "TriggerPubsubExecutionRequest",
"properties": {
"GCPCloudEventsMode": {
"description": "Required. LINT: LEGACY_NAMES The query parameter value for __GCP_CloudEventsMode, set by the Eventarc service when configuring triggers.",
"type": "string"
},
"message": {
"$ref": "PubsubMessage",
"description": "Required. The message of the Pub/Sub push notification."
},
"subscription": {
"description": "Required. The subscription of the Pub/Sub push notification. Format: projects/{project}/subscriptions/{sub}",
"type": "string"
}
},
"type": "object"
}
},
"servicePath": "",