Show / Hide Table of Contents

Class SteeringPolicyWeightedAnswerData

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

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 weight assigned to the set of selected answers. Answers with a higher weight will be served more frequently. Answers can be given a value between 0 and 255.

Remarks

Required

In this article
Back to top