@maxim_mazurok/gapi.client.dataform-v1beta1 0.1.20251102 → 0.1.20251202
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 +21 -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://dataform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251202
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -188,6 +188,8 @@ declare namespace gapi.client {
|
|
|
188
188
|
internalMetadata?: string;
|
|
189
189
|
/** Output only. The compilation result's name. */
|
|
190
190
|
name?: string;
|
|
191
|
+
/** Output only. Metadata indicating whether this resource is user-scoped. `CompilationResult` resource is `user_scoped` only if it is sourced from a workspace. */
|
|
192
|
+
privateResourceMetadata?: PrivateResourceMetadata;
|
|
191
193
|
/** Immutable. The name of the release config to compile. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`. */
|
|
192
194
|
releaseConfig?: string;
|
|
193
195
|
/** Output only. The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace. */
|
|
@@ -400,7 +402,7 @@ declare namespace gapi.client {
|
|
|
400
402
|
nextPageToken?: string;
|
|
401
403
|
/** A list of operations that matches the specified filter in the request. */
|
|
402
404
|
operations?: Operation[];
|
|
403
|
-
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections
|
|
405
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
404
406
|
unreachable?: string[];
|
|
405
407
|
}
|
|
406
408
|
interface ListReleaseConfigsResponse {
|
|
@@ -564,6 +566,10 @@ declare namespace gapi.client {
|
|
|
564
566
|
/** Resource type. Types are defined in IAM's .service files. Valid values for type might be 'storage_buckets', 'compute_instances', 'resourcemanager_customers', 'billing_accounts', etc. */
|
|
565
567
|
type?: string;
|
|
566
568
|
}
|
|
569
|
+
interface PrivateResourceMetadata {
|
|
570
|
+
/** Output only. If true, this resource is user-scoped, meaning it is either a workspace or sourced from a workspace. */
|
|
571
|
+
userScoped?: boolean;
|
|
572
|
+
}
|
|
567
573
|
interface PullGitCommitsRequest {
|
|
568
574
|
/** Required. The author of any merge commit which may be created as a result of merging fetched Git commits into this workspace. */
|
|
569
575
|
author?: CommitAuthor;
|
|
@@ -613,10 +619,14 @@ declare namespace gapi.client {
|
|
|
613
619
|
additionalOptions?: {[P in string]: string};
|
|
614
620
|
/** A list of columns or SQL expressions used to cluster the table. */
|
|
615
621
|
clusterExpressions?: string[];
|
|
622
|
+
/** 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. */
|
|
623
|
+
connection?: string;
|
|
616
624
|
/** A list of actions that this action depends on. */
|
|
617
625
|
dependencyTargets?: Target[];
|
|
618
626
|
/** Whether this action is disabled (i.e. should not be run). */
|
|
619
627
|
disabled?: boolean;
|
|
628
|
+
/** Optional. The file format for the BigQuery table. */
|
|
629
|
+
fileFormat?: string;
|
|
620
630
|
/** Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is `INCREMENTAL_TABLE`. */
|
|
621
631
|
incrementalTableConfig?: IncrementalTableConfig;
|
|
622
632
|
/** Sets the partition expiration in days. */
|
|
@@ -635,6 +645,10 @@ declare namespace gapi.client {
|
|
|
635
645
|
requirePartitionFilter?: boolean;
|
|
636
646
|
/** The SELECT query which returns rows which this relation should contain. */
|
|
637
647
|
selectQuery?: string;
|
|
648
|
+
/** 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/`. */
|
|
649
|
+
storageUri?: string;
|
|
650
|
+
/** Optional. The table format for the BigQuery table. */
|
|
651
|
+
tableFormat?: string;
|
|
638
652
|
/** Arbitrary, user-defined tags on this action. */
|
|
639
653
|
tags?: string[];
|
|
640
654
|
}
|
|
@@ -821,6 +835,8 @@ declare namespace gapi.client {
|
|
|
821
835
|
invocationTiming?: Interval;
|
|
822
836
|
/** Output only. The workflow invocation's name. */
|
|
823
837
|
name?: string;
|
|
838
|
+
/** Output only. Metadata indicating whether this resource is user-scoped. `WorkflowInvocation` resource is `user_scoped` only if it is sourced from a compilation result and the compilation result is user-scoped. */
|
|
839
|
+
privateResourceMetadata?: PrivateResourceMetadata;
|
|
824
840
|
/** Output only. The resolved compilation result that was used to create this invocation. Will be in the format `projects/*/locations/*/repositories/*/compilationResults/*`. */
|
|
825
841
|
resolvedCompilationResult?: string;
|
|
826
842
|
/** Output only. This workflow invocation's current state. */
|
|
@@ -857,6 +873,8 @@ declare namespace gapi.client {
|
|
|
857
873
|
internalMetadata?: string;
|
|
858
874
|
/** Identifier. The workspace's name. */
|
|
859
875
|
name?: string;
|
|
876
|
+
/** Output only. Metadata indicating whether this resource is user-scoped. For `Workspace` resources, the `user_scoped` field is always `true`. */
|
|
877
|
+
privateResourceMetadata?: PrivateResourceMetadata;
|
|
860
878
|
}
|
|
861
879
|
interface WorkspaceCompilationOverrides {
|
|
862
880
|
/** Optional. The default database (Google Cloud project ID). */
|
|
@@ -1109,7 +1127,7 @@ declare namespace gapi.client {
|
|
|
1109
1127
|
prettyPrint?: boolean;
|
|
1110
1128
|
/** 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. */
|
|
1111
1129
|
quotaUser?: string;
|
|
1112
|
-
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the
|
|
1130
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
1113
1131
|
returnPartialSuccess?: boolean;
|
|
1114
1132
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1115
1133
|
upload_protocol?: string;
|