Show / Hide Table of Contents

Class CreateCertificateIssuedByInternalCaConfigDetails

The details of the configuration for creating an internally managed certificate which is issued by a private certificate authority (CA).

Inheritance
object
CreateCertificateConfigDetails
CreateCertificateIssuedByInternalCaConfigDetails
Inherited Members
CreateCertificateConfigDetails.VersionName
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 CreateCertificateIssuedByInternalCaConfigDetails : CreateCertificateConfigDetails

Properties

CertificateProfileType

Declaration
[Required(ErrorMessage = "CertificateProfileType is required.")]
[JsonProperty(PropertyName = "certificateProfileType")]
[JsonConverter(typeof(StringEnumConverter))]
public CertificateProfileType? CertificateProfileType { get; set; }
Property Value
Type Description
CertificateProfileType?

The name of the profile used to create the certificate, which depends on the type of certificate you need.

Remarks

Required

IssuerCertificateAuthorityId

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

The OCID of the private CA.

Remarks

Required

KeyAlgorithm

Declaration
[JsonProperty(PropertyName = "keyAlgorithm")]
[JsonConverter(typeof(StringEnumConverter))]
public KeyAlgorithm? KeyAlgorithm { get; set; }
Property Value
Type Description
KeyAlgorithm?

The algorithm to use to create key pairs.

SignatureAlgorithm

Declaration
[JsonProperty(PropertyName = "signatureAlgorithm")]
[JsonConverter(typeof(StringEnumConverter))]
public SignatureAlgorithm? SignatureAlgorithm { get; set; }
Property Value
Type Description
SignatureAlgorithm?

The algorithm to use to sign the public key certificate.

Subject

Declaration
[Required(ErrorMessage = "Subject is required.")]
[JsonProperty(PropertyName = "subject")]
public CertificateSubject Subject { get; set; }
Property Value
Type Description
CertificateSubject
Remarks

Required

SubjectAlternativeNames

Declaration
[JsonProperty(PropertyName = "subjectAlternativeNames")]
public List<CertificateSubjectAlternativeName> SubjectAlternativeNames { get; set; }
Property Value
Type Description
List<CertificateSubjectAlternativeName>

A list of subject alternative names.

Validity

Declaration
[JsonProperty(PropertyName = "validity")]
public Validity Validity { get; set; }
Property Value
Type Description
Validity
In this article
Back to top