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 `CertificateRawData` class in the `Google.Cloud.AppEngine.V1` namespace provides a representation of an SSL certificate obtained from a certificate authority."],["The latest version of the `CertificateRawData` class is 2.4.0, with versions ranging from 1.0.0 up to 2.4.0 available."],["The class inherits from `object` and implements `IMessage`, `IEquatable\u003cCertificateRawData\u003e`, `IDeepCloneable\u003cCertificateRawData\u003e`, and `IBufferMessage`, providing various functionalities."],["`CertificateRawData` includes properties `PrivateKey` and `PublicCertificate` for managing the unencrypted private key and public certificate data."],["The `CertificateRawData` class has two constructors: a default one and another to create a copy of an existing instance."]]],[]]