2020-11-17 12:13:00 +00:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
|
|
import six
|
|
|
|
|
|
2021-07-26 11:24:08 +00:00
|
|
|
|
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
2020-11-17 12:13:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class PolicyDefinition:
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
Attributes:
|
|
|
|
|
openapi_types (dict): The key is attribute name
|
|
|
|
|
and the value is attribute type.
|
|
|
|
|
attribute_map (dict): The key is attribute name
|
|
|
|
|
and the value is json key in definition.
|
|
|
|
|
"""
|
|
|
|
|
sensitive_list = []
|
|
|
|
|
|
|
|
|
|
openapi_types = {
|
|
|
|
|
'id': 'str',
|
|
|
|
|
'name': 'str',
|
|
|
|
|
'policy_type': 'str',
|
|
|
|
|
'description': 'str',
|
|
|
|
|
'policy_rule_type': 'str',
|
|
|
|
|
'policy_rule': 'object',
|
2022-09-08 11:22:27 +00:00
|
|
|
|
'trigger_type': 'str',
|
2020-11-17 12:13:00 +00:00
|
|
|
|
'keywords': 'list[str]',
|
|
|
|
|
'parameters': 'dict(str, PolicyParameterDefinition)'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
attribute_map = {
|
|
|
|
|
'id': 'id',
|
|
|
|
|
'name': 'name',
|
|
|
|
|
'policy_type': 'policy_type',
|
|
|
|
|
'description': 'description',
|
|
|
|
|
'policy_rule_type': 'policy_rule_type',
|
|
|
|
|
'policy_rule': 'policy_rule',
|
2022-09-08 11:22:27 +00:00
|
|
|
|
'trigger_type': 'trigger_type',
|
2020-11-17 12:13:00 +00:00
|
|
|
|
'keywords': 'keywords',
|
|
|
|
|
'parameters': 'parameters'
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-08 11:22:27 +00:00
|
|
|
|
def __init__(self, id=None, name=None, policy_type=None, description=None, policy_rule_type=None, policy_rule=None, trigger_type=None, keywords=None, parameters=None):
|
2022-04-21 12:03:46 +00:00
|
|
|
|
"""PolicyDefinition
|
|
|
|
|
|
|
|
|
|
The model defined in huaweicloud sdk
|
|
|
|
|
|
|
|
|
|
:param id: 策略id
|
|
|
|
|
:type id: str
|
|
|
|
|
:param name: 策略名字
|
|
|
|
|
:type name: str
|
|
|
|
|
:param policy_type: 策略类型
|
|
|
|
|
:type policy_type: str
|
|
|
|
|
:param description: 策略描述
|
|
|
|
|
:type description: str
|
|
|
|
|
:param policy_rule_type: 策略语法类型
|
|
|
|
|
:type policy_rule_type: str
|
|
|
|
|
:param policy_rule: 策略规则
|
|
|
|
|
:type policy_rule: object
|
2022-09-08 11:22:27 +00:00
|
|
|
|
:param trigger_type: 触发器类型,可选值:resource, period
|
|
|
|
|
:type trigger_type: str
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:param keywords: 关键词列表
|
|
|
|
|
:type keywords: list[str]
|
|
|
|
|
:param parameters: 策略参数
|
|
|
|
|
:type parameters: dict(str, PolicyParameterDefinition)
|
|
|
|
|
"""
|
2020-11-17 12:13:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self._id = None
|
|
|
|
|
self._name = None
|
|
|
|
|
self._policy_type = None
|
|
|
|
|
self._description = None
|
|
|
|
|
self._policy_rule_type = None
|
|
|
|
|
self._policy_rule = None
|
2022-09-08 11:22:27 +00:00
|
|
|
|
self._trigger_type = None
|
2020-11-17 12:13:00 +00:00
|
|
|
|
self._keywords = None
|
|
|
|
|
self._parameters = None
|
|
|
|
|
self.discriminator = None
|
|
|
|
|
|
|
|
|
|
if id is not None:
|
|
|
|
|
self.id = id
|
|
|
|
|
if name is not None:
|
|
|
|
|
self.name = name
|
|
|
|
|
if policy_type is not None:
|
|
|
|
|
self.policy_type = policy_type
|
|
|
|
|
if description is not None:
|
|
|
|
|
self.description = description
|
|
|
|
|
if policy_rule_type is not None:
|
|
|
|
|
self.policy_rule_type = policy_rule_type
|
|
|
|
|
if policy_rule is not None:
|
|
|
|
|
self.policy_rule = policy_rule
|
2022-09-08 11:22:27 +00:00
|
|
|
|
if trigger_type is not None:
|
|
|
|
|
self.trigger_type = trigger_type
|
2020-11-17 12:13:00 +00:00
|
|
|
|
if keywords is not None:
|
|
|
|
|
self.keywords = keywords
|
|
|
|
|
if parameters is not None:
|
|
|
|
|
self.parameters = parameters
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def id(self):
|
|
|
|
|
"""Gets the id of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略id
|
|
|
|
|
|
|
|
|
|
:return: The id of this PolicyDefinition.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._id
|
|
|
|
|
|
|
|
|
|
@id.setter
|
|
|
|
|
def id(self, id):
|
|
|
|
|
"""Sets the id of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略id
|
|
|
|
|
|
|
|
|
|
:param id: The id of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type id: str
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._id = id
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def name(self):
|
|
|
|
|
"""Gets the name of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略名字
|
|
|
|
|
|
|
|
|
|
:return: The name of this PolicyDefinition.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
|
|
@name.setter
|
|
|
|
|
def name(self, name):
|
|
|
|
|
"""Sets the name of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略名字
|
|
|
|
|
|
|
|
|
|
:param name: The name of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type name: str
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._name = name
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def policy_type(self):
|
|
|
|
|
"""Gets the policy_type of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略类型
|
|
|
|
|
|
|
|
|
|
:return: The policy_type of this PolicyDefinition.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._policy_type
|
|
|
|
|
|
|
|
|
|
@policy_type.setter
|
|
|
|
|
def policy_type(self, policy_type):
|
|
|
|
|
"""Sets the policy_type of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略类型
|
|
|
|
|
|
|
|
|
|
:param policy_type: The policy_type of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type policy_type: str
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._policy_type = policy_type
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def description(self):
|
|
|
|
|
"""Gets the description of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略描述
|
|
|
|
|
|
|
|
|
|
:return: The description of this PolicyDefinition.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._description
|
|
|
|
|
|
|
|
|
|
@description.setter
|
|
|
|
|
def description(self, description):
|
|
|
|
|
"""Sets the description of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略描述
|
|
|
|
|
|
|
|
|
|
:param description: The description of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type description: str
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._description = description
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def policy_rule_type(self):
|
|
|
|
|
"""Gets the policy_rule_type of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略语法类型
|
|
|
|
|
|
|
|
|
|
:return: The policy_rule_type of this PolicyDefinition.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._policy_rule_type
|
|
|
|
|
|
|
|
|
|
@policy_rule_type.setter
|
|
|
|
|
def policy_rule_type(self, policy_rule_type):
|
|
|
|
|
"""Sets the policy_rule_type of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略语法类型
|
|
|
|
|
|
|
|
|
|
:param policy_rule_type: The policy_rule_type of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type policy_rule_type: str
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._policy_rule_type = policy_rule_type
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def policy_rule(self):
|
|
|
|
|
"""Gets the policy_rule of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略规则
|
|
|
|
|
|
|
|
|
|
:return: The policy_rule of this PolicyDefinition.
|
|
|
|
|
:rtype: object
|
|
|
|
|
"""
|
|
|
|
|
return self._policy_rule
|
|
|
|
|
|
|
|
|
|
@policy_rule.setter
|
|
|
|
|
def policy_rule(self, policy_rule):
|
|
|
|
|
"""Sets the policy_rule of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略规则
|
|
|
|
|
|
|
|
|
|
:param policy_rule: The policy_rule of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type policy_rule: object
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._policy_rule = policy_rule
|
|
|
|
|
|
2022-09-08 11:22:27 +00:00
|
|
|
|
@property
|
|
|
|
|
def trigger_type(self):
|
|
|
|
|
"""Gets the trigger_type of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
触发器类型,可选值:resource, period
|
|
|
|
|
|
|
|
|
|
:return: The trigger_type of this PolicyDefinition.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._trigger_type
|
|
|
|
|
|
|
|
|
|
@trigger_type.setter
|
|
|
|
|
def trigger_type(self, trigger_type):
|
|
|
|
|
"""Sets the trigger_type of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
触发器类型,可选值:resource, period
|
|
|
|
|
|
|
|
|
|
:param trigger_type: The trigger_type of this PolicyDefinition.
|
|
|
|
|
:type trigger_type: str
|
|
|
|
|
"""
|
|
|
|
|
self._trigger_type = trigger_type
|
|
|
|
|
|
2020-11-17 12:13:00 +00:00
|
|
|
|
@property
|
|
|
|
|
def keywords(self):
|
|
|
|
|
"""Gets the keywords of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
关键词列表
|
|
|
|
|
|
|
|
|
|
:return: The keywords of this PolicyDefinition.
|
|
|
|
|
:rtype: list[str]
|
|
|
|
|
"""
|
|
|
|
|
return self._keywords
|
|
|
|
|
|
|
|
|
|
@keywords.setter
|
|
|
|
|
def keywords(self, keywords):
|
|
|
|
|
"""Sets the keywords of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
关键词列表
|
|
|
|
|
|
|
|
|
|
:param keywords: The keywords of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type keywords: list[str]
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._keywords = keywords
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def parameters(self):
|
|
|
|
|
"""Gets the parameters of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略参数
|
|
|
|
|
|
|
|
|
|
:return: The parameters of this PolicyDefinition.
|
|
|
|
|
:rtype: dict(str, PolicyParameterDefinition)
|
|
|
|
|
"""
|
|
|
|
|
return self._parameters
|
|
|
|
|
|
|
|
|
|
@parameters.setter
|
|
|
|
|
def parameters(self, parameters):
|
|
|
|
|
"""Sets the parameters of this PolicyDefinition.
|
|
|
|
|
|
|
|
|
|
策略参数
|
|
|
|
|
|
|
|
|
|
:param parameters: The parameters of this PolicyDefinition.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type parameters: dict(str, PolicyParameterDefinition)
|
2020-11-17 12:13:00 +00:00
|
|
|
|
"""
|
|
|
|
|
self._parameters = parameters
|
|
|
|
|
|
|
|
|
|
def to_dict(self):
|
|
|
|
|
"""Returns the model properties as a dict"""
|
|
|
|
|
result = {}
|
|
|
|
|
|
|
|
|
|
for attr, _ in six.iteritems(self.openapi_types):
|
|
|
|
|
value = getattr(self, attr)
|
|
|
|
|
if isinstance(value, list):
|
|
|
|
|
result[attr] = list(map(
|
|
|
|
|
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
|
|
|
value
|
|
|
|
|
))
|
|
|
|
|
elif hasattr(value, "to_dict"):
|
|
|
|
|
result[attr] = value.to_dict()
|
|
|
|
|
elif isinstance(value, dict):
|
|
|
|
|
result[attr] = dict(map(
|
|
|
|
|
lambda item: (item[0], item[1].to_dict())
|
|
|
|
|
if hasattr(item[1], "to_dict") else item,
|
|
|
|
|
value.items()
|
|
|
|
|
))
|
|
|
|
|
else:
|
|
|
|
|
if attr in self.sensitive_list:
|
|
|
|
|
result[attr] = "****"
|
|
|
|
|
else:
|
|
|
|
|
result[attr] = value
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def to_str(self):
|
2021-08-10 12:26:18 +00:00
|
|
|
|
"""Returns the string representation of the model"""
|
2021-07-09 10:57:08 +00:00
|
|
|
|
import simplejson as json
|
2021-08-10 12:26:18 +00:00
|
|
|
|
if six.PY2:
|
|
|
|
|
import sys
|
|
|
|
|
reload(sys)
|
|
|
|
|
sys.setdefaultencoding("utf-8")
|
|
|
|
|
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
2020-11-17 12:13:00 +00:00
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
2021-08-10 12:26:18 +00:00
|
|
|
|
"""For `print`"""
|
2020-11-17 12:13:00 +00:00
|
|
|
|
return self.to_str()
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
"""Returns true if both objects are equal"""
|
|
|
|
|
if not isinstance(other, PolicyDefinition):
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
return self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
"""Returns true if both objects are not equal"""
|
|
|
|
|
return not self == other
|