File: //lib/mysqlsh/lib/python3.8/site-packages/oci/dns/models/steering_policy_weighted_rule_case.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class SteeringPolicyWeightedRuleCase(object):
"""
SteeringPolicyWeightedRuleCase model.
"""
def __init__(self, **kwargs):
"""
Initializes a new SteeringPolicyWeightedRuleCase object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param case_condition:
The value to assign to the case_condition property of this SteeringPolicyWeightedRuleCase.
:type case_condition: str
:param answer_data:
The value to assign to the answer_data property of this SteeringPolicyWeightedRuleCase.
:type answer_data: list[oci.dns.models.SteeringPolicyWeightedAnswerData]
"""
self.swagger_types = {
'case_condition': 'str',
'answer_data': 'list[SteeringPolicyWeightedAnswerData]'
}
self.attribute_map = {
'case_condition': 'caseCondition',
'answer_data': 'answerData'
}
self._case_condition = None
self._answer_data = None
@property
def case_condition(self):
"""
Gets the case_condition of this SteeringPolicyWeightedRuleCase.
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 an
office that uses the subnet `192.0.2.0/24` you could use a `caseCondition`
expression `query.client.address in ('192.0.2.0/24')` to define a case that
matches queries from that office.
:return: The case_condition of this SteeringPolicyWeightedRuleCase.
:rtype: str
"""
return self._case_condition
@case_condition.setter
def case_condition(self, case_condition):
"""
Sets the case_condition of this SteeringPolicyWeightedRuleCase.
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 an
office that uses the subnet `192.0.2.0/24` you could use a `caseCondition`
expression `query.client.address in ('192.0.2.0/24')` to define a case that
matches queries from that office.
:param case_condition: The case_condition of this SteeringPolicyWeightedRuleCase.
:type: str
"""
self._case_condition = case_condition
@property
def answer_data(self):
"""
Gets the answer_data of this SteeringPolicyWeightedRuleCase.
An array of `SteeringPolicyWeightedAnswerData` objects.
:return: The answer_data of this SteeringPolicyWeightedRuleCase.
:rtype: list[oci.dns.models.SteeringPolicyWeightedAnswerData]
"""
return self._answer_data
@answer_data.setter
def answer_data(self, answer_data):
"""
Sets the answer_data of this SteeringPolicyWeightedRuleCase.
An array of `SteeringPolicyWeightedAnswerData` objects.
:param answer_data: The answer_data of this SteeringPolicyWeightedRuleCase.
:type: list[oci.dns.models.SteeringPolicyWeightedAnswerData]
"""
self._answer_data = answer_data
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other