com.aliyun.cloud_siem20220616.models.DescribeDisposeStrategyPlaybookResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cloud_siem20220616.models;
import com.aliyun.tea.*;
public class DescribeDisposeStrategyPlaybookResponseBody extends TeaModel {
/**
* The HTTP status code that is returned.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The data returned.
*
* example:
* 123456
*/
@NameInMap("Data")
public java.util.List data;
/**
* The returned message.
*
* example:
* success
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 9AAA9ED9-78F4-5021-86DC-D51C7511****
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the request was successful. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static DescribeDisposeStrategyPlaybookResponseBody build(java.util.Map map) throws Exception {
DescribeDisposeStrategyPlaybookResponseBody self = new DescribeDisposeStrategyPlaybookResponseBody();
return TeaModel.build(map, self);
}
public DescribeDisposeStrategyPlaybookResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public DescribeDisposeStrategyPlaybookResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public DescribeDisposeStrategyPlaybookResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public DescribeDisposeStrategyPlaybookResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeDisposeStrategyPlaybookResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class DescribeDisposeStrategyPlaybookResponseBodyData extends TeaModel {
/**
* The playbook name, which is the unique identifier of the playbook.
*
* example:
* WafBlockIP
*/
@NameInMap("PlaybookName")
public String playbookName;
/**
* The UUID of the playbook.
*
* example:
* system_aliyun_clb_process_book
*/
@NameInMap("PlaybookUuid")
public String playbookUuid;
public static DescribeDisposeStrategyPlaybookResponseBodyData build(java.util.Map map) throws Exception {
DescribeDisposeStrategyPlaybookResponseBodyData self = new DescribeDisposeStrategyPlaybookResponseBodyData();
return TeaModel.build(map, self);
}
public DescribeDisposeStrategyPlaybookResponseBodyData setPlaybookName(String playbookName) {
this.playbookName = playbookName;
return this;
}
public String getPlaybookName() {
return this.playbookName;
}
public DescribeDisposeStrategyPlaybookResponseBodyData setPlaybookUuid(String playbookUuid) {
this.playbookUuid = playbookUuid;
return this;
}
public String getPlaybookUuid() {
return this.playbookUuid;
}
}
}