/* * 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 { /// /// 实例名称(对应到kubernetes的pod名称) /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("PodName")] public string PodName{ get; set; } /// /// 实例ID(对应到kubernetes的pod id) /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("PodId")] public string PodId{ get; set; } /// /// 实例状态,请参考后面的实例以及容器的状态定义 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Status")] public string Status{ get; set; } /// /// 实例处于当前状态的原因,例如容器下载镜像失败 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Reason")] public string Reason{ get; set; } /// /// 主机IP /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("NodeIp")] public string NodeIp{ get; set; } /// /// 实例IP /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Ip")] public string Ip{ get; set; } /// /// 实例中容器的重启次数 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("RestartCount")] public long? RestartCount{ get; set; } /// /// 实例中已就绪容器的个数 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ReadyCount")] public long? ReadyCount{ get; set; } /// /// 运行时长 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Runtime")] public string Runtime{ get; set; } /// /// 实例启动时间 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("CreatedAt")] public string CreatedAt{ get; set; } /// /// 服务实例状态 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ServiceInstanceStatus")] public string ServiceInstanceStatus{ get; set; } /// /// 机器实例可使用状态 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("InstanceAvailableStatus")] public string InstanceAvailableStatus{ get; set; } /// /// 机器实例状态 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("InstanceStatus")] public string InstanceStatus{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary 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); } } }