Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1614)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jul 12, 2022
1 parent 4b4693b commit 7532bd6
Show file tree
Hide file tree
Showing 19 changed files with 265 additions and 63 deletions.
15 changes: 0 additions & 15 deletions api-list.json
Expand Up @@ -991,21 +991,6 @@
"documentationLink": "https://cloud.google.com/asset-inventory/docs/quickstart",
"preferred": false
},
{
"kind": "discovery#directoryItem",
"id": "cloudasset:v1p4beta1",
"name": "cloudasset",
"version": "v1p4beta1",
"title": "Cloud Asset API",
"description": "The cloud asset API manages the history and inventory of cloud resources.",
"discoveryRestUrl": "https://cloudasset.googleapis.com/$discovery/rest?version=v1p4beta1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
"x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp.png"
},
"documentationLink": "https://cloud.google.com/asset-inventory/docs/quickstart",
"preferred": false
},
{
"kind": "discovery#directoryItem",
"id": "cloudasset:v1p5beta1",
Expand Down
48 changes: 44 additions & 4 deletions baremetalsolution/v2/baremetalsolution-api.json
Expand Up @@ -654,6 +654,35 @@
}
}
},
"operations": {
"methods": {
"get": {
"description": "Get details about an operation. This method used only to work around CCFE lack of passthrough LRO support (b/221498758).",
"flatPath": "v2/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}",
"httpMethod": "GET",
"id": "baremetalsolution.projects.locations.operations.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "The name of the operation resource.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/operations/.*$",
"required": true,
"type": "string"
}
},
"path": "v2/{+name}",
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"provisioningConfigs": {
"methods": {
"create": {
Expand Down Expand Up @@ -1027,7 +1056,7 @@
}
}
},
"revision": "20220627",
"revision": "20220706",
"rootUrl": "https://baremetalsolution.googleapis.com/",
"schemas": {
"AllowedClient": {
Expand Down Expand Up @@ -1082,6 +1111,10 @@
"lun": {
"description": "Required. Name of the Lun to detach.",
"type": "string"
},
"skipReboot": {
"description": "If true, performs lun unmapping without instance reboot.",
"type": "boolean"
}
},
"type": "object"
Expand Down Expand Up @@ -1752,12 +1785,14 @@
"enum": [
"STATE_UNSPECIFIED",
"PROVISIONING",
"PROVISIONED"
"PROVISIONED",
"DEPROVISIONING"
],
"enumDescriptions": [
"The Network is in an unknown state.",
"The Network is provisioning.",
"The Network has been provisioned."
"The Network has been provisioned.",
"The Network is being deprovisioned."
],
"type": "string"
},
Expand Down Expand Up @@ -1991,6 +2026,11 @@
},
"type": "array"
},
"id": {
"description": "Output only. An identifier for the NFS share, generated by the backend. This is the same value as nfs_share_id and will replace it in the future.",
"readOnly": true,
"type": "string"
},
"labels": {
"additionalProperties": {
"type": "string"
Expand All @@ -2004,7 +2044,7 @@
"type": "string"
},
"nfsShareId": {
"description": "Output only. An identifier for the NFS share, generated by the backend.",
"description": "Output only. An identifier for the NFS share, generated by the backend. This field will be deprecated in the future, use `id` instead.",
"readOnly": true,
"type": "string"
},
Expand Down
171 changes: 170 additions & 1 deletion baremetalsolution/v2/baremetalsolution-gen.go

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

6 changes: 3 additions & 3 deletions chromemanagement/v1/chromemanagement-api.json
Expand Up @@ -519,7 +519,7 @@
}
}
},
"revision": "20220703",
"revision": "20220708",
"rootUrl": "https://chromemanagement.googleapis.com/",
"schemas": {
"GoogleChromeManagementV1AndroidAppInfo": {
Expand Down Expand Up @@ -1803,7 +1803,7 @@
"type": "string"
},
"receivingBitRateMbps": {
"description": "Output only. Receiving bit rate measured in megabytes per second.",
"description": "Output only. Receiving bit rate measured in Megabits per second.",
"format": "int64",
"readOnly": true,
"type": "string"
Expand All @@ -1827,7 +1827,7 @@
"type": "integer"
},
"transmissionBitRateMbps": {
"description": "Output only. Transmission bit rate measured in megabytes per second.",
"description": "Output only. Transmission bit rate measured in Megabits per second.",
"format": "int64",
"readOnly": true,
"type": "string"
Expand Down
4 changes: 2 additions & 2 deletions chromemanagement/v1/chromemanagement-gen.go

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

0 comments on commit 7532bd6

Please sign in to comment.