Show / Hide Table of Contents

Class CreateCertificateAuthorityDetails

The details for creating a certificate authority (CA).

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

Properties

CertificateAuthorityConfig

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

Required

CertificateAuthorityRules

Declaration
[JsonProperty(PropertyName = "certificateAuthorityRules")]
public List<CertificateAuthorityRule> CertificateAuthorityRules { get; set; }
Property Value
Type Description
List<CertificateAuthorityRule>

A list of rules that control how the CA is used and managed.

CertificateRevocationListDetails

Declaration
[JsonProperty(PropertyName = "certificateRevocationListDetails")]
public CertificateRevocationListDetails CertificateRevocationListDetails { get; set; }
Property Value
Type Description
CertificateRevocationListDetails

CompartmentId

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

The compartment in which you want to create the CA.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

A brief description of the CA.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

KmsKeyId

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

The OCID of the Oracle Cloud Infrastructure Vault key used to encrypt the CA.

Remarks

Required

Name

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

A user-friendly name for the CA. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

Remarks

Required

In this article
Back to top