Class CreateCustomEndpointDetails
Details for a custom endpoint for the integration instance (update).
Inherited Members
Namespace: Oci.IntegrationService.Models
Assembly: OCI.DotNetSDK.Integration.dll
Syntax
public class CreateCustomEndpointDetails
Properties
CertificateSecretId
Declaration
[JsonProperty(PropertyName = "certificateSecretId")]
public string CertificateSecretId { get; set; }
Property Value
Type | Description |
---|---|
string | 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. |
Hostname
Declaration
[Required(ErrorMessage = "Hostname is required.")]
[JsonProperty(PropertyName = "hostname")]
public string Hostname { get; set; }
Property Value
Type | Description |
---|---|
string | A custom hostname to be used for the integration instance URL, in FQDN format. |
Remarks
Required