Show / Hide Table of Contents

Class UpdateVanityUrlDetails

Input payload to update a vanity url.

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

Properties

CaCertificate

Declaration
[Required(ErrorMessage = "CaCertificate is required.")]
[JsonProperty(PropertyName = "caCertificate")]
public string CaCertificate { get; set; }
Property Value
Type Description
string

PEM CA certificate(s) for HTTPS connections. This may include multiple PEM certificates.

Remarks

Required

Passphrase

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

Passphrase for the PEM Private key (if any).

PrivateKey

Declaration
[Required(ErrorMessage = "PrivateKey is required.")]
[JsonProperty(PropertyName = "privateKey")]
public string PrivateKey { get; set; }
Property Value
Type Description
string

PEM Private key for HTTPS connections.

Remarks

Required

PublicCertificate

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

PEM certificate for HTTPS connections.

Remarks

Required

In this article
Back to top