Show / Hide Table of Contents

Class CertificateBundleWithPrivateKey

A certificate bundle, including the private key.

Inheritance
object
CertificateBundle
CertificateBundleWithPrivateKey
Inherited Members
CertificateBundle.CertificateId
CertificateBundle.CertificateName
CertificateBundle.VersionNumber
CertificateBundle.SerialNumber
CertificateBundle.CertificatePem
CertificateBundle.CertChainPem
CertificateBundle.TimeCreated
CertificateBundle.Validity
CertificateBundle.VersionName
CertificateBundle.Stages
CertificateBundle.RevocationStatus
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CertificatesService.Models
Assembly: OCI.DotNetSDK.Certificates.dll
Syntax
public class CertificateBundleWithPrivateKey : CertificateBundle

Properties

PrivateKeyPem

Declaration
[Required(ErrorMessage = "PrivateKeyPem is required.")]
[JsonProperty(PropertyName = "privateKeyPem")]
public string PrivateKeyPem { get; set; }
Property Value
Type Description
string

The private key (in PEM format) for the certificate.

Remarks

Required

PrivateKeyPemPassphrase

Declaration
[JsonProperty(PropertyName = "privateKeyPemPassphrase")]
public string PrivateKeyPemPassphrase { get; set; }
Property Value
Type Description
string

An optional passphrase for the private key.

In this article
Back to top