@maxim_mazurok/gapi.client.workflowexecutions-v1 0.0.20240725 → 0.0.20240813
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +73 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://workflowexecutions.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240813
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -39,6 +39,8 @@ declare namespace gapi.client {
|
|
|
39
39
|
waiters?: string;
|
|
40
40
|
}
|
|
41
41
|
interface CancelExecutionRequest {}
|
|
42
|
+
interface DeleteExecutionHistoryRequest {}
|
|
43
|
+
interface Empty {}
|
|
42
44
|
interface Error {
|
|
43
45
|
/** Human-readable stack trace string. */
|
|
44
46
|
context?: string;
|
|
@@ -190,6 +192,8 @@ declare namespace gapi.client {
|
|
|
190
192
|
stepType?: string;
|
|
191
193
|
/** Output only. The most recently updated time of the step entry. */
|
|
192
194
|
updateTime?: string;
|
|
195
|
+
/** Output only. The VariableData associated to this step. */
|
|
196
|
+
variableData?: VariableData;
|
|
193
197
|
}
|
|
194
198
|
interface StepEntryMetadata {
|
|
195
199
|
/** Expected iteration represents the expected number of iterations in the step's progress. */
|
|
@@ -211,6 +215,10 @@ declare namespace gapi.client {
|
|
|
211
215
|
/** Required. The subscription of the Pub/Sub push notification. Format: projects/{project}/subscriptions/{sub} */
|
|
212
216
|
subscription?: string;
|
|
213
217
|
}
|
|
218
|
+
interface VariableData {
|
|
219
|
+
/** Variables that are associated with this step. */
|
|
220
|
+
variables?: {[P in string]: any};
|
|
221
|
+
}
|
|
214
222
|
interface CallbacksResource {
|
|
215
223
|
/** Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID. */
|
|
216
224
|
list(request?: {
|
|
@@ -271,6 +279,8 @@ declare namespace gapi.client {
|
|
|
271
279
|
upload_protocol?: string;
|
|
272
280
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
273
281
|
uploadType?: string;
|
|
282
|
+
/** Deprecated field. */
|
|
283
|
+
view?: string;
|
|
274
284
|
}): Request<StepEntry>;
|
|
275
285
|
/** Lists step entries for the corresponding workflow execution. Returned entries are ordered by their create_time. */
|
|
276
286
|
list(request?: {
|
|
@@ -284,7 +294,7 @@ declare namespace gapi.client {
|
|
|
284
294
|
callback?: string;
|
|
285
295
|
/** Selector specifying which fields to include in a partial response. */
|
|
286
296
|
fields?: string;
|
|
287
|
-
/** Optional. Filters applied to the `[StepEntries.ListStepEntries]` results. The following fields are supported for filtering: `entryId`, `createTime`, `updateTime`, `routine`, `step`, `stepType`, `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"` */
|
|
297
|
+
/** 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"` */
|
|
288
298
|
filter?: string;
|
|
289
299
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
290
300
|
key?: string;
|
|
@@ -296,7 +306,7 @@ declare namespace gapi.client {
|
|
|
296
306
|
pageSize?: number;
|
|
297
307
|
/** Optional. A page token, received from a previous `ListStepEntries` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListStepEntries` must match the call that provided the page token. */
|
|
298
308
|
pageToken?: string;
|
|
299
|
-
/** Required. Name of the workflow execution to list entries for. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}
|
|
309
|
+
/** Required. Name of the workflow execution to list entries for. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution} */
|
|
300
310
|
parent: string;
|
|
301
311
|
/** Returns response with indentations and line breaks. */
|
|
302
312
|
prettyPrint?: boolean;
|
|
@@ -308,6 +318,8 @@ declare namespace gapi.client {
|
|
|
308
318
|
upload_protocol?: string;
|
|
309
319
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
310
320
|
uploadType?: string;
|
|
321
|
+
/** Deprecated field. */
|
|
322
|
+
view?: string;
|
|
311
323
|
}): Request<ListStepEntriesResponse>;
|
|
312
324
|
}
|
|
313
325
|
interface ExecutionsResource {
|
|
@@ -427,6 +439,64 @@ declare namespace gapi.client {
|
|
|
427
439
|
},
|
|
428
440
|
body: Execution
|
|
429
441
|
): Request<Execution>;
|
|
442
|
+
/** Deletes all step entries for an execution. */
|
|
443
|
+
deleteExecutionHistory(request: {
|
|
444
|
+
/** V1 error format. */
|
|
445
|
+
'$.xgafv'?: string;
|
|
446
|
+
/** OAuth access token. */
|
|
447
|
+
access_token?: string;
|
|
448
|
+
/** Data format for response. */
|
|
449
|
+
alt?: string;
|
|
450
|
+
/** JSONP */
|
|
451
|
+
callback?: string;
|
|
452
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
453
|
+
fields?: string;
|
|
454
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
455
|
+
key?: string;
|
|
456
|
+
/** Required. Name of the execution for which step entries should be deleted. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution} */
|
|
457
|
+
name: string;
|
|
458
|
+
/** OAuth 2.0 token for the current user. */
|
|
459
|
+
oauth_token?: string;
|
|
460
|
+
/** Returns response with indentations and line breaks. */
|
|
461
|
+
prettyPrint?: boolean;
|
|
462
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
463
|
+
quotaUser?: string;
|
|
464
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
465
|
+
upload_protocol?: string;
|
|
466
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
467
|
+
uploadType?: string;
|
|
468
|
+
/** Request body */
|
|
469
|
+
resource: DeleteExecutionHistoryRequest;
|
|
470
|
+
}): Request<{}>;
|
|
471
|
+
deleteExecutionHistory(
|
|
472
|
+
request: {
|
|
473
|
+
/** V1 error format. */
|
|
474
|
+
'$.xgafv'?: string;
|
|
475
|
+
/** OAuth access token. */
|
|
476
|
+
access_token?: string;
|
|
477
|
+
/** Data format for response. */
|
|
478
|
+
alt?: string;
|
|
479
|
+
/** JSONP */
|
|
480
|
+
callback?: string;
|
|
481
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
482
|
+
fields?: string;
|
|
483
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
484
|
+
key?: string;
|
|
485
|
+
/** Required. Name of the execution for which step entries should be deleted. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution} */
|
|
486
|
+
name: string;
|
|
487
|
+
/** OAuth 2.0 token for the current user. */
|
|
488
|
+
oauth_token?: string;
|
|
489
|
+
/** Returns response with indentations and line breaks. */
|
|
490
|
+
prettyPrint?: boolean;
|
|
491
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
492
|
+
quotaUser?: string;
|
|
493
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
494
|
+
upload_protocol?: string;
|
|
495
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
496
|
+
uploadType?: string;
|
|
497
|
+
},
|
|
498
|
+
body: DeleteExecutionHistoryRequest
|
|
499
|
+
): Request<{}>;
|
|
430
500
|
/** Returns all metadata stored about an execution, excluding most data that is already accessible using other API methods. */
|
|
431
501
|
exportData(request?: {
|
|
432
502
|
/** V1 error format. */
|