Show / Hide Table of Contents

Class GetVanityDomainRequest

Inheritance
object
GetVanityDomainRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FusionappsService.Requests
Assembly: OCI.DotNetSDK.Fusionapps.dll
Syntax
public class GetVanityDomainRequest : IOciRequest
Examples

Click here to see an example of how to use GetVanityDomain request.

Properties

DoesDownloadAkamaiCsr

Declaration
[HttpConverter(TargetEnum.Query, "doesDownloadAkamaiCsr")]
public bool? DoesDownloadAkamaiCsr { get; set; }
Property Value
Type Description
bool?

A parameter indicating whether to download the Akamai Csr or not

DoesDownloadOriginCsr

Declaration
[HttpConverter(TargetEnum.Query, "doesDownloadOriginCsr")]
public bool? DoesDownloadOriginCsr { get; set; }
Property Value
Type Description
bool?

A parameter indicating whether to download the Origin Csr or not

FusionEnvironmentId

Declaration
[Required(ErrorMessage = "FusionEnvironmentId is required.")]
[HttpConverter(TargetEnum.Path, "fusionEnvironmentId")]
public string FusionEnvironmentId { get; set; }
Property Value
Type Description
string

unique FusionEnvironment identifier

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

VanityDomainId

Declaration
[Required(ErrorMessage = "VanityDomainId is required.")]
[HttpConverter(TargetEnum.Path, "vanityDomainId")]
public string VanityDomainId { get; set; }
Property Value
Type Description
string

The unique identifier (OCID) of the VanityDomain

Remarks

Required

Implements

IOciRequest
In this article
Back to top