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

# 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 SubnetInfo(object): def __init__(self, id=None, vpcId=None, subnetName=None, cidrBlock=None, availableIpCount=None, description=None, endIp=None, routeTableId=None, startIp=None, cloudID=None, az=None, createdTime=None): """ :param id: (Optional) Subnet的Id :param vpcId: (Optional) 子网所属VPC的Id :param subnetName: (Optional) 子网名称 :param cidrBlock: (Optional) 子网网段 :param availableIpCount: (Optional) 子网可用ip数量 :param description: (Optional) 子网描述信息 :param endIp: (Optional) 子网的结束地址 :param routeTableId: (Optional) 子网关联的路由表Id :param startIp: (Optional) 子网的起始地址 :param cloudID: (Optional) 所属云提供商ID :param az: (Optional) 可用区 :param createdTime: (Optional) 子网创建时间 """ self.id = id self.vpcId = vpcId self.subnetName = subnetName self.cidrBlock = cidrBlock self.availableIpCount = availableIpCount self.description = description self.endIp = endIp self.routeTableId = routeTableId self.startIp = startIp self.cloudID = cloudID self.az = az self.createdTime = createdTime