UpdateCustomEndpointDetails¶
- 
class oci.integration.models.UpdateCustomEndpointDetails(**kwargs)¶
- Bases: - object- Details for a custom endpoint for the integration instance (update). - Methods - __init__(**kwargs)- Initializes a new UpdateCustomEndpointDetails object with values from keyword arguments. - Attributes - certificate_secret_id- Gets the certificate_secret_id of this UpdateCustomEndpointDetails. - hostname- [Required] Gets the hostname of this UpdateCustomEndpointDetails. - 
__init__(**kwargs)¶
- Initializes a new UpdateCustomEndpointDetails 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 UpdateCustomEndpointDetails.
- certificate_secret_id (str) – The value to assign to the certificate_secret_id property of this UpdateCustomEndpointDetails.
 
 - 
certificate_secret_id¶
- Gets the certificate_secret_id of this UpdateCustomEndpointDetails. 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 UpdateCustomEndpointDetails. - Return type: - str 
 - 
hostname¶
- [Required] Gets the hostname of this UpdateCustomEndpointDetails. A custom hostname to be used for the integration instance URL, in FQDN format. - Returns: - The hostname of this UpdateCustomEndpointDetails. - Return type: - str 
 
-