@maxim_mazurok/gapi.client.bigquery-v2 0.0.20240714 → 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 +11 -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://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240727
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -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;
|
|
@@ -2331,6 +2339,8 @@ declare namespace gapi.client {
|
|
|
2331
2339
|
fields?: TableFieldSchema[];
|
|
2332
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. */
|
|
2333
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;
|
|
2334
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". */
|
|
2335
2345
|
maxLength?: string;
|
|
2336
2346
|
/** Optional. The field mode. Possible values include NULLABLE, REQUIRED and REPEATED. The default value is NULLABLE. */
|