Show / Hide Table of Contents

Class CreateRootCaByGeneratingInternallyConfigDetails

The details for creating a private root certificate authority (CA).

Inheritance
object
CreateCertificateAuthorityConfigDetails
CreateRootCaByGeneratingInternallyConfigDetails
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 CreateRootCaByGeneratingInternallyConfigDetails : CreateCertificateAuthorityConfigDetails

Properties

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