Show / Hide Table of Contents

Class VanityUrlDetails

Vanity url configuration details.

Inheritance
object
VanityUrlDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AnalyticsService.Models
Assembly: OCI.DotNetSDK.Analytics.dll
Syntax
public class VanityUrlDetails

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Description of the vanity url.

Hosts

Declaration
[JsonProperty(PropertyName = "hosts")]
public List<string> Hosts { get; set; }
Property Value
Type Description
List<string>

List of fully qualified hostnames supported by this vanity URL definition (max of 3).

Key

Declaration
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

The vanity url unique identifier key.

PublicCertificate

Declaration
[JsonProperty(PropertyName = "publicCertificate")]
public string PublicCertificate { get; set; }
Property Value
Type Description
string

PEM certificate for HTTPS connections.

Urls

Declaration
[JsonProperty(PropertyName = "urls")]
public List<string> Urls { get; set; }
Property Value
Type Description
List<string>

List of urls supported by this vanity URL definition (max of 3).

In this article
Back to top