com.aliyun.cloud_siem20220616.models.BatchJobSubmitResponseBody 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 BatchJobSubmitResponseBody extends TeaModel {
@NameInMap("Code")
public Integer code;
@NameInMap("Data")
public BatchJobSubmitResponseBodyData data;
@NameInMap("ErrCode")
public String errCode;
@NameInMap("Message")
public String message;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public Boolean success;
public static BatchJobSubmitResponseBody build(java.util.Map map) throws Exception {
BatchJobSubmitResponseBody self = new BatchJobSubmitResponseBody();
return TeaModel.build(map, self);
}
public BatchJobSubmitResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public BatchJobSubmitResponseBody setData(BatchJobSubmitResponseBodyData data) {
this.data = data;
return this;
}
public BatchJobSubmitResponseBodyData getData() {
return this.data;
}
public BatchJobSubmitResponseBody setErrCode(String errCode) {
this.errCode = errCode;
return this;
}
public String getErrCode() {
return this.errCode;
}
public BatchJobSubmitResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public BatchJobSubmitResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public BatchJobSubmitResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class BatchJobSubmitResponseBodyDataConfigListProductListLogList extends TeaModel {
@NameInMap("ErrorCode")
public String errorCode;
@NameInMap("LogCode")
public String logCode;
@NameInMap("LogStoreNamePattern")
public String logStoreNamePattern;
@NameInMap("ProductCode")
public String productCode;
@NameInMap("ProjectNamePattern")
public String projectNamePattern;
@NameInMap("RegionCode")
public String regionCode;
public static BatchJobSubmitResponseBodyDataConfigListProductListLogList build(java.util.Map map) throws Exception {
BatchJobSubmitResponseBodyDataConfigListProductListLogList self = new BatchJobSubmitResponseBodyDataConfigListProductListLogList();
return TeaModel.build(map, self);
}
public BatchJobSubmitResponseBodyDataConfigListProductListLogList setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public BatchJobSubmitResponseBodyDataConfigListProductListLogList setLogCode(String logCode) {
this.logCode = logCode;
return this;
}
public String getLogCode() {
return this.logCode;
}
public BatchJobSubmitResponseBodyDataConfigListProductListLogList setLogStoreNamePattern(String logStoreNamePattern) {
this.logStoreNamePattern = logStoreNamePattern;
return this;
}
public String getLogStoreNamePattern() {
return this.logStoreNamePattern;
}
public BatchJobSubmitResponseBodyDataConfigListProductListLogList setProductCode(String productCode) {
this.productCode = productCode;
return this;
}
public String getProductCode() {
return this.productCode;
}
public BatchJobSubmitResponseBodyDataConfigListProductListLogList setProjectNamePattern(String projectNamePattern) {
this.projectNamePattern = projectNamePattern;
return this;
}
public String getProjectNamePattern() {
return this.projectNamePattern;
}
public BatchJobSubmitResponseBodyDataConfigListProductListLogList setRegionCode(String regionCode) {
this.regionCode = regionCode;
return this;
}
public String getRegionCode() {
return this.regionCode;
}
}
public static class BatchJobSubmitResponseBodyDataConfigListProductList extends TeaModel {
@NameInMap("LogList")
public java.util.List logList;
@NameInMap("ProductCode")
public String productCode;
public static BatchJobSubmitResponseBodyDataConfigListProductList build(java.util.Map map) throws Exception {
BatchJobSubmitResponseBodyDataConfigListProductList self = new BatchJobSubmitResponseBodyDataConfigListProductList();
return TeaModel.build(map, self);
}
public BatchJobSubmitResponseBodyDataConfigListProductList setLogList(java.util.List logList) {
this.logList = logList;
return this;
}
public java.util.List getLogList() {
return this.logList;
}
public BatchJobSubmitResponseBodyDataConfigListProductList setProductCode(String productCode) {
this.productCode = productCode;
return this;
}
public String getProductCode() {
return this.productCode;
}
}
public static class BatchJobSubmitResponseBodyDataConfigList extends TeaModel {
@NameInMap("ProductList")
public java.util.List productList;
@NameInMap("UserId")
public Long userId;
public static BatchJobSubmitResponseBodyDataConfigList build(java.util.Map map) throws Exception {
BatchJobSubmitResponseBodyDataConfigList self = new BatchJobSubmitResponseBodyDataConfigList();
return TeaModel.build(map, self);
}
public BatchJobSubmitResponseBodyDataConfigList setProductList(java.util.List productList) {
this.productList = productList;
return this;
}
public java.util.List getProductList() {
return this.productList;
}
public BatchJobSubmitResponseBodyDataConfigList setUserId(Long userId) {
this.userId = userId;
return this;
}
public Long getUserId() {
return this.userId;
}
}
public static class BatchJobSubmitResponseBodyData extends TeaModel {
@NameInMap("ConfigId")
public String configId;
@NameInMap("ConfigList")
public java.util.List configList;
@NameInMap("SubmitId")
public String submitId;
@NameInMap("TaskCount")
public Integer taskCount;
public static BatchJobSubmitResponseBodyData build(java.util.Map map) throws Exception {
BatchJobSubmitResponseBodyData self = new BatchJobSubmitResponseBodyData();
return TeaModel.build(map, self);
}
public BatchJobSubmitResponseBodyData setConfigId(String configId) {
this.configId = configId;
return this;
}
public String getConfigId() {
return this.configId;
}
public BatchJobSubmitResponseBodyData setConfigList(java.util.List configList) {
this.configList = configList;
return this;
}
public java.util.List getConfigList() {
return this.configList;
}
public BatchJobSubmitResponseBodyData setSubmitId(String submitId) {
this.submitId = submitId;
return this;
}
public String getSubmitId() {
return this.submitId;
}
public BatchJobSubmitResponseBodyData setTaskCount(Integer taskCount) {
this.taskCount = taskCount;
return this;
}
public Integer getTaskCount() {
return this.taskCount;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy