EnableCertificateDetails¶
- 
class oci.bds.models.EnableCertificateDetails(**kwargs)¶
- Bases: - object- The request body info about configure certificate service list. - Methods - __init__(**kwargs)- Initializes a new EnableCertificateDetails object with values from keyword arguments. - Attributes - cluster_admin_password- [Required] Gets the cluster_admin_password of this EnableCertificateDetails. - host_cert_details- Gets the host_cert_details of this EnableCertificateDetails. - root_certificate- Gets the root_certificate of this EnableCertificateDetails. - server_key_password- Gets the server_key_password of this EnableCertificateDetails. - services- [Required] Gets the services of this EnableCertificateDetails. - 
__init__(**kwargs)¶
- Initializes a new EnableCertificateDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - cluster_admin_password (str) – The value to assign to the cluster_admin_password property of this EnableCertificateDetails.
- services (list[oci.bds.models.Service]) – The value to assign to the services property of this EnableCertificateDetails.
- root_certificate (str) – The value to assign to the root_certificate property of this EnableCertificateDetails.
- host_cert_details (list[oci.bds.models.HostCertDetails]) – The value to assign to the host_cert_details property of this EnableCertificateDetails.
- server_key_password (str) – The value to assign to the server_key_password property of this EnableCertificateDetails.
 
 - 
cluster_admin_password¶
- [Required] Gets the cluster_admin_password of this EnableCertificateDetails. Base-64 encoded password for the cluster admin user. - Returns: - The cluster_admin_password of this EnableCertificateDetails. - Return type: - str 
 - 
host_cert_details¶
- Gets the host_cert_details of this EnableCertificateDetails. List of leaf certificates to use for services on each host. If custom host certificate is provided the root certificate becomes required. - Returns: - The host_cert_details of this EnableCertificateDetails. - Return type: - list[oci.bds.models.HostCertDetails] 
 - 
root_certificate¶
- Gets the root_certificate of this EnableCertificateDetails. Plain text certificate/s in order, separated by new line character. If not provided in request a self-signed root certificate is generated inside the cluster. In case hostCertDetails is provided, root certificate is mandatory. - Returns: - The root_certificate of this EnableCertificateDetails. - Return type: - str 
 - 
server_key_password¶
- Gets the server_key_password of this EnableCertificateDetails. Base-64 encoded password for CA certificate’s private key. This value can be empty. - Returns: - The server_key_password of this EnableCertificateDetails. - Return type: - str 
 - 
services¶
- [Required] Gets the services of this EnableCertificateDetails. List of services for which certificate needs to be enabled. - Returns: - The services of this EnableCertificateDetails. - Return type: - list[oci.bds.models.Service] 
 
-