Show / Hide Table of Contents

Class Validity

An object that describes a period of time during which an entity is valid. If this is not provided when you create a certificate, the validity of the issuing CA is used.

Inheritance
object
Validity
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 Validity

Properties

TimeOfValidityNotAfter

Declaration
[Required(ErrorMessage = "TimeOfValidityNotAfter is required.")]
[JsonProperty(PropertyName = "timeOfValidityNotAfter")]
public DateTime? TimeOfValidityNotAfter { get; set; }
Property Value
Type Description
DateTime?

The date on which the certificate validity period ends, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

Remarks

Required

TimeOfValidityNotBefore

Declaration
[JsonProperty(PropertyName = "timeOfValidityNotBefore")]
public DateTime? TimeOfValidityNotBefore { get; set; }
Property Value
Type Description
DateTime?

The date on which the certificate validity period begins, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

In this article
Back to top