Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #1523

Merged
merged 1 commit into from Apr 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions api-list.json
Expand Up @@ -2397,7 +2397,7 @@
"name": "eventarc",
"version": "v1beta1",
"title": "Eventarc API",
"description": "",
"description": "Build event-driven applications on Google Cloud Platform.",
"discoveryRestUrl": "https://eventarc.googleapis.com/$discovery/rest?version=v1beta1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
Expand All @@ -2412,7 +2412,7 @@
"name": "eventarc",
"version": "v1",
"title": "Eventarc API",
"description": "",
"description": "Build event-driven applications on Google Cloud Platform.",
"discoveryRestUrl": "https://eventarc.googleapis.com/$discovery/rest?version=v1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
Expand Down
4 changes: 2 additions & 2 deletions apigee/v1/apigee-api.json
Expand Up @@ -7588,7 +7588,7 @@
}
}
},
"revision": "20220407",
"revision": "20220421",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -8009,7 +8009,7 @@
"type": "boolean"
},
"revision": {
"description": "Output only. List of revisons defined for the API proxy.",
"description": "Output only. List of revisions defined for the API proxy.",
"items": {
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion apigee/v1/apigee-gen.go

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

59 changes: 55 additions & 4 deletions baremetalsolution/v2/baremetalsolution-api.json
Expand Up @@ -290,7 +290,7 @@
"type": "string"
},
"updateMask": {
"description": "The list of fields to update. The only currently supported fields are: `labels`",
"description": "The list of fields to update. The only currently supported fields are: `labels` `hyperthreading_enabled`",
"format": "google-fieldmask",
"location": "query",
"type": "string"
Expand Down Expand Up @@ -362,6 +362,34 @@
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"stop": {
"description": "Stop a running server.",
"flatPath": "v2/projects/{projectsId}/locations/{locationsId}/instances/{instancesId}:stop",
"httpMethod": "POST",
"id": "baremetalsolution.projects.locations.instances.stop",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. Name of the resource.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/instances/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v2/{+name}:stop",
"request": {
"$ref": "StopInstanceRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
Expand Down Expand Up @@ -1251,7 +1279,7 @@
}
}
},
"revision": "20220405",
"revision": "20220418",
"rootUrl": "https://baremetalsolution.googleapis.com/",
"schemas": {
"AllowedClient": {
Expand Down Expand Up @@ -1371,6 +1399,10 @@
},
"type": "array"
},
"osImage": {
"description": "The OS image currently installed on the server.",
"type": "string"
},
"state": {
"description": "The state of the server.",
"enum": [
Expand Down Expand Up @@ -2269,12 +2301,20 @@
"enum": [
"STATE_UNSPECIFIED",
"DRAFT",
"SUBMITTED"
"SUBMITTED",
"PROVISIONING",
"PROVISIONED",
"VALIDATED",
"CANCELLED"
],
"enumDescriptions": [
"State wasn't specified.",
"ProvisioningConfig is a draft and can be freely modified.",
"ProvisioningConfig was already submitted and cannot be modified."
"ProvisioningConfig was already submitted and cannot be modified.",
"ProvisioningConfig was in the provisioning state. Initially this state comes from the work order table in big query when SNOW is used. Later this field can be set by the work order API.",
"ProvisioningConfig was provisioned, meaning the resources exist.",
"ProvisioningConfig was validated. A validation tool will be run to set this state.",
"ProvisioningConfig was canceled."
],
"readOnly": true,
"type": "string"
Expand Down Expand Up @@ -2535,6 +2575,12 @@
},
"type": "object"
},
"StopInstanceRequest": {
"description": "Message requesting to stop a server.",
"id": "StopInstanceRequest",
"properties": {},
"type": "object"
},
"SubmitProvisioningConfigRequest": {
"description": "Request for SubmitProvisioningConfig.",
"id": "SubmitProvisioningConfigRequest",
Expand Down Expand Up @@ -2631,6 +2677,11 @@
"format": "int64",
"type": "string"
},
"emergencySizeGib": {
"description": "Additional emergency size that was requested for this Volume, in GiB. current_size_gib includes this value.",
"format": "int64",
"type": "string"
},
"id": {
"description": "An identifier for the `Volume`, generated by the backend.",
"type": "string"
Expand Down
164 changes: 163 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.