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-04-17 UTC."],[[["This webpage provides documentation for the `CertificateRawData` class within the Google Cloud App Engine v1 API for .NET."],["`CertificateRawData` represents an SSL certificate acquired from a certificate authority and includes a constructor and two main properties, `PrivateKey` and `PublicCertificate`."],["The `PrivateKey` property is a string that contains the unencrypted PEM encoded RSA private key and is set upon certificate creation, which must be 2048 bits or fewer."],["The `PublicCertificate` property is a string that holds the PEM encoded x.509 public key certificate and is also set upon certificate creation."],["The documentation outlines the class's inheritance, the interfaces it implements, including IMessage, IEquatable, IDeepCloneable, and IBufferMessage, and lists inherited members."]]],[]]