Skip to content

Commit

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

The following keys were changed:
- resources.projects.resources.locations.resources.workflows.resources.executions.methods.exportData.description
- resources.projects.resources.locations.resources.workflows.resources.executions.methods.exportData.parameters.name.description
- resources.projects.resources.locations.resources.workflows.resources.executions.resources.callbacks.methods.list.description
- schemas.Callback.properties.method.description
- schemas.ExportDataResponse.properties.data.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 26, 2023
1 parent 48fd628 commit 122d68b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions discovery/workflowexecutions-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
]
},
"exportData": {
"description": "Returns all metadata stored about an execution, excluding most data that is already accessible via other API methods.",
"description": "Returns all metadata stored about an execution, excluding most data that is already accessible using other API methods.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/workflows/{workflowsId}/executions/{executionsId}:exportData",
"httpMethod": "GET",
"id": "workflowexecutions.projects.locations.workflows.executions.exportData",
Expand All @@ -209,7 +209,7 @@
],
"parameters": {
"name": {
"description": "Required. Name of the execution to be data exported. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}",
"description": "Required. Name of the execution for which data is to be exported. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/workflows/[^/]+/executions/[^/]+$",
"required": true,
Expand Down Expand Up @@ -330,7 +330,7 @@
"callbacks": {
"methods": {
"list": {
"description": "Returns a list of active callbacks which belong to the execution with the given name. The returned callbacks are ordered by callback ID. first).",
"description": "Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/workflows/{workflowsId}/executions/{executionsId}/callbacks",
"httpMethod": "GET",
"id": "workflowexecutions.projects.locations.workflows.executions.callbacks.list",
Expand Down Expand Up @@ -376,7 +376,7 @@
}
}
},
"revision": "20230905",
"revision": "20230912",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"Callback": {
Expand All @@ -392,7 +392,7 @@
"type": "array"
},
"method": {
"description": "Output only. The method accepted by the callback. E.g. GET, POST, PUT.",
"description": "Output only. The method accepted by the callback. For example: GET, POST, PUT.",
"readOnly": true,
"type": "string"
},
Expand Down Expand Up @@ -545,7 +545,7 @@
"id": "ExportDataResponse",
"properties": {
"data": {
"description": "The JSON string with customer data and metadata of an execution of the given name",
"description": "The JSON string with customer data and metadata for an execution with the given name",
"type": "string"
}
},
Expand Down
10 changes: 5 additions & 5 deletions src/apis/workflowexecutions/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export namespace workflowexecutions_v1 {
*/
availablePayloads?: string[] | null;
/**
* Output only. The method accepted by the callback. E.g. GET, POST, PUT.
* Output only. The method accepted by the callback. For example: GET, POST, PUT.
*/
method?: string | null;
/**
Expand Down Expand Up @@ -228,7 +228,7 @@ export namespace workflowexecutions_v1 {
*/
export interface Schema$ExportDataResponse {
/**
* The JSON string with customer data and metadata of an execution of the given name
* The JSON string with customer data and metadata for an execution with the given name
*/
data?: string | null;
}
Expand Down Expand Up @@ -703,7 +703,7 @@ export namespace workflowexecutions_v1 {
}

/**
* Returns all metadata stored about an execution, excluding most data that is already accessible via other API methods.
* Returns all metadata stored about an execution, excluding most data that is already accessible using other API methods.
*
* @param params - Parameters for request
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
Expand Down Expand Up @@ -1002,7 +1002,7 @@ export namespace workflowexecutions_v1 {
export interface Params$Resource$Projects$Locations$Workflows$Executions$Exportdata
extends StandardParameters {
/**
* Required. Name of the execution to be data exported. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
* Required. Name of the execution for which data is to be exported. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
*/
name?: string;
}
Expand Down Expand Up @@ -1052,7 +1052,7 @@ export namespace workflowexecutions_v1 {
}

/**
* Returns a list of active callbacks which belong to the execution with the given name. The returned callbacks are ordered by callback ID. first).
* Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID.
*
* @param params - Parameters for request
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
Expand Down

0 comments on commit 122d68b

Please sign in to comment.