/* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * 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. */ namespace TencentCloud.Bm.V20180423.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class ReloadDeviceOsRequest : AbstractModel { /// /// 设备的唯一ID /// [JsonProperty("InstanceId")] public string InstanceId{ get; set; } /// /// 密码。 用户设置的linux root或Windows Administrator密码。密码校验规则:
  • Windows机器密码需12到16位,至少包括三项 `[a-z]`,`[A-Z]`,`[0-9]`和`[()`'`~!@#$%^&*-+=_`|`{}[]:;'<>,.?/]`的特殊符号, 密码不能包含Administrator(不区分大小写);
  • Linux机器密码需8到16位,至少包括两项`[a-z,A-Z]`,`[0-9]`和`[()`'`~!@#$%^&*-+=_`|`{}[]:;'<>,.?/]`的特殊符号 ///
  • [JsonProperty("Password")] public string Password{ get; set; } /// /// 操作系统类型ID。通过接口[查询操作系统信息(DescribeOsInfo)](https://cloud.tencent.com/document/api/386/32902)获取操作系统信息 /// [JsonProperty("OsTypeId")] public ulong? OsTypeId{ get; set; } /// /// RAID类型ID。通过接口[查询机型RAID方式以及系统盘大小(DescribeDeviceClassPartition)](https://cloud.tencent.com/document/api/386/32910)获取RAID信息 /// [JsonProperty("RaidId")] public ulong? RaidId{ get; set; } /// /// 是否格式化数据盘。0: 不格式化(默认值);1:格式化 /// [JsonProperty("IsZoning")] public ulong? IsZoning{ get; set; } /// /// 系统盘根分区大小,默认是10G。系统盘的大小参考接口[查询机型RAID方式以及系统盘大小(DescribeDeviceClassPartition)](https://cloud.tencent.com/document/api/386/32910) /// [JsonProperty("SysRootSpace")] public ulong? SysRootSpace{ get; set; } /// /// 系统盘swap分区或/boot/efi分区的大小。若是uefi启动的机器,分区为/boot/efi ,且此值是默认是2G。普通机器为swap分区,可以不指定此分区。机型是否是uefi启动,参考接口[查询设备型号(DescribeDeviceClass)](https://cloud.tencent.com/document/api/386/32911) /// [JsonProperty("SysSwaporuefiSpace")] public ulong? SysSwaporuefiSpace{ get; set; } /// /// /usr/local分区大小 /// [JsonProperty("SysUsrlocalSpace")] public ulong? SysUsrlocalSpace{ get; set; } /// /// 重装到新的私有网络的ID。如果改变VPC子网,则要求与SubnetId同时传参,否则可不填 /// [JsonProperty("VpcId")] public string VpcId{ get; set; } /// /// 重装到新的子网的ID。如果改变VPC子网,则要求与VpcId同时传参,否则可不填 /// [JsonProperty("SubnetId")] public string SubnetId{ get; set; } /// /// 重装指定IP地址 /// [JsonProperty("LanIp")] public string LanIp{ get; set; } /// /// 指定是否开启超线程。 0:关闭超线程;1:开启超线程(默认值) /// [JsonProperty("HyperThreading")] public ulong? HyperThreading{ get; set; } /// /// 自定义镜像ID。传此字段则用自定义镜像重装 /// [JsonProperty("ImageId")] public string ImageId{ get; set; } /// /// 指定数据盘的文件系统格式,当前支持 EXT4和XFS选项, 默认为EXT4。 参数适用于数据盘和Linux, 且在IsZoning为1时生效 /// [JsonProperty("FileSystem")] public string FileSystem{ get; set; } /// /// 是否安装安全Agent,取值:1(安装) 0(不安装),默认取值0 /// [JsonProperty("NeedSecurityAgent")] public ulong? NeedSecurityAgent{ get; set; } /// /// 是否安装监控Agent,取值:1(安装) 0(不安装),默认取值0 /// [JsonProperty("NeedMonitorAgent")] public ulong? NeedMonitorAgent{ get; set; } /// /// 是否安装EMR Agent,取值:1(安装) 0(不安装),默认取值0 /// [JsonProperty("NeedEMRAgent")] public ulong? NeedEMRAgent{ get; set; } /// /// 是否安装EMR软件包,取值:1(安装) 0(不安装),默认取值0 /// [JsonProperty("NeedEMRSoftware")] public ulong? NeedEMRSoftware{ get; set; } /// /// 是否保留安全组配置,取值:1(保留) 0(不保留),默认取值0 /// [JsonProperty("ReserveSgConfig")] public ulong? ReserveSgConfig{ get; set; } /// /// /data分区大小,可不填。除root、swap、usr/local的剩余空间会自动分配到data分区 /// [JsonProperty("SysDataSpace")] public ulong? SysDataSpace{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId); this.SetParamSimple(map, prefix + "Password", this.Password); this.SetParamSimple(map, prefix + "OsTypeId", this.OsTypeId); this.SetParamSimple(map, prefix + "RaidId", this.RaidId); this.SetParamSimple(map, prefix + "IsZoning", this.IsZoning); this.SetParamSimple(map, prefix + "SysRootSpace", this.SysRootSpace); this.SetParamSimple(map, prefix + "SysSwaporuefiSpace", this.SysSwaporuefiSpace); this.SetParamSimple(map, prefix + "SysUsrlocalSpace", this.SysUsrlocalSpace); this.SetParamSimple(map, prefix + "VpcId", this.VpcId); this.SetParamSimple(map, prefix + "SubnetId", this.SubnetId); this.SetParamSimple(map, prefix + "LanIp", this.LanIp); this.SetParamSimple(map, prefix + "HyperThreading", this.HyperThreading); this.SetParamSimple(map, prefix + "ImageId", this.ImageId); this.SetParamSimple(map, prefix + "FileSystem", this.FileSystem); this.SetParamSimple(map, prefix + "NeedSecurityAgent", this.NeedSecurityAgent); this.SetParamSimple(map, prefix + "NeedMonitorAgent", this.NeedMonitorAgent); this.SetParamSimple(map, prefix + "NeedEMRAgent", this.NeedEMRAgent); this.SetParamSimple(map, prefix + "NeedEMRSoftware", this.NeedEMRSoftware); this.SetParamSimple(map, prefix + "ReserveSgConfig", this.ReserveSgConfig); this.SetParamSimple(map, prefix + "SysDataSpace", this.SysDataSpace); } } }