@maxim_mazurok/gapi.client.bigquery-v2 0.1.20250928 → 0.1.20251102
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: 20251102
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -197,12 +197,14 @@ declare namespace gapi.client {
|
|
|
197
197
|
expectedTotalIterations?: string;
|
|
198
198
|
}
|
|
199
199
|
interface BigtableColumn {
|
|
200
|
-
/** Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. 'encoding' can also be set at the column family level. However, the setting at this level takes precedence if 'encoding' is set at both levels. */
|
|
200
|
+
/** Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. PROTO_BINARY - indicates values are encoded using serialized proto messages. This can only be used in combination with JSON type. 'encoding' can also be set at the column family level. However, the setting at this level takes precedence if 'encoding' is set at both levels. */
|
|
201
201
|
encoding?: string;
|
|
202
202
|
/** Optional. If the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as the column field name and is used as field name in queries. */
|
|
203
203
|
fieldName?: string;
|
|
204
204
|
/** Optional. If this is set, only the latest version of value in this column are exposed. 'onlyReadLatest' can also be set at the column family level. However, the setting at this level takes precedence if 'onlyReadLatest' is set at both levels. */
|
|
205
205
|
onlyReadLatest?: boolean;
|
|
206
|
+
/** Optional. Protobuf-specific configurations, only takes effect when the encoding is PROTO_BINARY. */
|
|
207
|
+
protoConfig?: BigtableProtoConfig;
|
|
206
208
|
/** [Required] Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as `.` field. If the qualifier is valid UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a base-64 encoded value must be set to qualifier_encoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match a-zA-Z*, a valid identifier must be provided as field_name. */
|
|
207
209
|
qualifierEncoded?: string;
|
|
208
210
|
/** Qualifier string. */
|
|
@@ -213,12 +215,14 @@ declare namespace gapi.client {
|
|
|
213
215
|
interface BigtableColumnFamily {
|
|
214
216
|
/** Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field. */
|
|
215
217
|
columns?: BigtableColumn[];
|
|
216
|
-
/** Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it. */
|
|
218
|
+
/** Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. PROTO_BINARY - indicates values are encoded using serialized proto messages. This can only be used in combination with JSON type. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it. */
|
|
217
219
|
encoding?: string;
|
|
218
220
|
/** Identifier of the column family. */
|
|
219
221
|
familyId?: string;
|
|
220
222
|
/** Optional. If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in 'columns' and specifying a different setting for that column. */
|
|
221
223
|
onlyReadLatest?: boolean;
|
|
224
|
+
/** Optional. Protobuf-specific configurations, only takes effect when the encoding is PROTO_BINARY. */
|
|
225
|
+
protoConfig?: BigtableProtoConfig;
|
|
222
226
|
/** Optional. The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): * BYTES * STRING * INTEGER * FLOAT * BOOLEAN * JSON Default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it. */
|
|
223
227
|
type?: string;
|
|
224
228
|
}
|
|
@@ -232,6 +236,12 @@ declare namespace gapi.client {
|
|
|
232
236
|
/** Optional. If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false. */
|
|
233
237
|
readRowkeyAsString?: boolean;
|
|
234
238
|
}
|
|
239
|
+
interface BigtableProtoConfig {
|
|
240
|
+
/** Optional. The fully qualified proto message name of the protobuf. In the format of "foo.bar.Message". */
|
|
241
|
+
protoMessageName?: string;
|
|
242
|
+
/** Optional. The ID of the Bigtable SchemaBundle resource associated with this protobuf. The ID should be referred to within the parent table, e.g., `foo` rather than `projects/{project}/instances/{instance}/tables/{table}/schemaBundles/foo`. */
|
|
243
|
+
schemaBundleId?: string;
|
|
244
|
+
}
|
|
235
245
|
interface BinaryClassificationMetrics {
|
|
236
246
|
/** Aggregate classification metrics. */
|
|
237
247
|
aggregateClassificationMetrics?: AggregateClassificationMetrics;
|
|
@@ -984,6 +994,8 @@ declare namespace gapi.client {
|
|
|
984
994
|
interface IndexPruningStats {
|
|
985
995
|
/** The base table reference. */
|
|
986
996
|
baseTable?: TableReference;
|
|
997
|
+
/** The index id. */
|
|
998
|
+
indexId?: string;
|
|
987
999
|
/** The number of parallel inputs after index pruning. */
|
|
988
1000
|
postIndexPruningParallelInputCount?: string;
|
|
989
1001
|
/** The number of parallel inputs before index pruning. */
|