@maxim_mazurok/gapi.client.dataform-v1beta1 0.0.20240824 → 0.0.20241028
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 +18 -28
- 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: 20241028
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -163,8 +163,6 @@ declare namespace gapi.client {
|
|
|
163
163
|
assertion?: Assertion;
|
|
164
164
|
/** The action's identifier if the project had been compiled without any overrides configured. Unique within the compilation result. */
|
|
165
165
|
canonicalTarget?: Target;
|
|
166
|
-
/** The data preparation executed by this action. */
|
|
167
|
-
dataPreparation?: DataPreparation;
|
|
168
166
|
/** The declaration declared by this action. */
|
|
169
167
|
declaration?: Declaration;
|
|
170
168
|
/** The full path including filename in which this action is located, relative to the workspace root. */
|
|
@@ -192,16 +190,6 @@ declare namespace gapi.client {
|
|
|
192
190
|
/** The KMS key version name with which data of a resource is encrypted. */
|
|
193
191
|
kmsKeyVersionName?: string;
|
|
194
192
|
}
|
|
195
|
-
interface DataPreparation {
|
|
196
|
-
/** The data preparation definition, stored as a binary encoded proto. */
|
|
197
|
-
contents?: string;
|
|
198
|
-
/** A list of actions that this action depends on. */
|
|
199
|
-
dependencyTargets?: Target[];
|
|
200
|
-
/** Whether this action is disabled (i.e. should not be run). */
|
|
201
|
-
disabled?: boolean;
|
|
202
|
-
/** Arbitrary, user-defined tags on this action. */
|
|
203
|
-
tags?: string[];
|
|
204
|
-
}
|
|
205
193
|
interface Declaration {
|
|
206
194
|
/** Descriptor for the relation and its columns. Used as documentation only, i.e. values here will result in no changes to the relation's metadata. */
|
|
207
195
|
relationDescriptor?: RelationDescriptor;
|
|
@@ -544,7 +532,7 @@ declare namespace gapi.client {
|
|
|
544
532
|
gitCommitish?: string;
|
|
545
533
|
/** Identifier. The release config's name. */
|
|
546
534
|
name?: string;
|
|
547
|
-
/** Output only. Records of the 10 most recent scheduled release attempts, ordered in
|
|
535
|
+
/** Output only. Records of the 10 most recent scheduled release attempts, ordered in descending order of `release_time`. Updated whenever automatic creation of a compilation result is triggered by cron_schedule. */
|
|
548
536
|
recentScheduledReleaseRecords?: ScheduledReleaseRecord[];
|
|
549
537
|
/** Optional. The name of the currently released compilation result for this release config. This value is updated when a compilation result is automatically created from this release config (using cron_schedule), or when this resource is updated by API call (perhaps to roll back to an earlier release). The compilation result must have been created using this release config. Must be in the format `projects/*/locations/*/repositories/*/compilationResults/*`. */
|
|
550
538
|
releaseCompilationResult?: string;
|
|
@@ -568,7 +556,7 @@ declare namespace gapi.client {
|
|
|
568
556
|
displayName?: string;
|
|
569
557
|
/** Optional. If set, configures this repository to be linked to a Git remote. */
|
|
570
558
|
gitRemoteSettings?: GitRemoteSettings;
|
|
571
|
-
/** Optional. The reference to a KMS encryption key. If provided, it will be used to encrypt user data in the repository and all child resources. It is not possible to add or update the encryption key after the repository is created. Example: `projects/
|
|
559
|
+
/** Optional. The reference to a KMS encryption key. If provided, it will be used to encrypt user data in the repository and all child resources. It is not possible to add or update the encryption key after the repository is created. Example: `projects/{kms_project}/locations/{location}/keyRings/{key_location}/cryptoKeys/{key}` */
|
|
572
560
|
kmsKeyName?: string;
|
|
573
561
|
/** Optional. Repository user labels. */
|
|
574
562
|
labels?: {[P in string]: string};
|
|
@@ -666,7 +654,7 @@ declare namespace gapi.client {
|
|
|
666
654
|
invocationConfig?: InvocationConfig;
|
|
667
655
|
/** Identifier. The workflow config's name. */
|
|
668
656
|
name?: string;
|
|
669
|
-
/** Output only. Records of the 10 most recent scheduled execution attempts, ordered in
|
|
657
|
+
/** Output only. Records of the 10 most recent scheduled execution attempts, ordered in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule. */
|
|
670
658
|
recentScheduledExecutionRecords?: ScheduledExecutionRecord[];
|
|
671
659
|
/** Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`. */
|
|
672
660
|
releaseConfig?: string;
|
|
@@ -710,6 +698,8 @@ declare namespace gapi.client {
|
|
|
710
698
|
target?: Target;
|
|
711
699
|
}
|
|
712
700
|
interface Workspace {
|
|
701
|
+
/** Output only. The timestamp of when the workspace was created. */
|
|
702
|
+
createTime?: string;
|
|
713
703
|
/** Output only. A data encryption state of a Git repository if this Workspace is protected by a KMS key. */
|
|
714
704
|
dataEncryptionState?: DataEncryptionState;
|
|
715
705
|
/** Identifier. The workspace's name. */
|
|
@@ -1056,7 +1046,7 @@ declare namespace gapi.client {
|
|
|
1056
1046
|
orderBy?: string;
|
|
1057
1047
|
/** 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. */
|
|
1058
1048
|
pageSize?: number;
|
|
1059
|
-
/** 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. */
|
|
1049
|
+
/** Optional. Page token received from a previous `ListCompilationResults` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCompilationResults`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
1060
1050
|
pageToken?: string;
|
|
1061
1051
|
/** Required. The repository in which to list compilation results. Must be in the format `projects/*/locations/*/repositories/*`. */
|
|
1062
1052
|
parent: string;
|
|
@@ -1091,7 +1081,7 @@ declare namespace gapi.client {
|
|
|
1091
1081
|
oauth_token?: string;
|
|
1092
1082
|
/** 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. */
|
|
1093
1083
|
pageSize?: number;
|
|
1094
|
-
/** Optional. Page token received from a previous `QueryCompilationResultActions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryCompilationResultActions` must match the call that provided the page token. */
|
|
1084
|
+
/** Optional. Page token received from a previous `QueryCompilationResultActions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryCompilationResultActions`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
1095
1085
|
pageToken?: string;
|
|
1096
1086
|
/** Returns response with indentations and line breaks. */
|
|
1097
1087
|
prettyPrint?: boolean;
|
|
@@ -1238,7 +1228,7 @@ declare namespace gapi.client {
|
|
|
1238
1228
|
oauth_token?: string;
|
|
1239
1229
|
/** Optional. Maximum number of release configs to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
1240
1230
|
pageSize?: number;
|
|
1241
|
-
/** Optional. Page token received from a previous `ListReleaseConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListReleaseConfigs` must match the call that provided the page token. */
|
|
1231
|
+
/** Optional. Page token received from a previous `ListReleaseConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListReleaseConfigs`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
1242
1232
|
pageToken?: string;
|
|
1243
1233
|
/** Required. The repository in which to list release configs. Must be in the format `projects/*/locations/*/repositories/*`. */
|
|
1244
1234
|
parent: string;
|
|
@@ -1449,7 +1439,7 @@ declare namespace gapi.client {
|
|
|
1449
1439
|
oauth_token?: string;
|
|
1450
1440
|
/** Optional. Maximum number of workflow configs to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
1451
1441
|
pageSize?: number;
|
|
1452
|
-
/** Optional. Page token received from a previous `ListWorkflowConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkflowConfigs` must match the call that provided the page token. */
|
|
1442
|
+
/** Optional. Page token received from a previous `ListWorkflowConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkflowConfigs`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
1453
1443
|
pageToken?: string;
|
|
1454
1444
|
/** Required. The repository in which to list workflow configs. Must be in the format `projects/*/locations/*/repositories/*`. */
|
|
1455
1445
|
parent: string;
|
|
@@ -1718,7 +1708,7 @@ declare namespace gapi.client {
|
|
|
1718
1708
|
orderBy?: string;
|
|
1719
1709
|
/** Optional. Maximum number of workflow invocations to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
1720
1710
|
pageSize?: number;
|
|
1721
|
-
/** Optional. Page token received from a previous `ListWorkflowInvocations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkflowInvocations` must match the call that provided the page token. */
|
|
1711
|
+
/** Optional. Page token received from a previous `ListWorkflowInvocations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkflowInvocations`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
1722
1712
|
pageToken?: string;
|
|
1723
1713
|
/** Required. The parent resource of the WorkflowInvocation type. Must be in the format `projects/*/locations/*/repositories/*`. */
|
|
1724
1714
|
parent: string;
|
|
@@ -1751,7 +1741,7 @@ declare namespace gapi.client {
|
|
|
1751
1741
|
oauth_token?: string;
|
|
1752
1742
|
/** Optional. Maximum number of workflow invocations to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
1753
1743
|
pageSize?: number;
|
|
1754
|
-
/** Optional. Page token received from a previous `QueryWorkflowInvocationActions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryWorkflowInvocationActions` must match the call that provided the page token. */
|
|
1744
|
+
/** Optional. Page token received from a previous `QueryWorkflowInvocationActions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryWorkflowInvocationActions`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
1755
1745
|
pageToken?: string;
|
|
1756
1746
|
/** Returns response with indentations and line breaks. */
|
|
1757
1747
|
prettyPrint?: boolean;
|
|
@@ -2132,7 +2122,7 @@ declare namespace gapi.client {
|
|
|
2132
2122
|
orderBy?: string;
|
|
2133
2123
|
/** Optional. Maximum number of workspaces to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
2134
2124
|
pageSize?: number;
|
|
2135
|
-
/** Optional. Page token received from a previous `ListWorkspaces` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkspaces` must match the call that provided the page token. */
|
|
2125
|
+
/** Optional. Page token received from a previous `ListWorkspaces` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkspaces`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
2136
2126
|
pageToken?: string;
|
|
2137
2127
|
/** Required. The repository in which to list workspaces. Must be in the format `projects/*/locations/*/repositories/*`. */
|
|
2138
2128
|
parent: string;
|
|
@@ -2453,7 +2443,7 @@ declare namespace gapi.client {
|
|
|
2453
2443
|
oauth_token?: string;
|
|
2454
2444
|
/** Optional. Maximum number of paths to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
2455
2445
|
pageSize?: number;
|
|
2456
|
-
/** Optional. Page token received from a previous `QueryDirectoryContents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryDirectoryContents` must match the call that provided the page token. */
|
|
2446
|
+
/** Optional. Page token received from a previous `QueryDirectoryContents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryDirectoryContents`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
2457
2447
|
pageToken?: string;
|
|
2458
2448
|
/** Optional. The directory's full path including directory name, relative to the workspace root. If left unset, the workspace root is used. */
|
|
2459
2449
|
path?: string;
|
|
@@ -2693,7 +2683,7 @@ declare namespace gapi.client {
|
|
|
2693
2683
|
oauth_token?: string;
|
|
2694
2684
|
/** Optional. Maximum number of search results to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
2695
2685
|
pageSize?: number;
|
|
2696
|
-
/** Optional. Page token received from a previous `SearchFilesRequest` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchFilesRequest` must match the call that provided the page token. */
|
|
2686
|
+
/** Optional. Page token received from a previous `SearchFilesRequest` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchFilesRequest`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
2697
2687
|
pageToken?: string;
|
|
2698
2688
|
/** Returns response with indentations and line breaks. */
|
|
2699
2689
|
prettyPrint?: boolean;
|
|
@@ -3022,7 +3012,7 @@ declare namespace gapi.client {
|
|
|
3022
3012
|
oauth_token?: string;
|
|
3023
3013
|
/** Optional. Maximum number of commits to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
3024
3014
|
pageSize?: number;
|
|
3025
|
-
/** Optional. Page token received from a previous `FetchRepositoryHistory` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `FetchRepositoryHistory` must match the call that provided the page token. */
|
|
3015
|
+
/** Optional. Page token received from a previous `FetchRepositoryHistory` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `FetchRepositoryHistory`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
3026
3016
|
pageToken?: string;
|
|
3027
3017
|
/** Returns response with indentations and line breaks. */
|
|
3028
3018
|
prettyPrint?: boolean;
|
|
@@ -3138,7 +3128,7 @@ declare namespace gapi.client {
|
|
|
3138
3128
|
orderBy?: string;
|
|
3139
3129
|
/** Optional. Maximum number of repositories to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
3140
3130
|
pageSize?: number;
|
|
3141
|
-
/** Optional. Page token received from a previous `ListRepositories` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRepositories` must match the call that provided the page token. */
|
|
3131
|
+
/** Optional. Page token received from a previous `ListRepositories` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRepositories`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
3142
3132
|
pageToken?: string;
|
|
3143
3133
|
/** Required. The location in which to list repositories. Must be in the format `projects/*/locations/*`. */
|
|
3144
3134
|
parent: string;
|
|
@@ -3235,7 +3225,7 @@ declare namespace gapi.client {
|
|
|
3235
3225
|
oauth_token?: string;
|
|
3236
3226
|
/** Optional. Maximum number of paths to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
3237
3227
|
pageSize?: number;
|
|
3238
|
-
/** Optional. Page token received from a previous `QueryRepositoryDirectoryContents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryRepositoryDirectoryContents` must match the call that provided the page token. */
|
|
3228
|
+
/** Optional. Page token received from a previous `QueryRepositoryDirectoryContents` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `QueryRepositoryDirectoryContents`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
3239
3229
|
pageToken?: string;
|
|
3240
3230
|
/** Optional. The directory's full path including directory name, relative to root. If left unset, the root is used. */
|
|
3241
3231
|
path?: string;
|