2020-06-15 07:04:23 +00:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
|
|
import pprint
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
import six
|
|
|
|
|
|
|
|
|
|
|
2020-07-15 09:30:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
class Rule:
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
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 = {
|
2021-01-16 06:42:05 +00:00
|
|
|
|
'params': 'object',
|
|
|
|
|
'tag_selectors': 'list[TagSelector]',
|
|
|
|
|
'template': 'str'
|
2020-06-15 07:04:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
attribute_map = {
|
2021-01-16 06:42:05 +00:00
|
|
|
|
'params': 'params',
|
|
|
|
|
'tag_selectors': 'tag_selectors',
|
|
|
|
|
'template': 'template'
|
2020-06-15 07:04:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
def __init__(self, params=None, tag_selectors=None, template=None):
|
|
|
|
|
"""Rule - a model defined in huaweicloud sdk"""
|
2020-07-15 09:30:15 +00:00
|
|
|
|
|
|
|
|
|
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
self._params = None
|
|
|
|
|
self._tag_selectors = None
|
|
|
|
|
self._template = None
|
2020-06-15 07:04:23 +00:00
|
|
|
|
self.discriminator = None
|
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
self.params = params
|
|
|
|
|
self.tag_selectors = tag_selectors
|
|
|
|
|
self.template = template
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
|
|
|
|
@property
|
2021-01-16 06:42:05 +00:00
|
|
|
|
def params(self):
|
|
|
|
|
"""Gets the params of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
template是date_rule时,设置params[\"days\"] template是tag_rule时,设置params[\"num\"]
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
:return: The params of this Rule.
|
|
|
|
|
:rtype: object
|
2020-06-15 07:04:23 +00:00
|
|
|
|
"""
|
2021-01-16 06:42:05 +00:00
|
|
|
|
return self._params
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
@params.setter
|
|
|
|
|
def params(self, params):
|
|
|
|
|
"""Sets the params of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
template是date_rule时,设置params[\"days\"] template是tag_rule时,设置params[\"num\"]
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
:param params: The params of this Rule.
|
|
|
|
|
:type: object
|
2020-06-15 07:04:23 +00:00
|
|
|
|
"""
|
2021-01-16 06:42:05 +00:00
|
|
|
|
self._params = params
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
|
|
|
|
@property
|
2021-01-16 06:42:05 +00:00
|
|
|
|
def tag_selectors(self):
|
|
|
|
|
"""Gets the tag_selectors of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
例外镜像
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
:return: The tag_selectors of this Rule.
|
|
|
|
|
:rtype: list[TagSelector]
|
2020-06-15 07:04:23 +00:00
|
|
|
|
"""
|
2021-01-16 06:42:05 +00:00
|
|
|
|
return self._tag_selectors
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
@tag_selectors.setter
|
|
|
|
|
def tag_selectors(self, tag_selectors):
|
|
|
|
|
"""Sets the tag_selectors of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
例外镜像
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
:param tag_selectors: The tag_selectors of this Rule.
|
|
|
|
|
:type: list[TagSelector]
|
2020-06-15 07:04:23 +00:00
|
|
|
|
"""
|
2021-01-16 06:42:05 +00:00
|
|
|
|
self._tag_selectors = tag_selectors
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
|
|
|
|
@property
|
2021-01-16 06:42:05 +00:00
|
|
|
|
def template(self):
|
|
|
|
|
"""Gets the template of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
回收类型,date_rule、tag_rule
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
:return: The template of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
2021-01-16 06:42:05 +00:00
|
|
|
|
return self._template
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
@template.setter
|
|
|
|
|
def template(self, template):
|
|
|
|
|
"""Sets the template of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
回收类型,date_rule、tag_rule
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
2021-01-16 06:42:05 +00:00
|
|
|
|
:param template: The template of this Rule.
|
2020-06-15 07:04:23 +00:00
|
|
|
|
:type: str
|
|
|
|
|
"""
|
2021-01-16 06:42:05 +00:00
|
|
|
|
self._template = template
|
2020-06-15 07:04:23 +00:00
|
|
|
|
|
|
|
|
|
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):
|
|
|
|
|
"""Returns the string representation of the model"""
|
|
|
|
|
return pprint.pformat(self.to_dict())
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
"""For `print` and `pprint`"""
|
|
|
|
|
return self.to_str()
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
"""Returns true if both objects are equal"""
|
2021-01-16 06:42:05 +00:00
|
|
|
|
if not isinstance(other, Rule):
|
2020-06-15 07:04:23 +00:00
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
return self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
"""Returns true if both objects are not equal"""
|
|
|
|
|
return not self == other
|