Show / Hide Table of Contents

Class CreateSteeringPolicyAttachmentDetails

The body for defining an attachment between a steering policy and a domain.

Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

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

Properties

DisplayName

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

A user-friendly name for the steering policy attachment. Does not have to be unique and can be changed. Avoid entering confidential information.

DomainName

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

The attached domain within the attached zone.

Remarks

Required

SteeringPolicyId

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

The OCID of the attached steering policy.

Remarks

Required

ZoneId

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

The OCID of the attached zone.

Remarks

Required

In this article
Back to top