Skip to content

Commit 8580206

Browse files
fix(workflowexecutions): update the API
1 parent 1d4c410 commit 8580206

File tree

2 files changed

+14
-28
lines changed

2 files changed

+14
-28
lines changed

src/apis/workflowexecutions/v1.ts

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -733,8 +733,7 @@ export namespace workflowexecutions_v1 {
733733
}
734734
}
735735

736-
export interface Params$Resource$Projects$Locations$Workflows$Triggerpubsubexecution
737-
extends StandardParameters {
736+
export interface Params$Resource$Projects$Locations$Workflows$Triggerpubsubexecution extends StandardParameters {
738737
/**
739738
* Required. Name of the workflow for which an execution should be created. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}
740739
*/
@@ -1694,8 +1693,7 @@ export namespace workflowexecutions_v1 {
16941693
}
16951694
}
16961695

1697-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Cancel
1698-
extends StandardParameters {
1696+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Cancel extends StandardParameters {
16991697
/**
17001698
* Required. Name of the execution to be cancelled. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
17011699
*/
@@ -1706,8 +1704,7 @@ export namespace workflowexecutions_v1 {
17061704
*/
17071705
requestBody?: Schema$CancelExecutionRequest;
17081706
}
1709-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Create
1710-
extends StandardParameters {
1707+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Create extends StandardParameters {
17111708
/**
17121709
* Required. Name of the workflow for which an execution should be created. Format: projects/{project\}/locations/{location\}/workflows/{workflow\} The latest revision of the workflow will be used.
17131710
*/
@@ -1718,8 +1715,7 @@ export namespace workflowexecutions_v1 {
17181715
*/
17191716
requestBody?: Schema$Execution;
17201717
}
1721-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Deleteexecutionhistory
1722-
extends StandardParameters {
1718+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Deleteexecutionhistory extends StandardParameters {
17231719
/**
17241720
* Required. Name of the execution for which step entries should be deleted. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
17251721
*/
@@ -1730,15 +1726,13 @@ export namespace workflowexecutions_v1 {
17301726
*/
17311727
requestBody?: Schema$DeleteExecutionHistoryRequest;
17321728
}
1733-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Exportdata
1734-
extends StandardParameters {
1729+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Exportdata extends StandardParameters {
17351730
/**
17361731
* Required. Name of the execution for which data is to be exported. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
17371732
*/
17381733
name?: string;
17391734
}
1740-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Get
1741-
extends StandardParameters {
1735+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Get extends StandardParameters {
17421736
/**
17431737
* Required. Name of the execution to be retrieved. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
17441738
*/
@@ -1748,8 +1742,7 @@ export namespace workflowexecutions_v1 {
17481742
*/
17491743
view?: string;
17501744
}
1751-
export interface Params$Resource$Projects$Locations$Workflows$Executions$List
1752-
extends StandardParameters {
1745+
export interface Params$Resource$Projects$Locations$Workflows$Executions$List extends StandardParameters {
17531746
/**
17541747
* Optional. Filters applied to the `[Executions.ListExecutions]` results. The following fields are supported for filtering: `executionId`, `state`, `createTime`, `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, `label`, and `disableConcurrencyQuotaOverflowBuffering`. For details, see AIP-160. For more information, see Filter executions. For example, if you are using the Google APIs Explorer: `state="SUCCEEDED"` or `startTime\>"2023-08-01" AND state="FAILED"`
17551748
*/
@@ -1933,8 +1926,7 @@ export namespace workflowexecutions_v1 {
19331926
}
19341927
}
19351928

1936-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Callbacks$List
1937-
extends StandardParameters {
1929+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Callbacks$List extends StandardParameters {
19381930
/**
19391931
* Maximum number of callbacks to return per call. The default value is 100 and is also the maximum value.
19401932
*/
@@ -2267,8 +2259,7 @@ export namespace workflowexecutions_v1 {
22672259
}
22682260
}
22692261

2270-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Stepentries$Get
2271-
extends StandardParameters {
2262+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Stepentries$Get extends StandardParameters {
22722263
/**
22732264
* Required. The name of the step entry to retrieve. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}/stepEntries/{step_entry\}
22742265
*/
@@ -2278,8 +2269,7 @@ export namespace workflowexecutions_v1 {
22782269
*/
22792270
view?: string;
22802271
}
2281-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Stepentries$List
2282-
extends StandardParameters {
2272+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Stepentries$List extends StandardParameters {
22832273
/**
22842274
* Optional. Filters applied to the `[StepEntries.ListStepEntries]` results. The following fields are supported for filtering: `entryId`, `createTime`, `updateTime`, `routine`, `step`, `stepType`, `parent`, `state`. For details, see AIP-160. For example, if you are using the Google APIs Explorer: `state="SUCCEEDED"` or `createTime\>"2023-08-01" AND state="FAILED"`
22852275
*/

src/apis/workflowexecutions/v1beta.ts

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -923,8 +923,7 @@ export namespace workflowexecutions_v1beta {
923923
}
924924
}
925925

926-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Cancel
927-
extends StandardParameters {
926+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Cancel extends StandardParameters {
928927
/**
929928
* Required. Name of the execution to be cancelled. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
930929
*/
@@ -935,8 +934,7 @@ export namespace workflowexecutions_v1beta {
935934
*/
936935
requestBody?: Schema$CancelExecutionRequest;
937936
}
938-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Create
939-
extends StandardParameters {
937+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Create extends StandardParameters {
940938
/**
941939
* Required. Name of the workflow for which an execution should be created. Format: projects/{project\}/locations/{location\}/workflows/{workflow\} The latest revision of the workflow will be used.
942940
*/
@@ -947,8 +945,7 @@ export namespace workflowexecutions_v1beta {
947945
*/
948946
requestBody?: Schema$Execution;
949947
}
950-
export interface Params$Resource$Projects$Locations$Workflows$Executions$Get
951-
extends StandardParameters {
948+
export interface Params$Resource$Projects$Locations$Workflows$Executions$Get extends StandardParameters {
952949
/**
953950
* Required. Name of the execution to be retrieved. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\}
954951
*/
@@ -958,8 +955,7 @@ export namespace workflowexecutions_v1beta {
958955
*/
959956
view?: string;
960957
}
961-
export interface Params$Resource$Projects$Locations$Workflows$Executions$List
962-
extends StandardParameters {
958+
export interface Params$Resource$Projects$Locations$Workflows$Executions$List extends StandardParameters {
963959
/**
964960
* 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.
965961
*/

0 commit comments

Comments
 (0)