47 lines
2.2 KiB
Go
Raw Normal View History

// 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.
package models
type InstanceTemplateDiskAttachment struct {
/* 磁盘分类取值为本地盘(local)或者数据盘(cloud)
系统盘支持本地盘(local)或者云硬盘(cloud)系统盘选择local类型必须使用localDisk类型的镜像同理系统盘选择cloud类型必须使用cloudDisk类型的镜像
数据盘仅支持云硬盘(cloud)
(Optional) */
DiskCategory string `json:"diskCategory"`
/* 随云主机一起删除删除主机时自动删除此磁盘默认为true本地盘(local)不能更改此值
如果云主机中的数据盘(cloud)是包年包月计费方式此参数不生效
如果云主机中的数据盘(cloud)是共享型数据盘此参数不生效
(Optional) */
AutoDelete bool `json:"autoDelete"`
/* 数据盘配置 (Optional) */
InstanceTemplateDisk InstanceTemplateDisk `json:"instanceTemplateDisk"`
/* 数据盘逻辑挂载点取值范围vda,vdb,vdc,vdd,vde,vdf,vdg,vdh,vdi。系统盘不需要使用数据盘时才能够使用。 (Optional) */
DeviceName string `json:"deviceName"`
/* 排除设备使用此参数noDevice配合deviceName一起使用
创建整机镜像如deviceName:vdbnoDevice:true则表示云主机中的数据盘vdb不参与创建镜像
创建模板如deviceName:vdbnoDevice:true则表示镜像中的数据盘vdb不参与创建主机
创建主机如deviceName:vdbnoDevice:true则表示镜像中的数据盘vdb或者模板(使用模板创建主机)中的数据盘vdb不参与创建主机
(Optional) */
NoDevice bool `json:"noDevice"`
}