Show / Hide Table of Contents

Class ReplaceCaDetails

Information about the detailed CA bundle replacement of the rover node.

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

Properties

CaBundlePem

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

Plain text certificate chain in PEM format for the subordinate CA associated with given roverNode.

CertKeyAlgorithm

Declaration
[JsonProperty(PropertyName = "certKeyAlgorithm")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CertKeyAlgorithm? CertKeyAlgorithm { get; set; }
Property Value
Type Description
CertKeyAlgorithm?

key algorithm for issuing leaf certificate.

CertSignatureAlgorithm

Declaration
[JsonProperty(PropertyName = "certSignatureAlgorithm")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CertSignatureAlgorithm? CertSignatureAlgorithm { get; set; }
Property Value
Type Description
CertSignatureAlgorithm?

signature algorithm for issuing leaf certificate.

CertificateMaxValidityDuration

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

Max validity of leaf certificates issued by the CA associated with given node, in days, in ISO 8601 format, example "P365D".

In this article
Back to top