Class CertificateRawData
An SSL certificate obtained from a certificate authority.
Implements
Inherited Members
Namespace: Google.Apis.Appengine.v1.Data
Assembly: Google.Apis.Appengine.v1.dll
Syntax
public class CertificateRawData : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
PrivateKey
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----- -----END RSA PRIVATE KEY----- @InputOnly
Declaration
[JsonProperty("privateKey")]
public virtual string PrivateKey { get; set; }
Property Value
Type | Description |
---|---|
string |
PublicCertificate
PEM encoded x.509 public key certificate. This field is set once on certificate creation. Must include the header and footer. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE-----
Declaration
[JsonProperty("publicCertificate")]
public virtual string PublicCertificate { get; set; }
Property Value
Type | Description |
---|---|
string |