Show / Hide Table of Contents

Class CaBundle

The contents of the CA bundle (root and intermediate certificates), properties of the CA bundle, and user-provided contextual metadata for the CA bundle.

Inheritance
object
CaBundle
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CertificatesService.Models
Assembly: OCI.DotNetSDK.Certificates.dll
Syntax
public class CaBundle

Properties

CaBundlePem

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

Certificates (in PEM format) in the CA bundle. Can be of arbitrary length.

Remarks

Required

Id

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

The OCID of the CA bundle.

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 bundle. Names are unique within a compartment. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.

Remarks

Required

In this article
Back to top