# 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 SlbInfo(object):
def __init__(self, cloudID=None, id=None, name=None, status=None, ipAddress=None, addressType=None, subnetId=None, vpc=None, networkType=None, azs=None, createdTime=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 azs: (Optional) 可用区域。
:param createdTime: (Optional) 创建时间
"""
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.azs = azs
self.createdTime = createdTime