Source code for jdcloud_sdk.services.jdfusion.models.SlbInfoDetail

# coding=utf8

# Copyright 2018 JDCLOUD.COM
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: This class is auto generated by the jdcloud code generator program.


[docs]class SlbInfoDetail(object): def __init__(self, cloudID=None, id=None, name=None, status=None, ipAddress=None, addressType=None, subnetId=None, vpc=None, networkType=None, masterAz=None, slaveAz=None, createdTime=None, listenerPortsAndProtocol=None, backendServers=None, loadBalancerSpec=None): """ :param cloudID: (Optional) 所属云ID :param id: (Optional) 负载均衡实例ID。 :param name: (Optional) 负载均衡实例的名称。 :param status: (Optional) 负载均衡实例状态 :param ipAddress: (Optional) 负载均衡实例的服务地址。 :param addressType: (Optional) 负载均衡实例的网络类型。 :param subnetId: (Optional) 私网负载均衡实例的交换机ID。 :param vpc: (Optional) 私网负载均衡实例的专有网络ID。 :param networkType: (Optional) 私网负载均衡实例的网络类型 :param masterAz: (Optional) 实例的主可用区ID。 :param slaveAz: (Optional) 实例的备可用区ID。 :param createdTime: (Optional) 创建时间 :param listenerPortsAndProtocol: (Optional) 负载均衡实例前端使用的端口和协议列表。 :param backendServers: (Optional) 负载均衡实例的后端服务器列表。 :param loadBalancerSpec: (Optional) 负载均衡实例的的性能规格。取值:slb.s1.small、slb.s2.small、slb.s2.medium、slb.s3.small、slb.s3.medium、slb.s3.large """ self.cloudID = cloudID self.id = id self.name = name self.status = status self.ipAddress = ipAddress self.addressType = addressType self.subnetId = subnetId self.vpc = vpc self.networkType = networkType self.masterAz = masterAz self.slaveAz = slaveAz self.createdTime = createdTime self.listenerPortsAndProtocol = listenerPortsAndProtocol self.backendServers = backendServers self.loadBalancerSpec = loadBalancerSpec