86 lines
3.4 KiB
C#
86 lines
3.4 KiB
C#
/*
|
||
* 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.Tke.V20180525.Models
|
||
{
|
||
using Newtonsoft.Json;
|
||
using System.Collections.Generic;
|
||
using TencentCloud.Common;
|
||
|
||
public class AddExistedInstancesRequest : AbstractModel
|
||
{
|
||
|
||
/// <summary>
|
||
/// 集群ID
|
||
/// </summary>
|
||
[JsonProperty("ClusterId")]
|
||
public string ClusterId{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 实例列表
|
||
/// </summary>
|
||
[JsonProperty("InstanceIds")]
|
||
public string[] InstanceIds{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 实例额外需要设置参数信息
|
||
/// </summary>
|
||
[JsonProperty("InstanceAdvancedSettings")]
|
||
public InstanceAdvancedSettings InstanceAdvancedSettings{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 增强服务。通过该参数可以指定是否开启云安全、云监控等服务。若不指定该参数,则默认开启云监控、云安全服务。
|
||
/// </summary>
|
||
[JsonProperty("EnhancedService")]
|
||
public EnhancedService EnhancedService{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 节点登录信息(目前仅支持使用Password或者单个KeyIds)
|
||
/// </summary>
|
||
[JsonProperty("LoginSettings")]
|
||
public LoginSettings LoginSettings{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 实例所属安全组。该参数可以通过调用 DescribeSecurityGroups 的返回值中的sgId字段来获取。若不指定该参数,则绑定默认安全组。(目前仅支持设置单个sgId)
|
||
/// </summary>
|
||
[JsonProperty("SecurityGroupIds")]
|
||
public string[] SecurityGroupIds{ get; set; }
|
||
|
||
/// <summary>
|
||
/// 重装系统时,可以指定修改实例的HostName(集群为HostName模式时,此参数必传,规则名称除不支持大写字符外与[CVM创建实例](https://cloud.tencent.com/document/product/213/15730)接口HostName一致)
|
||
/// </summary>
|
||
[JsonProperty("HostName")]
|
||
public string HostName{ get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// For internal usage only. DO NOT USE IT.
|
||
/// </summary>
|
||
internal override void ToMap(Dictionary<string, string> map, string prefix)
|
||
{
|
||
this.SetParamSimple(map, prefix + "ClusterId", this.ClusterId);
|
||
this.SetParamArraySimple(map, prefix + "InstanceIds.", this.InstanceIds);
|
||
this.SetParamObj(map, prefix + "InstanceAdvancedSettings.", this.InstanceAdvancedSettings);
|
||
this.SetParamObj(map, prefix + "EnhancedService.", this.EnhancedService);
|
||
this.SetParamObj(map, prefix + "LoginSettings.", this.LoginSettings);
|
||
this.SetParamArraySimple(map, prefix + "SecurityGroupIds.", this.SecurityGroupIds);
|
||
this.SetParamSimple(map, prefix + "HostName", this.HostName);
|
||
}
|
||
}
|
||
}
|
||
|