Show / Hide Table of Contents

Class CreateSubordinateCaIssuedByInternalCaConfigDetails

The details for creating a private subordinate certificate authority (CA) which is issued by a private CA.

Inheritance
object
CreateCertificateAuthorityConfigDetails
CreateSubordinateCaIssuedByInternalCaConfigDetails
Inherited Members
CreateCertificateAuthorityConfigDetails.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 CreateSubordinateCaIssuedByInternalCaConfigDetails : CreateCertificateAuthorityConfigDetails

Properties

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

SigningAlgorithm

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

The algorithm used to sign public key certificates that the CA issues.

Subject

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

Required

Validity

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