List

Lists all SSL certificates the user is authorized to administer

4 variables
15 variables

Lists all SSL certificates the user is authorized to administer

Authorization

To use this building block you will have to grant access to at least one of the following scopes:

  • View and manage your applications deployed on Google App Engine
  • View and manage your data across Google Cloud Platform services
  • View your data across Google Cloud Platform services

Input

This building block consumes 4 input parameters

  = Parameter name
  = Format

appsId STRING Required

Part of parent. Name of the parent Application resource. Example: apps/myapp

pageToken STRING

Continuation token for fetching the next page of results

pageSize INTEGER

Maximum results to return per page

view ENUMERATION

Controls the set of fields returned in the LIST response

Output

This building block provides 15 output parameters

  = Parameter name
  = Format

nextPageToken STRING

Continuation token for fetching the next page of results

certificates[] OBJECT

An SSL certificate that a user has been authorized to administer. A user is authorized to administer any certificate that applies to one of their authorized domains

certificates[].visibleDomainMappings[] STRING

certificates[].expireTime ANY

The time when this certificate expires. To update the renewal time on this certificate, upload an SSL certificate with a different expiration time using AuthorizedCertificates.UpdateAuthorizedCertificate.@OutputOnly

certificates[].name STRING

Full path to the AuthorizedCertificate resource in the API. Example: apps/myapp/authorizedCertificates/12345.@OutputOnly

certificates[].domainMappingsCount INTEGER

Aggregate count of the domain mappings with this certificate mapped. This count includes domain mappings on applications for which the user does not have VIEWER permissions.Only returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly

certificates[].domainNames[] STRING

certificates[].id STRING

Relative name of the certificate. This is a unique value autogenerated on AuthorizedCertificate resource creation. Example: 12345.@OutputOnly

certificates[].displayName STRING

The user-specified display name of the certificate. This is not guaranteed to be unique. Example: My Certificate

certificates[].managedCertificate OBJECT

A certificate managed by App Engine

certificates[].managedCertificate.lastRenewalTime ANY

Time at which the certificate was last renewed. The renewal process is fully managed. Certificate renewal will automatically occur before the certificate expires. Renewal errors can be tracked via ManagementStatus.@OutputOnly

certificates[].managedCertificate.status ENUMERATION

Status of certificate management. Refers to the most recent certificate acquisition or renewal attempt.@OutputOnly

certificates[].certificateRawData OBJECT

An SSL certificate obtained from a certificate authority

certificates[].certificateRawData.publicCertificate STRING

PEM encoded x.509 public key certificate. This field is set once on certificate creation. Must include the header and footer. Example:

 -----BEGIN CERTIFICATE----- <certificate_value> -----END CERTIFICATE----- 

certificates[].certificateRawData.privateKey STRING

Unencrypted PEM encoded RSA private key. This field is set once on certificate creation and then encrypted. The key size must be 2048 bits or fewer. Must include the header and footer. Example:

 -----BEGIN RSA PRIVATE KEY----- <unencrypted_key_value> -----END RSA PRIVATE KEY----- 
@InputOnly