Show / Hide Table of Contents

Class ResolverRuleDetails

A rule for a resolver. Specifying both qnameCoverConditions and clientAddressConditions is not allowed.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
ResolverRuleDetails
ResolverForwardRuleDetails
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
[JsonConverter(typeof(ResolverRuleDetailsModelConverter))]
public class ResolverRuleDetails

Properties

ClientAddressConditions

Declaration
[JsonProperty(PropertyName = "clientAddressConditions")]
public List<string> ClientAddressConditions { get; set; }
Property Value
Type Description
List<string>

A list of CIDR blocks. The query must come from a client within one of the blocks in order for the rule action to apply.

QnameCoverConditions

Declaration
[JsonProperty(PropertyName = "qnameCoverConditions")]
public List<string> QnameCoverConditions { get; set; }
Property Value
Type Description
List<string>

A list of domain names. The query must be covered by one of the domains in order for the rule action to apply.

In this article
Back to top