@maxim_mazurok/gapi.client.dataform-v1 0.0.20251111 → 0.0.20251214
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 +13 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251214
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -184,6 +184,8 @@ declare namespace gapi.client {
|
|
|
184
184
|
internalMetadata?: string;
|
|
185
185
|
/** Output only. The compilation result's name. */
|
|
186
186
|
name?: string;
|
|
187
|
+
/** Output only. Metadata indicating whether this resource is user-scoped. `CompilationResult` resource is `user_scoped` only if it is sourced from a workspace. */
|
|
188
|
+
privateResourceMetadata?: PrivateResourceMetadata;
|
|
187
189
|
/** Immutable. The name of the release config to compile. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`. */
|
|
188
190
|
releaseConfig?: string;
|
|
189
191
|
/** Output only. The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace. */
|
|
@@ -396,7 +398,7 @@ declare namespace gapi.client {
|
|
|
396
398
|
nextPageToken?: string;
|
|
397
399
|
/** A list of operations that matches the specified filter in the request. */
|
|
398
400
|
operations?: Operation[];
|
|
399
|
-
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections
|
|
401
|
+
/** 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. */
|
|
400
402
|
unreachable?: string[];
|
|
401
403
|
}
|
|
402
404
|
interface ListReleaseConfigsResponse {
|
|
@@ -560,6 +562,10 @@ declare namespace gapi.client {
|
|
|
560
562
|
/** 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. */
|
|
561
563
|
type?: string;
|
|
562
564
|
}
|
|
565
|
+
interface PrivateResourceMetadata {
|
|
566
|
+
/** Output only. If true, this resource is user-scoped, meaning it is either a workspace or sourced from a workspace. */
|
|
567
|
+
userScoped?: boolean;
|
|
568
|
+
}
|
|
563
569
|
interface PullGitCommitsRequest {
|
|
564
570
|
/** Required. The author of any merge commit which may be created as a result of merging fetched Git commits into this workspace. */
|
|
565
571
|
author?: CommitAuthor;
|
|
@@ -825,6 +831,8 @@ declare namespace gapi.client {
|
|
|
825
831
|
invocationTiming?: Interval;
|
|
826
832
|
/** Output only. The workflow invocation's name. */
|
|
827
833
|
name?: string;
|
|
834
|
+
/** 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. */
|
|
835
|
+
privateResourceMetadata?: PrivateResourceMetadata;
|
|
828
836
|
/** Output only. The resolved compilation result that was used to create this invocation. Will be in the format `projects/*/locations/*/repositories/*/compilationResults/*`. */
|
|
829
837
|
resolvedCompilationResult?: string;
|
|
830
838
|
/** Output only. This workflow invocation's current state. */
|
|
@@ -861,6 +869,8 @@ declare namespace gapi.client {
|
|
|
861
869
|
internalMetadata?: string;
|
|
862
870
|
/** Identifier. The workspace's name. */
|
|
863
871
|
name?: string;
|
|
872
|
+
/** Output only. Metadata indicating whether this resource is user-scoped. For `Workspace` resources, the `user_scoped` field is always `true`. */
|
|
873
|
+
privateResourceMetadata?: PrivateResourceMetadata;
|
|
864
874
|
}
|
|
865
875
|
interface WorkspaceCompilationOverrides {
|
|
866
876
|
/** Optional. The default database (Google Cloud project ID). */
|
|
@@ -1113,7 +1123,7 @@ declare namespace gapi.client {
|
|
|
1113
1123
|
prettyPrint?: boolean;
|
|
1114
1124
|
/** 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. */
|
|
1115
1125
|
quotaUser?: string;
|
|
1116
|
-
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the
|
|
1126
|
+
/** 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. */
|
|
1117
1127
|
returnPartialSuccess?: boolean;
|
|
1118
1128
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1119
1129
|
upload_protocol?: string;
|