Skip to content

Commit 6fe40c6

Browse files
feat(all): auto-regenerate discovery clients (#3430)
1 parent 0afb986 commit 6fe40c6

23 files changed

Lines changed: 1940 additions & 313 deletions

analyticshub/v1/analyticshub-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@
12471247
}
12481248
}
12491249
},
1250-
"revision": "20251020",
1250+
"revision": "20251208",
12511251
"rootUrl": "https://analyticshub.googleapis.com/",
12521252
"schemas": {
12531253
"ApproveQueryTemplateRequest": {
@@ -1823,7 +1823,7 @@
18231823
"type": "array"
18241824
},
18251825
"name": {
1826-
"description": "Required. Name of the subscription. Format is `projects/{project}/subscriptions/{sub}`.",
1826+
"description": "Required. Identifier. Name of the subscription. Format is `projects/{project}/subscriptions/{sub}`.",
18271827
"type": "string"
18281828
},
18291829
"pushConfig": {

analyticshub/v1/analyticshub-gen.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backupdr/v1/backupdr-api.json

Lines changed: 61 additions & 32 deletions
Large diffs are not rendered by default.

backupdr/v1/backupdr-gen.go

Lines changed: 102 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bigquery/v2/bigquery-api.json

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@
5959
"endpointUrl": "https://bigquery.europe-west3.rep.googleapis.com/",
6060
"location": "europe-west3"
6161
},
62+
{
63+
"description": "Regional Endpoint",
64+
"endpointUrl": "https://bigquery.europe-west4.rep.googleapis.com/",
65+
"location": "europe-west4"
66+
},
6267
{
6368
"description": "Regional Endpoint",
6469
"endpointUrl": "https://bigquery.europe-west6.rep.googleapis.com/",
@@ -79,6 +84,16 @@
7984
"endpointUrl": "https://bigquery.me-central2.rep.googleapis.com/",
8085
"location": "me-central2"
8186
},
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+
},
8297
{
8398
"description": "Regional Endpoint",
8499
"endpointUrl": "https://bigquery.us-central1.rep.googleapis.com/",
@@ -2375,7 +2390,7 @@
23752390
}
23762391
}
23772392
},
2378-
"revision": "20251012",
2393+
"revision": "20251130",
23792394
"rootUrl": "https://bigquery.googleapis.com/",
23802395
"schemas": {
23812396
"AggregateClassificationMetrics": {
@@ -3039,7 +3054,7 @@
30393054
"id": "BigtableColumn",
30403055
"properties": {
30413056
"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.",
30433058
"type": "string"
30443059
},
30453060
"fieldName": {
@@ -3050,6 +3065,10 @@
30503065
"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.",
30513066
"type": "boolean"
30523067
},
3068+
"protoConfig": {
3069+
"$ref": "BigtableProtoConfig",
3070+
"description": "Optional. Protobuf-specific configurations, only takes effect when the encoding is PROTO_BINARY."
3071+
},
30533072
"qualifierEncoded": {
30543073
"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.",
30553074
"format": "byte",
@@ -3078,7 +3097,7 @@
30783097
"type": "array"
30793098
},
30803099
"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.",
30823101
"type": "string"
30833102
},
30843103
"familyId": {
@@ -3089,6 +3108,10 @@
30893108
"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.",
30903109
"type": "boolean"
30913110
},
3111+
"protoConfig": {
3112+
"$ref": "BigtableProtoConfig",
3113+
"description": "Optional. Protobuf-specific configurations, only takes effect when the encoding is PROTO_BINARY."
3114+
},
30923115
"type": {
30933116
"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.",
30943117
"type": "string"
@@ -3122,6 +3145,21 @@
31223145
},
31233146
"type": "object"
31243147
},
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+
},
31253163
"BinaryClassificationMetrics": {
31263164
"description": "Evaluation metrics for binary classification/classifier models.",
31273165
"id": "BinaryClassificationMetrics",

bigquery/v2/bigquery-gen.go

Lines changed: 45 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)