Show / Hide Table of Contents

Class SteeringPolicyFilterRuleCase

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

Properties

AnswerData

Declaration
[JsonProperty(PropertyName = "answerData")]
public List<SteeringPolicyFilterAnswerData> AnswerData { get; set; }
Property Value
Type Description
List<SteeringPolicyFilterAnswerData>

An array of SteeringPolicyFilterAnswerData objects.

CaseCondition

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

An expression that uses conditions at the time of a DNS query to indicate whether a case matches. Conditions may include the geographical location, IP subnet, or ASN the DNS query originated. **Example: ** If you have anoffice that uses the subnet 192.0.2.0/24 you could use a caseConditionexpression query.client.address in ('192.0.2.0/24') to define a case thatmatches queries from that office.

In this article
Back to top