CreateCustomEndpointDetails¶
- 
class oci.visual_builder.models.CreateCustomEndpointDetails(**kwargs)¶
- Bases: - object- Details for a custom endpoint for the vb instance (update). - Methods - __init__(**kwargs)- Initializes a new CreateCustomEndpointDetails object with values from keyword arguments. - Attributes - certificate_secret_id- Gets the certificate_secret_id of this CreateCustomEndpointDetails. - hostname- [Required] Gets the hostname of this CreateCustomEndpointDetails. - 
__init__(**kwargs)¶
- Initializes a new CreateCustomEndpointDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - hostname (str) – The value to assign to the hostname property of this CreateCustomEndpointDetails.
- certificate_secret_id (str) – The value to assign to the certificate_secret_id property of this CreateCustomEndpointDetails.
 
 - 
certificate_secret_id¶
- Gets the certificate_secret_id of this CreateCustomEndpointDetails. Optional OCID of a vault/secret containing a private SSL certificate bundle to be used for the custom hostname. All certificates should be stored in a single base64 encoded secret Note the update will fail if this is not a valid certificate. - Returns: - The certificate_secret_id of this CreateCustomEndpointDetails. - Return type: - str 
 - 
hostname¶
- [Required] Gets the hostname of this CreateCustomEndpointDetails. A custom hostname to be used for the vb instance URL, in FQDN format. - Returns: - The hostname of this CreateCustomEndpointDetails. - Return type: - str 
 
-