Show / Hide Table of Contents

Class CertificateRenewalRule

A rule that imposes constraints on certificate renewal.

Inheritance
object
CertificateRule
CertificateRenewalRule
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 CertificateRenewalRule : CertificateRule

Properties

AdvanceRenewalPeriod

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

A property specifying the period of time, in days, before the certificate's targeted renewal that the process should occur. Expressed in ISO 8601 format.

Remarks

Required

RenewalInterval

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

A property specifying how often, in days, a certificate should be renewed. Expressed in ISO 8601 format.

Remarks

Required

In this article
Back to top