File: //lib/mysqlsh/lib/python3.8/site-packages/oci/service_mesh/models/access_policy_rule_details.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: 20220615
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 AccessPolicyRuleDetails(object):
"""
Access policy rule.
"""
#: A constant which can be used with the action property of a AccessPolicyRuleDetails.
#: This constant has a value of "ALLOW"
ACTION_ALLOW = "ALLOW"
def __init__(self, **kwargs):
"""
Initializes a new AccessPolicyRuleDetails object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param action:
The value to assign to the action property of this AccessPolicyRuleDetails.
Allowed values for this property are: "ALLOW"
:type action: str
:param source:
The value to assign to the source property of this AccessPolicyRuleDetails.
:type source: oci.service_mesh.models.AccessPolicyTargetDetails
:param destination:
The value to assign to the destination property of this AccessPolicyRuleDetails.
:type destination: oci.service_mesh.models.AccessPolicyTargetDetails
"""
self.swagger_types = {
'action': 'str',
'source': 'AccessPolicyTargetDetails',
'destination': 'AccessPolicyTargetDetails'
}
self.attribute_map = {
'action': 'action',
'source': 'source',
'destination': 'destination'
}
self._action = None
self._source = None
self._destination = None
@property
def action(self):
"""
**[Required]** Gets the action of this AccessPolicyRuleDetails.
Action for the traffic between the source and the destination.
Allowed values for this property are: "ALLOW"
:return: The action of this AccessPolicyRuleDetails.
:rtype: str
"""
return self._action
@action.setter
def action(self, action):
"""
Sets the action of this AccessPolicyRuleDetails.
Action for the traffic between the source and the destination.
:param action: The action of this AccessPolicyRuleDetails.
:type: str
"""
allowed_values = ["ALLOW"]
if not value_allowed_none_or_none_sentinel(action, allowed_values):
raise ValueError(
f"Invalid value for `action`, must be None or one of {allowed_values}"
)
self._action = action
@property
def source(self):
"""
**[Required]** Gets the source of this AccessPolicyRuleDetails.
:return: The source of this AccessPolicyRuleDetails.
:rtype: oci.service_mesh.models.AccessPolicyTargetDetails
"""
return self._source
@source.setter
def source(self, source):
"""
Sets the source of this AccessPolicyRuleDetails.
:param source: The source of this AccessPolicyRuleDetails.
:type: oci.service_mesh.models.AccessPolicyTargetDetails
"""
self._source = source
@property
def destination(self):
"""
**[Required]** Gets the destination of this AccessPolicyRuleDetails.
:return: The destination of this AccessPolicyRuleDetails.
:rtype: oci.service_mesh.models.AccessPolicyTargetDetails
"""
return self._destination
@destination.setter
def destination(self, destination):
"""
Sets the destination of this AccessPolicyRuleDetails.
:param destination: The destination of this AccessPolicyRuleDetails.
:type: oci.service_mesh.models.AccessPolicyTargetDetails
"""
self._destination = destination
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