com.tencentcloudapi.tcss.v20201101.models.DescribeTaskResultSummaryResponse Maven / Gradle / Ivy
/*
* Copyright (c) 2017-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.
*/
package com.tencentcloudapi.tcss.v20201101.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeTaskResultSummaryResponse extends AbstractModel {
/**
* Number of nodes affected by critical risks in the last seven days
*/
@SerializedName("SeriousRiskNodeCount")
@Expose
private Long [] SeriousRiskNodeCount;
/**
* Number of nodes affected by high risks in the last seven days
*/
@SerializedName("HighRiskNodeCount")
@Expose
private Long [] HighRiskNodeCount;
/**
* Number of nodes affected by medium risks in the last seven days
*/
@SerializedName("MiddleRiskNodeCount")
@Expose
private Long [] MiddleRiskNodeCount;
/**
* Number of nodes affected by prompt risks in the last seven days
*/
@SerializedName("HintRiskNodeCount")
@Expose
private Long [] HintRiskNodeCount;
/**
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get Number of nodes affected by critical risks in the last seven days
* @return SeriousRiskNodeCount Number of nodes affected by critical risks in the last seven days
*/
public Long [] getSeriousRiskNodeCount() {
return this.SeriousRiskNodeCount;
}
/**
* Set Number of nodes affected by critical risks in the last seven days
* @param SeriousRiskNodeCount Number of nodes affected by critical risks in the last seven days
*/
public void setSeriousRiskNodeCount(Long [] SeriousRiskNodeCount) {
this.SeriousRiskNodeCount = SeriousRiskNodeCount;
}
/**
* Get Number of nodes affected by high risks in the last seven days
* @return HighRiskNodeCount Number of nodes affected by high risks in the last seven days
*/
public Long [] getHighRiskNodeCount() {
return this.HighRiskNodeCount;
}
/**
* Set Number of nodes affected by high risks in the last seven days
* @param HighRiskNodeCount Number of nodes affected by high risks in the last seven days
*/
public void setHighRiskNodeCount(Long [] HighRiskNodeCount) {
this.HighRiskNodeCount = HighRiskNodeCount;
}
/**
* Get Number of nodes affected by medium risks in the last seven days
* @return MiddleRiskNodeCount Number of nodes affected by medium risks in the last seven days
*/
public Long [] getMiddleRiskNodeCount() {
return this.MiddleRiskNodeCount;
}
/**
* Set Number of nodes affected by medium risks in the last seven days
* @param MiddleRiskNodeCount Number of nodes affected by medium risks in the last seven days
*/
public void setMiddleRiskNodeCount(Long [] MiddleRiskNodeCount) {
this.MiddleRiskNodeCount = MiddleRiskNodeCount;
}
/**
* Get Number of nodes affected by prompt risks in the last seven days
* @return HintRiskNodeCount Number of nodes affected by prompt risks in the last seven days
*/
public Long [] getHintRiskNodeCount() {
return this.HintRiskNodeCount;
}
/**
* Set Number of nodes affected by prompt risks in the last seven days
* @param HintRiskNodeCount Number of nodes affected by prompt risks in the last seven days
*/
public void setHintRiskNodeCount(Long [] HintRiskNodeCount) {
this.HintRiskNodeCount = HintRiskNodeCount;
}
/**
* Get The unique request ID, which is returned for each request. RequestId is required for locating a problem.
* @return RequestId The unique request ID, which is returned for each request. RequestId is required for locating a problem.
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set The unique request ID, which is returned for each request. RequestId is required for locating a problem.
* @param RequestId The unique request ID, which is returned for each request. RequestId is required for locating a problem.
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public DescribeTaskResultSummaryResponse() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeTaskResultSummaryResponse(DescribeTaskResultSummaryResponse source) {
if (source.SeriousRiskNodeCount != null) {
this.SeriousRiskNodeCount = new Long[source.SeriousRiskNodeCount.length];
for (int i = 0; i < source.SeriousRiskNodeCount.length; i++) {
this.SeriousRiskNodeCount[i] = new Long(source.SeriousRiskNodeCount[i]);
}
}
if (source.HighRiskNodeCount != null) {
this.HighRiskNodeCount = new Long[source.HighRiskNodeCount.length];
for (int i = 0; i < source.HighRiskNodeCount.length; i++) {
this.HighRiskNodeCount[i] = new Long(source.HighRiskNodeCount[i]);
}
}
if (source.MiddleRiskNodeCount != null) {
this.MiddleRiskNodeCount = new Long[source.MiddleRiskNodeCount.length];
for (int i = 0; i < source.MiddleRiskNodeCount.length; i++) {
this.MiddleRiskNodeCount[i] = new Long(source.MiddleRiskNodeCount[i]);
}
}
if (source.HintRiskNodeCount != null) {
this.HintRiskNodeCount = new Long[source.HintRiskNodeCount.length];
for (int i = 0; i < source.HintRiskNodeCount.length; i++) {
this.HintRiskNodeCount[i] = new Long(source.HintRiskNodeCount[i]);
}
}
if (source.RequestId != null) {
this.RequestId = new String(source.RequestId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamArraySimple(map, prefix + "SeriousRiskNodeCount.", this.SeriousRiskNodeCount);
this.setParamArraySimple(map, prefix + "HighRiskNodeCount.", this.HighRiskNodeCount);
this.setParamArraySimple(map, prefix + "MiddleRiskNodeCount.", this.MiddleRiskNodeCount);
this.setParamArraySimple(map, prefix + "HintRiskNodeCount.", this.HintRiskNodeCount);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy