@maxim_mazurok/gapi.client.dataform-v1beta1 0.0.20240815 → 0.0.20240824
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 +108 -1
- 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: 20240824
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -163,6 +163,8 @@ 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;
|
|
166
168
|
/** The declaration declared by this action. */
|
|
167
169
|
declaration?: Declaration;
|
|
168
170
|
/** The full path including filename in which this action is located, relative to the workspace root. */
|
|
@@ -180,10 +182,26 @@ declare namespace gapi.client {
|
|
|
180
182
|
/** Indicates the status of the Git access token. */
|
|
181
183
|
tokenStatus?: string;
|
|
182
184
|
}
|
|
185
|
+
interface Config {
|
|
186
|
+
/** Optional. The default KMS key that is used if no encryption key is provided when a repository is created. */
|
|
187
|
+
defaultKmsKeyName?: string;
|
|
188
|
+
/** Identifier. The config name. */
|
|
189
|
+
name?: string;
|
|
190
|
+
}
|
|
183
191
|
interface DataEncryptionState {
|
|
184
192
|
/** The KMS key version name with which data of a resource is encrypted. */
|
|
185
193
|
kmsKeyVersionName?: string;
|
|
186
194
|
}
|
|
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
|
+
}
|
|
187
205
|
interface Declaration {
|
|
188
206
|
/** 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. */
|
|
189
207
|
relationDescriptor?: RelationDescriptor;
|
|
@@ -3356,6 +3374,33 @@ declare namespace gapi.client {
|
|
|
3356
3374
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3357
3375
|
uploadType?: string;
|
|
3358
3376
|
}): Request<Location>;
|
|
3377
|
+
/** Get default config for a given project and location. */
|
|
3378
|
+
getConfig(request?: {
|
|
3379
|
+
/** V1 error format. */
|
|
3380
|
+
'$.xgafv'?: string;
|
|
3381
|
+
/** OAuth access token. */
|
|
3382
|
+
access_token?: string;
|
|
3383
|
+
/** Data format for response. */
|
|
3384
|
+
alt?: string;
|
|
3385
|
+
/** JSONP */
|
|
3386
|
+
callback?: string;
|
|
3387
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3388
|
+
fields?: string;
|
|
3389
|
+
/** 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. */
|
|
3390
|
+
key?: string;
|
|
3391
|
+
/** Required. The config name. */
|
|
3392
|
+
name: string;
|
|
3393
|
+
/** OAuth 2.0 token for the current user. */
|
|
3394
|
+
oauth_token?: string;
|
|
3395
|
+
/** Returns response with indentations and line breaks. */
|
|
3396
|
+
prettyPrint?: boolean;
|
|
3397
|
+
/** 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. */
|
|
3398
|
+
quotaUser?: string;
|
|
3399
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3400
|
+
upload_protocol?: string;
|
|
3401
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3402
|
+
uploadType?: string;
|
|
3403
|
+
}): Request<Config>;
|
|
3359
3404
|
/** Lists information about the supported locations for this service. */
|
|
3360
3405
|
list(request?: {
|
|
3361
3406
|
/** V1 error format. */
|
|
@@ -3389,6 +3434,68 @@ declare namespace gapi.client {
|
|
|
3389
3434
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3390
3435
|
uploadType?: string;
|
|
3391
3436
|
}): Request<ListLocationsResponse>;
|
|
3437
|
+
/** Update default config for a given project and location. */
|
|
3438
|
+
updateConfig(request: {
|
|
3439
|
+
/** V1 error format. */
|
|
3440
|
+
'$.xgafv'?: string;
|
|
3441
|
+
/** OAuth access token. */
|
|
3442
|
+
access_token?: string;
|
|
3443
|
+
/** Data format for response. */
|
|
3444
|
+
alt?: string;
|
|
3445
|
+
/** JSONP */
|
|
3446
|
+
callback?: string;
|
|
3447
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3448
|
+
fields?: string;
|
|
3449
|
+
/** 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. */
|
|
3450
|
+
key?: string;
|
|
3451
|
+
/** Identifier. The config name. */
|
|
3452
|
+
name: string;
|
|
3453
|
+
/** OAuth 2.0 token for the current user. */
|
|
3454
|
+
oauth_token?: string;
|
|
3455
|
+
/** Returns response with indentations and line breaks. */
|
|
3456
|
+
prettyPrint?: boolean;
|
|
3457
|
+
/** 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. */
|
|
3458
|
+
quotaUser?: string;
|
|
3459
|
+
/** Optional. Specifies the fields to be updated in the config. */
|
|
3460
|
+
updateMask?: string;
|
|
3461
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3462
|
+
upload_protocol?: string;
|
|
3463
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3464
|
+
uploadType?: string;
|
|
3465
|
+
/** Request body */
|
|
3466
|
+
resource: Config;
|
|
3467
|
+
}): Request<Config>;
|
|
3468
|
+
updateConfig(
|
|
3469
|
+
request: {
|
|
3470
|
+
/** V1 error format. */
|
|
3471
|
+
'$.xgafv'?: string;
|
|
3472
|
+
/** OAuth access token. */
|
|
3473
|
+
access_token?: string;
|
|
3474
|
+
/** Data format for response. */
|
|
3475
|
+
alt?: string;
|
|
3476
|
+
/** JSONP */
|
|
3477
|
+
callback?: string;
|
|
3478
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3479
|
+
fields?: string;
|
|
3480
|
+
/** 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. */
|
|
3481
|
+
key?: string;
|
|
3482
|
+
/** Identifier. The config name. */
|
|
3483
|
+
name: string;
|
|
3484
|
+
/** OAuth 2.0 token for the current user. */
|
|
3485
|
+
oauth_token?: string;
|
|
3486
|
+
/** Returns response with indentations and line breaks. */
|
|
3487
|
+
prettyPrint?: boolean;
|
|
3488
|
+
/** 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. */
|
|
3489
|
+
quotaUser?: string;
|
|
3490
|
+
/** Optional. Specifies the fields to be updated in the config. */
|
|
3491
|
+
updateMask?: string;
|
|
3492
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3493
|
+
upload_protocol?: string;
|
|
3494
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3495
|
+
uploadType?: string;
|
|
3496
|
+
},
|
|
3497
|
+
body: Config
|
|
3498
|
+
): Request<Config>;
|
|
3392
3499
|
collections: CollectionsResource;
|
|
3393
3500
|
repositories: RepositoriesResource;
|
|
3394
3501
|
}
|