Files

61 lines
2.5 KiB
C#
Raw Permalink Normal View History

/*
* 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.As.V20180419.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class InstanceNameSettings : AbstractModel
{
/// <summary>
/// 云服务器的实例名。
///
/// 点号(.)和短横线(-)不能作为 InstanceName 的首尾字符,不能连续使用。
///
/// 其他类型Linux 等)实例:字符长度为[2, 40],允许支持多个点号,点之间为一段,每段允许字母(不限制大小写)、数字和短横线(-)组成。
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("InstanceName")]
public string InstanceName{ get; set; }
/// <summary>
/// 云服务器实例名的风格,取值范围包括 ORIGINAL 和 UNIQUE默认为 ORIGINAL。
///
/// ORIGINALAS 直接将入参中所填的 InstanceName 传递给 CVMCVM 可能会对 InstanceName 追加序列号,伸缩组中实例的 InstanceName 会出现冲突的情况。
///
/// UNIQUE入参所填的 InstanceName 相当于实例名前缀AS 和 CVM 会对其进行拓展,伸缩组中实例的 InstanceName 可以保证唯一。
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("InstanceNameStyle")]
public string InstanceNameStyle{ 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 + "InstanceName", this.InstanceName);
this.SetParamSimple(map, prefix + "InstanceNameStyle", this.InstanceNameStyle);
}
}
}