Show / Hide Table of Contents

Class CreateSubordinateCaManagedInternallyIssuedByExternalCaConfigDetails

The configuration details for creating an internally managed subordinate certificate authority (CA) which is issued by an external private CA.

Inheritance
object
CreateCertificateAuthorityConfigDetails
CreateSubordinateCaManagedInternallyIssuedByExternalCaConfigDetails
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 CreateSubordinateCaManagedInternallyIssuedByExternalCaConfigDetails : 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, external issuer 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

In this article
Back to top