aliases_certificate
Creates, updates, deletes, gets or lists an aliases_certificate
resource.
Overview
Name | aliases_certificate |
Type | Resource |
Id | google.apigee.aliases_certificate |
Fields
The following fields are returned by SELECT
queries:
- organizations_environments_keystores_aliases_get_certificate
Successful response
Name | Datatype | Description |
---|---|---|
contentType | string | The HTTP Content-Type header value specifying the content type of the body. |
data | string (byte) | The HTTP request/response body as raw binary. |
extensions | array | Application specific response metadata. Must be set in the first response for streaming APIs. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_environments_keystores_aliases_get_certificate | select | organizationsId , environmentsId , keystoresId , aliasesId | Gets the certificate from an alias in PEM-encoded form. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
aliasesId | string | |
environmentsId | string | |
keystoresId | string | |
organizationsId | string |
SELECT
examples
- organizations_environments_keystores_aliases_get_certificate
Gets the certificate from an alias in PEM-encoded form.
SELECT
contentType,
data,
extensions
FROM google.apigee.aliases_certificate
WHERE organizationsId = '{{ organizationsId }}' -- required
AND environmentsId = '{{ environmentsId }}' -- required
AND keystoresId = '{{ keystoresId }}' -- required
AND aliasesId = '{{ aliasesId }}' -- required;