Skip to content

Commit 0f10366

Browse files
feat(all): auto-regenerate discovery clients (#3255)
1 parent 702998a commit 0f10366

20 files changed

+1798
-151
lines changed

bigquery/v2/bigquery-api.json

Lines changed: 63 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,23 @@
695695
"jobId"
696696
],
697697
"parameters": {
698+
"formatOptions.timestampOutputFormat": {
699+
"description": "Optional. The API output format for a timestamp. This offers more explicit control over the timestamp output format as compared to the existing `use_int64_timestamp` option.",
700+
"enum": [
701+
"TIMESTAMP_OUTPUT_FORMAT_UNSPECIFIED",
702+
"FLOAT64",
703+
"INT64",
704+
"ISO8601_STRING"
705+
],
706+
"enumDescriptions": [
707+
"Corresponds to default API output behavior, which is FLOAT64.",
708+
"Timestamp is output as float64 seconds since Unix epoch.",
709+
"Timestamp is output as int64 microseconds since Unix epoch.",
710+
"Timestamp is output as ISO 8601 String (\"YYYY-MM-DDTHH:MM:SS.FFFFFFFFFFFFZ\")."
711+
],
712+
"location": "query",
713+
"type": "string"
714+
},
698715
"formatOptions.useInt64Timestamp": {
699716
"description": "Optional. Output timestamp as usec int64. Default is false.",
700717
"location": "query",
@@ -1910,6 +1927,23 @@
19101927
"required": true,
19111928
"type": "string"
19121929
},
1930+
"formatOptions.timestampOutputFormat": {
1931+
"description": "Optional. The API output format for a timestamp. This offers more explicit control over the timestamp output format as compared to the existing `use_int64_timestamp` option.",
1932+
"enum": [
1933+
"TIMESTAMP_OUTPUT_FORMAT_UNSPECIFIED",
1934+
"FLOAT64",
1935+
"INT64",
1936+
"ISO8601_STRING"
1937+
],
1938+
"enumDescriptions": [
1939+
"Corresponds to default API output behavior, which is FLOAT64.",
1940+
"Timestamp is output as float64 seconds since Unix epoch.",
1941+
"Timestamp is output as int64 microseconds since Unix epoch.",
1942+
"Timestamp is output as ISO 8601 String (\"YYYY-MM-DDTHH:MM:SS.FFFFFFFFFFFFZ\")."
1943+
],
1944+
"location": "query",
1945+
"type": "string"
1946+
},
19131947
"formatOptions.useInt64Timestamp": {
19141948
"description": "Optional. Output timestamp as usec int64. Default is false.",
19151949
"location": "query",
@@ -2345,7 +2379,7 @@
23452379
}
23462380
}
23472381
},
2348-
"revision": "20250706",
2382+
"revision": "20250713",
23492383
"rootUrl": "https://bigquery.googleapis.com/",
23502384
"schemas": {
23512385
"AggregateClassificationMetrics": {
@@ -3497,6 +3531,22 @@
34973531
"description": "Options for data format adjustments.",
34983532
"id": "DataFormatOptions",
34993533
"properties": {
3534+
"timestampOutputFormat": {
3535+
"description": "Optional. The API output format for a timestamp. This offers more explicit control over the timestamp output format as compared to the existing `use_int64_timestamp` option.",
3536+
"enum": [
3537+
"TIMESTAMP_OUTPUT_FORMAT_UNSPECIFIED",
3538+
"FLOAT64",
3539+
"INT64",
3540+
"ISO8601_STRING"
3541+
],
3542+
"enumDescriptions": [
3543+
"Corresponds to default API output behavior, which is FLOAT64.",
3544+
"Timestamp is output as float64 seconds since Unix epoch.",
3545+
"Timestamp is output as int64 microseconds since Unix epoch.",
3546+
"Timestamp is output as ISO 8601 String (\"YYYY-MM-DDTHH:MM:SS.FFFFFFFFFFFFZ\")."
3547+
],
3548+
"type": "string"
3549+
},
35003550
"useInt64Timestamp": {
35013551
"description": "Optional. Output timestamp as usec int64. Default is false.",
35023552
"type": "boolean"
@@ -4609,12 +4659,12 @@
46094659
"id": "ExternalRuntimeOptions",
46104660
"properties": {
46114661
"containerCpu": {
4612-
"description": "Optional. Amount of CPU provisioned for the container instance. If not specified, the default value is 0.33 vCPUs.",
4662+
"description": "Optional. Amount of CPU provisioned for a Python UDF container instance. For more information, see [Configure container limits for Python UDFs](https://cloud.google.com/bigquery/docs/user-defined-functions-python#configure-container-limits)",
46134663
"format": "double",
46144664
"type": "number"
46154665
},
46164666
"containerMemory": {
4617-
"description": "Optional. Amount of memory provisioned for the container instance. Format: {number}{unit} where unit is one of \"M\", \"G\", \"Mi\" and \"Gi\" (e.g. 1G, 512Mi). If not specified, the default value is 512Mi.",
4667+
"description": "Optional. Amount of memory provisioned for a Python UDF container instance. Format: {number}{unit} where unit is one of \"M\", \"G\", \"Mi\" and \"Gi\" (e.g. 1G, 512Mi). If not specified, the default value is 512Mi. For more information, see [Configure container limits for Python UDFs](https://cloud.google.com/bigquery/docs/user-defined-functions-python#configure-container-limits)",
46184668
"type": "string"
46194669
},
46204670
"maxBatchingRows": {
@@ -4627,7 +4677,7 @@
46274677
"type": "string"
46284678
},
46294679
"runtimeVersion": {
4630-
"description": "Optional. Language runtime version (e.g. python-3.11).",
4680+
"description": "Optional. Language runtime version. Example: `python-3.11`.",
46314681
"type": "string"
46324682
}
46334683
},
@@ -7541,11 +7591,11 @@
75417591
"id": "PythonOptions",
75427592
"properties": {
75437593
"entryPoint": {
7544-
"description": "Required. The entry point function in the user's Python code.",
7594+
"description": "Required. The name of the function defined in Python code as the entry point when the Python UDF is invoked.",
75457595
"type": "string"
75467596
},
75477597
"packages": {
7548-
"description": "Optional. A list of package names along with versions to be installed. Follows requirements.txt syntax (e.g. numpy==2.0, permutation, urllib3\u003c2.2.1)",
7598+
"description": "Optional. A list of Python package names along with versions to be installed. Example: [\"pandas\u003e=2.1\", \"google-cloud-translate==3.11\"]. For more information, see [Use third-party packages](https://cloud.google.com/bigquery/docs/user-defined-functions-python#third-party-packages).",
75497599
"items": {
75507600
"type": "string"
75517601
},
@@ -7623,6 +7673,12 @@
76237673
},
76247674
"type": "array"
76257675
},
7676+
"timestampPrecision": {
7677+
"default": "6",
7678+
"description": "Optional. Precision (maximum number of total digits in base 10) for seconds of TIMESTAMP type. Possible values include: * 6 (Default, for TIMESTAMP type with microsecond precision) * 12 (For TIMESTAMP type with picosecond precision)",
7679+
"format": "int64",
7680+
"type": "string"
7681+
},
76267682
"type": {
76277683
"description": "Required. The top level type of this field.",
76287684
"type": "string"
@@ -8244,7 +8300,7 @@
82448300
},
82458301
"pythonOptions": {
82468302
"$ref": "PythonOptions",
8247-
"description": "Optional. Options for Python UDF. [Preview](https://cloud.google.com/products/#product-launch-stages)"
8303+
"description": "Optional. Options for the Python UDF. [Preview](https://cloud.google.com/products/#product-launch-stages)"
82488304
},
82498305
"remoteFunctionOptions": {
82508306
"$ref": "RemoteFunctionOptions",

bigquery/v2/bigquery-gen.go

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

0 commit comments

Comments
 (0)