public sealed class CertificateRawData : IMessage<CertificateRawData>, IEquatable<CertificateRawData>, IDeepCloneable<CertificateRawData>, IBufferMessage, IMessage
Reference documentation and code samples for the App Engine v1 API class CertificateRawData.
An SSL certificate obtained from a certificate authority.
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:
<pre>
-----BEGIN RSA PRIVATE KEY-----
<unencrypted_key_value>
-----END RSA PRIVATE KEY-----
</pre>
@InputOnly
PEM encoded x.509 public key certificate. This field is set once on
certificate creation. Must include the header and footer. Example:
<pre>
-----BEGIN CERTIFICATE-----
<certificate_value>
-----END CERTIFICATE-----
</pre>
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The latest version available for the `CertificateRawData` class within the Google.Cloud.AppEngine.V1 API is version 2.4.0, with the current page documenting version 2.3.0."],["The `CertificateRawData` class represents an SSL certificate obtained from a certificate authority and it inherits from the object class while implementing multiple interfaces, including IMessage, IEquatable, IDeepCloneable, and IBufferMessage."],["The class `CertificateRawData` includes two constructors: a default constructor and one that takes another `CertificateRawData` object as a parameter, along with two key properties: `PrivateKey` and `PublicCertificate`."],["`PrivateKey` and `PublicCertificate` properties, both of type string, manage the unencrypted RSA private key and the x.509 public key certificate, respectively."],["The documented versions for the `CertificateRawData` class span from 1.0.0 up to the current version of 2.3.0, with 2.4.0 being the latest."]]],[]]