Show / Hide Table of Contents

Class CustomEndpointDetails

Details for a custom endpoint for the vb instance.

Inheritance
object
CustomEndpointDetails
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 CustomEndpointDetails

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.

CertificateSecretVersion

Declaration
[JsonProperty(PropertyName = "certificateSecretVersion")]
public int? CertificateSecretVersion { get; set; }
Property Value
Type Description
int?

The secret version used for the certificate-secret-id (if certificate-secret-id is specified).

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