@maxim_mazurok/gapi.client.bigquery-v2 0.0.20240211 → 0.0.20240229
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 +21 -5
- 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: 20240229
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -432,6 +432,8 @@ declare namespace gapi.client {
|
|
|
432
432
|
labels?: {[P in string]: string};
|
|
433
433
|
/** Output only. The date when this dataset was last modified, in milliseconds since the epoch. */
|
|
434
434
|
lastModifiedTime?: string;
|
|
435
|
+
/** Output only. Metadata about the LinkedDataset. Filled out when the dataset type is LINKED. */
|
|
436
|
+
linkedDatasetMetadata?: LinkedDatasetMetadata;
|
|
435
437
|
/** Optional. The source dataset reference when the dataset is of type LINKED. For all other dataset types it is not set. This field cannot be updated once it is set. Any attempt to update this field using Update and Patch API Operations will be ignored. */
|
|
436
438
|
linkedDatasetSource?: LinkedDatasetSource;
|
|
437
439
|
/** The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations. */
|
|
@@ -1384,6 +1386,10 @@ declare namespace gapi.client {
|
|
|
1384
1386
|
encoding?: string;
|
|
1385
1387
|
}
|
|
1386
1388
|
interface JsonValue {}
|
|
1389
|
+
interface LinkedDatasetMetadata {
|
|
1390
|
+
/** Output only. Specifies whether Linked Dataset is currently in a linked state or not. */
|
|
1391
|
+
linkState?: string;
|
|
1392
|
+
}
|
|
1387
1393
|
interface LinkedDatasetSource {
|
|
1388
1394
|
/** The source dataset reference contains project numbers and not project ids. */
|
|
1389
1395
|
sourceDataset?: DatasetReference;
|
|
@@ -1552,6 +1558,14 @@ declare namespace gapi.client {
|
|
|
1552
1558
|
/** Optional. Indicates whether to infer Parquet ENUM logical type as STRING instead of BYTES by default. */
|
|
1553
1559
|
enumAsString?: boolean;
|
|
1554
1560
|
}
|
|
1561
|
+
interface PartitionedColumn {
|
|
1562
|
+
/** Output only. The name of the partition column. */
|
|
1563
|
+
field?: string;
|
|
1564
|
+
}
|
|
1565
|
+
interface PartitioningDefinition {
|
|
1566
|
+
/** Output only. Details about each partitioning column. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. */
|
|
1567
|
+
partitionedColumn?: PartitionedColumn[];
|
|
1568
|
+
}
|
|
1555
1569
|
interface PerformanceInsights {
|
|
1556
1570
|
/** Output only. Average execution ms of previous runs. Indicates the job ran slow compared to previous executions. To find previous executions, use INFORMATION_SCHEMA tables and filter jobs with same query hash. */
|
|
1557
1571
|
avgPreviousExecutionMs?: string;
|
|
@@ -1962,9 +1976,9 @@ declare namespace gapi.client {
|
|
|
1962
1976
|
interface SparkStatistics {
|
|
1963
1977
|
/** Output only. Endpoints returned from Dataproc. Key list: - history_server_endpoint: A link to Spark job UI. */
|
|
1964
1978
|
endpoints?: {[P in string]: string};
|
|
1965
|
-
/** Output only. The Google Cloud Storage bucket that is used as the default
|
|
1979
|
+
/** Output only. The Google Cloud Storage bucket that is used as the default file system by the Spark application. This field is only filled when the Spark procedure uses the invoker security mode. The `gcsStagingBucket` bucket is inferred from the `@@spark_proc_properties.staging_bucket` system variable (if it is provided). Otherwise, BigQuery creates a default staging bucket for the job and returns the bucket name in this field. Example: * `gs://[bucket_name]` */
|
|
1966
1980
|
gcsStagingBucket?: string;
|
|
1967
|
-
/** Output only. The Cloud KMS encryption key that is used to protect the resources created by the Spark job. If the Spark procedure uses
|
|
1981
|
+
/** Output only. The Cloud KMS encryption key that is used to protect the resources created by the Spark job. If the Spark procedure uses the invoker security mode, the Cloud KMS encryption key is either inferred from the provided system variable, `@@spark_proc_properties.kms_key_name`, or the default key of the BigQuery job's project (if the CMEK organization policy is enforced). Otherwise, the Cloud KMS key is either inferred from the Spark connection associated with the procedure (if it is provided), or from the default key of the Spark connection's project if the CMEK organization policy is enforced. Example: * `projects/[kms_project_id]/locations/[region]/keyRings/[key_region]/cryptoKeys/[key]` */
|
|
1968
1982
|
kmsKeyName?: string;
|
|
1969
1983
|
/** Output only. Logging info is used to generate a link to Cloud Logging. */
|
|
1970
1984
|
loggingInfo?: SparkLoggingInfo;
|
|
@@ -2100,6 +2114,8 @@ declare namespace gapi.client {
|
|
|
2100
2114
|
numTotalLogicalBytes?: string;
|
|
2101
2115
|
/** Output only. The physical size of this table in bytes. This also includes storage used for time travel. This data is not kept in real time, and might be delayed by a few seconds to a few minutes. */
|
|
2102
2116
|
numTotalPhysicalBytes?: string;
|
|
2117
|
+
/** Output only. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, and iceberg partitioned tables. */
|
|
2118
|
+
partitionDefinition?: PartitioningDefinition;
|
|
2103
2119
|
/** If specified, configures range partitioning for this table. */
|
|
2104
2120
|
rangePartitioning?: RangePartitioning;
|
|
2105
2121
|
/** Optional. Output only. Table references of all replicas currently active on the table. */
|
|
@@ -2226,14 +2242,14 @@ declare namespace gapi.client {
|
|
|
2226
2242
|
precision?: string;
|
|
2227
2243
|
/** Represents the type of a field element. */
|
|
2228
2244
|
rangeElementType?: {
|
|
2229
|
-
/** Required. The type of a field element.
|
|
2245
|
+
/** Required. The type of a field element. For more information, see TableFieldSchema.type. */
|
|
2230
2246
|
type?: string;
|
|
2231
2247
|
};
|
|
2232
2248
|
/** Optional. Specifies the rounding mode to be used when storing values of NUMERIC and BIGNUMERIC type. */
|
|
2233
2249
|
roundingMode?: string;
|
|
2234
2250
|
/** Optional. See documentation for precision. */
|
|
2235
2251
|
scale?: string;
|
|
2236
|
-
/** Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) Use of RECORD/STRUCT indicates that the field contains a nested schema. */
|
|
2252
|
+
/** Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE ([Preview](/products/#product-launch-stages)) Use of RECORD/STRUCT indicates that the field contains a nested schema. */
|
|
2237
2253
|
type?: string;
|
|
2238
2254
|
}
|
|
2239
2255
|
interface TableList {
|