@maxim_mazurok/gapi.client.dataform-v1 0.0.20251102 → 0.0.20251111
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 +9 -1
- 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251111
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -609,10 +609,14 @@ declare namespace gapi.client {
|
|
|
609
609
|
additionalOptions?: {[P in string]: string};
|
|
610
610
|
/** A list of columns or SQL expressions used to cluster the table. */
|
|
611
611
|
clusterExpressions?: string[];
|
|
612
|
+
/** Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}", or be set to DEFAULT. */
|
|
613
|
+
connection?: string;
|
|
612
614
|
/** A list of actions that this action depends on. */
|
|
613
615
|
dependencyTargets?: Target[];
|
|
614
616
|
/** Whether this action is disabled (i.e. should not be run). */
|
|
615
617
|
disabled?: boolean;
|
|
618
|
+
/** Optional. The file format for the BigQuery table. */
|
|
619
|
+
fileFormat?: string;
|
|
616
620
|
/** Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is `INCREMENTAL_TABLE`. */
|
|
617
621
|
incrementalTableConfig?: IncrementalTableConfig;
|
|
618
622
|
/** Sets the partition expiration in days. */
|
|
@@ -631,6 +635,10 @@ declare namespace gapi.client {
|
|
|
631
635
|
requirePartitionFilter?: boolean;
|
|
632
636
|
/** The SELECT query which returns rows which this relation should contain. */
|
|
633
637
|
selectQuery?: string;
|
|
638
|
+
/** Optional. The fully qualified location prefix of the external folder where table data is stored. The URI should be in the format `gs://bucket/path_to_table/`. */
|
|
639
|
+
storageUri?: string;
|
|
640
|
+
/** Optional. The table format for the BigQuery table. */
|
|
641
|
+
tableFormat?: string;
|
|
634
642
|
/** Arbitrary, user-defined tags on this action. */
|
|
635
643
|
tags?: string[];
|
|
636
644
|
}
|