Files
2026-02-07 15:48:27 +08:00

205 lines
6.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 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.Memcached.V20190318.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class InstanceListInfo : AbstractModel
{
/// <summary>
/// 实例关联的标签信息
/// </summary>
[JsonProperty("Tags")]
public TagInfo[] Tags{ get; set; }
/// <summary>
/// 实例创建时间
/// </summary>
[JsonProperty("AddTimeStamp")]
public string AddTimeStamp{ get; set; }
/// <summary>
/// 用户AppID
/// </summary>
[JsonProperty("AppId")]
public long? AppId{ get; set; }
/// <summary>
/// 实例是否设置自动续费标识1设置自动续费0未设置自动续费
/// </summary>
[JsonProperty("AutoRenewFlag")]
public long? AutoRenewFlag{ get; set; }
/// <summary>
/// 实例内置ID
/// </summary>
[JsonProperty("CmemId")]
public long? CmemId{ get; set; }
/// <summary>
/// 实例截止时间
/// </summary>
[JsonProperty("DeadlineTimeStamp")]
public string DeadlineTimeStamp{ get; set; }
/// <summary>
/// 过期策略
/// </summary>
[JsonProperty("Expire")]
public long? Expire{ get; set; }
/// <summary>
/// 实例描述信息
/// </summary>
[JsonProperty("InstanceDesc")]
public string InstanceDesc{ get; set; }
/// <summary>
/// 实例ID
/// </summary>
[JsonProperty("InstanceId")]
public string InstanceId{ get; set; }
/// <summary>
/// 实例名称
/// </summary>
[JsonProperty("InstanceName")]
public string InstanceName{ get; set; }
/// <summary>
/// 实例隔离时间
/// </summary>
[JsonProperty("IsolateTimeStamp")]
public string IsolateTimeStamp{ get; set; }
/// <summary>
/// 实例修改时间
/// </summary>
[JsonProperty("ModTimeStamp")]
public string ModTimeStamp{ get; set; }
/// <summary>
/// 计费模式0-按量计费1-包年包月
/// </summary>
[JsonProperty("PayMode")]
public long? PayMode{ get; set; }
/// <summary>
/// 项目ID
/// </summary>
[JsonProperty("ProjectId")]
public long? ProjectId{ get; set; }
/// <summary>
/// 地域id 1--广州 4--上海 5-- 香港 6--多伦多 7--上海金融 8--北京 9-- 新加坡 11--深圳金融 15--美西硅谷16--成都 17--德国 18--韩国 19--重庆 21--印度 22--美东弗吉尼亚23--泰国 24--俄罗斯 25--日本
/// </summary>
[JsonProperty("RegionId")]
public long? RegionId{ get; set; }
/// <summary>
/// 仓库ID
/// </summary>
[JsonProperty("SetId")]
public long? SetId{ get; set; }
/// <summary>
/// 实例当前状态0待初始化1实例在流程中2实例运行中-2实例已隔离-3实例待删除
/// </summary>
[JsonProperty("Status")]
public long? Status{ get; set; }
/// <summary>
/// vpc网络下子网id 如46315
/// </summary>
[JsonProperty("SubnetId")]
public long? SubnetId{ get; set; }
/// <summary>
/// vpc网络下子网id 如subnet-fd3j6l35mm0
/// </summary>
[JsonProperty("UniqSubnetId")]
public string UniqSubnetId{ get; set; }
/// <summary>
/// vpc网络id 如vpc-fk33jsf43kgv
/// </summary>
[JsonProperty("UniqVpcId")]
public string UniqVpcId{ get; set; }
/// <summary>
/// 实例vip
/// </summary>
[JsonProperty("Vip")]
public string Vip{ get; set; }
/// <summary>
/// vpc网络id 如75101
/// </summary>
[JsonProperty("VpcId")]
public long? VpcId{ get; set; }
/// <summary>
/// 实例端口号
/// </summary>
[JsonProperty("Vport")]
public long? Vport{ get; set; }
/// <summary>
/// 区域ID
/// </summary>
[JsonProperty("ZoneId")]
public long? ZoneId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamArrayObj(map, prefix + "Tags.", this.Tags);
this.SetParamSimple(map, prefix + "AddTimeStamp", this.AddTimeStamp);
this.SetParamSimple(map, prefix + "AppId", this.AppId);
this.SetParamSimple(map, prefix + "AutoRenewFlag", this.AutoRenewFlag);
this.SetParamSimple(map, prefix + "CmemId", this.CmemId);
this.SetParamSimple(map, prefix + "DeadlineTimeStamp", this.DeadlineTimeStamp);
this.SetParamSimple(map, prefix + "Expire", this.Expire);
this.SetParamSimple(map, prefix + "InstanceDesc", this.InstanceDesc);
this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.SetParamSimple(map, prefix + "InstanceName", this.InstanceName);
this.SetParamSimple(map, prefix + "IsolateTimeStamp", this.IsolateTimeStamp);
this.SetParamSimple(map, prefix + "ModTimeStamp", this.ModTimeStamp);
this.SetParamSimple(map, prefix + "PayMode", this.PayMode);
this.SetParamSimple(map, prefix + "ProjectId", this.ProjectId);
this.SetParamSimple(map, prefix + "RegionId", this.RegionId);
this.SetParamSimple(map, prefix + "SetId", this.SetId);
this.SetParamSimple(map, prefix + "Status", this.Status);
this.SetParamSimple(map, prefix + "SubnetId", this.SubnetId);
this.SetParamSimple(map, prefix + "UniqSubnetId", this.UniqSubnetId);
this.SetParamSimple(map, prefix + "UniqVpcId", this.UniqVpcId);
this.SetParamSimple(map, prefix + "Vip", this.Vip);
this.SetParamSimple(map, prefix + "VpcId", this.VpcId);
this.SetParamSimple(map, prefix + "Vport", this.Vport);
this.SetParamSimple(map, prefix + "ZoneId", this.ZoneId);
}
}
}