Show / Hide Table of Contents

Class UpdateCertificateByImportingConfigDetails

The details of the configuration for updating a certificate based on the keys from an imported certificate.

Inheritance
object
UpdateCertificateConfigDetails
UpdateCertificateByImportingConfigDetails
Inherited Members
UpdateCertificateConfigDetails.VersionName
UpdateCertificateConfigDetails.Stage
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CertificatesmanagementService.Models
Assembly: OCI.DotNetSDK.Certificatesmanagement.dll
Syntax
public class UpdateCertificateByImportingConfigDetails : UpdateCertificateConfigDetails

Properties

CertChainPem

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

The certificate chain (in PEM format) for the imported certificate.

Remarks

Required

CertificatePem

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

The certificate (in PEM format) for the imported certificate.

Remarks

Required

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 imported 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