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

# 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 DeploymentResourcesInfo(object): def __init__(self, vms=None, eips=None, subnets=None, networkInterfaces=None, slbs=None, securityGroups=None, securityGroupRules=None, keypairs=None, disks=None, vpcs=None, vserverGroups=None, httpListeners=None, diskAttachment=None, netInterfaceAttachment=None, eipAssociate=None, rds=None, rdsDatabase=None, rdsAccount=None, rdsAccountGrant=None, bucket=None, variables=None): """ :param vms: (Optional) :param eips: (Optional) :param subnets: (Optional) :param networkInterfaces: (Optional) :param slbs: (Optional) :param securityGroups: (Optional) :param securityGroupRules: (Optional) :param keypairs: (Optional) :param disks: (Optional) :param vpcs: (Optional) :param vserverGroups: (Optional) :param httpListeners: (Optional) :param diskAttachment: (Optional) :param netInterfaceAttachment: (Optional) :param eipAssociate: (Optional) :param rds: (Optional) :param rdsDatabase: (Optional) :param rdsAccount: (Optional) :param rdsAccountGrant: (Optional) :param bucket: (Optional) :param variables: (Optional) """ self.vms = vms self.eips = eips self.subnets = subnets self.networkInterfaces = networkInterfaces self.slbs = slbs self.securityGroups = securityGroups self.securityGroupRules = securityGroupRules self.keypairs = keypairs self.disks = disks self.vpcs = vpcs self.vserverGroups = vserverGroups self.httpListeners = httpListeners self.diskAttachment = diskAttachment self.netInterfaceAttachment = netInterfaceAttachment self.eipAssociate = eipAssociate self.rds = rds self.rdsDatabase = rdsDatabase self.rdsAccount = rdsAccount self.rdsAccountGrant = rdsAccountGrant self.bucket = bucket self.variables = variables