Files
g.hnyhua.cn/TencentCloud/Tsf/V20180326/Models/GroupPod.cs
2026-02-07 15:48:27 +08:00

141 lines
5.2 KiB
C#
Raw 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.Tsf.V20180326.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class GroupPod : AbstractModel
{
/// <summary>
/// 实例名称(对应到kubernetes的pod名称)
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("PodName")]
public string PodName{ get; set; }
/// <summary>
/// 实例ID(对应到kubernetes的pod id)
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("PodId")]
public string PodId{ get; set; }
/// <summary>
/// 实例状态,请参考后面的实例以及容器的状态定义
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("Status")]
public string Status{ get; set; }
/// <summary>
/// 实例处于当前状态的原因,例如容器下载镜像失败
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("Reason")]
public string Reason{ get; set; }
/// <summary>
/// 主机IP
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("NodeIp")]
public string NodeIp{ get; set; }
/// <summary>
/// 实例IP
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("Ip")]
public string Ip{ get; set; }
/// <summary>
/// 实例中容器的重启次数
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("RestartCount")]
public long? RestartCount{ get; set; }
/// <summary>
/// 实例中已就绪容器的个数
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ReadyCount")]
public long? ReadyCount{ get; set; }
/// <summary>
/// 运行时长
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("Runtime")]
public string Runtime{ get; set; }
/// <summary>
/// 实例启动时间
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("CreatedAt")]
public string CreatedAt{ get; set; }
/// <summary>
/// 服务实例状态
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ServiceInstanceStatus")]
public string ServiceInstanceStatus{ get; set; }
/// <summary>
/// 机器实例可使用状态
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("InstanceAvailableStatus")]
public string InstanceAvailableStatus{ get; set; }
/// <summary>
/// 机器实例状态
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("InstanceStatus")]
public string InstanceStatus{ 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 + "PodName", this.PodName);
this.SetParamSimple(map, prefix + "PodId", this.PodId);
this.SetParamSimple(map, prefix + "Status", this.Status);
this.SetParamSimple(map, prefix + "Reason", this.Reason);
this.SetParamSimple(map, prefix + "NodeIp", this.NodeIp);
this.SetParamSimple(map, prefix + "Ip", this.Ip);
this.SetParamSimple(map, prefix + "RestartCount", this.RestartCount);
this.SetParamSimple(map, prefix + "ReadyCount", this.ReadyCount);
this.SetParamSimple(map, prefix + "Runtime", this.Runtime);
this.SetParamSimple(map, prefix + "CreatedAt", this.CreatedAt);
this.SetParamSimple(map, prefix + "ServiceInstanceStatus", this.ServiceInstanceStatus);
this.SetParamSimple(map, prefix + "InstanceAvailableStatus", this.InstanceAvailableStatus);
this.SetParamSimple(map, prefix + "InstanceStatus", this.InstanceStatus);
}
}
}