Show / Hide Table of Contents

Class CertificateRevocationListDetails

The details of the certificate revocation list (CRL).

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

Properties

CustomFormattedUrls

Declaration
[JsonProperty(PropertyName = "customFormattedUrls")]
public List<string> CustomFormattedUrls { get; set; }
Property Value
Type Description
List<string>

Optional CRL access points, expressed using a format where the version number of the issuing CA is inserted wherever you include a pair of curly braces. This versioning scheme helps avoid collisions when new CA versions are created. For example, myCrlFileIssuedFromCAVersion{}.crl becomes myCrlFileIssuedFromCAVersion2.crl for CA version 2.

ObjectStorageConfig

Declaration
[Required(ErrorMessage = "ObjectStorageConfig is required.")]
[JsonProperty(PropertyName = "objectStorageConfig")]
public ObjectStorageBucketConfigDetails ObjectStorageConfig { get; set; }
Property Value
Type Description
ObjectStorageBucketConfigDetails
Remarks

Required

In this article
Back to top