300 lines
12 KiB
Python
300 lines
12 KiB
Python
# coding: utf-8
|
||
|
||
import pprint
|
||
import re
|
||
|
||
import six
|
||
|
||
|
||
|
||
|
||
|
||
class UpdateInstanceReq:
|
||
|
||
|
||
"""
|
||
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 = {
|
||
'name': 'str',
|
||
'description': 'str',
|
||
'maintain_begin': 'str',
|
||
'maintain_end': 'str',
|
||
'security_group_id': 'str',
|
||
'enable_publicip': 'bool',
|
||
'publicip_id': 'str',
|
||
'enterprise_project_id': 'str'
|
||
}
|
||
|
||
attribute_map = {
|
||
'name': 'name',
|
||
'description': 'description',
|
||
'maintain_begin': 'maintain_begin',
|
||
'maintain_end': 'maintain_end',
|
||
'security_group_id': 'security_group_id',
|
||
'enable_publicip': 'enable_publicip',
|
||
'publicip_id': 'publicip_id',
|
||
'enterprise_project_id': 'enterprise_project_id'
|
||
}
|
||
|
||
def __init__(self, name=None, description=None, maintain_begin=None, maintain_end=None, security_group_id=None, enable_publicip=None, publicip_id=None, enterprise_project_id=None):
|
||
"""UpdateInstanceReq - a model defined in huaweicloud sdk"""
|
||
|
||
|
||
|
||
self._name = None
|
||
self._description = None
|
||
self._maintain_begin = None
|
||
self._maintain_end = None
|
||
self._security_group_id = None
|
||
self._enable_publicip = None
|
||
self._publicip_id = None
|
||
self._enterprise_project_id = None
|
||
self.discriminator = None
|
||
|
||
if name is not None:
|
||
self.name = name
|
||
if description is not None:
|
||
self.description = description
|
||
if maintain_begin is not None:
|
||
self.maintain_begin = maintain_begin
|
||
if maintain_end is not None:
|
||
self.maintain_end = maintain_end
|
||
if security_group_id is not None:
|
||
self.security_group_id = security_group_id
|
||
if enable_publicip is not None:
|
||
self.enable_publicip = enable_publicip
|
||
if publicip_id is not None:
|
||
self.publicip_id = publicip_id
|
||
if enterprise_project_id is not None:
|
||
self.enterprise_project_id = enterprise_project_id
|
||
|
||
@property
|
||
def name(self):
|
||
"""Gets the name of this UpdateInstanceReq.
|
||
|
||
实例名称。 由英文字符开头,只能由英文字母、数字、中划线组成,长度为4~64的字符。
|
||
|
||
:return: The name of this UpdateInstanceReq.
|
||
:rtype: str
|
||
"""
|
||
return self._name
|
||
|
||
@name.setter
|
||
def name(self, name):
|
||
"""Sets the name of this UpdateInstanceReq.
|
||
|
||
实例名称。 由英文字符开头,只能由英文字母、数字、中划线组成,长度为4~64的字符。
|
||
|
||
:param name: The name of this UpdateInstanceReq.
|
||
:type: str
|
||
"""
|
||
self._name = name
|
||
|
||
@property
|
||
def description(self):
|
||
"""Gets the description of this UpdateInstanceReq.
|
||
|
||
实例的描述信息。 长度不超过1024的字符串。 > \\与\"在json报文中属于特殊字符,如果参数值中需要显示\\或者\"字符,请在字符前增加转义字符\\,比如\\\\或者\\\"。
|
||
|
||
:return: The description of this UpdateInstanceReq.
|
||
:rtype: str
|
||
"""
|
||
return self._description
|
||
|
||
@description.setter
|
||
def description(self, description):
|
||
"""Sets the description of this UpdateInstanceReq.
|
||
|
||
实例的描述信息。 长度不超过1024的字符串。 > \\与\"在json报文中属于特殊字符,如果参数值中需要显示\\或者\"字符,请在字符前增加转义字符\\,比如\\\\或者\\\"。
|
||
|
||
:param description: The description of this UpdateInstanceReq.
|
||
:type: str
|
||
"""
|
||
self._description = description
|
||
|
||
@property
|
||
def maintain_begin(self):
|
||
"""Gets the maintain_begin of this UpdateInstanceReq.
|
||
|
||
维护时间窗开始时间,格式为HH:mm:ss。 - 维护时间窗开始和结束时间必须为指定的时间段,可参考[查询维护时间窗时间段](https://support.huaweicloud.com/api-rabbitmq/ShowMaintainWindows.html)。 - 开始时间必须为22:00:00、02:00:00、06:00:00、10:00:00、14:00:00和18:00:00。 - 该参数不能单独为空,若该值为空,则结束时间也为空。系统分配一个默认开始时间02:00:00。
|
||
|
||
:return: The maintain_begin of this UpdateInstanceReq.
|
||
:rtype: str
|
||
"""
|
||
return self._maintain_begin
|
||
|
||
@maintain_begin.setter
|
||
def maintain_begin(self, maintain_begin):
|
||
"""Sets the maintain_begin of this UpdateInstanceReq.
|
||
|
||
维护时间窗开始时间,格式为HH:mm:ss。 - 维护时间窗开始和结束时间必须为指定的时间段,可参考[查询维护时间窗时间段](https://support.huaweicloud.com/api-rabbitmq/ShowMaintainWindows.html)。 - 开始时间必须为22:00:00、02:00:00、06:00:00、10:00:00、14:00:00和18:00:00。 - 该参数不能单独为空,若该值为空,则结束时间也为空。系统分配一个默认开始时间02:00:00。
|
||
|
||
:param maintain_begin: The maintain_begin of this UpdateInstanceReq.
|
||
:type: str
|
||
"""
|
||
self._maintain_begin = maintain_begin
|
||
|
||
@property
|
||
def maintain_end(self):
|
||
"""Gets the maintain_end of this UpdateInstanceReq.
|
||
|
||
维护时间窗结束时间,格式为HH:mm:ss。 - 维护时间窗开始和结束时间必须为指定的时间段,可参考[查询维护时间窗时间段](https://support.huaweicloud.com/api-rabbitmq/ShowMaintainWindows.html)。 - 结束时间在开始时间基础上加四个小时,即当开始时间为22:00:00时,结束时间为02:00:00。 - 该参数不能单独为空,若该值为空,则开始时间也为空。系统分配一个默认结束时间06:00:00。
|
||
|
||
:return: The maintain_end of this UpdateInstanceReq.
|
||
:rtype: str
|
||
"""
|
||
return self._maintain_end
|
||
|
||
@maintain_end.setter
|
||
def maintain_end(self, maintain_end):
|
||
"""Sets the maintain_end of this UpdateInstanceReq.
|
||
|
||
维护时间窗结束时间,格式为HH:mm:ss。 - 维护时间窗开始和结束时间必须为指定的时间段,可参考[查询维护时间窗时间段](https://support.huaweicloud.com/api-rabbitmq/ShowMaintainWindows.html)。 - 结束时间在开始时间基础上加四个小时,即当开始时间为22:00:00时,结束时间为02:00:00。 - 该参数不能单独为空,若该值为空,则开始时间也为空。系统分配一个默认结束时间06:00:00。
|
||
|
||
:param maintain_end: The maintain_end of this UpdateInstanceReq.
|
||
:type: str
|
||
"""
|
||
self._maintain_end = maintain_end
|
||
|
||
@property
|
||
def security_group_id(self):
|
||
"""Gets the security_group_id of this UpdateInstanceReq.
|
||
|
||
安全组ID。
|
||
|
||
:return: The security_group_id of this UpdateInstanceReq.
|
||
:rtype: str
|
||
"""
|
||
return self._security_group_id
|
||
|
||
@security_group_id.setter
|
||
def security_group_id(self, security_group_id):
|
||
"""Sets the security_group_id of this UpdateInstanceReq.
|
||
|
||
安全组ID。
|
||
|
||
:param security_group_id: The security_group_id of this UpdateInstanceReq.
|
||
:type: str
|
||
"""
|
||
self._security_group_id = security_group_id
|
||
|
||
@property
|
||
def enable_publicip(self):
|
||
"""Gets the enable_publicip of this UpdateInstanceReq.
|
||
|
||
RabbitMQ实例是否开启公网访问功能。 - true:开启 - false:不开启
|
||
|
||
:return: The enable_publicip of this UpdateInstanceReq.
|
||
:rtype: bool
|
||
"""
|
||
return self._enable_publicip
|
||
|
||
@enable_publicip.setter
|
||
def enable_publicip(self, enable_publicip):
|
||
"""Sets the enable_publicip of this UpdateInstanceReq.
|
||
|
||
RabbitMQ实例是否开启公网访问功能。 - true:开启 - false:不开启
|
||
|
||
:param enable_publicip: The enable_publicip of this UpdateInstanceReq.
|
||
:type: bool
|
||
"""
|
||
self._enable_publicip = enable_publicip
|
||
|
||
@property
|
||
def publicip_id(self):
|
||
"""Gets the publicip_id of this UpdateInstanceReq.
|
||
|
||
RabbitMQ实例绑定的弹性IP地址的id。 如果开启了公网访问功能(即enable_publicip为true),该字段为必选。 获取方法: - 方法1:登录弹性公网IP和带宽的控制台界面,在弹性公网IP的详情页面查的基本信息栏找ID。 - 方法2:通过弹性公网IP的API接口查询,具体操作可参考[查询公网IP ID](https://support.huaweicloud.com/api-eip/eip_api_0003.html)。
|
||
|
||
:return: The publicip_id of this UpdateInstanceReq.
|
||
:rtype: str
|
||
"""
|
||
return self._publicip_id
|
||
|
||
@publicip_id.setter
|
||
def publicip_id(self, publicip_id):
|
||
"""Sets the publicip_id of this UpdateInstanceReq.
|
||
|
||
RabbitMQ实例绑定的弹性IP地址的id。 如果开启了公网访问功能(即enable_publicip为true),该字段为必选。 获取方法: - 方法1:登录弹性公网IP和带宽的控制台界面,在弹性公网IP的详情页面查的基本信息栏找ID。 - 方法2:通过弹性公网IP的API接口查询,具体操作可参考[查询公网IP ID](https://support.huaweicloud.com/api-eip/eip_api_0003.html)。
|
||
|
||
:param publicip_id: The publicip_id of this UpdateInstanceReq.
|
||
:type: str
|
||
"""
|
||
self._publicip_id = publicip_id
|
||
|
||
@property
|
||
def enterprise_project_id(self):
|
||
"""Gets the enterprise_project_id of this UpdateInstanceReq.
|
||
|
||
企业项目。
|
||
|
||
:return: The enterprise_project_id of this UpdateInstanceReq.
|
||
:rtype: str
|
||
"""
|
||
return self._enterprise_project_id
|
||
|
||
@enterprise_project_id.setter
|
||
def enterprise_project_id(self, enterprise_project_id):
|
||
"""Sets the enterprise_project_id of this UpdateInstanceReq.
|
||
|
||
企业项目。
|
||
|
||
:param enterprise_project_id: The enterprise_project_id of this UpdateInstanceReq.
|
||
:type: str
|
||
"""
|
||
self._enterprise_project_id = enterprise_project_id
|
||
|
||
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"""
|
||
if not isinstance(other, UpdateInstanceReq):
|
||
return False
|
||
|
||
return self.__dict__ == other.__dict__
|
||
|
||
def __ne__(self, other):
|
||
"""Returns true if both objects are not equal"""
|
||
return not self == other
|