@maxim_mazurok/gapi.client.bigquery-v2 0.1.20260612 → 0.2.20260620
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 +50 -69
- 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: 20260620
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -176,6 +176,24 @@ declare namespace gapi.client {
|
|
|
176
176
|
/** The tuple of time_series_ids identifying this time series. It will be one of the unique tuples of values present in the time_series_id_columns specified during ARIMA model training. Only present when time_series_id_columns training option was used and the order of values here are same as the order of time_series_id_columns. */
|
|
177
177
|
timeSeriesIds?: string[];
|
|
178
178
|
}
|
|
179
|
+
interface ArrowRecordBatch {
|
|
180
|
+
/** IPC-serialized Arrow RecordBatch. */
|
|
181
|
+
serializedRecordBatch?: string;
|
|
182
|
+
}
|
|
183
|
+
interface ArrowSchema {
|
|
184
|
+
/** IPC serialized Arrow schema. */
|
|
185
|
+
serializedSchema?: string;
|
|
186
|
+
}
|
|
187
|
+
interface ArrowSerializationOptions {
|
|
188
|
+
/** The compression codec to use for Arrow buffers in serialized record batches. */
|
|
189
|
+
bufferCompression?: 'COMPRESSION_UNSPECIFIED' | 'LZ4_FRAME' | 'ZSTD';
|
|
190
|
+
/** Optional. Set timestamp precision option. If not set, the default precision is microseconds. */
|
|
191
|
+
picosTimestampPrecision?:
|
|
192
|
+
| 'PICOS_TIMESTAMP_PRECISION_UNSPECIFIED'
|
|
193
|
+
| 'TIMESTAMP_PRECISION_MICROS'
|
|
194
|
+
| 'TIMESTAMP_PRECISION_NANOS'
|
|
195
|
+
| 'TIMESTAMP_PRECISION_PICOS';
|
|
196
|
+
}
|
|
179
197
|
interface AuditConfig {
|
|
180
198
|
/** The configuration for logging of each type of permission. */
|
|
181
199
|
auditLogConfigs?: AuditLogConfig[];
|
|
@@ -187,10 +205,7 @@ declare namespace gapi.client {
|
|
|
187
205
|
exemptedMembers?: string[];
|
|
188
206
|
/** The log type that this config enables. */
|
|
189
207
|
logType?:
|
|
190
|
-
| '
|
|
191
|
-
| 'ADMIN_READ'
|
|
192
|
-
| 'DATA_WRITE'
|
|
193
|
-
| 'DATA_READ';
|
|
208
|
+
'LOG_TYPE_UNSPECIFIED' | 'ADMIN_READ' | 'DATA_WRITE' | 'DATA_READ';
|
|
194
209
|
}
|
|
195
210
|
interface AvroOptions {
|
|
196
211
|
/** Optional. If sourceFormat is set to "AVRO", indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER). */
|
|
@@ -225,10 +240,7 @@ declare namespace gapi.client {
|
|
|
225
240
|
| 'FULL_QUERY';
|
|
226
241
|
/** Output only. Specifies which mode of BI Engine acceleration was performed (if any). */
|
|
227
242
|
biEngineMode?:
|
|
228
|
-
| '
|
|
229
|
-
| 'DISABLED'
|
|
230
|
-
| 'PARTIAL'
|
|
231
|
-
| 'FULL';
|
|
243
|
+
'ACCELERATION_MODE_UNSPECIFIED' | 'DISABLED' | 'PARTIAL' | 'FULL';
|
|
232
244
|
/** In case of DISABLED or PARTIAL bi_engine_mode, these contain the explanatory reasons as to why BI Engine could not accelerate. In case the full query was accelerated, this field is not populated. */
|
|
233
245
|
biEngineReasons?: BiEngineReason[];
|
|
234
246
|
}
|
|
@@ -547,9 +559,7 @@ declare namespace gapi.client {
|
|
|
547
559
|
selfLink?: string;
|
|
548
560
|
/** Optional. Updates storage_billing_model for the dataset. */
|
|
549
561
|
storageBillingModel?:
|
|
550
|
-
| '
|
|
551
|
-
| 'LOGICAL'
|
|
552
|
-
| 'PHYSICAL';
|
|
562
|
+
'STORAGE_BILLING_MODEL_UNSPECIFIED' | 'LOGICAL' | 'PHYSICAL';
|
|
553
563
|
/** Output only. Tags for the dataset. To provide tags as inputs, use the `resourceTags` field. */
|
|
554
564
|
tags?: {
|
|
555
565
|
/** Required. The namespaced friendly name of the tag key, e.g. "12345/environment" where 12345 is org id. */
|
|
@@ -648,9 +658,7 @@ declare namespace gapi.client {
|
|
|
648
658
|
deletedRowCount?: string;
|
|
649
659
|
/** Output only. DML mode used. */
|
|
650
660
|
dmlMode?:
|
|
651
|
-
| '
|
|
652
|
-
| 'COARSE_GRAINED_DML'
|
|
653
|
-
| 'FINE_GRAINED_DML';
|
|
661
|
+
'DML_MODE_UNSPECIFIED' | 'COARSE_GRAINED_DML' | 'FINE_GRAINED_DML';
|
|
654
662
|
/** Output only. Reason for disabling fine-grained DML if applicable. */
|
|
655
663
|
fineGrainedDmlUnusedReason?:
|
|
656
664
|
| 'FINE_GRAINED_DML_UNUSED_REASON_UNSPECIFIED'
|
|
@@ -861,9 +869,7 @@ declare namespace gapi.client {
|
|
|
861
869
|
maxBadRecords?: number;
|
|
862
870
|
/** Optional. Metadata Cache Mode for the table. Set this to enable caching of metadata from external data source. */
|
|
863
871
|
metadataCacheMode?:
|
|
864
|
-
| '
|
|
865
|
-
| 'AUTOMATIC'
|
|
866
|
-
| 'MANUAL';
|
|
872
|
+
'METADATA_CACHE_MODE_UNSPECIFIED' | 'AUTOMATIC' | 'MANUAL';
|
|
867
873
|
/** Optional. ObjectMetadata is used to create Object Tables. Object Tables contain a listing of objects (with their metadata) found at the source_uris. If ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is the only supported Object Metadata type. */
|
|
868
874
|
objectMetadata?: 'OBJECT_METADATA_UNSPECIFIED' | 'DIRECTORY' | 'SIMPLE';
|
|
869
875
|
/** Optional. Additional properties to set if sourceFormat is set to PARQUET. */
|
|
@@ -989,7 +995,7 @@ declare namespace gapi.client {
|
|
|
989
995
|
interface GeneratedExpressionInfo {
|
|
990
996
|
/** Optional. Whether the column generation is done asynchronously. */
|
|
991
997
|
asynchronous?: boolean;
|
|
992
|
-
/** Optional. The generation expression (e.g. AI.EMBED(...)) used to
|
|
998
|
+
/** Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field. */
|
|
993
999
|
generationExpression?: string;
|
|
994
1000
|
/** Optional. Whether the generated column is stored in the table. */
|
|
995
1001
|
stored?: boolean;
|
|
@@ -1144,9 +1150,7 @@ declare namespace gapi.client {
|
|
|
1144
1150
|
interface IncrementalResultStats {
|
|
1145
1151
|
/** Output only. Reason why incremental query results are/were not written by the query. */
|
|
1146
1152
|
disabledReason?:
|
|
1147
|
-
| '
|
|
1148
|
-
| 'OTHER'
|
|
1149
|
-
| 'UNSUPPORTED_OPERATOR';
|
|
1153
|
+
'DISABLED_REASON_UNSPECIFIED' | 'OTHER' | 'UNSUPPORTED_OPERATOR';
|
|
1150
1154
|
/** Output only. Additional human-readable clarification, if available, for DisabledReason. */
|
|
1151
1155
|
disabledReasonDetails?: string;
|
|
1152
1156
|
/** Output only. The time at which the first incremental result was written. If the query needed to restart internally, this only describes the final attempt. */
|
|
@@ -1333,10 +1337,7 @@ declare namespace gapi.client {
|
|
|
1333
1337
|
clustering?: Clustering;
|
|
1334
1338
|
/** Optional. Character map supported for column names in CSV/Parquet loads. Defaults to STRICT and can be overridden by Project Config Service. Using this option with unsupporting load formats will result in an error. */
|
|
1335
1339
|
columnNameCharacterMap?:
|
|
1336
|
-
| '
|
|
1337
|
-
| 'STRICT'
|
|
1338
|
-
| 'V1'
|
|
1339
|
-
| 'V2';
|
|
1340
|
+
'COLUMN_NAME_CHARACTER_MAP_UNSPECIFIED' | 'STRICT' | 'V1' | 'V2';
|
|
1340
1341
|
/** Optional. Connection properties which can modify the load job behavior. Currently, only the 'session_id' connection property is supported, and is used to resolve _SESSION appearing as the dataset id. */
|
|
1341
1342
|
connectionProperties?: ConnectionProperty[];
|
|
1342
1343
|
/** Optional. [Experimental] Configures the load job to copy files directly to the destination BigLake managed table, bypassing file content reading and rewriting. Copying files only is supported when all the following are true: * `source_uris` are located in the same Cloud Storage location as the destination table's `storage_uri` location. * `source_format` is `PARQUET`. * `destination_table` is an existing BigLake managed table. The table's schema does not have flexible column names. The table's columns do not have type parameters other than precision and scale. * No options other than the above are specified. */
|
|
@@ -1405,9 +1406,7 @@ declare namespace gapi.client {
|
|
|
1405
1406
|
skipLeadingRows?: number;
|
|
1406
1407
|
/** Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. */
|
|
1407
1408
|
sourceColumnMatch?:
|
|
1408
|
-
| '
|
|
1409
|
-
| 'POSITION'
|
|
1410
|
-
| 'NAME';
|
|
1409
|
+
'SOURCE_COLUMN_MATCH_UNSPECIFIED' | 'POSITION' | 'NAME';
|
|
1411
1410
|
/** Optional. The format of the data files. For CSV files, specify "CSV". For datastore backups, specify "DATASTORE_BACKUP". For newline-delimited JSON, specify "NEWLINE_DELIMITED_JSON". For Avro, specify "AVRO". For parquet, specify "PARQUET". For orc, specify "ORC". The default value is CSV. */
|
|
1412
1411
|
sourceFormat?: string;
|
|
1413
1412
|
/** [Required] The fully-qualified URIs that point to your data in Google Cloud. For Google Cloud Storage URIs: Each URI can contain one '*' wildcard character and it must come after the 'bucket' name. Size limits related to load jobs apply to external data sources. For Google Cloud Bigtable URIs: Exactly one URI can be specified and it has be a fully specified and valid HTTPS URL for a Google Cloud Bigtable table. For Google Cloud Datastore backups: Exactly one URI can be specified. Also, the '*' wildcard character is not allowed. */
|
|
@@ -1910,9 +1909,7 @@ declare namespace gapi.client {
|
|
|
1910
1909
|
| 'CONTRIBUTION_ANALYSIS';
|
|
1911
1910
|
/** Output only. Training type of the job. */
|
|
1912
1911
|
trainingType?:
|
|
1913
|
-
| '
|
|
1914
|
-
| 'SINGLE_TRAINING'
|
|
1915
|
-
| 'HPARAM_TUNING';
|
|
1912
|
+
'TRAINING_TYPE_UNSPECIFIED' | 'SINGLE_TRAINING' | 'HPARAM_TUNING';
|
|
1916
1913
|
}
|
|
1917
1914
|
interface Model {
|
|
1918
1915
|
/** The best trial_id across all training runs. */
|
|
@@ -2161,6 +2158,8 @@ declare namespace gapi.client {
|
|
|
2161
2158
|
value?: string;
|
|
2162
2159
|
}
|
|
2163
2160
|
interface QueryRequest {
|
|
2161
|
+
/** Optional. Options specific to the Apache Arrow output format. */
|
|
2162
|
+
arrowSerializationOptions?: ArrowSerializationOptions;
|
|
2164
2163
|
/** Optional. Connection properties which can modify the query behavior. */
|
|
2165
2164
|
connectionProperties?: ConnectionProperty[];
|
|
2166
2165
|
/** [Optional] Specifies whether the query should be executed as a continuous query. The default value is false. */
|
|
@@ -2202,6 +2201,9 @@ declare namespace gapi.client {
|
|
|
2202
2201
|
query?: string;
|
|
2203
2202
|
/** Query parameters for GoogleSQL queries. */
|
|
2204
2203
|
queryParameters?: QueryParameter[];
|
|
2204
|
+
/** Optional. The query results format. If the value is anything other than `STRUCT_ENCODING` or unspecified: * The schema of the results will be provided in `QueryResponse.results_schema` field. * The results of the first page will be provided in `QueryResponse.results` field. * The `QueryResponse.rows` will not be populated. * The `QueryResponse.schema` for `QueryResponse.rows` will also not be populated since it is the schema of the `QueryResponse.rows`. This feature is not yet available. */
|
|
2205
|
+
queryResultsFormat?:
|
|
2206
|
+
'QUERY_RESULTS_FORMAT_UNSPECIFIED' | 'STRUCT_ENCODING' | 'ARROW';
|
|
2205
2207
|
/** Optional. A unique user provided identifier to ensure idempotent behavior for queries. Note that this is different from the job_id. It has the following properties: 1. It is case-sensitive, limited to up to 36 ASCII characters. A UUID is recommended. 2. Read only queries can ignore this token since they are nullipotent by definition. 3. For the purposes of idempotency ensured by the request_id, a request is considered duplicate of another only if they have the same request_id and are actually duplicates. When determining whether a request is a duplicate of another request, all parameters in the request that may affect the result are considered. For example, query, connection_properties, query_parameters, use_legacy_sql are parameters that affect the result and are considered when determining whether a request is a duplicate, but properties like timeout_ms don't affect the result and are thus not considered. Dry run query requests are never considered duplicate of another request. 4. When a duplicate mutating query request is detected, it returns: a. the results of the mutation if it completes successfully within the timeout. b. the running operation if it is still in progress at the end of the timeout. 5. Its lifetime is limited to 15 minutes. In other words, if two requests are sent with the same request_id, but more than 15 minutes apart, idempotency is not guaranteed. */
|
|
2206
2208
|
requestId?: string;
|
|
2207
2209
|
/** Optional. The reservation that jobs.query request would use. User can specify a reservation to execute the job.query. The expected format is `projects/{project}/locations/{location}/reservations/{reservation}`. */
|
|
@@ -2216,6 +2218,10 @@ declare namespace gapi.client {
|
|
|
2216
2218
|
writeIncrementalResults?: boolean;
|
|
2217
2219
|
}
|
|
2218
2220
|
interface QueryResponse {
|
|
2221
|
+
/** Output only. Serialized row data in Arrow RecordBatch format. */
|
|
2222
|
+
arrowRecordBatch?: ArrowRecordBatch;
|
|
2223
|
+
/** Output only. Arrow schema */
|
|
2224
|
+
arrowSchema?: ArrowSchema;
|
|
2219
2225
|
/** Whether the query result was fetched from the query cache. */
|
|
2220
2226
|
cacheHit?: boolean;
|
|
2221
2227
|
/** Output only. Creation time of this query, in milliseconds since the epoch. This field will be present on all queries. */
|
|
@@ -2238,6 +2244,8 @@ declare namespace gapi.client {
|
|
|
2238
2244
|
location?: string;
|
|
2239
2245
|
/** Output only. The number of rows affected by a DML statement. Present only for DML statements INSERT, UPDATE or DELETE. */
|
|
2240
2246
|
numDmlAffectedRows?: string;
|
|
2247
|
+
/** Output only. The number of rows out of `total_rows` returned in this response. This feature is not yet available. */
|
|
2248
|
+
pageRowCount?: string;
|
|
2241
2249
|
/** A token used for paging results. A non-empty token indicates that additional results are available. To see additional results, query the [`jobs.getQueryResults`](https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/getQueryResults) method. For more information, see [Paging through table data](https://cloud.google.com/bigquery/docs/paging-results). */
|
|
2242
2250
|
pageToken?: string;
|
|
2243
2251
|
/** Auto-generated ID for the query. */
|
|
@@ -2364,9 +2372,7 @@ declare namespace gapi.client {
|
|
|
2364
2372
|
description?: string;
|
|
2365
2373
|
/** Optional. The determinism level of the JavaScript UDF, if defined. */
|
|
2366
2374
|
determinismLevel?:
|
|
2367
|
-
| '
|
|
2368
|
-
| 'DETERMINISTIC'
|
|
2369
|
-
| 'NOT_DETERMINISTIC';
|
|
2375
|
+
'DETERMINISM_LEVEL_UNSPECIFIED' | 'DETERMINISTIC' | 'NOT_DETERMINISTIC';
|
|
2370
2376
|
/** Output only. A hash of this resource. */
|
|
2371
2377
|
etag?: string;
|
|
2372
2378
|
/** Optional. Options for the runtime of the external system executing the routine. This field is only applicable for Python UDFs. [Preview](https://cloud.google.com/products/#product-launch-stages) */
|
|
@@ -2412,10 +2418,7 @@ declare namespace gapi.client {
|
|
|
2412
2418
|
buildDuration?: string;
|
|
2413
2419
|
/** Output only. The current build state of the routine. */
|
|
2414
2420
|
buildState?:
|
|
2415
|
-
| '
|
|
2416
|
-
| 'IN_PROGRESS'
|
|
2417
|
-
| 'SUCCEEDED'
|
|
2418
|
-
| 'FAILED';
|
|
2421
|
+
'BUILD_STATE_UNSPECIFIED' | 'IN_PROGRESS' | 'SUCCEEDED' | 'FAILED';
|
|
2419
2422
|
/** Output only. The time when the build state was updated last. */
|
|
2420
2423
|
buildStateUpdateTime?: string;
|
|
2421
2424
|
/** Output only. A result object that will be present only if the build has failed. */
|
|
@@ -2468,9 +2471,7 @@ declare namespace gapi.client {
|
|
|
2468
2471
|
interface ScriptOptions {
|
|
2469
2472
|
/** Determines which statement in the script represents the "key result", used to populate the schema and query results of the script job. Default is LAST. */
|
|
2470
2473
|
keyResultStatement?:
|
|
2471
|
-
| '
|
|
2472
|
-
| 'LAST'
|
|
2473
|
-
| 'FIRST_SELECT';
|
|
2474
|
+
'KEY_RESULT_STATEMENT_KIND_UNSPECIFIED' | 'LAST' | 'FIRST_SELECT';
|
|
2474
2475
|
/** Limit on the number of bytes billed per statement. Exceeding this budget results in an error. */
|
|
2475
2476
|
statementByteBudget?: string;
|
|
2476
2477
|
/** Timeout period for each statement in a script. */
|
|
@@ -2493,9 +2494,7 @@ declare namespace gapi.client {
|
|
|
2493
2494
|
interface ScriptStatistics {
|
|
2494
2495
|
/** Whether this child job was a statement or expression. */
|
|
2495
2496
|
evaluationKind?:
|
|
2496
|
-
| '
|
|
2497
|
-
| 'STATEMENT'
|
|
2498
|
-
| 'EXPRESSION';
|
|
2497
|
+
'EVALUATION_KIND_UNSPECIFIED' | 'STATEMENT' | 'EXPRESSION';
|
|
2499
2498
|
/** Stack trace showing the line/column/procedure name of each frame on the stack at the point where the current evaluation happened. The leaf frame is first, the primary script is last. Never empty. */
|
|
2500
2499
|
stackFrames?: ScriptStackFrame[];
|
|
2501
2500
|
}
|
|
@@ -2736,9 +2735,7 @@ declare namespace gapi.client {
|
|
|
2736
2735
|
location?: string;
|
|
2737
2736
|
/** Optional. If set, overrides the default managed table type configured in the dataset. */
|
|
2738
2737
|
managedTableType?:
|
|
2739
|
-
| '
|
|
2740
|
-
| 'NATIVE'
|
|
2741
|
-
| 'BIGLAKE';
|
|
2738
|
+
'MANAGED_TABLE_TYPE_UNSPECIFIED' | 'NATIVE' | 'BIGLAKE';
|
|
2742
2739
|
/** Optional. The materialized view definition. */
|
|
2743
2740
|
materializedView?: MaterializedViewDefinition;
|
|
2744
2741
|
/** Output only. The materialized view status. */
|
|
@@ -3087,12 +3084,7 @@ declare namespace gapi.client {
|
|
|
3087
3084
|
cleanSpikesAndDips?: boolean;
|
|
3088
3085
|
/** Enums for color space, used for processing images in Object Table. See more details at https://www.tensorflow.org/io/tutorials/colorspace. */
|
|
3089
3086
|
colorSpace?:
|
|
3090
|
-
| '
|
|
3091
|
-
| 'RGB'
|
|
3092
|
-
| 'HSV'
|
|
3093
|
-
| 'YIQ'
|
|
3094
|
-
| 'YUV'
|
|
3095
|
-
| 'GRAYSCALE';
|
|
3087
|
+
'COLOR_SPACE_UNSPECIFIED' | 'RGB' | 'HSV' | 'YIQ' | 'YUV' | 'GRAYSCALE';
|
|
3096
3088
|
/** Subsample ratio of columns for each level for boosted tree models. */
|
|
3097
3089
|
colsampleBylevel?: number;
|
|
3098
3090
|
/** Subsample ratio of columns for each node(split) for boosted tree models. */
|
|
@@ -3349,14 +3341,10 @@ declare namespace gapi.client {
|
|
|
3349
3341
|
learnRate?: number;
|
|
3350
3342
|
/** The strategy to determine learn rate for the current iteration. */
|
|
3351
3343
|
learnRateStrategy?:
|
|
3352
|
-
| '
|
|
3353
|
-
| 'LINE_SEARCH'
|
|
3354
|
-
| 'CONSTANT';
|
|
3344
|
+
'LEARN_RATE_STRATEGY_UNSPECIFIED' | 'LINE_SEARCH' | 'CONSTANT';
|
|
3355
3345
|
/** Type of loss function used during training run. */
|
|
3356
3346
|
lossType?:
|
|
3357
|
-
| '
|
|
3358
|
-
| 'MEAN_SQUARED_LOSS'
|
|
3359
|
-
| 'MEAN_LOG_LOSS';
|
|
3347
|
+
'LOSS_TYPE_UNSPECIFIED' | 'MEAN_SQUARED_LOSS' | 'MEAN_LOG_LOSS';
|
|
3360
3348
|
/** The type of the machine used to deploy and serve the model. */
|
|
3361
3349
|
machineType?: string;
|
|
3362
3350
|
/** The maximum number of iterations in training. Used only for iterative training algorithms. */
|
|
@@ -3442,11 +3430,7 @@ declare namespace gapi.client {
|
|
|
3442
3430
|
timeSeriesTimestampColumn?: string;
|
|
3443
3431
|
/** Tree construction algorithm for boosted tree models. */
|
|
3444
3432
|
treeMethod?:
|
|
3445
|
-
| '
|
|
3446
|
-
| 'AUTO'
|
|
3447
|
-
| 'EXACT'
|
|
3448
|
-
| 'APPROX'
|
|
3449
|
-
| 'HIST';
|
|
3433
|
+
'TREE_METHOD_UNSPECIFIED' | 'AUTO' | 'EXACT' | 'APPROX' | 'HIST';
|
|
3450
3434
|
/** 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 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. */
|
|
3451
3435
|
trendSmoothingWindowSize?: string;
|
|
3452
3436
|
/** User column specified for matrix factorization models. */
|
|
@@ -4148,10 +4132,7 @@ declare namespace gapi.client {
|
|
|
4148
4132
|
quotaUser?: string;
|
|
4149
4133
|
/** Filter for job state */
|
|
4150
4134
|
stateFilter?:
|
|
4151
|
-
| 'done'
|
|
4152
|
-
| 'pending'
|
|
4153
|
-
| 'running'
|
|
4154
|
-
| ('done' | 'pending' | 'running')[];
|
|
4135
|
+
'done' | 'pending' | 'running' | ('done' | 'pending' | 'running')[];
|
|
4155
4136
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4156
4137
|
upload_protocol?: string;
|
|
4157
4138
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|