Show / Hide Table of Contents

Class RoverNodeGenerateCertificateDetails

The information required to generate a certificate for a roverNode.

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

Properties

Csr

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

The certificate signing request (in PEM format), max size 10240.

Remarks

Required

TimeCertValidityEnd

Declaration
[Required(ErrorMessage = "TimeCertValidityEnd is required.")]
[JsonProperty(PropertyName = "timeCertValidityEnd")]
public DateTime? TimeCertValidityEnd { get; set; }
Property Value
Type Description
DateTime?

Time when the generated certificate's validity will end.

Remarks

Required

In this article
Back to top