com.aliyun.arms20190808.models.UpdateEnvPodMonitorResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class UpdateEnvPodMonitorResponseBody extends TeaModel {
/**
* The response code.
*
* The status code 200 indicates that the request was successful.
*
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The returned struct.
*/
@NameInMap("Data")
public UpdateEnvPodMonitorResponseBodyData data;
/**
* The returned message.
*
* example:
* success
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* C21AB7CF-B7AF-410F-BD61-82D1567F****
*/
@NameInMap("RequestId")
public String requestId;
public static UpdateEnvPodMonitorResponseBody build(java.util.Map map) throws Exception {
UpdateEnvPodMonitorResponseBody self = new UpdateEnvPodMonitorResponseBody();
return TeaModel.build(map, self);
}
public UpdateEnvPodMonitorResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public UpdateEnvPodMonitorResponseBody setData(UpdateEnvPodMonitorResponseBodyData data) {
this.data = data;
return this;
}
public UpdateEnvPodMonitorResponseBodyData getData() {
return this.data;
}
public UpdateEnvPodMonitorResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UpdateEnvPodMonitorResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class UpdateEnvPodMonitorResponseBodyData extends TeaModel {
/**
* Indicates whether targets are matched.
*
* example:
* Match successful.
*/
@NameInMap("MatchedMsg")
public String matchedMsg;
/**
* The number of matched targets.
*
* example:
* 1
*/
@NameInMap("MatchedTargetCount")
public String matchedTargetCount;
public static UpdateEnvPodMonitorResponseBodyData build(java.util.Map map) throws Exception {
UpdateEnvPodMonitorResponseBodyData self = new UpdateEnvPodMonitorResponseBodyData();
return TeaModel.build(map, self);
}
public UpdateEnvPodMonitorResponseBodyData setMatchedMsg(String matchedMsg) {
this.matchedMsg = matchedMsg;
return this;
}
public String getMatchedMsg() {
return this.matchedMsg;
}
public UpdateEnvPodMonitorResponseBodyData setMatchedTargetCount(String matchedTargetCount) {
this.matchedTargetCount = matchedTargetCount;
return this;
}
public String getMatchedTargetCount() {
return this.matchedTargetCount;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy