Skip to main content

aliases_certificate

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

Overview

Namealiases_certificate
TypeResource
Idgoogle.apigee.aliases_certificate

Fields

The following fields are returned by SELECT queries:

Successful response

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_environments_keystores_aliases_get_certificateselectorganizationsId, environmentsId, keystoresId, aliasesIdGets 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.

NameDatatypeDescription
aliasesIdstring
environmentsIdstring
keystoresIdstring
organizationsIdstring

SELECT examples

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;