ResolverRule

class oci.dns.models.ResolverRule(**kwargs)

Bases: object

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.

Attributes

ACTION_FORWARD A constant which can be used with the action property of a ResolverRule.
action [Required] Gets the action of this ResolverRule.
client_address_conditions [Required] Gets the client_address_conditions of this ResolverRule.
qname_cover_conditions [Required] Gets the qname_cover_conditions of this ResolverRule.

Methods

__init__(**kwargs) Initializes a new ResolverRule object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
ACTION_FORWARD = 'FORWARD'

A constant which can be used with the action property of a ResolverRule. This constant has a value of “FORWARD”

__init__(**kwargs)

Initializes a new ResolverRule object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:

The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • client_address_conditions (list[str]) – The value to assign to the client_address_conditions property of this ResolverRule.
  • qname_cover_conditions (list[str]) – The value to assign to the qname_cover_conditions property of this ResolverRule.
  • action (str) – The value to assign to the action property of this ResolverRule. Allowed values for this property are: “FORWARD”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
action

[Required] Gets the action of this ResolverRule. The action determines the behavior of the rule. If a query matches a supplied condition, the action will apply. If there are no conditions on the rule, all queries are subject to the specified action. * FORWARD - Matching requests will be forwarded from the source interface to the destination address.

Allowed values for this property are: “FORWARD”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The action of this ResolverRule.
Return type:str
client_address_conditions

[Required] Gets the client_address_conditions of this ResolverRule. 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.

Returns:The client_address_conditions of this ResolverRule.
Return type:list[str]
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

qname_cover_conditions

[Required] Gets the qname_cover_conditions of this ResolverRule. A list of domain names. The query must be covered by one of the domains in order for the rule action to apply.

Returns:The qname_cover_conditions of this ResolverRule.
Return type:list[str]