Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1523)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Apr 26, 2022
1 parent fa8b991 commit 9b3cabe
Show file tree
Hide file tree
Showing 21 changed files with 5,824 additions and 1,435 deletions.
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.

0 comments on commit 9b3cabe

Please sign in to comment.