Show / Hide Table of Contents

Class CreateCustomEndpointDetails

Details for a custom endpoint for the vb instance (update).

Inheritance
object
CreateCustomEndpointDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VisualbuilderService.Models
Assembly: OCI.DotNetSDK.Visualbuilder.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 vb instance URL, in FQDN format.

Remarks

Required

In this article
Back to top