Show / Hide Table of Contents

Class SteeringPolicyPriorityAnswerData

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

Properties

AnswerCondition

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

An expression that is used to select a set of answers that match a condition. For example, answers with matching pool properties.

Value

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

The rank assigned to the set of answers that match the expression in answerCondition. Answers with the lowest values move to the beginning of the list without changing the relative order of those with the same value. Answers can be given a value between 0 and 255.

Remarks

Required

In this article
Back to top