huaweicloud-sdk-python-v3/huaweicloud-sdk-cdn/huaweicloudsdkcdn/v1/model/domain_object.py

138 lines
3.4 KiB
Python
Raw Normal View History

# coding: utf-8
import pprint
import re
import six
2021-06-04 10:01:01 +00:00
class DomainObject:
"""
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-06-04 10:01:01 +00:00
'domain_name': 'str',
'flux': 'list[int]'
}
attribute_map = {
2021-06-04 10:01:01 +00:00
'domain_name': 'domain_name',
'flux': 'flux'
}
2021-06-04 10:01:01 +00:00
def __init__(self, domain_name=None, flux=None):
"""DomainObject - a model defined in huaweicloud sdk"""
2021-06-04 10:01:01 +00:00
self._domain_name = None
self._flux = None
self.discriminator = None
2021-06-04 10:01:01 +00:00
if domain_name is not None:
self.domain_name = domain_name
if flux is not None:
self.flux = flux
@property
2021-06-04 10:01:01 +00:00
def domain_name(self):
"""Gets the domain_name of this DomainObject.
2021-06-04 10:01:01 +00:00
域名
2021-06-04 10:01:01 +00:00
:return: The domain_name of this DomainObject.
:rtype: str
"""
2021-06-04 10:01:01 +00:00
return self._domain_name
2021-06-04 10:01:01 +00:00
@domain_name.setter
def domain_name(self, domain_name):
"""Sets the domain_name of this DomainObject.
2021-06-04 10:01:01 +00:00
域名
2021-06-04 10:01:01 +00:00
:param domain_name: The domain_name of this DomainObject.
:type: str
"""
2021-06-04 10:01:01 +00:00
self._domain_name = domain_name
@property
2021-06-04 10:01:01 +00:00
def flux(self):
"""Gets the flux of this DomainObject.
2021-06-04 10:01:01 +00:00
数据结束时间戳可能与请求时间不一致可能不返回
2021-06-04 10:01:01 +00:00
:return: The flux of this DomainObject.
:rtype: list[int]
"""
2021-06-04 10:01:01 +00:00
return self._flux
2021-06-04 10:01:01 +00:00
@flux.setter
def flux(self, flux):
"""Sets the flux of this DomainObject.
2021-06-04 10:01:01 +00:00
数据结束时间戳可能与请求时间不一致可能不返回
2021-06-04 10:01:01 +00:00
:param flux: The flux of this DomainObject.
:type: list[int]
"""
2021-06-04 10:01:01 +00:00
self._flux = flux
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-06-04 10:01:01 +00:00
if not isinstance(other, DomainObject):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other