Skip to content

Commit 3ca2f84

Browse files
feat(all): auto-regenerate discovery clients (#2660)
1 parent 7cd88da commit 3ca2f84

24 files changed

+2250
-264
lines changed

api-list.json

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3291,21 +3291,6 @@
32913291
"documentationLink": "https://cloud.google.com/firestore",
32923292
"preferred": true
32933293
},
3294-
{
3295-
"kind": "discovery#directoryItem",
3296-
"id": "fitness:v1",
3297-
"name": "fitness",
3298-
"version": "v1",
3299-
"title": "Fitness API",
3300-
"description": "The Fitness API for managing users' fitness tracking data.",
3301-
"discoveryRestUrl": "https://fitness.googleapis.com/$discovery/rest?version=v1",
3302-
"icons": {
3303-
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
3304-
"x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp.png"
3305-
},
3306-
"documentationLink": "https://developers.google.com/fit/rest/v1/get-started",
3307-
"preferred": true
3308-
},
33093294
{
33103295
"kind": "discovery#directoryItem",
33113296
"id": "forms:v1",

bigquery/v2/bigquery-api.json

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@
3434
"discoveryVersion": "v1",
3535
"documentationLink": "https://cloud.google.com/bigquery/",
3636
"endpoints": [
37-
{
38-
"description": "Regional Endpoint",
39-
"endpointUrl": "https://bigquery.me-central2.rep.googleapis.com/",
40-
"location": "me-central2"
41-
},
4237
{
4338
"description": "Regional Endpoint",
4439
"endpointUrl": "https://bigquery.europe-west3.rep.googleapis.com/",
@@ -49,6 +44,11 @@
4944
"endpointUrl": "https://bigquery.europe-west9.rep.googleapis.com/",
5045
"location": "europe-west9"
5146
},
47+
{
48+
"description": "Regional Endpoint",
49+
"endpointUrl": "https://bigquery.me-central2.rep.googleapis.com/",
50+
"location": "me-central2"
51+
},
5252
{
5353
"description": "Regional Endpoint",
5454
"endpointUrl": "https://bigquery.us-east4.rep.googleapis.com/",
@@ -1935,7 +1935,7 @@
19351935
}
19361936
}
19371937
},
1938-
"revision": "20240526",
1938+
"revision": "20240616",
19391939
"rootUrl": "https://bigquery.googleapis.com/",
19401940
"schemas": {
19411941
"AggregateClassificationMetrics": {
@@ -2998,7 +2998,7 @@
29982998
"type": "object"
29992999
},
30003000
"ConnectionProperty": {
3001-
"description": "A connection-level property to customize query behavior. Under JDBC, these correspond directly to connection properties passed to the DriverManager. Under ODBC, these correspond to properties in the connection string. Currently supported connection properties: * **dataset_project_id**: represents the default project for datasets that are used in the query. Setting the system variable `@@dataset_project_id` achieves the same behavior. For more information about system variables, see: https://cloud.google.com/bigquery/docs/reference/system-variables * **time_zone**: represents the default timezone used to run the query. * **session_id**: associates the query with a given session. * **query_label**: associates the query with a given job label. If set, all subsequent queries in a script or session will have this label. For the format in which a you can specify a query label, see labels in the JobConfiguration resource type: https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#jobconfiguration Additional properties are allowed, but ignored. Specifying multiple connection properties with the same key returns an error.",
3001+
"description": "A connection-level property to customize query behavior. Under JDBC, these correspond directly to connection properties passed to the DriverManager. Under ODBC, these correspond to properties in the connection string. Currently supported connection properties: * **dataset_project_id**: represents the default project for datasets that are used in the query. Setting the system variable `@@dataset_project_id` achieves the same behavior. For more information about system variables, see: https://cloud.google.com/bigquery/docs/reference/system-variables * **time_zone**: represents the default timezone used to run the query. * **session_id**: associates the query with a given session. * **query_label**: associates the query with a given job label. If set, all subsequent queries in a script or session will have this label. For the format in which a you can specify a query label, see labels in the JobConfiguration resource type: https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#jobconfiguration * **service_account**: indicates the service account to use to run a continuous query. If set, the query job uses the service account to access Google Cloud resources. Service account access is bounded by the IAM permissions that you have granted to the service account. Additional properties are allowed, but ignored. Specifying multiple connection properties with the same key returns an error.",
30023002
"id": "ConnectionProperty",
30033003
"properties": {
30043004
"key": {
@@ -6747,23 +6747,21 @@
67476747
"id": "PartitionedColumn",
67486748
"properties": {
67496749
"field": {
6750-
"description": "Output only. The name of the partition column.",
6751-
"readOnly": true,
6750+
"description": "Required. The name of the partition column.",
67526751
"type": "string"
67536752
}
67546753
},
67556754
"type": "object"
67566755
},
67576756
"PartitioningDefinition": {
6758-
"description": "The partitioning information, which includes managed table and external table partition information.",
6757+
"description": "The partitioning information, which includes managed table, external table and metastore partitioned table partition information.",
67596758
"id": "PartitioningDefinition",
67606759
"properties": {
67616760
"partitionedColumn": {
6762-
"description": "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.",
6761+
"description": "Optional. Details about each partitioning column. This field is output only for all partitioning types other than metastore partitioned tables. BigQuery native tables only support 1 partitioning column. Other table types may support 0, 1 or more partitioning columns. For metastore partitioned tables, the order must match the definition order in the Hive Metastore, where it must match the physical layout of the table. For example, CREATE TABLE a_table(id BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case the values must be ['city', 'state'] in that order.",
67636762
"items": {
67646763
"$ref": "PartitionedColumn"
67656764
},
6766-
"readOnly": true,
67676765
"type": "array"
67686766
}
67696767
},
@@ -7281,7 +7279,7 @@
72817279
"id": "RangePartitioning",
72827280
"properties": {
72837281
"field": {
7284-
"description": "Required. [Experimental] The table is partitioned by this field. The field must be a top-level NULLABLE/REQUIRED field. The only supported type is INTEGER/INT64.",
7282+
"description": "Required. The name of the column to partition the table on. It must be a top-level, INT64 column whose mode is NULLABLE or REQUIRED.",
72857283
"type": "string"
72867284
},
72877285
"range": {
@@ -8507,8 +8505,7 @@
85078505
},
85088506
"partitionDefinition": {
85098507
"$ref": "PartitioningDefinition",
8510-
"description": "Output only. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, and iceberg partitioned tables.",
8511-
"readOnly": true
8508+
"description": "Optional. The partition information for all table formats, including managed partitioned tables, hive partitioned tables, iceberg partitioned, and metastore partitioned tables. This field is only populated for metastore partitioned tables. For other table formats, this is an output only field."
85128509
},
85138510
"rangePartitioning": {
85148511
"$ref": "RangePartitioning",

bigquery/v2/bigquery-gen.go

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

0 commit comments

Comments
 (0)