@maxim_mazurok/gapi.client.dataform-v1beta1 0.0.20240317 → 0.0.20240420
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 +33 -4
- 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://dataform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240420
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -43,6 +43,8 @@ declare namespace gapi.client {
|
|
|
43
43
|
tags?: string[];
|
|
44
44
|
}
|
|
45
45
|
interface BigQueryAction {
|
|
46
|
+
/** Output only. The ID of the BigQuery job that executed the SQL in sql_script. Only set once the job has started to run. */
|
|
47
|
+
jobId?: string;
|
|
46
48
|
/** Output only. The generated BigQuery SQL script that will be executed. */
|
|
47
49
|
sqlScript?: string;
|
|
48
50
|
}
|
|
@@ -64,6 +66,7 @@ declare namespace gapi.client {
|
|
|
64
66
|
defaultDatabase?: string;
|
|
65
67
|
/** Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations. */
|
|
66
68
|
defaultLocation?: string;
|
|
69
|
+
defaultNotebookRuntimeOptions?: NotebookRuntimeOptions;
|
|
67
70
|
/** Optional. The default schema (BigQuery dataset ID). */
|
|
68
71
|
defaultSchema?: string;
|
|
69
72
|
/** Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names. */
|
|
@@ -156,6 +159,8 @@ declare namespace gapi.client {
|
|
|
156
159
|
declaration?: Declaration;
|
|
157
160
|
/** The full path including filename in which this action is located, relative to the workspace root. */
|
|
158
161
|
filePath?: string;
|
|
162
|
+
/** The notebook executed by this action. */
|
|
163
|
+
notebook?: Notebook;
|
|
159
164
|
/** The database operations executed by this action. */
|
|
160
165
|
operations?: Operations;
|
|
161
166
|
/** The database relation created/updated by this action. */
|
|
@@ -360,6 +365,26 @@ declare namespace gapi.client {
|
|
|
360
365
|
path?: string;
|
|
361
366
|
}
|
|
362
367
|
interface MoveFileResponse {}
|
|
368
|
+
interface Notebook {
|
|
369
|
+
/** The contents of the notebook. */
|
|
370
|
+
contents?: string;
|
|
371
|
+
/** A list of actions that this action depends on. */
|
|
372
|
+
dependencyTargets?: Target[];
|
|
373
|
+
/** Whether this action is disabled (i.e. should not be run). */
|
|
374
|
+
disabled?: boolean;
|
|
375
|
+
/** Arbitrary, user-defined tags on this action. */
|
|
376
|
+
tags?: string[];
|
|
377
|
+
}
|
|
378
|
+
interface NotebookAction {
|
|
379
|
+
/** Output only. The code contents of a Notebook to be run. */
|
|
380
|
+
contents?: string;
|
|
381
|
+
/** Output only. The ID of the Vertex job that executed the notebook in contents and also the ID used for the outputs created in GCS buckets. Only set once the job has started to run. */
|
|
382
|
+
jobId?: string;
|
|
383
|
+
}
|
|
384
|
+
interface NotebookRuntimeOptions {
|
|
385
|
+
/** Optional. The GCS location to upload the result to. Format: `gs://bucket-name`. */
|
|
386
|
+
gcsOutputBucket?: string;
|
|
387
|
+
}
|
|
363
388
|
interface OperationMetadata {
|
|
364
389
|
/** Output only. API version used to start the operation. */
|
|
365
390
|
apiVersion?: string;
|
|
@@ -603,7 +628,7 @@ declare namespace gapi.client {
|
|
|
603
628
|
cronSchedule?: string;
|
|
604
629
|
/** Optional. If left unset, a default InvocationConfig will be used. */
|
|
605
630
|
invocationConfig?: InvocationConfig;
|
|
606
|
-
/**
|
|
631
|
+
/** Identifier. The workflow config's name. */
|
|
607
632
|
name?: string;
|
|
608
633
|
/** Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule. */
|
|
609
634
|
recentScheduledExecutionRecords?: ScheduledExecutionRecord[];
|
|
@@ -637,6 +662,8 @@ declare namespace gapi.client {
|
|
|
637
662
|
failureReason?: string;
|
|
638
663
|
/** Output only. This action's timing details. `start_time` will be set if the action is in [RUNNING, SUCCEEDED, CANCELLED, FAILED] state. `end_time` will be set if the action is in [SUCCEEDED, CANCELLED, FAILED] state. */
|
|
639
664
|
invocationTiming?: Interval;
|
|
665
|
+
/** Output only. The workflow action's notebook action details. */
|
|
666
|
+
notebookAction?: NotebookAction;
|
|
640
667
|
/** Output only. This action's current state. */
|
|
641
668
|
state?: string;
|
|
642
669
|
/** Output only. This action's identifier. Unique within the workflow invocation. */
|
|
@@ -860,6 +887,8 @@ declare namespace gapi.client {
|
|
|
860
887
|
key?: string;
|
|
861
888
|
/** OAuth 2.0 token for the current user. */
|
|
862
889
|
oauth_token?: string;
|
|
890
|
+
/** Optional. This field only supports ordering by `name` and `create_time`. If unspecified, the server will choose the ordering. If specified, the default order is ascending for the `name` field. */
|
|
891
|
+
orderBy?: string;
|
|
863
892
|
/** Optional. Maximum number of compilation results to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
864
893
|
pageSize?: number;
|
|
865
894
|
/** Optional. Page token received from a previous `ListCompilationResults` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCompilationResults` must match the call that provided the page token. */
|
|
@@ -1282,7 +1311,7 @@ declare namespace gapi.client {
|
|
|
1282
1311
|
fields?: string;
|
|
1283
1312
|
/** 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. */
|
|
1284
1313
|
key?: string;
|
|
1285
|
-
/**
|
|
1314
|
+
/** Identifier. The workflow config's name. */
|
|
1286
1315
|
name: string;
|
|
1287
1316
|
/** OAuth 2.0 token for the current user. */
|
|
1288
1317
|
oauth_token?: string;
|
|
@@ -1313,7 +1342,7 @@ declare namespace gapi.client {
|
|
|
1313
1342
|
fields?: string;
|
|
1314
1343
|
/** 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. */
|
|
1315
1344
|
key?: string;
|
|
1316
|
-
/**
|
|
1345
|
+
/** Identifier. The workflow config's name. */
|
|
1317
1346
|
name: string;
|
|
1318
1347
|
/** OAuth 2.0 token for the current user. */
|
|
1319
1348
|
oauth_token?: string;
|