# coding: utf-8 import pprint import re import six class MemberResp: """ 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', 'project_id': 'str', 'tenant_id': 'str', 'name': 'str', 'admin_state_up': 'bool', 'protocol_port': 'int', 'subnet_id': 'str', 'address': 'str', 'weight': 'int', 'operating_status': 'str' } attribute_map = { 'id': 'id', 'project_id': 'project_id', 'tenant_id': 'tenant_id', 'name': 'name', 'admin_state_up': 'admin_state_up', 'protocol_port': 'protocol_port', 'subnet_id': 'subnet_id', 'address': 'address', 'weight': 'weight', 'operating_status': 'operating_status' } def __init__(self, id=None, project_id=None, tenant_id=None, name=None, admin_state_up=None, protocol_port=None, subnet_id=None, address=None, weight=None, operating_status=None): """MemberResp - a model defined in huaweicloud sdk""" self._id = None self._project_id = None self._tenant_id = None self._name = None self._admin_state_up = None self._protocol_port = None self._subnet_id = None self._address = None self._weight = None self._operating_status = None self.discriminator = None self.id = id self.project_id = project_id self.tenant_id = tenant_id self.name = name self.admin_state_up = admin_state_up self.protocol_port = protocol_port self.subnet_id = subnet_id self.address = address self.weight = weight self.operating_status = operating_status @property def id(self): """Gets the id of this MemberResp. 后端云服务器ID :return: The id of this MemberResp. :rtype: str """ return self._id @id.setter def id(self, id): """Sets the id of this MemberResp. 后端云服务器ID :param id: The id of this MemberResp. :type: str """ self._id = id @property def project_id(self): """Gets the project_id of this MemberResp. 后端云服务器所在的项目ID。 :return: The project_id of this MemberResp. :rtype: str """ return self._project_id @project_id.setter def project_id(self, project_id): """Sets the project_id of this MemberResp. 后端云服务器所在的项目ID。 :param project_id: The project_id of this MemberResp. :type: str """ self._project_id = project_id @property def tenant_id(self): """Gets the tenant_id of this MemberResp. 后端云服务器所在的项目ID。 :return: The tenant_id of this MemberResp. :rtype: str """ return self._tenant_id @tenant_id.setter def tenant_id(self, tenant_id): """Sets the tenant_id of this MemberResp. 后端云服务器所在的项目ID。 :param tenant_id: The tenant_id of this MemberResp. :type: str """ self._tenant_id = tenant_id @property def name(self): """Gets the name of this MemberResp. 后端云服务器名称。 :return: The name of this MemberResp. :rtype: str """ return self._name @name.setter def name(self, name): """Sets the name of this MemberResp. 后端云服务器名称。 :param name: The name of this MemberResp. :type: str """ self._name = name @property def admin_state_up(self): """Gets the admin_state_up of this MemberResp. 后端云服务器的管理状态;该字段虽然支持创建、更新,但实际取值决定于后端云服务器对应的弹性云服务器是否存在。该字段虽然支持创建、更新,但实际取值决定于member对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。 :return: The admin_state_up of this MemberResp. :rtype: bool """ return self._admin_state_up @admin_state_up.setter def admin_state_up(self, admin_state_up): """Sets the admin_state_up of this MemberResp. 后端云服务器的管理状态;该字段虽然支持创建、更新,但实际取值决定于后端云服务器对应的弹性云服务器是否存在。该字段虽然支持创建、更新,但实际取值决定于member对应的弹性云服务器是否存在。若存在,该值为true,否则,该值为false。 :param admin_state_up: The admin_state_up of this MemberResp. :type: bool """ self._admin_state_up = admin_state_up @property def protocol_port(self): """Gets the protocol_port of this MemberResp. 后端端口和协议号 :return: The protocol_port of this MemberResp. :rtype: int """ return self._protocol_port @protocol_port.setter def protocol_port(self, protocol_port): """Sets the protocol_port of this MemberResp. 后端端口和协议号 :param protocol_port: The protocol_port of this MemberResp. :type: int """ self._protocol_port = protocol_port @property def subnet_id(self): """Gets the subnet_id of this MemberResp. 后端云服务器所在的子网ID。该子网和后端云服务器关联的负载均衡器的子网必须在同一VPC下。只支持指定IPv4的子网ID。暂不支持IPv6。 :return: The subnet_id of this MemberResp. :rtype: str """ return self._subnet_id @subnet_id.setter def subnet_id(self, subnet_id): """Sets the subnet_id of this MemberResp. 后端云服务器所在的子网ID。该子网和后端云服务器关联的负载均衡器的子网必须在同一VPC下。只支持指定IPv4的子网ID。暂不支持IPv6。 :param subnet_id: The subnet_id of this MemberResp. :type: str """ self._subnet_id = subnet_id @property def address(self): """Gets the address of this MemberResp. 后端云服务器的对应的IP地址,这个IP必须在subnet_id字段的子网网段中。例如:192.168.3.11。只能指定为主网卡的IP。 :return: The address of this MemberResp. :rtype: str """ return self._address @address.setter def address(self, address): """Sets the address of this MemberResp. 后端云服务器的对应的IP地址,这个IP必须在subnet_id字段的子网网段中。例如:192.168.3.11。只能指定为主网卡的IP。 :param address: The address of this MemberResp. :type: str """ self._address = address @property def weight(self): """Gets the weight of this MemberResp. 后端云服务器的权重,请求按权重在同一后端云服务器组下的后端云服务器间分发。权重为0的后端不再接受新的请求。当后端云服务器所在的后端云服务器组的lb_algorithm的取值为SOURCE_IP时,该字段无效。 :return: The weight of this MemberResp. :rtype: int """ return self._weight @weight.setter def weight(self, weight): """Sets the weight of this MemberResp. 后端云服务器的权重,请求按权重在同一后端云服务器组下的后端云服务器间分发。权重为0的后端不再接受新的请求。当后端云服务器所在的后端云服务器组的lb_algorithm的取值为SOURCE_IP时,该字段无效。 :param weight: The weight of this MemberResp. :type: int """ self._weight = weight @property def operating_status(self): """Gets the operating_status of this MemberResp. 后端云服务器的健康状态,取值: ONLINE:健康检查在线,后端服务正常。 OFFLINE:健康检查离线,后端服务异常,负载均衡器不再向异常的后端发送流量。 NO_MONITOR:无检查检查。未创建检查检查或健康检查的admin_state_up字段为false。 :return: The operating_status of this MemberResp. :rtype: str """ return self._operating_status @operating_status.setter def operating_status(self, operating_status): """Sets the operating_status of this MemberResp. 后端云服务器的健康状态,取值: ONLINE:健康检查在线,后端服务正常。 OFFLINE:健康检查离线,后端服务异常,负载均衡器不再向异常的后端发送流量。 NO_MONITOR:无检查检查。未创建检查检查或健康检查的admin_state_up字段为false。 :param operating_status: The operating_status of this MemberResp. :type: str """ self._operating_status = operating_status 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, MemberResp): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other