代码修改后的版本,全部提交

This commit is contained in:
ss001
2026-02-07 15:48:27 +08:00
parent cccbaa37c9
commit c2cda58c65
15604 changed files with 2455502 additions and 0 deletions

View File

@@ -0,0 +1,163 @@
/*
* 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.Yunjing.V20180228.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeMachineInfoResponse : AbstractModel
{
/// <summary>
/// 机器ip。
/// </summary>
[JsonProperty("MachineIp")]
public string MachineIp{ get; set; }
/// <summary>
/// 受云镜保护天数。
/// </summary>
[JsonProperty("ProtectDays")]
public ulong? ProtectDays{ get; set; }
/// <summary>
/// 操作系统。
/// </summary>
[JsonProperty("MachineOs")]
public string MachineOs{ get; set; }
/// <summary>
/// 主机名称。
/// </summary>
[JsonProperty("MachineName")]
public string MachineName{ get; set; }
/// <summary>
/// 在线状态。
/// <li>ONLINE 在线</li>
/// <li>OFFLINE离线</li>
/// </summary>
[JsonProperty("MachineStatus")]
public string MachineStatus{ get; set; }
/// <summary>
/// CVM或BM主机唯一标识。
/// </summary>
[JsonProperty("InstanceId")]
public string InstanceId{ get; set; }
/// <summary>
/// 主机外网IP。
/// </summary>
[JsonProperty("MachineWanIp")]
public string MachineWanIp{ get; set; }
/// <summary>
/// CVM或BM主机唯一Uuid。
/// </summary>
[JsonProperty("Quuid")]
public string Quuid{ get; set; }
/// <summary>
/// 云镜客户端唯一Uuid。
/// </summary>
[JsonProperty("Uuid")]
public string Uuid{ get; set; }
/// <summary>
/// 是否开通专业版。
/// <li>true是</li>
/// <li>false否</li>
/// </summary>
[JsonProperty("IsProVersion")]
public bool? IsProVersion{ get; set; }
/// <summary>
/// 专业版开通时间。
/// </summary>
[JsonProperty("ProVersionOpenDate")]
public string ProVersionOpenDate{ get; set; }
/// <summary>
/// 云主机类型。
/// <li>CVM: 虚拟主机</li>
/// <li>BM: 黑石物理机</li>
/// </summary>
[JsonProperty("MachineType")]
public string MachineType{ get; set; }
/// <summary>
/// 机器所属地域。如ap-guangzhouap-shanghai
/// </summary>
[JsonProperty("MachineRegion")]
public string MachineRegion{ get; set; }
/// <summary>
/// 主机状态。
/// <li>POSTPAY: 表示后付费,即按量计费 </li>
/// <li>PREPAY: 表示预付费,即包年包月</li>
/// </summary>
[JsonProperty("PayMode")]
public string PayMode{ get; set; }
/// <summary>
/// 免费木马剩余检测数量。
/// </summary>
[JsonProperty("FreeMalwaresLeft")]
public ulong? FreeMalwaresLeft{ get; set; }
/// <summary>
/// 免费漏洞剩余检测数量。
/// </summary>
[JsonProperty("FreeVulsLeft")]
public ulong? FreeVulsLeft{ get; set; }
/// <summary>
/// 唯一请求 ID每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ 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 + "MachineIp", this.MachineIp);
this.SetParamSimple(map, prefix + "ProtectDays", this.ProtectDays);
this.SetParamSimple(map, prefix + "MachineOs", this.MachineOs);
this.SetParamSimple(map, prefix + "MachineName", this.MachineName);
this.SetParamSimple(map, prefix + "MachineStatus", this.MachineStatus);
this.SetParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.SetParamSimple(map, prefix + "MachineWanIp", this.MachineWanIp);
this.SetParamSimple(map, prefix + "Quuid", this.Quuid);
this.SetParamSimple(map, prefix + "Uuid", this.Uuid);
this.SetParamSimple(map, prefix + "IsProVersion", this.IsProVersion);
this.SetParamSimple(map, prefix + "ProVersionOpenDate", this.ProVersionOpenDate);
this.SetParamSimple(map, prefix + "MachineType", this.MachineType);
this.SetParamSimple(map, prefix + "MachineRegion", this.MachineRegion);
this.SetParamSimple(map, prefix + "PayMode", this.PayMode);
this.SetParamSimple(map, prefix + "FreeMalwaresLeft", this.FreeMalwaresLeft);
this.SetParamSimple(map, prefix + "FreeVulsLeft", this.FreeVulsLeft);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}