Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1561)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed May 27, 2022
1 parent 3093678 commit e3ac188
Show file tree
Hide file tree
Showing 29 changed files with 2,724 additions and 526 deletions.
19 changes: 2 additions & 17 deletions api-list.json
Expand Up @@ -571,28 +571,13 @@
"documentationLink": "https://developers.google.com/authorized-buyers/apis/marketplace/reference/rest/",
"preferred": true
},
{
"kind": "discovery#directoryItem",
"id": "baremetalsolution:v1alpha1",
"name": "baremetalsolution",
"version": "v1alpha1",
"title": "Bare Metal Solution API",
"description": "Provides ways to manage Bare Metal Solution hardware installed in a regional extension located near a Google Cloud data center.",
"discoveryRestUrl": "https://baremetalsolution.googleapis.com/$discovery/rest?version=v1alpha1",
"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/bare-metal",
"preferred": false
},
{
"kind": "discovery#directoryItem",
"id": "baremetalsolution:v1",
"name": "baremetalsolution",
"version": "v1",
"title": "Bare Metal Solution API",
"description": "Provides ways to manage Bare Metal Solution hardware installed in a regional extension located near a Google Cloud data center.",
"description": "Bare Metal Solution provides hardware to run specialized workloads with low latency on Google Cloud.",
"discoveryRestUrl": "https://baremetalsolution.googleapis.com/$discovery/rest?version=v1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
Expand All @@ -607,7 +592,7 @@
"name": "baremetalsolution",
"version": "v2",
"title": "Bare Metal Solution API",
"description": "Provides ways to manage Bare Metal Solution hardware installed in a regional extension located near a Google Cloud data center.",
"description": "Bare Metal Solution provides hardware to run specialized workloads with low latency on Google Cloud.",
"discoveryRestUrl": "https://baremetalsolution.googleapis.com/$discovery/rest?version=v2",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
Expand Down
42 changes: 36 additions & 6 deletions apigee/v1/apigee-api.json
Expand Up @@ -267,6 +267,31 @@
"https://www.googleapis.com/auth/cloud-platform"
]
},
"getProjectMapping": {
"description": "Gets the project ID and region for an Apigee organization.",
"flatPath": "v1/organizations/{organizationsId}:getProjectMapping",
"httpMethod": "GET",
"id": "apigee.organizations.getProjectMapping",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. Apigee organization name in the following format: `organizations/{org}`",
"location": "path",
"pattern": "^organizations/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}:getProjectMapping",
"response": {
"$ref": "GoogleCloudApigeeV1OrganizationProjectMapping"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"getRuntimeConfig": {
"description": "Get runtime config for an organization.",
"flatPath": "v1/organizations/{organizationsId}/runtimeConfig",
Expand Down Expand Up @@ -7601,7 +7626,7 @@
}
}
},
"revision": "20220509",
"revision": "20220519",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -9160,21 +9185,21 @@
"type": "string"
},
"errors": {
"description": "Errors reported for this deployment. Populated only when state == ERROR. This field is not populated in List APIs.",
"description": "Errors reported for this deployment. Populated only when state == ERROR. **Note**: This field is displayed only when viewing deployment status.",
"items": {
"$ref": "GoogleRpcStatus"
},
"type": "array"
},
"instances": {
"description": "Status reported by each runtime instance. This field is not populated in List APIs.",
"description": "Status reported by each runtime instance. **Note**: This field is displayed only when viewing deployment status.",
"items": {
"$ref": "GoogleCloudApigeeV1InstanceDeploymentStatus"
},
"type": "array"
},
"pods": {
"description": "Status reported by runtime pods. This field is not populated for List APIs. **Note**: **This field is deprecated**. Runtime versions 1.3 and above report instance level status rather than pod status.",
"description": "Status reported by runtime pods. **Note**: **This field is deprecated**. Runtime versions 1.3 and above report instance level status rather than pod status.",
"items": {
"$ref": "GoogleCloudApigeeV1PodStatus"
},
Expand All @@ -9185,7 +9210,7 @@
"type": "string"
},
"routeConflicts": {
"description": "Conflicts in the desired state routing configuration. The presence of conflicts does not cause the state to be `ERROR`, but it will mean that some of the deployment's base paths are not routed to its environment. If the conflicts change, the state will transition to `PROGRESSING` until the latest configuration is rolled out to all instances. This field is not populated in List APIs.",
"description": "Conflicts in the desired state routing configuration. The presence of conflicts does not cause the state to be `ERROR`, but it will mean that some of the deployment's base paths are not routed to its environment. If the conflicts change, the state will transition to `PROGRESSING` until the latest configuration is rolled out to all instances. **Note**: This field is displayed only when viewing deployment status.",
"items": {
"$ref": "GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict"
},
Expand All @@ -9196,7 +9221,7 @@
"type": "string"
},
"state": {
"description": "Current state of the deployment. This field is not populated in List APIs.",
"description": "Current state of the deployment. **Note**: This field is displayed only when viewing deployment status.",
"enum": [
"RUNTIME_STATE_UNSPECIFIED",
"READY",
Expand Down Expand Up @@ -11497,6 +11522,11 @@
"GoogleCloudApigeeV1OrganizationProjectMapping": {
"id": "GoogleCloudApigeeV1OrganizationProjectMapping",
"properties": {
"location": {
"description": "Output only. The Google Cloud region where control plane data is located. For more information, see https://cloud.google.com/about/locations/.",
"readOnly": true,
"type": "string"
},
"organization": {
"description": "Name of the Apigee organization.",
"type": "string"
Expand Down
190 changes: 175 additions & 15 deletions apigee/v1/apigee-gen.go

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

0 comments on commit e3ac188

Please sign in to comment.