Skip to main content

aliases_certificate

Creates, updates, deletes, gets or lists a aliases_certificate resource.

Overview

Namealiases_certificate
TypeResource
Idgoogle.apigee.aliases_certificate

Fields

NameDatatypeDescription
contentTypestringThe HTTP Content-Type header value specifying the content type of the body.
datastringThe HTTP request/response body as raw binary.
extensionsarrayApplication specific response metadata. Must be set in the first response for streaming APIs.

Methods

NameAccessible byRequired ParamsDescription
organizations_environments_keystores_aliases_get_certificateSELECTaliasesId, environmentsId, keystoresId, organizationsIdGets the certificate from an alias in PEM-encoded form.

SELECT examples

Gets the certificate from an alias in PEM-encoded form.

SELECT
contentType,
data,
extensions
FROM google.apigee.aliases_certificate
WHERE aliasesId = '{{ aliasesId }}'
AND environmentsId = '{{ environmentsId }}'
AND keystoresId = '{{ keystoresId }}'
AND organizationsId = '{{ organizationsId }}';