Struct google_appengine1::CertificateRawData[][src]

pub struct CertificateRawData {
    pub private_key: Option<String>,
    pub public_certificate: Option<String>,
}

An SSL certificate obtained from a certificate authority.

This type is not used in any activity, and only used as part of another schema.

Fields

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

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----- 

Trait Implementations

impl Default for CertificateRawData
[src]

Returns the "default value" for a type. Read more

impl Clone for CertificateRawData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CertificateRawData
[src]

Formats the value using the given formatter. Read more

impl Part for CertificateRawData
[src]

Auto Trait Implementations