Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2814)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Oct 6, 2024
1 parent 8fad922 commit 2c6dcc6
Show file tree
Hide file tree
Showing 28 changed files with 1,215 additions and 147 deletions.
86 changes: 85 additions & 1 deletion apigee/v1/apigee-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,31 @@
"https://www.googleapis.com/auth/cloud-platform"
]
},
"getControlPlaneAccess": {
"description": "Lists the service accounts allowed to access Apigee control plane directly for limited functionality. **Note**: Available to Apigee hybrid only.",
"flatPath": "v1/organizations/{organizationsId}/controlPlaneAccess",
"httpMethod": "GET",
"id": "apigee.organizations.getControlPlaneAccess",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. Resource name of the Control Plane Access. Use the following structure in your request: `organizations/{org}/controlPlaneAccess`",
"location": "path",
"pattern": "^organizations/[^/]+/controlPlaneAccess$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "GoogleCloudApigeeV1ControlPlaneAccess"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"getDeployedIngressConfig": {
"description": "Gets the deployed ingress configuration for an organization.",
"flatPath": "v1/organizations/{organizationsId}/deployedIngressConfig",
Expand Down Expand Up @@ -479,6 +504,40 @@
"https://www.googleapis.com/auth/cloud-platform"
]
},
"updateControlPlaneAccess": {
"description": "Updates the permissions required to allow Apigee runtime-plane components access to the control plane. Currently, the permissions required are to: 1. Allow runtime components to publish analytics data to the control plane. **Note**: Available to Apigee hybrid only.",
"flatPath": "v1/organizations/{organizationsId}/controlPlaneAccess",
"httpMethod": "PATCH",
"id": "apigee.organizations.updateControlPlaneAccess",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Identifier. The resource name of the ControlPlaneAccess. Format: \"organizations/{org}/controlPlaneAccess\"",
"location": "path",
"pattern": "^organizations/[^/]+/controlPlaneAccess$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "List of fields to be updated. Fields that can be updated: synchronizer_identities, publisher_identities.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/{+name}",
"request": {
"$ref": "GoogleCloudApigeeV1ControlPlaneAccess"
},
"response": {
"$ref": "GoogleLongrunningOperation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"updateSecuritySettings": {
"description": "UpdateSecuritySettings updates the current security settings for API Security.",
"flatPath": "v1/organizations/{organizationsId}/securitySettings",
Expand Down Expand Up @@ -10314,7 +10373,7 @@
}
}
},
"revision": "20240927",
"revision": "20241004",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -12031,6 +12090,31 @@
},
"type": "object"
},
"GoogleCloudApigeeV1ControlPlaneAccess": {
"description": "ControlPlaneAccess is the request body and response body of UpdateControlPlaneAccess. and the response body of GetControlPlaneAccess. The input identities contains an array of service accounts to grant access to the respective control plane resource, with each service account specified using the following format: `serviceAccount:`***service-account-name***. The ***service-account-name*** is formatted like an email address. For example: `my-control-plane-service_account@my_project_id.iam.gserviceaccount.com` You might specify multiple service accounts, for example, if you have multiple environments and wish to assign a unique service account to each one.",
"id": "GoogleCloudApigeeV1ControlPlaneAccess",
"properties": {
"analyticsPublisherIdentities": {
"description": "Optional. Array of service accounts authorized to publish analytics data to the control plane (for the Message Processor component).",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Identifier. The resource name of the ControlPlaneAccess. Format: \"organizations/{org}/controlPlaneAccess\"",
"type": "string"
},
"synchronizerIdentities": {
"description": "Optional. Array of service accounts to grant access to control plane resources (for the Synchronizer component). The service accounts must have **Apigee Synchronizer Manager** role. See also [Create service accounts](https://cloud.google.com/apigee/docs/hybrid/latest/sa-about#create-the-service-accounts).",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"GoogleCloudApigeeV1Credential": {
"id": "GoogleCloudApigeeV1Credential",
"properties": {
Expand Down
Loading

0 comments on commit 2c6dcc6

Please sign in to comment.