@maxim_mazurok/gapi.client.dataform-v1beta1 0.0.20240815 → 0.0.20241020

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.
Files changed (2) hide show
  1. package/index.d.ts +113 -16
  2. 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: 20240815
12
+ // Revision: 20241020
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -180,6 +180,12 @@ declare namespace gapi.client {
180
180
  /** Indicates the status of the Git access token. */
181
181
  tokenStatus?: string;
182
182
  }
183
+ interface Config {
184
+ /** Optional. The default KMS key that is used if no encryption key is provided when a repository is created. */
185
+ defaultKmsKeyName?: string;
186
+ /** Identifier. The config name. */
187
+ name?: string;
188
+ }
183
189
  interface DataEncryptionState {
184
190
  /** The KMS key version name with which data of a resource is encrypted. */
185
191
  kmsKeyVersionName?: string;
@@ -526,7 +532,7 @@ declare namespace gapi.client {
526
532
  gitCommitish?: string;
527
533
  /** Identifier. The release config's name. */
528
534
  name?: string;
529
- /** Output only. Records of the 10 most recent scheduled release attempts, ordered in in descending order of `release_time`. Updated whenever automatic creation of a compilation result is triggered by cron_schedule. */
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. */
530
536
  recentScheduledReleaseRecords?: ScheduledReleaseRecord[];
531
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/*`. */
532
538
  releaseCompilationResult?: string;
@@ -550,7 +556,7 @@ declare namespace gapi.client {
550
556
  displayName?: string;
551
557
  /** Optional. If set, configures this repository to be linked to a Git remote. */
552
558
  gitRemoteSettings?: GitRemoteSettings;
553
- /** 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_id]/locations/[region]/keyRings/[key_region]/cryptoKeys/[key]` */
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}` */
554
560
  kmsKeyName?: string;
555
561
  /** Optional. Repository user labels. */
556
562
  labels?: {[P in string]: string};
@@ -648,7 +654,7 @@ declare namespace gapi.client {
648
654
  invocationConfig?: InvocationConfig;
649
655
  /** Identifier. The workflow config's name. */
650
656
  name?: string;
651
- /** Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule. */
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. */
652
658
  recentScheduledExecutionRecords?: ScheduledExecutionRecord[];
653
659
  /** Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*‍/locations/*‍/repositories/*‍/releaseConfigs/*`. */
654
660
  releaseConfig?: string;
@@ -692,6 +698,8 @@ declare namespace gapi.client {
692
698
  target?: Target;
693
699
  }
694
700
  interface Workspace {
701
+ /** Output only. The timestamp of when the workspace was created. */
702
+ createTime?: string;
695
703
  /** Output only. A data encryption state of a Git repository if this Workspace is protected by a KMS key. */
696
704
  dataEncryptionState?: DataEncryptionState;
697
705
  /** Identifier. The workspace's name. */
@@ -1038,7 +1046,7 @@ declare namespace gapi.client {
1038
1046
  orderBy?: string;
1039
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. */
1040
1048
  pageSize?: number;
1041
- /** 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. */
1042
1050
  pageToken?: string;
1043
1051
  /** Required. The repository in which to list compilation results. Must be in the format `projects/*‍/locations/*‍/repositories/*`. */
1044
1052
  parent: string;
@@ -1073,7 +1081,7 @@ declare namespace gapi.client {
1073
1081
  oauth_token?: string;
1074
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. */
1075
1083
  pageSize?: number;
1076
- /** 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. */
1077
1085
  pageToken?: string;
1078
1086
  /** Returns response with indentations and line breaks. */
1079
1087
  prettyPrint?: boolean;
@@ -1220,7 +1228,7 @@ declare namespace gapi.client {
1220
1228
  oauth_token?: string;
1221
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. */
1222
1230
  pageSize?: number;
1223
- /** 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. */
1224
1232
  pageToken?: string;
1225
1233
  /** Required. The repository in which to list release configs. Must be in the format `projects/*‍/locations/*‍/repositories/*`. */
1226
1234
  parent: string;
@@ -1431,7 +1439,7 @@ declare namespace gapi.client {
1431
1439
  oauth_token?: string;
1432
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. */
1433
1441
  pageSize?: number;
1434
- /** 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. */
1435
1443
  pageToken?: string;
1436
1444
  /** Required. The repository in which to list workflow configs. Must be in the format `projects/*‍/locations/*‍/repositories/*`. */
1437
1445
  parent: string;
@@ -1700,7 +1708,7 @@ declare namespace gapi.client {
1700
1708
  orderBy?: string;
1701
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. */
1702
1710
  pageSize?: number;
1703
- /** 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. */
1704
1712
  pageToken?: string;
1705
1713
  /** Required. The parent resource of the WorkflowInvocation type. Must be in the format `projects/*‍/locations/*‍/repositories/*`. */
1706
1714
  parent: string;
@@ -1733,7 +1741,7 @@ declare namespace gapi.client {
1733
1741
  oauth_token?: string;
1734
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. */
1735
1743
  pageSize?: number;
1736
- /** 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. */
1737
1745
  pageToken?: string;
1738
1746
  /** Returns response with indentations and line breaks. */
1739
1747
  prettyPrint?: boolean;
@@ -2114,7 +2122,7 @@ declare namespace gapi.client {
2114
2122
  orderBy?: string;
2115
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. */
2116
2124
  pageSize?: number;
2117
- /** 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. */
2118
2126
  pageToken?: string;
2119
2127
  /** Required. The repository in which to list workspaces. Must be in the format `projects/*‍/locations/*‍/repositories/*`. */
2120
2128
  parent: string;
@@ -2435,7 +2443,7 @@ declare namespace gapi.client {
2435
2443
  oauth_token?: string;
2436
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. */
2437
2445
  pageSize?: number;
2438
- /** 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. */
2439
2447
  pageToken?: string;
2440
2448
  /** Optional. The directory's full path including directory name, relative to the workspace root. If left unset, the workspace root is used. */
2441
2449
  path?: string;
@@ -2675,7 +2683,7 @@ declare namespace gapi.client {
2675
2683
  oauth_token?: string;
2676
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. */
2677
2685
  pageSize?: number;
2678
- /** 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. */
2679
2687
  pageToken?: string;
2680
2688
  /** Returns response with indentations and line breaks. */
2681
2689
  prettyPrint?: boolean;
@@ -3004,7 +3012,7 @@ declare namespace gapi.client {
3004
3012
  oauth_token?: string;
3005
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. */
3006
3014
  pageSize?: number;
3007
- /** 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. */
3008
3016
  pageToken?: string;
3009
3017
  /** Returns response with indentations and line breaks. */
3010
3018
  prettyPrint?: boolean;
@@ -3120,7 +3128,7 @@ declare namespace gapi.client {
3120
3128
  orderBy?: string;
3121
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. */
3122
3130
  pageSize?: number;
3123
- /** 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. */
3124
3132
  pageToken?: string;
3125
3133
  /** Required. The location in which to list repositories. Must be in the format `projects/*‍/locations/*`. */
3126
3134
  parent: string;
@@ -3217,7 +3225,7 @@ declare namespace gapi.client {
3217
3225
  oauth_token?: string;
3218
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. */
3219
3227
  pageSize?: number;
3220
- /** 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. */
3221
3229
  pageToken?: string;
3222
3230
  /** Optional. The directory's full path including directory name, relative to root. If left unset, the root is used. */
3223
3231
  path?: string;
@@ -3356,6 +3364,33 @@ declare namespace gapi.client {
3356
3364
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3357
3365
  uploadType?: string;
3358
3366
  }): Request<Location>;
3367
+ /** Get default config for a given project and location. */
3368
+ getConfig(request?: {
3369
+ /** V1 error format. */
3370
+ '$.xgafv'?: string;
3371
+ /** OAuth access token. */
3372
+ access_token?: string;
3373
+ /** Data format for response. */
3374
+ alt?: string;
3375
+ /** JSONP */
3376
+ callback?: string;
3377
+ /** Selector specifying which fields to include in a partial response. */
3378
+ fields?: string;
3379
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3380
+ key?: string;
3381
+ /** Required. The config name. */
3382
+ name: string;
3383
+ /** OAuth 2.0 token for the current user. */
3384
+ oauth_token?: string;
3385
+ /** Returns response with indentations and line breaks. */
3386
+ prettyPrint?: boolean;
3387
+ /** 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. */
3388
+ quotaUser?: string;
3389
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3390
+ upload_protocol?: string;
3391
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3392
+ uploadType?: string;
3393
+ }): Request<Config>;
3359
3394
  /** Lists information about the supported locations for this service. */
3360
3395
  list(request?: {
3361
3396
  /** V1 error format. */
@@ -3389,6 +3424,68 @@ declare namespace gapi.client {
3389
3424
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3390
3425
  uploadType?: string;
3391
3426
  }): Request<ListLocationsResponse>;
3427
+ /** Update default config for a given project and location. */
3428
+ updateConfig(request: {
3429
+ /** V1 error format. */
3430
+ '$.xgafv'?: string;
3431
+ /** OAuth access token. */
3432
+ access_token?: string;
3433
+ /** Data format for response. */
3434
+ alt?: string;
3435
+ /** JSONP */
3436
+ callback?: string;
3437
+ /** Selector specifying which fields to include in a partial response. */
3438
+ fields?: string;
3439
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3440
+ key?: string;
3441
+ /** Identifier. The config name. */
3442
+ name: string;
3443
+ /** OAuth 2.0 token for the current user. */
3444
+ oauth_token?: string;
3445
+ /** Returns response with indentations and line breaks. */
3446
+ prettyPrint?: boolean;
3447
+ /** 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. */
3448
+ quotaUser?: string;
3449
+ /** Optional. Specifies the fields to be updated in the config. */
3450
+ updateMask?: string;
3451
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3452
+ upload_protocol?: string;
3453
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3454
+ uploadType?: string;
3455
+ /** Request body */
3456
+ resource: Config;
3457
+ }): Request<Config>;
3458
+ updateConfig(
3459
+ request: {
3460
+ /** V1 error format. */
3461
+ '$.xgafv'?: string;
3462
+ /** OAuth access token. */
3463
+ access_token?: string;
3464
+ /** Data format for response. */
3465
+ alt?: string;
3466
+ /** JSONP */
3467
+ callback?: string;
3468
+ /** Selector specifying which fields to include in a partial response. */
3469
+ fields?: string;
3470
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3471
+ key?: string;
3472
+ /** Identifier. The config name. */
3473
+ name: string;
3474
+ /** OAuth 2.0 token for the current user. */
3475
+ oauth_token?: string;
3476
+ /** Returns response with indentations and line breaks. */
3477
+ prettyPrint?: boolean;
3478
+ /** 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. */
3479
+ quotaUser?: string;
3480
+ /** Optional. Specifies the fields to be updated in the config. */
3481
+ updateMask?: string;
3482
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3483
+ upload_protocol?: string;
3484
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3485
+ uploadType?: string;
3486
+ },
3487
+ body: Config
3488
+ ): Request<Config>;
3392
3489
  collections: CollectionsResource;
3393
3490
  repositories: RepositoriesResource;
3394
3491
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dataform-v1beta1",
3
- "version": "0.0.20240815",
3
+ "version": "0.0.20241020",
4
4
  "description": "TypeScript typings for Dataform API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",