Show / Hide Table of Contents

Class ObjectStorageBucketConfigDetails

The details of the Object Storage bucket configured to store the certificate revocation list (CRL).

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

Properties

ObjectStorageBucketName

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

The name of the bucket where the CRL is stored.

Remarks

Required

ObjectStorageNamespace

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

The tenancy of the bucket where the CRL is stored.

ObjectStorageObjectNameFormat

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

The object name in the bucket where the CRL is stored, expressed using a format where the version number of the issuing CA is inserted as part of the Object Storage object name 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.

Remarks

Required

In this article
Back to top