Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1809)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jan 12, 2023
1 parent 4dca4e0 commit d8084e4
Show file tree
Hide file tree
Showing 23 changed files with 1,874 additions and 57 deletions.
6 changes: 3 additions & 3 deletions accesscontextmanager/v1/accesscontextmanager-api.json
Expand Up @@ -1235,7 +1235,7 @@
}
}
},
"revision": "20221213",
"revision": "20230109",
"rootUrl": "https://accesscontextmanager.googleapis.com/",
"schemas": {
"AccessContextManagerOperationMetadata": {
Expand Down Expand Up @@ -1836,7 +1836,7 @@
"type": "string"
},
"resource": {
"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.",
"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.",
"type": "string"
}
},
Expand Down Expand Up @@ -2222,7 +2222,7 @@
"type": "array"
},
"resources": {
"description": "A list of Google Cloud resources that are inside of the service perimeter. Currently only projects are allowed. Format: `projects/{project_number}`",
"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}`.",
"items": {
"type": "string"
},
Expand Down
18 changes: 11 additions & 7 deletions accesscontextmanager/v1/accesscontextmanager-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions bigquery/v2/bigquery-api.json
Expand Up @@ -1710,7 +1710,7 @@
}
}
},
"revision": "20221209",
"revision": "20221217",
"rootUrl": "https://bigquery.googleapis.com/",
"schemas": {
"AggregateClassificationMetrics": {
Expand Down Expand Up @@ -2178,12 +2178,12 @@
"id": "BiEngineReason",
"properties": {
"code": {
"default": "$(reason.code)",
"default": "",
"description": "[Output-only] High-level BI Engine reason for partial or disabled acceleration.",
"type": "string"
},
"message": {
"default": "$(reason.message)",
"default": "",
"description": "[Output-only] Free form human-readable reason for partial or disabled acceleration.",
"type": "string"
}
Expand All @@ -2194,7 +2194,7 @@
"id": "BiEngineStatistics",
"properties": {
"biEngineMode": {
"default": "$(stats.bi_engine_mode)",
"default": "",
"description": "[Output-only] Specifies which mode of BI Engine acceleration was performed (if any).",
"type": "string"
},
Expand Down
44 changes: 33 additions & 11 deletions cloudtasks/v2beta2/cloudtasks-api.json
Expand Up @@ -876,7 +876,7 @@
}
}
},
"revision": "20221025",
"revision": "20230105",
"rootUrl": "https://cloudtasks.googleapis.com/",
"schemas": {
"AcknowledgeTaskRequest": {
Expand Down Expand Up @@ -1474,6 +1474,17 @@
},
"type": "object"
},
"PathOverride": {
"description": "PathOverride. Path message defines path override for HTTP targets.",
"id": "PathOverride",
"properties": {
"path": {
"description": "The URI path (e.g., a/b/c). Default is Empty string.",
"type": "string"
}
},
"type": "object"
},
"PauseQueueRequest": {
"description": "Request message for PauseQueue.",
"id": "PauseQueueRequest",
Expand Down Expand Up @@ -1532,6 +1543,17 @@
"properties": {},
"type": "object"
},
"QueryOverride": {
"description": "QueryOverride. Query message defines query override for HTTP targets.",
"id": "QueryOverride",
"properties": {
"queryParams": {
"description": "The query parameters (e.g., qparam1=123\u0026qparam2=456). Default is Empty string.",
"type": "string"
}
},
"type": "object"
},
"Queue": {
"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.",
"id": "Queue",
Expand Down Expand Up @@ -1899,24 +1921,24 @@
"id": "UriOverride",
"properties": {
"host": {
"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\".",
"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.",
"type": "string"
},
"path": {
"description": "Uri path. Will be used as the path for the current Uri (replaces any existing path of the task url).",
"type": "string"
"pathOverride": {
"$ref": "PathOverride",
"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."
},
"port": {
"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.",
"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.",
"format": "int64",
"type": "string"
},
"query": {
"description": "Uri Query. Will replace the query part of the task uri.",
"type": "string"
"queryOverride": {
"$ref": "QueryOverride",
"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."
},
"scheme": {
"description": "Scheme override. When specified, the Uri scheme is replaced by the provided value.",
"description": "Scheme override. When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS).",
"enum": [
"SCHEME_UNSPECIFIED",
"HTTP",
Expand All @@ -1930,7 +1952,7 @@
"type": "string"
},
"uriOverrideEnforceMode": {
"description": "Uri Override Enforce Mode Determines the Target UriOverride mode.",
"description": "URI Override Enforce Mode When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS.",
"enum": [
"URI_OVERRIDE_ENFORCE_MODE_UNSPECIFIED",
"IF_NOT_EXISTS",
Expand Down
99 changes: 82 additions & 17 deletions cloudtasks/v2beta2/cloudtasks-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d8084e4

Please sign in to comment.