@maxim_mazurok/gapi.client.bigquery-v2 0.0.20240629 → 0.0.20240727
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 +15 -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://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240727
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -379,7 +379,7 @@ declare namespace gapi.client {
|
|
|
379
379
|
dataMaskingApplied?: boolean;
|
|
380
380
|
}
|
|
381
381
|
interface Dataset {
|
|
382
|
-
/** Optional. An array of objects that define dataset access for one or more entities. You can set this property when inserting or updating a dataset in order to control who is allowed to access the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the following entities: access.specialGroup: projectReaders; access.role: READER; access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners; access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER; */
|
|
382
|
+
/** Optional. An array of objects that define dataset access for one or more entities. You can set this property when inserting or updating a dataset in order to control who is allowed to access the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the following entities: access.specialGroup: projectReaders; access.role: READER; access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners; access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER; If you patch a dataset, then this field is overwritten by the patched dataset's access field. To add entities, you must supply the entire existing access array in addition to any new entities that you want to add. */
|
|
383
383
|
access?: Array<{
|
|
384
384
|
/** [Pick one] A grant authorizing all resources of a particular type in a particular dataset access to this dataset. Only views are supported for now. The role field is not required when this field is set. If that dataset is deleted and re-created, its access needs to be granted again via an update operation. */
|
|
385
385
|
dataset?: DatasetAccessEntry;
|
|
@@ -454,7 +454,7 @@ declare namespace gapi.client {
|
|
|
454
454
|
selfLink?: string;
|
|
455
455
|
/** Optional. Updates storage_billing_model for the dataset. */
|
|
456
456
|
storageBillingModel?: string;
|
|
457
|
-
/** Output only. Tags for the
|
|
457
|
+
/** Output only. Tags for the dataset. To provide tags as inputs, use the `resourceTags` field. */
|
|
458
458
|
tags?: Array<{
|
|
459
459
|
/** Required. The namespaced friendly name of the tag key, e.g. "12345/environment" where 12345 is org id. */
|
|
460
460
|
tagKey?: string;
|
|
@@ -927,6 +927,14 @@ declare namespace gapi.client {
|
|
|
927
927
|
/** 1-based index of the trial. */
|
|
928
928
|
trialId?: string;
|
|
929
929
|
}
|
|
930
|
+
interface IdentityColumnInfo {
|
|
931
|
+
/** Optional. Dictates when system generated values are used to populate the field. */
|
|
932
|
+
generatedMode?: string;
|
|
933
|
+
/** Optional. The minimum difference between two successive generated values. Should be INTEGER compatible. Can be negative or positive but not 0. The default value is 1 if the field is not specified. */
|
|
934
|
+
increment?: string;
|
|
935
|
+
/** Optional. The first generated value. Should be INTEGER compatible. The default value is 1 if the field is not specified. */
|
|
936
|
+
start?: string;
|
|
937
|
+
}
|
|
930
938
|
interface IndexUnusedReason {
|
|
931
939
|
/** Specifies the base table involved in the reason that no search index was used. */
|
|
932
940
|
baseTable?: TableReference;
|
|
@@ -1257,6 +1265,8 @@ declare namespace gapi.client {
|
|
|
1257
1265
|
creationTime?: string;
|
|
1258
1266
|
/** Output only. Statistics for data-masking. Present only for query and extract jobs. */
|
|
1259
1267
|
dataMaskingStatistics?: DataMaskingStatistics;
|
|
1268
|
+
/** Output only. Name of edition corresponding to the reservation for this job at the time of this update. */
|
|
1269
|
+
edition?: string;
|
|
1260
1270
|
/** Output only. End time of this job, in milliseconds since the epoch. This field will be present whenever a job is in the DONE state. */
|
|
1261
1271
|
endTime?: string;
|
|
1262
1272
|
/** Output only. Statistics for an extract job. */
|
|
@@ -2329,6 +2339,8 @@ declare namespace gapi.client {
|
|
|
2329
2339
|
fields?: TableFieldSchema[];
|
|
2330
2340
|
/** Optional. Definition of the foreign data type. Only valid for top-level schema fields (not nested fields). If the type is FOREIGN, this field is required. */
|
|
2331
2341
|
foreignTypeDefinition?: string;
|
|
2342
|
+
/** Optional. Definition of how values are generated for the field. Setting this option means that the field is an identity column. Only valid for top-level schema INTEGER fields (not nested fields). */
|
|
2343
|
+
identityColumnInfo?: IdentityColumnInfo;
|
|
2332
2344
|
/** Optional. Maximum length of values of this field for STRINGS or BYTES. If max_length is not specified, no maximum length constraint is imposed on this field. If type = "STRING", then max_length represents the maximum UTF-8 length of strings in this field. If type = "BYTES", then max_length represents the maximum number of bytes in this field. It is invalid to set this field if type ≠ "STRING" and ≠ "BYTES". */
|
|
2333
2345
|
maxLength?: string;
|
|
2334
2346
|
/** Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE. */
|