@maxim_mazurok/gapi.client.dataform-v1beta1 0.1.20251111 → 0.1.20251208
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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251208
|
|
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;
|
|
@@ -829,6 +835,8 @@ declare namespace gapi.client {
|
|
|
829
835
|
invocationTiming?: Interval;
|
|
830
836
|
/** Output only. The workflow invocation's name. */
|
|
831
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;
|
|
832
840
|
/** Output only. The resolved compilation result that was used to create this invocation. Will be in the format `projects/*/locations/*/repositories/*/compilationResults/*`. */
|
|
833
841
|
resolvedCompilationResult?: string;
|
|
834
842
|
/** Output only. This workflow invocation's current state. */
|
|
@@ -865,6 +873,8 @@ declare namespace gapi.client {
|
|
|
865
873
|
internalMetadata?: string;
|
|
866
874
|
/** Identifier. The workspace's name. */
|
|
867
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;
|
|
868
878
|
}
|
|
869
879
|
interface WorkspaceCompilationOverrides {
|
|
870
880
|
/** Optional. The default database (Google Cloud project ID). */
|
|
@@ -1117,7 +1127,7 @@ declare namespace gapi.client {
|
|
|
1117
1127
|
prettyPrint?: boolean;
|
|
1118
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. */
|
|
1119
1129
|
quotaUser?: string;
|
|
1120
|
-
/** 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. */
|
|
1121
1131
|
returnPartialSuccess?: boolean;
|
|
1122
1132
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1123
1133
|
upload_protocol?: string;
|