|
59 | 59 | "endpointUrl": "https://bigquery.europe-west3.rep.googleapis.com/", |
60 | 60 | "location": "europe-west3" |
61 | 61 | }, |
| 62 | + { |
| 63 | + "description": "Regional Endpoint", |
| 64 | + "endpointUrl": "https://bigquery.europe-west4.rep.googleapis.com/", |
| 65 | + "location": "europe-west4" |
| 66 | + }, |
62 | 67 | { |
63 | 68 | "description": "Regional Endpoint", |
64 | 69 | "endpointUrl": "https://bigquery.europe-west6.rep.googleapis.com/", |
|
79 | 84 | "endpointUrl": "https://bigquery.me-central2.rep.googleapis.com/", |
80 | 85 | "location": "me-central2" |
81 | 86 | }, |
| 87 | + { |
| 88 | + "description": "Regional Endpoint", |
| 89 | + "endpointUrl": "https://bigquery.northamerica-northeast1.rep.googleapis.com/", |
| 90 | + "location": "northamerica-northeast1" |
| 91 | + }, |
| 92 | + { |
| 93 | + "description": "Regional Endpoint", |
| 94 | + "endpointUrl": "https://bigquery.northamerica-northeast2.rep.googleapis.com/", |
| 95 | + "location": "northamerica-northeast2" |
| 96 | + }, |
82 | 97 | { |
83 | 98 | "description": "Regional Endpoint", |
84 | 99 | "endpointUrl": "https://bigquery.us-central1.rep.googleapis.com/", |
|
2375 | 2390 | } |
2376 | 2391 | } |
2377 | 2392 | }, |
2378 | | - "revision": "20251012", |
| 2393 | + "revision": "20251130", |
2379 | 2394 | "rootUrl": "https://bigquery.googleapis.com/", |
2380 | 2395 | "schemas": { |
2381 | 2396 | "AggregateClassificationMetrics": { |
|
3039 | 3054 | "id": "BigtableColumn", |
3040 | 3055 | "properties": { |
3041 | 3056 | "encoding": { |
3042 | | - "description": "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.", |
| 3057 | + "description": "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.", |
3043 | 3058 | "type": "string" |
3044 | 3059 | }, |
3045 | 3060 | "fieldName": { |
|
3050 | 3065 | "description": "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.", |
3051 | 3066 | "type": "boolean" |
3052 | 3067 | }, |
| 3068 | + "protoConfig": { |
| 3069 | + "$ref": "BigtableProtoConfig", |
| 3070 | + "description": "Optional. Protobuf-specific configurations, only takes effect when the encoding is PROTO_BINARY." |
| 3071 | + }, |
3053 | 3072 | "qualifierEncoded": { |
3054 | 3073 | "description": "[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.", |
3055 | 3074 | "format": "byte", |
|
3078 | 3097 | "type": "array" |
3079 | 3098 | }, |
3080 | 3099 | "encoding": { |
3081 | | - "description": "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.", |
| 3100 | + "description": "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.", |
3082 | 3101 | "type": "string" |
3083 | 3102 | }, |
3084 | 3103 | "familyId": { |
|
3089 | 3108 | "description": "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.", |
3090 | 3109 | "type": "boolean" |
3091 | 3110 | }, |
| 3111 | + "protoConfig": { |
| 3112 | + "$ref": "BigtableProtoConfig", |
| 3113 | + "description": "Optional. Protobuf-specific configurations, only takes effect when the encoding is PROTO_BINARY." |
| 3114 | + }, |
3092 | 3115 | "type": { |
3093 | 3116 | "description": "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.", |
3094 | 3117 | "type": "string" |
|
3122 | 3145 | }, |
3123 | 3146 | "type": "object" |
3124 | 3147 | }, |
| 3148 | + "BigtableProtoConfig": { |
| 3149 | + "description": "Information related to a Bigtable protobuf column.", |
| 3150 | + "id": "BigtableProtoConfig", |
| 3151 | + "properties": { |
| 3152 | + "protoMessageName": { |
| 3153 | + "description": "Optional. The fully qualified proto message name of the protobuf. In the format of \"foo.bar.Message\".", |
| 3154 | + "type": "string" |
| 3155 | + }, |
| 3156 | + "schemaBundleId": { |
| 3157 | + "description": "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`. See [more details on Bigtable SchemaBundles](https://docs.cloud.google.com/bigtable/docs/create-manage-protobuf-schemas).", |
| 3158 | + "type": "string" |
| 3159 | + } |
| 3160 | + }, |
| 3161 | + "type": "object" |
| 3162 | + }, |
3125 | 3163 | "BinaryClassificationMetrics": { |
3126 | 3164 | "description": "Evaluation metrics for binary classification/classifier models.", |
3127 | 3165 | "id": "BinaryClassificationMetrics", |
|
0 commit comments