HostCertDetails¶
- 
class oci.bds.models.HostCertDetails(**kwargs)¶
- Bases: - object- Details about the host and corresponding certificate. - Methods - __init__(**kwargs)- Initializes a new HostCertDetails object with values from keyword arguments. - Attributes - certificate- [Required] Gets the certificate of this HostCertDetails. - host_name- [Required] Gets the host_name of this HostCertDetails. - private_key- [Required] Gets the private_key of this HostCertDetails. - 
__init__(**kwargs)¶
- Initializes a new HostCertDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - host_name (str) – The value to assign to the host_name property of this HostCertDetails.
- certificate (str) – The value to assign to the certificate property of this HostCertDetails.
- private_key (str) – The value to assign to the private_key property of this HostCertDetails.
 
 - 
certificate¶
- [Required] Gets the certificate of this HostCertDetails. Certificate value in string format - Returns: - The certificate of this HostCertDetails. - Return type: - str 
 - 
host_name¶
- [Required] Gets the host_name of this HostCertDetails. Fully qualified domain name (FQDN) of the host - Returns: - The host_name of this HostCertDetails. - Return type: - str 
 - 
private_key¶
- [Required] Gets the private_key of this HostCertDetails. Private key of the provided certificate - Returns: - The private_key of this HostCertDetails. - Return type: - str 
 
-