Class CertificateRawData (0.2.0)

CertificateRawData(mapping=None, *, ignore_unknown_fields=False, **kwargs)

An SSL certificate obtained from a certificate authority. .. attribute:: public_certificate

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

.. raw:: html

   <pre>
   -----BEGIN CERTIFICATE-----
   <certificate_value>
   -----END CERTIFICATE-----
   </pre>

:type: str

Attribute

NameDescription
private_key str
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: .. raw:: html
       -----BEGIN RSA PRIVATE KEY-----
       
@InputOnly

Inheritance

builtins.object > proto.message.Message > CertificateRawData