File: //lib/mysqlsh/lib/python3.8/site-packages/oci/dns/models/steering_policy_health_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 SteeringPolicyHealthRuleCase(object):
"""
SteeringPolicyHealthRuleCase model.
"""
def __init__(self, **kwargs):
"""
Initializes a new SteeringPolicyHealthRuleCase 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 SteeringPolicyHealthRuleCase.
:type case_condition: str
"""
self.swagger_types = {
'case_condition': 'str'
}
self.attribute_map = {
'case_condition': 'caseCondition'
}
self._case_condition = None
@property
def case_condition(self):
"""
Gets the case_condition of this SteeringPolicyHealthRuleCase.
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 SteeringPolicyHealthRuleCase.
:rtype: str
"""
return self._case_condition
@case_condition.setter
def case_condition(self, case_condition):
"""
Sets the case_condition of this SteeringPolicyHealthRuleCase.
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 SteeringPolicyHealthRuleCase.
:type: str
"""
self._case_condition = case_condition
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