@maxim_mazurok/gapi.client.bigquery-v2 0.0.20230715 → 0.0.20230812
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 +85 -14
- package/package.json +2 -2
- package/tests.ts +89 -12
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: 20230812
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -245,6 +245,23 @@ declare namespace gapi.client {
|
|
|
245
245
|
biEngineReasons?:
|
|
246
246
|
BiEngineReason[];
|
|
247
247
|
}
|
|
248
|
+
interface BigLakeConfiguration {
|
|
249
|
+
/** [Required] Required and immutable. Credential reference for accessing external storage system. Normalized as project_id.location_id.connection_id. */
|
|
250
|
+
connectionId?:
|
|
251
|
+
string;
|
|
252
|
+
/** [Required] Required and immutable. Open source file format that the table data is stored in. Currently only PARQUET is supported. */
|
|
253
|
+
fileFormat?:
|
|
254
|
+
string;
|
|
255
|
+
/**
|
|
256
|
+
* [Required] Required and immutable. Fully qualified location prefix of the external folder where data is stored. Normalized to standard format: "gs:////". Starts with "gs://" rather
|
|
257
|
+
* than "/bigstore/". Ends with "/". Does not contain "*". See also BigLakeStorageMetadata on how it is used.
|
|
258
|
+
*/
|
|
259
|
+
storageUri?:
|
|
260
|
+
string;
|
|
261
|
+
/** [Required] Required and immutable. Open source file format that the table data is stored in. Currently only PARQUET is supported. */
|
|
262
|
+
tableFormat?:
|
|
263
|
+
string;
|
|
264
|
+
}
|
|
248
265
|
interface BigQueryModelTraining {
|
|
249
266
|
/** [Output-only, Beta] Index of current ML training iteration. Updated during create model query job to show job progress. */
|
|
250
267
|
currentIteration?:
|
|
@@ -708,6 +725,9 @@ declare namespace gapi.client {
|
|
|
708
725
|
/** [Output-only] A hash of the resource. */
|
|
709
726
|
etag?:
|
|
710
727
|
string;
|
|
728
|
+
/** [Optional] Information about the external metadata storage where the dataset is defined. Filled out when the dataset type is EXTERNAL. */
|
|
729
|
+
externalDatasetReference?:
|
|
730
|
+
ExternalDatasetReference;
|
|
711
731
|
/** [Optional] A descriptive name for the dataset. */
|
|
712
732
|
friendlyName?:
|
|
713
733
|
string;
|
|
@@ -1154,6 +1174,14 @@ declare namespace gapi.client {
|
|
|
1154
1174
|
sourceUris?:
|
|
1155
1175
|
string[];
|
|
1156
1176
|
}
|
|
1177
|
+
interface ExternalDatasetReference {
|
|
1178
|
+
/** [Required] The connection id that is used to access the external_source. Format: projects/{project_id}/locations/{location_id}/connections/{connection_id} */
|
|
1179
|
+
connection?:
|
|
1180
|
+
string;
|
|
1181
|
+
/** [Required] External source that backs this dataset. */
|
|
1182
|
+
externalSource?:
|
|
1183
|
+
string;
|
|
1184
|
+
}
|
|
1157
1185
|
interface FeatureValue {
|
|
1158
1186
|
/** The categorical feature value. */
|
|
1159
1187
|
categoricalValue?:
|
|
@@ -1393,13 +1421,13 @@ declare namespace gapi.client {
|
|
|
1393
1421
|
}
|
|
1394
1422
|
interface IndexUnusedReason {
|
|
1395
1423
|
/** [Output-only] Specifies the base table involved in the reason that no search index was used. */
|
|
1396
|
-
|
|
1424
|
+
baseTable?:
|
|
1397
1425
|
TableReference;
|
|
1398
1426
|
/** [Output-only] Specifies the high-level reason for the scenario when no search index was used. */
|
|
1399
1427
|
code?:
|
|
1400
1428
|
string;
|
|
1401
1429
|
/** [Output-only] Specifies the name of the unused search index, if available. */
|
|
1402
|
-
|
|
1430
|
+
indexName?:
|
|
1403
1431
|
string;
|
|
1404
1432
|
/** [Output-only] Free form human-readable reason for the scenario when no search index was used. */
|
|
1405
1433
|
message?:
|
|
@@ -2181,10 +2209,10 @@ declare namespace gapi.client {
|
|
|
2181
2209
|
}
|
|
2182
2210
|
interface JobStatistics5 {
|
|
2183
2211
|
/** [Output-only] Number of logical bytes copied to the destination table. */
|
|
2184
|
-
|
|
2212
|
+
copiedLogicalBytes?:
|
|
2185
2213
|
string;
|
|
2186
2214
|
/** [Output-only] Number of rows copied to the destination table. */
|
|
2187
|
-
|
|
2215
|
+
copiedRows?:
|
|
2188
2216
|
string;
|
|
2189
2217
|
}
|
|
2190
2218
|
interface JobStatus {
|
|
@@ -2247,7 +2275,7 @@ declare namespace gapi.client {
|
|
|
2247
2275
|
}
|
|
2248
2276
|
interface MaterializedViewDefinition {
|
|
2249
2277
|
/** [Optional] Allow non incremental materialized view definition. The default value is "false". */
|
|
2250
|
-
|
|
2278
|
+
allowNonIncrementalDefinition?:
|
|
2251
2279
|
boolean;
|
|
2252
2280
|
/** [Optional] [TrustedTester] Enable automatic refresh of the materialized view when the base table is updated. The default value is "true". */
|
|
2253
2281
|
enableRefresh?:
|
|
@@ -2787,6 +2815,9 @@ declare namespace gapi.client {
|
|
|
2787
2815
|
/** Output only. Max number of rows in each batch sent to the remote service. If unset, the number of rows in each batch is set dynamically. */
|
|
2788
2816
|
maxBatchingRows?:
|
|
2789
2817
|
string;
|
|
2818
|
+
/** Output only. The model version for LLM. */
|
|
2819
|
+
remoteModelVersion?:
|
|
2820
|
+
string;
|
|
2790
2821
|
/** Output only. The remote service type for remote model. */
|
|
2791
2822
|
remoteServiceType?:
|
|
2792
2823
|
string;
|
|
@@ -2798,6 +2829,9 @@ declare namespace gapi.client {
|
|
|
2798
2829
|
/** Output only. The time when this routine was created, in milliseconds since the epoch. */
|
|
2799
2830
|
creationTime?:
|
|
2800
2831
|
string;
|
|
2832
|
+
/** Optional. Data governance specific option, if the value is DATA_MASKING, the function will be validated as masking functions. */
|
|
2833
|
+
dataGovernanceType?:
|
|
2834
|
+
string;
|
|
2801
2835
|
/**
|
|
2802
2836
|
* Required. The body of the routine. For functions, this is the expression in the AS clause. If language=SQL, it is the substring inside (but excluding) the parentheses. For example,
|
|
2803
2837
|
* for the function created with the following statement: `CREATE FUNCTION JoinLines(x string, y string) as (concat(x, "\n", y))` The definition_body is `concat(x, "\n", y)` (\n is not
|
|
@@ -2954,7 +2988,7 @@ declare namespace gapi.client {
|
|
|
2954
2988
|
* When index_usage_mode is UNUSED or PARTIALLY_USED, this field explains why index was not used in all or part of the search query. If index_usage_mode is FULLLY_USED, this field is
|
|
2955
2989
|
* not populated.
|
|
2956
2990
|
*/
|
|
2957
|
-
|
|
2991
|
+
indexUnusedReasons?:
|
|
2958
2992
|
IndexUnusedReason[];
|
|
2959
2993
|
/** Specifies index usage mode for the query. */
|
|
2960
2994
|
indexUsageMode?:
|
|
@@ -3045,19 +3079,22 @@ declare namespace gapi.client {
|
|
|
3045
3079
|
endpoints?:
|
|
3046
3080
|
{ [P in string]: string };
|
|
3047
3081
|
/** [Output-only] Logging info is used to generate a link to Cloud Logging. */
|
|
3048
|
-
|
|
3082
|
+
loggingInfo?:
|
|
3049
3083
|
SparkLoggingInfo;
|
|
3050
3084
|
/** [Output-only] Spark job id if a Spark job is created successfully. */
|
|
3051
|
-
|
|
3085
|
+
sparkJobId?:
|
|
3052
3086
|
string;
|
|
3053
3087
|
/** [Output-only] Location where the Spark job is executed. */
|
|
3054
|
-
|
|
3088
|
+
sparkJobLocation?:
|
|
3055
3089
|
string;
|
|
3056
3090
|
}
|
|
3057
3091
|
interface StandardSqlDataType {
|
|
3058
3092
|
/** The type of the array's elements, if type_kind = "ARRAY". */
|
|
3059
3093
|
arrayElementType?:
|
|
3060
3094
|
StandardSqlDataType;
|
|
3095
|
+
/** The type of the range's elements, if type_kind = "RANGE". */
|
|
3096
|
+
rangeElementType?:
|
|
3097
|
+
StandardSqlDataType;
|
|
3061
3098
|
/** The fields of this struct, in order, if type_kind = "STRUCT". */
|
|
3062
3099
|
structType?:
|
|
3063
3100
|
StandardSqlStructType;
|
|
@@ -3102,6 +3139,9 @@ declare namespace gapi.client {
|
|
|
3102
3139
|
string[];
|
|
3103
3140
|
}
|
|
3104
3141
|
interface Table {
|
|
3142
|
+
/** [Optional] Specifies the configuration of a BigLake managed table. */
|
|
3143
|
+
biglakeConfiguration?:
|
|
3144
|
+
BigLakeConfiguration;
|
|
3105
3145
|
/** [Output-only] Clone definition. */
|
|
3106
3146
|
cloneDefinition?:
|
|
3107
3147
|
CloneDefinition;
|
|
@@ -3407,6 +3447,16 @@ declare namespace gapi.client {
|
|
|
3407
3447
|
*/
|
|
3408
3448
|
precision?:
|
|
3409
3449
|
string;
|
|
3450
|
+
/**
|
|
3451
|
+
* Optional. The subtype of the RANGE, if the type of this field is RANGE. If the type is RANGE, this field is required. Possible values for the field element type of a RANGE include:
|
|
3452
|
+
* - DATE - DATETIME - TIMESTAMP
|
|
3453
|
+
*/
|
|
3454
|
+
rangeElementType?:
|
|
3455
|
+
{
|
|
3456
|
+
/** The field element type of a RANGE */
|
|
3457
|
+
type?:
|
|
3458
|
+
string;
|
|
3459
|
+
};
|
|
3410
3460
|
/** Optional. Rounding Mode specification of the field. It only can be set on NUMERIC or BIGNUMERIC type fields. */
|
|
3411
3461
|
roundingMode?:
|
|
3412
3462
|
string;
|
|
@@ -3571,6 +3621,9 @@ declare namespace gapi.client {
|
|
|
3571
3621
|
/** Whether or not p-value test should be computed for this model. Only available for linear and logistic regression models. */
|
|
3572
3622
|
calculatePValues?:
|
|
3573
3623
|
boolean;
|
|
3624
|
+
/** Categorical feature encoding method. */
|
|
3625
|
+
categoryEncodingMethod?:
|
|
3626
|
+
string;
|
|
3574
3627
|
/** If true, clean spikes and dips in the input time series. */
|
|
3575
3628
|
cleanSpikesAndDips?:
|
|
3576
3629
|
boolean;
|
|
@@ -3636,6 +3689,9 @@ declare namespace gapi.client {
|
|
|
3636
3689
|
/** The geographical region based on which the holidays are considered in time series modeling. If a valid value is specified, then holiday effects modeling is enabled. */
|
|
3637
3690
|
holidayRegion?:
|
|
3638
3691
|
string;
|
|
3692
|
+
/** A list of geographical regions that are used for time series modeling. */
|
|
3693
|
+
holidayRegions?:
|
|
3694
|
+
string[];
|
|
3639
3695
|
/** The number of periods ahead that need to be forecasted. */
|
|
3640
3696
|
horizon?:
|
|
3641
3697
|
string;
|
|
@@ -3693,7 +3749,10 @@ declare namespace gapi.client {
|
|
|
3693
3749
|
/** Maximum number of trials to run in parallel. */
|
|
3694
3750
|
maxParallelTrials?:
|
|
3695
3751
|
string;
|
|
3696
|
-
/**
|
|
3752
|
+
/**
|
|
3753
|
+
* The maximum number of time points in a time series that can be used in modeling the trend component of the time series. Don't use this option with the `timeSeriesLengthFraction` or
|
|
3754
|
+
* `minTimeSeriesLength` options.
|
|
3755
|
+
*/
|
|
3697
3756
|
maxTimeSeriesLength?:
|
|
3698
3757
|
string;
|
|
3699
3758
|
/** Maximum depth of a tree for boosted tree models. */
|
|
@@ -3705,7 +3764,12 @@ declare namespace gapi.client {
|
|
|
3705
3764
|
/** Minimum split loss for boosted tree models. */
|
|
3706
3765
|
minSplitLoss?:
|
|
3707
3766
|
number;
|
|
3708
|
-
/**
|
|
3767
|
+
/**
|
|
3768
|
+
* The minimum number of time points in a time series that are used in modeling the trend component of the time series. If you use this option you must also set the
|
|
3769
|
+
* `timeSeriesLengthFraction` option. This training option ensures that enough time points are available when you use `timeSeriesLengthFraction` in trend modeling. This is particularly
|
|
3770
|
+
* important when forecasting multiple time series in a single query using `timeSeriesIdColumn`. If the total number of time points is less than the `minTimeSeriesLength` value, then
|
|
3771
|
+
* the query uses all available time points.
|
|
3772
|
+
*/
|
|
3709
3773
|
minTimeSeriesLength?:
|
|
3710
3774
|
string;
|
|
3711
3775
|
/** Minimum sum of instance weight needed in a child for boosted tree models. */
|
|
@@ -3771,7 +3835,11 @@ declare namespace gapi.client {
|
|
|
3771
3835
|
/** The time series id columns that were used during ARIMA model training. */
|
|
3772
3836
|
timeSeriesIdColumns?:
|
|
3773
3837
|
string[];
|
|
3774
|
-
/**
|
|
3838
|
+
/**
|
|
3839
|
+
* The fraction of the interpolated length of the time series that's used to model the time series trend component. All of the time points of the time series are used to model the
|
|
3840
|
+
* non-trend component. This training option accelerates modeling training without sacrificing much forecasting accuracy. You can use this option with `minTimeSeriesLength` but not
|
|
3841
|
+
* with `maxTimeSeriesLength`.
|
|
3842
|
+
*/
|
|
3775
3843
|
timeSeriesLengthFraction?:
|
|
3776
3844
|
number;
|
|
3777
3845
|
/** Column to be designated as time series timestamp for ARIMA model. */
|
|
@@ -3780,7 +3848,10 @@ declare namespace gapi.client {
|
|
|
3780
3848
|
/** Tree construction algorithm for boosted tree models. */
|
|
3781
3849
|
treeMethod?:
|
|
3782
3850
|
string;
|
|
3783
|
-
/**
|
|
3851
|
+
/**
|
|
3852
|
+
* Smoothing window size for the trend component. When a positive value is specified, a center moving average smoothing is applied on the history trend. When the smoothing window is
|
|
3853
|
+
* out of the boundary at the beginning or the end of the trend, the first element or the last element is padded to fill the smoothing window before the average is applied.
|
|
3854
|
+
*/
|
|
3784
3855
|
trendSmoothingWindowSize?:
|
|
3785
3856
|
string;
|
|
3786
3857
|
/** User column specified for matrix factorization models. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maxim_mazurok/gapi.client.bigquery-v2",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20230812",
|
|
4
4
|
"description": "TypeScript typings for BigQuery API v2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -15,6 +15,6 @@
|
|
|
15
15
|
"types": "index.d.ts",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@types/gapi.client": "*",
|
|
18
|
-
"@types/gapi.client.discovery": "*"
|
|
18
|
+
"@types/gapi.client.discovery-v1": "*"
|
|
19
19
|
}
|
|
20
20
|
}
|
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230812
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -102,6 +102,10 @@ gapi.load('client', async () => {
|
|
|
102
102
|
defaultTableExpirationMs: "Test string",
|
|
103
103
|
description: "Test string",
|
|
104
104
|
etag: "Test string",
|
|
105
|
+
externalDatasetReference: {
|
|
106
|
+
connection: "Test string",
|
|
107
|
+
externalSource: "Test string",
|
|
108
|
+
},
|
|
105
109
|
friendlyName: "Test string",
|
|
106
110
|
id: "Test string",
|
|
107
111
|
isCaseInsensitive: true,
|
|
@@ -181,6 +185,10 @@ gapi.load('client', async () => {
|
|
|
181
185
|
defaultTableExpirationMs: "Test string",
|
|
182
186
|
description: "Test string",
|
|
183
187
|
etag: "Test string",
|
|
188
|
+
externalDatasetReference: {
|
|
189
|
+
connection: "Test string",
|
|
190
|
+
externalSource: "Test string",
|
|
191
|
+
},
|
|
184
192
|
friendlyName: "Test string",
|
|
185
193
|
id: "Test string",
|
|
186
194
|
isCaseInsensitive: true,
|
|
@@ -252,6 +260,10 @@ gapi.load('client', async () => {
|
|
|
252
260
|
defaultTableExpirationMs: "Test string",
|
|
253
261
|
description: "Test string",
|
|
254
262
|
etag: "Test string",
|
|
263
|
+
externalDatasetReference: {
|
|
264
|
+
connection: "Test string",
|
|
265
|
+
externalSource: "Test string",
|
|
266
|
+
},
|
|
255
267
|
friendlyName: "Test string",
|
|
256
268
|
id: "Test string",
|
|
257
269
|
isCaseInsensitive: true,
|
|
@@ -454,6 +466,9 @@ gapi.load('client', async () => {
|
|
|
454
466
|
],
|
|
455
467
|
},
|
|
456
468
|
precision: "Test string",
|
|
469
|
+
rangeElementType: {
|
|
470
|
+
type: "Test string",
|
|
471
|
+
},
|
|
457
472
|
roundingMode: "Test string",
|
|
458
473
|
scale: "Test string",
|
|
459
474
|
type: "Test string",
|
|
@@ -635,6 +650,9 @@ gapi.load('client', async () => {
|
|
|
635
650
|
],
|
|
636
651
|
},
|
|
637
652
|
precision: "Test string",
|
|
653
|
+
rangeElementType: {
|
|
654
|
+
type: "Test string",
|
|
655
|
+
},
|
|
638
656
|
roundingMode: "Test string",
|
|
639
657
|
scale: "Test string",
|
|
640
658
|
type: "Test string",
|
|
@@ -676,8 +694,8 @@ gapi.load('client', async () => {
|
|
|
676
694
|
statistics: {
|
|
677
695
|
completionRatio: 42,
|
|
678
696
|
copy: {
|
|
679
|
-
|
|
680
|
-
|
|
697
|
+
copiedLogicalBytes: "Test string",
|
|
698
|
+
copiedRows: "Test string",
|
|
681
699
|
},
|
|
682
700
|
creationTime: "Test string",
|
|
683
701
|
dataMaskingStatistics: {
|
|
@@ -848,6 +866,9 @@ gapi.load('client', async () => {
|
|
|
848
866
|
],
|
|
849
867
|
},
|
|
850
868
|
precision: "Test string",
|
|
869
|
+
rangeElementType: {
|
|
870
|
+
type: "Test string",
|
|
871
|
+
},
|
|
851
872
|
roundingMode: "Test string",
|
|
852
873
|
scale: "Test string",
|
|
853
874
|
type: "Test string",
|
|
@@ -855,15 +876,15 @@ gapi.load('client', async () => {
|
|
|
855
876
|
],
|
|
856
877
|
},
|
|
857
878
|
searchStatistics: {
|
|
858
|
-
|
|
879
|
+
indexUnusedReasons: [
|
|
859
880
|
{
|
|
860
|
-
|
|
881
|
+
baseTable: {
|
|
861
882
|
datasetId: "Test string",
|
|
862
883
|
projectId: "Test string",
|
|
863
884
|
tableId: "Test string",
|
|
864
885
|
},
|
|
865
886
|
code: "Test string",
|
|
866
|
-
|
|
887
|
+
indexName: "Test string",
|
|
867
888
|
message: "Test string",
|
|
868
889
|
}
|
|
869
890
|
],
|
|
@@ -873,12 +894,12 @@ gapi.load('client', async () => {
|
|
|
873
894
|
endpoints: {
|
|
874
895
|
A: "Test string"
|
|
875
896
|
},
|
|
876
|
-
|
|
897
|
+
loggingInfo: {
|
|
877
898
|
project_id: "Test string",
|
|
878
899
|
resource_type: "Test string",
|
|
879
900
|
},
|
|
880
|
-
|
|
881
|
-
|
|
901
|
+
sparkJobId: "Test string",
|
|
902
|
+
sparkJobLocation: "Test string",
|
|
882
903
|
},
|
|
883
904
|
statementType: "Test string",
|
|
884
905
|
timeline: [
|
|
@@ -1084,6 +1105,7 @@ gapi.load('client', async () => {
|
|
|
1084
1105
|
name: "Test string",
|
|
1085
1106
|
type: {
|
|
1086
1107
|
arrayElementType: undefined,
|
|
1108
|
+
rangeElementType: undefined,
|
|
1087
1109
|
structType: {
|
|
1088
1110
|
fields: undefined,
|
|
1089
1111
|
},
|
|
@@ -1466,6 +1488,7 @@ gapi.load('client', async () => {
|
|
|
1466
1488
|
boosterType: "Test string",
|
|
1467
1489
|
budgetHours: 42,
|
|
1468
1490
|
calculatePValues: true,
|
|
1491
|
+
categoryEncodingMethod: "Test string",
|
|
1469
1492
|
cleanSpikesAndDips: true,
|
|
1470
1493
|
colorSpace: "Test string",
|
|
1471
1494
|
colsampleBylevel: 42,
|
|
@@ -1487,6 +1510,9 @@ gapi.load('client', async () => {
|
|
|
1487
1510
|
"Test string"
|
|
1488
1511
|
],
|
|
1489
1512
|
holidayRegion: "Test string",
|
|
1513
|
+
holidayRegions: [
|
|
1514
|
+
"Test string"
|
|
1515
|
+
],
|
|
1490
1516
|
horizon: "Test string",
|
|
1491
1517
|
hparamTuningObjectives: [
|
|
1492
1518
|
"Test string"
|
|
@@ -1712,6 +1738,7 @@ gapi.load('client', async () => {
|
|
|
1712
1738
|
name: "Test string",
|
|
1713
1739
|
type: {
|
|
1714
1740
|
arrayElementType: undefined,
|
|
1741
|
+
rangeElementType: undefined,
|
|
1715
1742
|
structType: {
|
|
1716
1743
|
fields: undefined,
|
|
1717
1744
|
},
|
|
@@ -1737,6 +1764,7 @@ gapi.load('client', async () => {
|
|
|
1737
1764
|
connection: "Test string",
|
|
1738
1765
|
endpoint: "Test string",
|
|
1739
1766
|
maxBatchingRows: "Test string",
|
|
1767
|
+
remoteModelVersion: "Test string",
|
|
1740
1768
|
remoteServiceType: "Test string",
|
|
1741
1769
|
},
|
|
1742
1770
|
trainingRuns: [
|
|
@@ -1945,6 +1973,7 @@ gapi.load('client', async () => {
|
|
|
1945
1973
|
boosterType: "Test string",
|
|
1946
1974
|
budgetHours: 42,
|
|
1947
1975
|
calculatePValues: true,
|
|
1976
|
+
categoryEncodingMethod: "Test string",
|
|
1948
1977
|
cleanSpikesAndDips: true,
|
|
1949
1978
|
colorSpace: "Test string",
|
|
1950
1979
|
colsampleBylevel: 42,
|
|
@@ -1966,6 +1995,9 @@ gapi.load('client', async () => {
|
|
|
1966
1995
|
"Test string"
|
|
1967
1996
|
],
|
|
1968
1997
|
holidayRegion: "Test string",
|
|
1998
|
+
holidayRegions: [
|
|
1999
|
+
"Test string"
|
|
2000
|
+
],
|
|
1969
2001
|
horizon: "Test string",
|
|
1970
2002
|
hparamTuningObjectives: [
|
|
1971
2003
|
"Test string"
|
|
@@ -2046,6 +2078,7 @@ gapi.load('client', async () => {
|
|
|
2046
2078
|
transformSql: "Test string",
|
|
2047
2079
|
type: {
|
|
2048
2080
|
arrayElementType: undefined,
|
|
2081
|
+
rangeElementType: undefined,
|
|
2049
2082
|
structType: {
|
|
2050
2083
|
fields: [
|
|
2051
2084
|
{
|
|
@@ -2091,6 +2124,7 @@ gapi.load('client', async () => {
|
|
|
2091
2124
|
argumentKind: "Test string",
|
|
2092
2125
|
dataType: {
|
|
2093
2126
|
arrayElementType: undefined,
|
|
2127
|
+
rangeElementType: undefined,
|
|
2094
2128
|
structType: {
|
|
2095
2129
|
fields: [
|
|
2096
2130
|
{
|
|
@@ -2106,6 +2140,7 @@ gapi.load('client', async () => {
|
|
|
2106
2140
|
}
|
|
2107
2141
|
],
|
|
2108
2142
|
creationTime: "Test string",
|
|
2143
|
+
dataGovernanceType: "Test string",
|
|
2109
2144
|
definitionBody: "Test string",
|
|
2110
2145
|
description: "Test string",
|
|
2111
2146
|
determinismLevel: "Test string",
|
|
@@ -2129,6 +2164,7 @@ gapi.load('client', async () => {
|
|
|
2129
2164
|
name: "Test string",
|
|
2130
2165
|
type: {
|
|
2131
2166
|
arrayElementType: undefined,
|
|
2167
|
+
rangeElementType: undefined,
|
|
2132
2168
|
structType: {
|
|
2133
2169
|
fields: undefined,
|
|
2134
2170
|
},
|
|
@@ -2139,6 +2175,7 @@ gapi.load('client', async () => {
|
|
|
2139
2175
|
},
|
|
2140
2176
|
returnType: {
|
|
2141
2177
|
arrayElementType: undefined,
|
|
2178
|
+
rangeElementType: undefined,
|
|
2142
2179
|
structType: {
|
|
2143
2180
|
fields: [
|
|
2144
2181
|
{
|
|
@@ -2199,6 +2236,7 @@ gapi.load('client', async () => {
|
|
|
2199
2236
|
argumentKind: "Test string",
|
|
2200
2237
|
dataType: {
|
|
2201
2238
|
arrayElementType: undefined,
|
|
2239
|
+
rangeElementType: undefined,
|
|
2202
2240
|
structType: {
|
|
2203
2241
|
fields: [
|
|
2204
2242
|
{
|
|
@@ -2214,6 +2252,7 @@ gapi.load('client', async () => {
|
|
|
2214
2252
|
}
|
|
2215
2253
|
],
|
|
2216
2254
|
creationTime: "Test string",
|
|
2255
|
+
dataGovernanceType: "Test string",
|
|
2217
2256
|
definitionBody: "Test string",
|
|
2218
2257
|
description: "Test string",
|
|
2219
2258
|
determinismLevel: "Test string",
|
|
@@ -2237,6 +2276,7 @@ gapi.load('client', async () => {
|
|
|
2237
2276
|
name: "Test string",
|
|
2238
2277
|
type: {
|
|
2239
2278
|
arrayElementType: undefined,
|
|
2279
|
+
rangeElementType: undefined,
|
|
2240
2280
|
structType: {
|
|
2241
2281
|
fields: undefined,
|
|
2242
2282
|
},
|
|
@@ -2247,6 +2287,7 @@ gapi.load('client', async () => {
|
|
|
2247
2287
|
},
|
|
2248
2288
|
returnType: {
|
|
2249
2289
|
arrayElementType: undefined,
|
|
2290
|
+
rangeElementType: undefined,
|
|
2250
2291
|
structType: {
|
|
2251
2292
|
fields: [
|
|
2252
2293
|
{
|
|
@@ -2370,6 +2411,12 @@ gapi.load('client', async () => {
|
|
|
2370
2411
|
datasetId: "Test string",
|
|
2371
2412
|
projectId: "Test string",
|
|
2372
2413
|
}, {
|
|
2414
|
+
biglakeConfiguration: {
|
|
2415
|
+
connectionId: "Test string",
|
|
2416
|
+
fileFormat: "Test string",
|
|
2417
|
+
storageUri: "Test string",
|
|
2418
|
+
tableFormat: "Test string",
|
|
2419
|
+
},
|
|
2373
2420
|
cloneDefinition: {
|
|
2374
2421
|
baseTableReference: {
|
|
2375
2422
|
datasetId: "Test string",
|
|
@@ -2480,6 +2527,9 @@ gapi.load('client', async () => {
|
|
|
2480
2527
|
],
|
|
2481
2528
|
},
|
|
2482
2529
|
precision: "Test string",
|
|
2530
|
+
rangeElementType: {
|
|
2531
|
+
type: "Test string",
|
|
2532
|
+
},
|
|
2483
2533
|
roundingMode: "Test string",
|
|
2484
2534
|
scale: "Test string",
|
|
2485
2535
|
type: "Test string",
|
|
@@ -2500,7 +2550,7 @@ gapi.load('client', async () => {
|
|
|
2500
2550
|
lastModifiedTime: "Test string",
|
|
2501
2551
|
location: "Test string",
|
|
2502
2552
|
materializedView: {
|
|
2503
|
-
|
|
2553
|
+
allowNonIncrementalDefinition: true,
|
|
2504
2554
|
enableRefresh: true,
|
|
2505
2555
|
lastRefreshTime: "Test string",
|
|
2506
2556
|
maxStaleness: "Test string",
|
|
@@ -2585,6 +2635,9 @@ gapi.load('client', async () => {
|
|
|
2585
2635
|
],
|
|
2586
2636
|
},
|
|
2587
2637
|
precision: "Test string",
|
|
2638
|
+
rangeElementType: {
|
|
2639
|
+
type: "Test string",
|
|
2640
|
+
},
|
|
2588
2641
|
roundingMode: "Test string",
|
|
2589
2642
|
scale: "Test string",
|
|
2590
2643
|
type: "Test string",
|
|
@@ -2669,6 +2722,12 @@ gapi.load('client', async () => {
|
|
|
2669
2722
|
projectId: "Test string",
|
|
2670
2723
|
tableId: "Test string",
|
|
2671
2724
|
}, {
|
|
2725
|
+
biglakeConfiguration: {
|
|
2726
|
+
connectionId: "Test string",
|
|
2727
|
+
fileFormat: "Test string",
|
|
2728
|
+
storageUri: "Test string",
|
|
2729
|
+
tableFormat: "Test string",
|
|
2730
|
+
},
|
|
2672
2731
|
cloneDefinition: {
|
|
2673
2732
|
baseTableReference: {
|
|
2674
2733
|
datasetId: "Test string",
|
|
@@ -2779,6 +2838,9 @@ gapi.load('client', async () => {
|
|
|
2779
2838
|
],
|
|
2780
2839
|
},
|
|
2781
2840
|
precision: "Test string",
|
|
2841
|
+
rangeElementType: {
|
|
2842
|
+
type: "Test string",
|
|
2843
|
+
},
|
|
2782
2844
|
roundingMode: "Test string",
|
|
2783
2845
|
scale: "Test string",
|
|
2784
2846
|
type: "Test string",
|
|
@@ -2799,7 +2861,7 @@ gapi.load('client', async () => {
|
|
|
2799
2861
|
lastModifiedTime: "Test string",
|
|
2800
2862
|
location: "Test string",
|
|
2801
2863
|
materializedView: {
|
|
2802
|
-
|
|
2864
|
+
allowNonIncrementalDefinition: true,
|
|
2803
2865
|
enableRefresh: true,
|
|
2804
2866
|
lastRefreshTime: "Test string",
|
|
2805
2867
|
maxStaleness: "Test string",
|
|
@@ -2884,6 +2946,9 @@ gapi.load('client', async () => {
|
|
|
2884
2946
|
],
|
|
2885
2947
|
},
|
|
2886
2948
|
precision: "Test string",
|
|
2949
|
+
rangeElementType: {
|
|
2950
|
+
type: "Test string",
|
|
2951
|
+
},
|
|
2887
2952
|
roundingMode: "Test string",
|
|
2888
2953
|
scale: "Test string",
|
|
2889
2954
|
type: "Test string",
|
|
@@ -3009,6 +3074,12 @@ gapi.load('client', async () => {
|
|
|
3009
3074
|
projectId: "Test string",
|
|
3010
3075
|
tableId: "Test string",
|
|
3011
3076
|
}, {
|
|
3077
|
+
biglakeConfiguration: {
|
|
3078
|
+
connectionId: "Test string",
|
|
3079
|
+
fileFormat: "Test string",
|
|
3080
|
+
storageUri: "Test string",
|
|
3081
|
+
tableFormat: "Test string",
|
|
3082
|
+
},
|
|
3012
3083
|
cloneDefinition: {
|
|
3013
3084
|
baseTableReference: {
|
|
3014
3085
|
datasetId: "Test string",
|
|
@@ -3119,6 +3190,9 @@ gapi.load('client', async () => {
|
|
|
3119
3190
|
],
|
|
3120
3191
|
},
|
|
3121
3192
|
precision: "Test string",
|
|
3193
|
+
rangeElementType: {
|
|
3194
|
+
type: "Test string",
|
|
3195
|
+
},
|
|
3122
3196
|
roundingMode: "Test string",
|
|
3123
3197
|
scale: "Test string",
|
|
3124
3198
|
type: "Test string",
|
|
@@ -3139,7 +3213,7 @@ gapi.load('client', async () => {
|
|
|
3139
3213
|
lastModifiedTime: "Test string",
|
|
3140
3214
|
location: "Test string",
|
|
3141
3215
|
materializedView: {
|
|
3142
|
-
|
|
3216
|
+
allowNonIncrementalDefinition: true,
|
|
3143
3217
|
enableRefresh: true,
|
|
3144
3218
|
lastRefreshTime: "Test string",
|
|
3145
3219
|
maxStaleness: "Test string",
|
|
@@ -3224,6 +3298,9 @@ gapi.load('client', async () => {
|
|
|
3224
3298
|
],
|
|
3225
3299
|
},
|
|
3226
3300
|
precision: "Test string",
|
|
3301
|
+
rangeElementType: {
|
|
3302
|
+
type: "Test string",
|
|
3303
|
+
},
|
|
3227
3304
|
roundingMode: "Test string",
|
|
3228
3305
|
scale: "Test string",
|
|
3229
3306
|
type: "Test string",
|