Show / Hide Table of Contents

Class CertificateAuthorityIssuanceExpiryRule

A rule that enforces how long certificates or certificate authorities (CAs) issued by this particular CA are valid. You must include either or both leafCertificateMaxValidityDuration and certificateAuthorityMaxValidityDuration.

Inheritance
object
CertificateAuthorityRule
CertificateAuthorityIssuanceExpiryRule
Inherited Members
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 CertificateAuthorityIssuanceExpiryRule : CertificateAuthorityRule

Properties

CertificateAuthorityMaxValidityDuration

Declaration
[JsonProperty(PropertyName = "certificateAuthorityMaxValidityDuration")]
public string CertificateAuthorityMaxValidityDuration { get; set; }
Property Value
Type Description
string

A property indicating the maximum validity duration, in days, of subordinate CA's issued by this CA. Expressed in ISO 8601 format.

LeafCertificateMaxValidityDuration

Declaration
[JsonProperty(PropertyName = "leafCertificateMaxValidityDuration")]
public string LeafCertificateMaxValidityDuration { get; set; }
Property Value
Type Description
string

A property indicating the maximum validity duration, in days, of leaf certificates issued by this CA. Expressed in ISO 8601 format.

In this article
Back to top