Skip to content

Commit d8084e4

Browse files
feat(all): auto-regenerate discovery clients (#1809)
1 parent 4dca4e0 commit d8084e4

23 files changed

+1874
-57
lines changed

accesscontextmanager/v1/accesscontextmanager-api.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@
12351235
}
12361236
}
12371237
},
1238-
"revision": "20221213",
1238+
"revision": "20230109",
12391239
"rootUrl": "https://accesscontextmanager.googleapis.com/",
12401240
"schemas": {
12411241
"AccessContextManagerOperationMetadata": {
@@ -1836,7 +1836,7 @@
18361836
"type": "string"
18371837
},
18381838
"resource": {
1839-
"description": "A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format: `projects/{project_number}` The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. `*` is not allowed, the case of allowing all Google Cloud resources only is not supported.",
1839+
"description": "A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects and VPCs are allowed. Project format: `projects/{project_number}` VPC format: `//compute.googleapis.com/projects/{PROJECT_ID}/global/networks/{NAME}`. The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. `*` is not allowed, the case of allowing all Google Cloud resources only is not supported.",
18401840
"type": "string"
18411841
}
18421842
},
@@ -2222,7 +2222,7 @@
22222222
"type": "array"
22232223
},
22242224
"resources": {
2225-
"description": "A list of Google Cloud resources that are inside of the service perimeter. Currently only projects are allowed. Format: `projects/{project_number}`",
2225+
"description": "A list of Google Cloud resources that are inside of the service perimeter. Currently only projects and VPCs are allowed. Project format: `projects/{project_number}` VPC format: `//compute.googleapis.com/projects/{PROJECT_ID}/global/networks/{NAME}`.",
22262226
"items": {
22272227
"type": "string"
22282228
},

accesscontextmanager/v1/accesscontextmanager-gen.go

Lines changed: 11 additions & 7 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,7 +1710,7 @@
17101710
}
17111711
}
17121712
},
1713-
"revision": "20221209",
1713+
"revision": "20221217",
17141714
"rootUrl": "https://bigquery.googleapis.com/",
17151715
"schemas": {
17161716
"AggregateClassificationMetrics": {
@@ -2178,12 +2178,12 @@
21782178
"id": "BiEngineReason",
21792179
"properties": {
21802180
"code": {
2181-
"default": "$(reason.code)",
2181+
"default": "",
21822182
"description": "[Output-only] High-level BI Engine reason for partial or disabled acceleration.",
21832183
"type": "string"
21842184
},
21852185
"message": {
2186-
"default": "$(reason.message)",
2186+
"default": "",
21872187
"description": "[Output-only] Free form human-readable reason for partial or disabled acceleration.",
21882188
"type": "string"
21892189
}
@@ -2194,7 +2194,7 @@
21942194
"id": "BiEngineStatistics",
21952195
"properties": {
21962196
"biEngineMode": {
2197-
"default": "$(stats.bi_engine_mode)",
2197+
"default": "",
21982198
"description": "[Output-only] Specifies which mode of BI Engine acceleration was performed (if any).",
21992199
"type": "string"
22002200
},

cloudtasks/v2beta2/cloudtasks-api.json

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@
876876
}
877877
}
878878
},
879-
"revision": "20221025",
879+
"revision": "20230105",
880880
"rootUrl": "https://cloudtasks.googleapis.com/",
881881
"schemas": {
882882
"AcknowledgeTaskRequest": {
@@ -1474,6 +1474,17 @@
14741474
},
14751475
"type": "object"
14761476
},
1477+
"PathOverride": {
1478+
"description": "PathOverride. Path message defines path override for HTTP targets.",
1479+
"id": "PathOverride",
1480+
"properties": {
1481+
"path": {
1482+
"description": "The URI path (e.g., a/b/c). Default is Empty string.",
1483+
"type": "string"
1484+
}
1485+
},
1486+
"type": "object"
1487+
},
14771488
"PauseQueueRequest": {
14781489
"description": "Request message for PauseQueue.",
14791490
"id": "PauseQueueRequest",
@@ -1532,6 +1543,17 @@
15321543
"properties": {},
15331544
"type": "object"
15341545
},
1546+
"QueryOverride": {
1547+
"description": "QueryOverride. Query message defines query override for HTTP targets.",
1548+
"id": "QueryOverride",
1549+
"properties": {
1550+
"queryParams": {
1551+
"description": "The query parameters (e.g., qparam1=123\u0026qparam2=456). Default is Empty string.",
1552+
"type": "string"
1553+
}
1554+
},
1555+
"type": "object"
1556+
},
15351557
"Queue": {
15361558
"description": "A queue is a container of related tasks. Queues are configured to manage how those tasks are dispatched. Configurable properties include rate limits, retry options, target types, and others.",
15371559
"id": "Queue",
@@ -1899,24 +1921,24 @@
18991921
"id": "UriOverride",
19001922
"properties": {
19011923
"host": {
1902-
"description": "Host override. When specified, the host part of url will be overridden. For example, if the original Uri is \"https://www.google.com\", and host is set to \"example.net\", the overridden Uri will be \"https://example.net\".",
1924+
"description": "Host override. When specified, will replace the host part of the task URL. For example, if the task URL is \"https://www.google.com\", and host value is set to \"example.net\", the overridden URI will be changed to \"https://example.net\". Host value cannot be an empty string.",
19031925
"type": "string"
19041926
},
1905-
"path": {
1906-
"description": "Uri path. Will be used as the path for the current Uri (replaces any existing path of the task url).",
1907-
"type": "string"
1927+
"pathOverride": {
1928+
"$ref": "PathOverride",
1929+
"description": "URI path. When specified, will replace the existing path of the task URL. Setting the path value to an empty string clears the URI path segment."
19081930
},
19091931
"port": {
1910-
"description": "Port override. When specified, the port part of Uri will be replaced by the provided value. For instance, for a Uri http://www.google.com/foo and port=123 the overridden Uri becomes http://www.google.com:123/foo.",
1932+
"description": "Port override. When specified, will replace the port part of the task URI. For instance, for a URI http://www.google.com/foo and port=123, the overridden URI becomes http://www.google.com:123/foo. Note that the port value must be a positive integer. Setting the port to 0 (Zero) clears the URI port.",
19111933
"format": "int64",
19121934
"type": "string"
19131935
},
1914-
"query": {
1915-
"description": "Uri Query. Will replace the query part of the task uri.",
1916-
"type": "string"
1936+
"queryOverride": {
1937+
"$ref": "QueryOverride",
1938+
"description": "URI Query. When specified, will replace the query part of the task URI. Setting the query value to an empty string clears the URI query segment."
19171939
},
19181940
"scheme": {
1919-
"description": "Scheme override. When specified, the Uri scheme is replaced by the provided value.",
1941+
"description": "Scheme override. When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS).",
19201942
"enum": [
19211943
"SCHEME_UNSPECIFIED",
19221944
"HTTP",
@@ -1930,7 +1952,7 @@
19301952
"type": "string"
19311953
},
19321954
"uriOverrideEnforceMode": {
1933-
"description": "Uri Override Enforce Mode Determines the Target UriOverride mode.",
1955+
"description": "URI Override Enforce Mode When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS.",
19341956
"enum": [
19351957
"URI_OVERRIDE_ENFORCE_MODE_UNSPECIFIED",
19361958
"IF_NOT_EXISTS",

cloudtasks/v2beta2/cloudtasks-gen.go

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

0 commit comments

Comments
 (0)