Show / Hide Table of Contents

Class HostCertDetails

Details about the host and corresponding certificate.

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

Properties

Certificate

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

Certificate value in string format

Remarks

Required

HostName

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

Fully qualified domain name (FQDN) of the host

Remarks

Required

PrivateKey

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

Private key of the provided certificate

Remarks

Required

In this article
Back to top