index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSupportRegionResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSupportRegionResponse} extends {@link TeaModel} * * <p>DescribeSupportRegionResponse</p> */ public class DescribeSupportRegionResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeSupportRegionResponseBody body; private DescribeSupportRegionResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeSupportRegionResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeSupportRegionResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeSupportRegionResponseBody body; private Builder() { super(); } private Builder(DescribeSupportRegionResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeSupportRegionResponseBody body) { this.body = body; return this; } public DescribeSupportRegionResponse build() { return new DescribeSupportRegionResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSupportRegionResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSupportRegionResponseBody} extends {@link TeaModel} * * <p>DescribeSupportRegionResponseBody</p> */ public class DescribeSupportRegionResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("SupportRegion") private java.util.List < String > supportRegion; private DescribeSupportRegionResponseBody(Builder builder) { this.requestId = builder.requestId; this.supportRegion = builder.supportRegion; } public static Builder builder() { return new Builder(); } public static DescribeSupportRegionResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return supportRegion */ public java.util.List < String > getSupportRegion() { return this.supportRegion; } public static final class Builder { private String requestId; private java.util.List < String > supportRegion; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>SupportRegion.</p> */ public Builder supportRegion(java.util.List < String > supportRegion) { this.supportRegion = supportRegion; return this; } public DescribeSupportRegionResponseBody build() { return new DescribeSupportRegionResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventDetailRequest} extends {@link RequestModel} * * <p>DescribeSuspEventDetailRequest</p> */ public class DescribeSuspEventDetailRequest extends Request { @Query @NameInMap("From") private String from; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("SuspiciousEventId") private Integer suspiciousEventId; private DescribeSuspEventDetailRequest(Builder builder) { super(builder); this.from = builder.from; this.lang = builder.lang; this.sourceIp = builder.sourceIp; this.suspiciousEventId = builder.suspiciousEventId; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventDetailRequest create() { return builder().build(); } /** * @return from */ public String getFrom() { return this.from; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return suspiciousEventId */ public Integer getSuspiciousEventId() { return this.suspiciousEventId; } public static final class Builder extends Request.Builder<Builder> { private String from; private String lang; private String sourceIp; private Integer suspiciousEventId; /** * <p>From.</p> */ public Builder from(String from) { this.putQueryParameter("From", from); this.from = from; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>SuspiciousEventId.</p> */ public Builder suspiciousEventId(Integer suspiciousEventId) { this.putQueryParameter("SuspiciousEventId", suspiciousEventId); this.suspiciousEventId = suspiciousEventId; return this; } public DescribeSuspEventDetailRequest build() { return new DescribeSuspEventDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventDetailResponse} extends {@link TeaModel} * * <p>DescribeSuspEventDetailResponse</p> */ public class DescribeSuspEventDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeSuspEventDetailResponseBody body; private DescribeSuspEventDetailResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventDetailResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeSuspEventDetailResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeSuspEventDetailResponseBody body; private Builder() { super(); } private Builder(DescribeSuspEventDetailResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeSuspEventDetailResponseBody body) { this.body = body; return this; } public DescribeSuspEventDetailResponse build() { return new DescribeSuspEventDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventDetailResponseBody} extends {@link TeaModel} * * <p>DescribeSuspEventDetailResponseBody</p> */ public class DescribeSuspEventDetailResponseBody extends TeaModel { @NameInMap("CanBeDealOnLine") private Boolean canBeDealOnLine; @NameInMap("DataSource") private String dataSource; @NameInMap("Details") private java.util.List < Details> details; @NameInMap("EventDesc") private String eventDesc; @NameInMap("EventName") private String eventName; @NameInMap("EventStatus") private String eventStatus; @NameInMap("EventTypeDesc") private String eventTypeDesc; @NameInMap("Id") private Integer id; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("LastTime") private String lastTime; @NameInMap("Level") private String level; @NameInMap("OperateErrorCode") private String operateErrorCode; @NameInMap("OperateMsg") private String operateMsg; @NameInMap("RequestId") private String requestId; @NameInMap("SaleVersion") private String saleVersion; @NameInMap("Uuid") private String uuid; private DescribeSuspEventDetailResponseBody(Builder builder) { this.canBeDealOnLine = builder.canBeDealOnLine; this.dataSource = builder.dataSource; this.details = builder.details; this.eventDesc = builder.eventDesc; this.eventName = builder.eventName; this.eventStatus = builder.eventStatus; this.eventTypeDesc = builder.eventTypeDesc; this.id = builder.id; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.lastTime = builder.lastTime; this.level = builder.level; this.operateErrorCode = builder.operateErrorCode; this.operateMsg = builder.operateMsg; this.requestId = builder.requestId; this.saleVersion = builder.saleVersion; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventDetailResponseBody create() { return builder().build(); } /** * @return canBeDealOnLine */ public Boolean getCanBeDealOnLine() { return this.canBeDealOnLine; } /** * @return dataSource */ public String getDataSource() { return this.dataSource; } /** * @return details */ public java.util.List < Details> getDetails() { return this.details; } /** * @return eventDesc */ public String getEventDesc() { return this.eventDesc; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventStatus */ public String getEventStatus() { return this.eventStatus; } /** * @return eventTypeDesc */ public String getEventTypeDesc() { return this.eventTypeDesc; } /** * @return id */ public Integer getId() { return this.id; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return internetIp */ public String getInternetIp() { return this.internetIp; } /** * @return intranetIp */ public String getIntranetIp() { return this.intranetIp; } /** * @return lastTime */ public String getLastTime() { return this.lastTime; } /** * @return level */ public String getLevel() { return this.level; } /** * @return operateErrorCode */ public String getOperateErrorCode() { return this.operateErrorCode; } /** * @return operateMsg */ public String getOperateMsg() { return this.operateMsg; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return saleVersion */ public String getSaleVersion() { return this.saleVersion; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private Boolean canBeDealOnLine; private String dataSource; private java.util.List < Details> details; private String eventDesc; private String eventName; private String eventStatus; private String eventTypeDesc; private Integer id; private String instanceName; private String internetIp; private String intranetIp; private String lastTime; private String level; private String operateErrorCode; private String operateMsg; private String requestId; private String saleVersion; private String uuid; /** * <p>CanBeDealOnLine.</p> */ public Builder canBeDealOnLine(Boolean canBeDealOnLine) { this.canBeDealOnLine = canBeDealOnLine; return this; } /** * <p>DataSource.</p> */ public Builder dataSource(String dataSource) { this.dataSource = dataSource; return this; } /** * <p>Details.</p> */ public Builder details(java.util.List < Details> details) { this.details = details; return this; } /** * <p>EventDesc.</p> */ public Builder eventDesc(String eventDesc) { this.eventDesc = eventDesc; return this; } /** * <p>EventName.</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>EventStatus.</p> */ public Builder eventStatus(String eventStatus) { this.eventStatus = eventStatus; return this; } /** * <p>EventTypeDesc.</p> */ public Builder eventTypeDesc(String eventTypeDesc) { this.eventTypeDesc = eventTypeDesc; return this; } /** * <p>Id.</p> */ public Builder id(Integer id) { this.id = id; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>InternetIp.</p> */ public Builder internetIp(String internetIp) { this.internetIp = internetIp; return this; } /** * <p>IntranetIp.</p> */ public Builder intranetIp(String intranetIp) { this.intranetIp = intranetIp; return this; } /** * <p>LastTime.</p> */ public Builder lastTime(String lastTime) { this.lastTime = lastTime; return this; } /** * <p>Level.</p> */ public Builder level(String level) { this.level = level; return this; } /** * <p>OperateErrorCode.</p> */ public Builder operateErrorCode(String operateErrorCode) { this.operateErrorCode = operateErrorCode; return this; } /** * <p>OperateMsg.</p> */ public Builder operateMsg(String operateMsg) { this.operateMsg = operateMsg; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>SaleVersion.</p> */ public Builder saleVersion(String saleVersion) { this.saleVersion = saleVersion; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public DescribeSuspEventDetailResponseBody build() { return new DescribeSuspEventDetailResponseBody(this); } } public static class Details extends TeaModel { @NameInMap("NameDisplay") private String nameDisplay; @NameInMap("Type") private String type; @NameInMap("Value") private String value; private Details(Builder builder) { this.nameDisplay = builder.nameDisplay; this.type = builder.type; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static Details create() { return builder().build(); } /** * @return nameDisplay */ public String getNameDisplay() { return this.nameDisplay; } /** * @return type */ public String getType() { return this.type; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String nameDisplay; private String type; private String value; /** * <p>NameDisplay.</p> */ public Builder nameDisplay(String nameDisplay) { this.nameDisplay = nameDisplay; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } /** * <p>Value.</p> */ public Builder value(String value) { this.value = value; return this; } public Details build() { return new Details(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventExportInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventExportInfoRequest} extends {@link RequestModel} * * <p>DescribeSuspEventExportInfoRequest</p> */ public class DescribeSuspEventExportInfoRequest extends Request { @Query @NameInMap("ExportId") private Integer exportId; @Query @NameInMap("From") private String from; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeSuspEventExportInfoRequest(Builder builder) { super(builder); this.exportId = builder.exportId; this.from = builder.from; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventExportInfoRequest create() { return builder().build(); } /** * @return exportId */ public Integer getExportId() { return this.exportId; } /** * @return from */ public String getFrom() { return this.from; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private Integer exportId; private String from; private String sourceIp; /** * <p>ExportId.</p> */ public Builder exportId(Integer exportId) { this.putQueryParameter("ExportId", exportId); this.exportId = exportId; return this; } /** * <p>From.</p> */ public Builder from(String from) { this.putQueryParameter("From", from); this.from = from; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeSuspEventExportInfoRequest build() { return new DescribeSuspEventExportInfoRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventExportInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventExportInfoResponse} extends {@link TeaModel} * * <p>DescribeSuspEventExportInfoResponse</p> */ public class DescribeSuspEventExportInfoResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeSuspEventExportInfoResponseBody body; private DescribeSuspEventExportInfoResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventExportInfoResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeSuspEventExportInfoResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeSuspEventExportInfoResponseBody body; private Builder() { super(); } private Builder(DescribeSuspEventExportInfoResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeSuspEventExportInfoResponseBody body) { this.body = body; return this; } public DescribeSuspEventExportInfoResponse build() { return new DescribeSuspEventExportInfoResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventExportInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventExportInfoResponseBody} extends {@link TeaModel} * * <p>DescribeSuspEventExportInfoResponseBody</p> */ public class DescribeSuspEventExportInfoResponseBody extends TeaModel { @NameInMap("ExportStatus") private String exportStatus; @NameInMap("FileName") private String fileName; @NameInMap("GmtCreate") private Long gmtCreate; @NameInMap("GmtModified") private Long gmtModified; @NameInMap("Id") private Integer id; @NameInMap("Link") private String link; @NameInMap("Progress") private Integer progress; @NameInMap("Properties") private String properties; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; @NameInMap("Type") private String type; private DescribeSuspEventExportInfoResponseBody(Builder builder) { this.exportStatus = builder.exportStatus; this.fileName = builder.fileName; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.id = builder.id; this.link = builder.link; this.progress = builder.progress; this.properties = builder.properties; this.requestId = builder.requestId; this.totalCount = builder.totalCount; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventExportInfoResponseBody create() { return builder().build(); } /** * @return exportStatus */ public String getExportStatus() { return this.exportStatus; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return id */ public Integer getId() { return this.id; } /** * @return link */ public String getLink() { return this.link; } /** * @return progress */ public Integer getProgress() { return this.progress; } /** * @return properties */ public String getProperties() { return this.properties; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String exportStatus; private String fileName; private Long gmtCreate; private Long gmtModified; private Integer id; private String link; private Integer progress; private String properties; private String requestId; private Integer totalCount; private String type; /** * <p>ExportStatus.</p> */ public Builder exportStatus(String exportStatus) { this.exportStatus = exportStatus; return this; } /** * <p>FileName.</p> */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * <p>GmtCreate.</p> */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * <p>GmtModified.</p> */ public Builder gmtModified(Long gmtModified) { this.gmtModified = gmtModified; return this; } /** * <p>Id.</p> */ public Builder id(Integer id) { this.id = id; return this; } /** * <p>Link.</p> */ public Builder link(String link) { this.link = link; return this; } /** * <p>Progress.</p> */ public Builder progress(Integer progress) { this.progress = progress; return this; } /** * <p>Properties.</p> */ public Builder properties(String properties) { this.properties = properties; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } public DescribeSuspEventExportInfoResponseBody build() { return new DescribeSuspEventExportInfoResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventQuaraFilesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventQuaraFilesRequest} extends {@link RequestModel} * * <p>DescribeSuspEventQuaraFilesRequest</p> */ public class DescribeSuspEventQuaraFilesRequest extends Request { @Query @NameInMap("CurrentPage") private String currentPage; @Query @NameInMap("From") private String from; @Query @NameInMap("GroupId") private String groupId; @Query @NameInMap("GroupingId") private Long groupingId; @Query @NameInMap("PageSize") private String pageSize; @Query @NameInMap("QuaraTag") private String quaraTag; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Status") private String status; private DescribeSuspEventQuaraFilesRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.from = builder.from; this.groupId = builder.groupId; this.groupingId = builder.groupingId; this.pageSize = builder.pageSize; this.quaraTag = builder.quaraTag; this.sourceIp = builder.sourceIp; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventQuaraFilesRequest create() { return builder().build(); } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return from */ public String getFrom() { return this.from; } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return groupingId */ public Long getGroupingId() { return this.groupingId; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return quaraTag */ public String getQuaraTag() { return this.quaraTag; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder extends Request.Builder<Builder> { private String currentPage; private String from; private String groupId; private Long groupingId; private String pageSize; private String quaraTag; private String sourceIp; private String status; /** * <p>CurrentPage.</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>From.</p> */ public Builder from(String from) { this.putQueryParameter("From", from); this.from = from; return this; } /** * <p>GroupId.</p> */ public Builder groupId(String groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * <p>GroupingId.</p> */ public Builder groupingId(Long groupingId) { this.putQueryParameter("GroupingId", groupingId); this.groupingId = groupingId; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>QuaraTag.</p> */ public Builder quaraTag(String quaraTag) { this.putQueryParameter("QuaraTag", quaraTag); this.quaraTag = quaraTag; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } public DescribeSuspEventQuaraFilesRequest build() { return new DescribeSuspEventQuaraFilesRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventQuaraFilesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventQuaraFilesResponse} extends {@link TeaModel} * * <p>DescribeSuspEventQuaraFilesResponse</p> */ public class DescribeSuspEventQuaraFilesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeSuspEventQuaraFilesResponseBody body; private DescribeSuspEventQuaraFilesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventQuaraFilesResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeSuspEventQuaraFilesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeSuspEventQuaraFilesResponseBody body; private Builder() { super(); } private Builder(DescribeSuspEventQuaraFilesResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeSuspEventQuaraFilesResponseBody body) { this.body = body; return this; } public DescribeSuspEventQuaraFilesResponse build() { return new DescribeSuspEventQuaraFilesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventQuaraFilesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventQuaraFilesResponseBody} extends {@link TeaModel} * * <p>DescribeSuspEventQuaraFilesResponseBody</p> */ public class DescribeSuspEventQuaraFilesResponseBody extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("QuaraFiles") private java.util.List < QuaraFiles> quaraFiles; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeSuspEventQuaraFilesResponseBody(Builder builder) { this.count = builder.count; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.quaraFiles = builder.quaraFiles; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventQuaraFilesResponseBody create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return quaraFiles */ public java.util.List < QuaraFiles> getQuaraFiles() { return this.quaraFiles; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Integer count; private Integer currentPage; private Integer pageSize; private java.util.List < QuaraFiles> quaraFiles; private String requestId; private Integer totalCount; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>QuaraFiles.</p> */ public Builder quaraFiles(java.util.List < QuaraFiles> quaraFiles) { this.quaraFiles = quaraFiles; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeSuspEventQuaraFilesResponseBody build() { return new DescribeSuspEventQuaraFilesResponseBody(this); } } public static class QuaraFiles extends TeaModel { @NameInMap("EventName") private String eventName; @NameInMap("EventType") private String eventType; @NameInMap("Id") private Integer id; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("Ip") private String ip; @NameInMap("Link") private String link; @NameInMap("Md5") private String md5; @NameInMap("ModifyTime") private String modifyTime; @NameInMap("Path") private String path; @NameInMap("Status") private String status; @NameInMap("Tag") private String tag; @NameInMap("Uuid") private String uuid; private QuaraFiles(Builder builder) { this.eventName = builder.eventName; this.eventType = builder.eventType; this.id = builder.id; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.ip = builder.ip; this.link = builder.link; this.md5 = builder.md5; this.modifyTime = builder.modifyTime; this.path = builder.path; this.status = builder.status; this.tag = builder.tag; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static QuaraFiles create() { return builder().build(); } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } /** * @return id */ public Integer getId() { return this.id; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return internetIp */ public String getInternetIp() { return this.internetIp; } /** * @return ip */ public String getIp() { return this.ip; } /** * @return link */ public String getLink() { return this.link; } /** * @return md5 */ public String getMd5() { return this.md5; } /** * @return modifyTime */ public String getModifyTime() { return this.modifyTime; } /** * @return path */ public String getPath() { return this.path; } /** * @return status */ public String getStatus() { return this.status; } /** * @return tag */ public String getTag() { return this.tag; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private String eventName; private String eventType; private Integer id; private String instanceId; private String instanceName; private String internetIp; private String ip; private String link; private String md5; private String modifyTime; private String path; private String status; private String tag; private String uuid; /** * <p>EventName.</p> */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * <p>EventType.</p> */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } /** * <p>Id.</p> */ public Builder id(Integer id) { this.id = id; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>InternetIp.</p> */ public Builder internetIp(String internetIp) { this.internetIp = internetIp; return this; } /** * <p>Ip.</p> */ public Builder ip(String ip) { this.ip = ip; return this; } /** * <p>Link.</p> */ public Builder link(String link) { this.link = link; return this; } /** * <p>Md5.</p> */ public Builder md5(String md5) { this.md5 = md5; return this; } /** * <p>ModifyTime.</p> */ public Builder modifyTime(String modifyTime) { this.modifyTime = modifyTime; return this; } /** * <p>Path.</p> */ public Builder path(String path) { this.path = path; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>Tag.</p> */ public Builder tag(String tag) { this.tag = tag; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public QuaraFiles build() { return new QuaraFiles(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventsRequest} extends {@link RequestModel} * * <p>DescribeSuspEventsRequest</p> */ public class DescribeSuspEventsRequest extends Request { @Query @NameInMap("AlarmUniqueInfo") private String alarmUniqueInfo; @Query @NameInMap("ClusterId") private String clusterId; @Query @NameInMap("ContainerFieldName") private String containerFieldName; @Query @NameInMap("ContainerFieldValue") private String containerFieldValue; @Query @NameInMap("CurrentPage") private String currentPage; @Query @NameInMap("Dealed") private String dealed; @Query @NameInMap("EventNames") private String eventNames; @Query @NameInMap("From") private String from; @Query @NameInMap("GroupId") private Long groupId; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Levels") private String levels; @Query @NameInMap("Name") private String name; @Query @NameInMap("OperateErrorCodeList") private java.util.List < String > operateErrorCodeList; @Query @NameInMap("PageSize") private String pageSize; @Query @NameInMap("ParentEventTypes") private String parentEventTypes; @Query @NameInMap("Remark") private String remark; @Query @NameInMap("Source") private String source; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Status") private String status; @Query @NameInMap("TargetType") private String targetType; @Query @NameInMap("UniqueInfo") private String uniqueInfo; @Query @NameInMap("Uuids") private String uuids; private DescribeSuspEventsRequest(Builder builder) { super(builder); this.alarmUniqueInfo = builder.alarmUniqueInfo; this.clusterId = builder.clusterId; this.containerFieldName = builder.containerFieldName; this.containerFieldValue = builder.containerFieldValue; this.currentPage = builder.currentPage; this.dealed = builder.dealed; this.eventNames = builder.eventNames; this.from = builder.from; this.groupId = builder.groupId; this.lang = builder.lang; this.levels = builder.levels; this.name = builder.name; this.operateErrorCodeList = builder.operateErrorCodeList; this.pageSize = builder.pageSize; this.parentEventTypes = builder.parentEventTypes; this.remark = builder.remark; this.source = builder.source; this.sourceIp = builder.sourceIp; this.status = builder.status; this.targetType = builder.targetType; this.uniqueInfo = builder.uniqueInfo; this.uuids = builder.uuids; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventsRequest create() { return builder().build(); } /** * @return alarmUniqueInfo */ public String getAlarmUniqueInfo() { return this.alarmUniqueInfo; } /** * @return clusterId */ public String getClusterId() { return this.clusterId; } /** * @return containerFieldName */ public String getContainerFieldName() { return this.containerFieldName; } /** * @return containerFieldValue */ public String getContainerFieldValue() { return this.containerFieldValue; } /** * @return currentPage */ public String getCurrentPage() { return this.currentPage; } /** * @return dealed */ public String getDealed() { return this.dealed; } /** * @return eventNames */ public String getEventNames() { return this.eventNames; } /** * @return from */ public String getFrom() { return this.from; } /** * @return groupId */ public Long getGroupId() { return this.groupId; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return levels */ public String getLevels() { return this.levels; } /** * @return name */ public String getName() { return this.name; } /** * @return operateErrorCodeList */ public java.util.List < String > getOperateErrorCodeList() { return this.operateErrorCodeList; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return parentEventTypes */ public String getParentEventTypes() { return this.parentEventTypes; } /** * @return remark */ public String getRemark() { return this.remark; } /** * @return source */ public String getSource() { return this.source; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return status */ public String getStatus() { return this.status; } /** * @return targetType */ public String getTargetType() { return this.targetType; } /** * @return uniqueInfo */ public String getUniqueInfo() { return this.uniqueInfo; } /** * @return uuids */ public String getUuids() { return this.uuids; } public static final class Builder extends Request.Builder<Builder> { private String alarmUniqueInfo; private String clusterId; private String containerFieldName; private String containerFieldValue; private String currentPage; private String dealed; private String eventNames; private String from; private Long groupId; private String lang; private String levels; private String name; private java.util.List < String > operateErrorCodeList; private String pageSize; private String parentEventTypes; private String remark; private String source; private String sourceIp; private String status; private String targetType; private String uniqueInfo; private String uuids; /** * <p>AlarmUniqueInfo.</p> */ public Builder alarmUniqueInfo(String alarmUniqueInfo) { this.putQueryParameter("AlarmUniqueInfo", alarmUniqueInfo); this.alarmUniqueInfo = alarmUniqueInfo; return this; } /** * <p>ClusterId.</p> */ public Builder clusterId(String clusterId) { this.putQueryParameter("ClusterId", clusterId); this.clusterId = clusterId; return this; } /** * <p>ContainerFieldName.</p> */ public Builder containerFieldName(String containerFieldName) { this.putQueryParameter("ContainerFieldName", containerFieldName); this.containerFieldName = containerFieldName; return this; } /** * <p>ContainerFieldValue.</p> */ public Builder containerFieldValue(String containerFieldValue) { this.putQueryParameter("ContainerFieldValue", containerFieldValue); this.containerFieldValue = containerFieldValue; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(String currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Dealed.</p> */ public Builder dealed(String dealed) { this.putQueryParameter("Dealed", dealed); this.dealed = dealed; return this; } /** * <p>EventNames.</p> */ public Builder eventNames(String eventNames) { this.putQueryParameter("EventNames", eventNames); this.eventNames = eventNames; return this; } /** * <p>From.</p> */ public Builder from(String from) { this.putQueryParameter("From", from); this.from = from; return this; } /** * <p>GroupId.</p> */ public Builder groupId(Long groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Levels.</p> */ public Builder levels(String levels) { this.putQueryParameter("Levels", levels); this.levels = levels; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.putQueryParameter("Name", name); this.name = name; return this; } /** * <p>OperateErrorCodeList.</p> */ public Builder operateErrorCodeList(java.util.List < String > operateErrorCodeList) { this.putQueryParameter("OperateErrorCodeList", operateErrorCodeList); this.operateErrorCodeList = operateErrorCodeList; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>ParentEventTypes.</p> */ public Builder parentEventTypes(String parentEventTypes) { this.putQueryParameter("ParentEventTypes", parentEventTypes); this.parentEventTypes = parentEventTypes; return this; } /** * <p>Remark.</p> */ public Builder remark(String remark) { this.putQueryParameter("Remark", remark); this.remark = remark; return this; } /** * <p>Source.</p> */ public Builder source(String source) { this.putQueryParameter("Source", source); this.source = source; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } /** * <p>TargetType.</p> */ public Builder targetType(String targetType) { this.putQueryParameter("TargetType", targetType); this.targetType = targetType; return this; } /** * <p>UniqueInfo.</p> */ public Builder uniqueInfo(String uniqueInfo) { this.putQueryParameter("UniqueInfo", uniqueInfo); this.uniqueInfo = uniqueInfo; return this; } /** * <p>Uuids.</p> */ public Builder uuids(String uuids) { this.putQueryParameter("Uuids", uuids); this.uuids = uuids; return this; } public DescribeSuspEventsRequest build() { return new DescribeSuspEventsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventsResponse} extends {@link TeaModel} * * <p>DescribeSuspEventsResponse</p> */ public class DescribeSuspEventsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeSuspEventsResponseBody body; private DescribeSuspEventsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeSuspEventsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeSuspEventsResponseBody body; private Builder() { super(); } private Builder(DescribeSuspEventsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeSuspEventsResponseBody body) { this.body = body; return this; } public DescribeSuspEventsResponse build() { return new DescribeSuspEventsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspEventsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspEventsResponseBody} extends {@link TeaModel} * * <p>DescribeSuspEventsResponseBody</p> */ public class DescribeSuspEventsResponseBody extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("SuspEvents") private java.util.List < SuspEvents> suspEvents; @NameInMap("TotalCount") private Integer totalCount; private DescribeSuspEventsResponseBody(Builder builder) { this.count = builder.count; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.suspEvents = builder.suspEvents; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeSuspEventsResponseBody create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return suspEvents */ public java.util.List < SuspEvents> getSuspEvents() { return this.suspEvents; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Integer count; private Integer currentPage; private Integer pageSize; private String requestId; private java.util.List < SuspEvents> suspEvents; private Integer totalCount; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>SuspEvents.</p> */ public Builder suspEvents(java.util.List < SuspEvents> suspEvents) { this.suspEvents = suspEvents; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeSuspEventsResponseBody build() { return new DescribeSuspEventsResponseBody(this); } } public static class Details extends TeaModel { @NameInMap("NameDisplay") private String nameDisplay; @NameInMap("Type") private String type; @NameInMap("Value") private String value; @NameInMap("ValueDisplay") private String valueDisplay; private Details(Builder builder) { this.nameDisplay = builder.nameDisplay; this.type = builder.type; this.value = builder.value; this.valueDisplay = builder.valueDisplay; } public static Builder builder() { return new Builder(); } public static Details create() { return builder().build(); } /** * @return nameDisplay */ public String getNameDisplay() { return this.nameDisplay; } /** * @return type */ public String getType() { return this.type; } /** * @return value */ public String getValue() { return this.value; } /** * @return valueDisplay */ public String getValueDisplay() { return this.valueDisplay; } public static final class Builder { private String nameDisplay; private String type; private String value; private String valueDisplay; /** * <p>NameDisplay.</p> */ public Builder nameDisplay(String nameDisplay) { this.nameDisplay = nameDisplay; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } /** * <p>Value.</p> */ public Builder value(String value) { this.value = value; return this; } /** * <p>ValueDisplay.</p> */ public Builder valueDisplay(String valueDisplay) { this.valueDisplay = valueDisplay; return this; } public Details build() { return new Details(this); } } } public static class EventNotes extends TeaModel { @NameInMap("Note") private String note; @NameInMap("NoteId") private Long noteId; @NameInMap("NoteTime") private String noteTime; private EventNotes(Builder builder) { this.note = builder.note; this.noteId = builder.noteId; this.noteTime = builder.noteTime; } public static Builder builder() { return new Builder(); } public static EventNotes create() { return builder().build(); } /** * @return note */ public String getNote() { return this.note; } /** * @return noteId */ public Long getNoteId() { return this.noteId; } /** * @return noteTime */ public String getNoteTime() { return this.noteTime; } public static final class Builder { private String note; private Long noteId; private String noteTime; /** * <p>Note.</p> */ public Builder note(String note) { this.note = note; return this; } /** * <p>NoteId.</p> */ public Builder noteId(Long noteId) { this.noteId = noteId; return this; } /** * <p>NoteTime.</p> */ public Builder noteTime(String noteTime) { this.noteTime = noteTime; return this; } public EventNotes build() { return new EventNotes(this); } } } public static class SuspEvents extends TeaModel { @NameInMap("Advanced") private Boolean advanced; @NameInMap("AlarmEventName") private String alarmEventName; @NameInMap("AlarmEventNameDisplay") private String alarmEventNameDisplay; @NameInMap("AlarmEventType") private String alarmEventType; @NameInMap("AlarmEventTypeDisplay") private String alarmEventTypeDisplay; @NameInMap("AlarmUniqueInfo") private String alarmUniqueInfo; @NameInMap("AppName") private String appName; @NameInMap("AutoBreaking") private Boolean autoBreaking; @NameInMap("CanBeDealOnLine") private Boolean canBeDealOnLine; @NameInMap("CanCancelFault") private Boolean canCancelFault; @NameInMap("ContainHwMode") private Boolean containHwMode; @NameInMap("ContainerId") private String containerId; @NameInMap("ContainerImageId") private String containerImageId; @NameInMap("ContainerImageName") private String containerImageName; @NameInMap("DataSource") private String dataSource; @NameInMap("Desc") private String desc; @NameInMap("Details") private java.util.List < Details> details; @NameInMap("EventNotes") private java.util.List < EventNotes> eventNotes; @NameInMap("EventStatus") private Integer eventStatus; @NameInMap("EventSubType") private String eventSubType; @NameInMap("HasTraceInfo") private Boolean hasTraceInfo; @NameInMap("Id") private Long id; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("K8sClusterId") private String k8sClusterId; @NameInMap("K8sClusterName") private String k8sClusterName; @NameInMap("K8sNamespace") private String k8sNamespace; @NameInMap("K8sNodeId") private String k8sNodeId; @NameInMap("K8sNodeName") private String k8sNodeName; @NameInMap("K8sPodName") private String k8sPodName; @NameInMap("LastTime") private String lastTime; @NameInMap("LastTimeStamp") private Long lastTimeStamp; @NameInMap("Level") private String level; @NameInMap("MarkMisRules") private String markMisRules; @NameInMap("Name") private String name; @NameInMap("OccurrenceTime") private String occurrenceTime; @NameInMap("OccurrenceTimeStamp") private Long occurrenceTimeStamp; @NameInMap("OperateErrorCode") private String operateErrorCode; @NameInMap("OperateMsg") private String operateMsg; @NameInMap("OperateTime") private Long operateTime; @NameInMap("SaleVersion") private String saleVersion; @NameInMap("SecurityEventIds") private String securityEventIds; @NameInMap("Stages") private String stages; @NameInMap("UniqueInfo") private String uniqueInfo; @NameInMap("Uuid") private String uuid; private SuspEvents(Builder builder) { this.advanced = builder.advanced; this.alarmEventName = builder.alarmEventName; this.alarmEventNameDisplay = builder.alarmEventNameDisplay; this.alarmEventType = builder.alarmEventType; this.alarmEventTypeDisplay = builder.alarmEventTypeDisplay; this.alarmUniqueInfo = builder.alarmUniqueInfo; this.appName = builder.appName; this.autoBreaking = builder.autoBreaking; this.canBeDealOnLine = builder.canBeDealOnLine; this.canCancelFault = builder.canCancelFault; this.containHwMode = builder.containHwMode; this.containerId = builder.containerId; this.containerImageId = builder.containerImageId; this.containerImageName = builder.containerImageName; this.dataSource = builder.dataSource; this.desc = builder.desc; this.details = builder.details; this.eventNotes = builder.eventNotes; this.eventStatus = builder.eventStatus; this.eventSubType = builder.eventSubType; this.hasTraceInfo = builder.hasTraceInfo; this.id = builder.id; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.k8sClusterId = builder.k8sClusterId; this.k8sClusterName = builder.k8sClusterName; this.k8sNamespace = builder.k8sNamespace; this.k8sNodeId = builder.k8sNodeId; this.k8sNodeName = builder.k8sNodeName; this.k8sPodName = builder.k8sPodName; this.lastTime = builder.lastTime; this.lastTimeStamp = builder.lastTimeStamp; this.level = builder.level; this.markMisRules = builder.markMisRules; this.name = builder.name; this.occurrenceTime = builder.occurrenceTime; this.occurrenceTimeStamp = builder.occurrenceTimeStamp; this.operateErrorCode = builder.operateErrorCode; this.operateMsg = builder.operateMsg; this.operateTime = builder.operateTime; this.saleVersion = builder.saleVersion; this.securityEventIds = builder.securityEventIds; this.stages = builder.stages; this.uniqueInfo = builder.uniqueInfo; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static SuspEvents create() { return builder().build(); } /** * @return advanced */ public Boolean getAdvanced() { return this.advanced; } /** * @return alarmEventName */ public String getAlarmEventName() { return this.alarmEventName; } /** * @return alarmEventNameDisplay */ public String getAlarmEventNameDisplay() { return this.alarmEventNameDisplay; } /** * @return alarmEventType */ public String getAlarmEventType() { return this.alarmEventType; } /** * @return alarmEventTypeDisplay */ public String getAlarmEventTypeDisplay() { return this.alarmEventTypeDisplay; } /** * @return alarmUniqueInfo */ public String getAlarmUniqueInfo() { return this.alarmUniqueInfo; } /** * @return appName */ public String getAppName() { return this.appName; } /** * @return autoBreaking */ public Boolean getAutoBreaking() { return this.autoBreaking; } /** * @return canBeDealOnLine */ public Boolean getCanBeDealOnLine() { return this.canBeDealOnLine; } /** * @return canCancelFault */ public Boolean getCanCancelFault() { return this.canCancelFault; } /** * @return containHwMode */ public Boolean getContainHwMode() { return this.containHwMode; } /** * @return containerId */ public String getContainerId() { return this.containerId; } /** * @return containerImageId */ public String getContainerImageId() { return this.containerImageId; } /** * @return containerImageName */ public String getContainerImageName() { return this.containerImageName; } /** * @return dataSource */ public String getDataSource() { return this.dataSource; } /** * @return desc */ public String getDesc() { return this.desc; } /** * @return details */ public java.util.List < Details> getDetails() { return this.details; } /** * @return eventNotes */ public java.util.List < EventNotes> getEventNotes() { return this.eventNotes; } /** * @return eventStatus */ public Integer getEventStatus() { return this.eventStatus; } /** * @return eventSubType */ public String getEventSubType() { return this.eventSubType; } /** * @return hasTraceInfo */ public Boolean getHasTraceInfo() { return this.hasTraceInfo; } /** * @return id */ public Long getId() { return this.id; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return internetIp */ public String getInternetIp() { return this.internetIp; } /** * @return intranetIp */ public String getIntranetIp() { return this.intranetIp; } /** * @return k8sClusterId */ public String getK8sClusterId() { return this.k8sClusterId; } /** * @return k8sClusterName */ public String getK8sClusterName() { return this.k8sClusterName; } /** * @return k8sNamespace */ public String getK8sNamespace() { return this.k8sNamespace; } /** * @return k8sNodeId */ public String getK8sNodeId() { return this.k8sNodeId; } /** * @return k8sNodeName */ public String getK8sNodeName() { return this.k8sNodeName; } /** * @return k8sPodName */ public String getK8sPodName() { return this.k8sPodName; } /** * @return lastTime */ public String getLastTime() { return this.lastTime; } /** * @return lastTimeStamp */ public Long getLastTimeStamp() { return this.lastTimeStamp; } /** * @return level */ public String getLevel() { return this.level; } /** * @return markMisRules */ public String getMarkMisRules() { return this.markMisRules; } /** * @return name */ public String getName() { return this.name; } /** * @return occurrenceTime */ public String getOccurrenceTime() { return this.occurrenceTime; } /** * @return occurrenceTimeStamp */ public Long getOccurrenceTimeStamp() { return this.occurrenceTimeStamp; } /** * @return operateErrorCode */ public String getOperateErrorCode() { return this.operateErrorCode; } /** * @return operateMsg */ public String getOperateMsg() { return this.operateMsg; } /** * @return operateTime */ public Long getOperateTime() { return this.operateTime; } /** * @return saleVersion */ public String getSaleVersion() { return this.saleVersion; } /** * @return securityEventIds */ public String getSecurityEventIds() { return this.securityEventIds; } /** * @return stages */ public String getStages() { return this.stages; } /** * @return uniqueInfo */ public String getUniqueInfo() { return this.uniqueInfo; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private Boolean advanced; private String alarmEventName; private String alarmEventNameDisplay; private String alarmEventType; private String alarmEventTypeDisplay; private String alarmUniqueInfo; private String appName; private Boolean autoBreaking; private Boolean canBeDealOnLine; private Boolean canCancelFault; private Boolean containHwMode; private String containerId; private String containerImageId; private String containerImageName; private String dataSource; private String desc; private java.util.List < Details> details; private java.util.List < EventNotes> eventNotes; private Integer eventStatus; private String eventSubType; private Boolean hasTraceInfo; private Long id; private String instanceId; private String instanceName; private String internetIp; private String intranetIp; private String k8sClusterId; private String k8sClusterName; private String k8sNamespace; private String k8sNodeId; private String k8sNodeName; private String k8sPodName; private String lastTime; private Long lastTimeStamp; private String level; private String markMisRules; private String name; private String occurrenceTime; private Long occurrenceTimeStamp; private String operateErrorCode; private String operateMsg; private Long operateTime; private String saleVersion; private String securityEventIds; private String stages; private String uniqueInfo; private String uuid; /** * <p>Advanced.</p> */ public Builder advanced(Boolean advanced) { this.advanced = advanced; return this; } /** * <p>AlarmEventName.</p> */ public Builder alarmEventName(String alarmEventName) { this.alarmEventName = alarmEventName; return this; } /** * <p>AlarmEventNameDisplay.</p> */ public Builder alarmEventNameDisplay(String alarmEventNameDisplay) { this.alarmEventNameDisplay = alarmEventNameDisplay; return this; } /** * <p>AlarmEventType.</p> */ public Builder alarmEventType(String alarmEventType) { this.alarmEventType = alarmEventType; return this; } /** * <p>AlarmEventTypeDisplay.</p> */ public Builder alarmEventTypeDisplay(String alarmEventTypeDisplay) { this.alarmEventTypeDisplay = alarmEventTypeDisplay; return this; } /** * <p>AlarmUniqueInfo.</p> */ public Builder alarmUniqueInfo(String alarmUniqueInfo) { this.alarmUniqueInfo = alarmUniqueInfo; return this; } /** * <p>AppName.</p> */ public Builder appName(String appName) { this.appName = appName; return this; } /** * <p>AutoBreaking.</p> */ public Builder autoBreaking(Boolean autoBreaking) { this.autoBreaking = autoBreaking; return this; } /** * <p>CanBeDealOnLine.</p> */ public Builder canBeDealOnLine(Boolean canBeDealOnLine) { this.canBeDealOnLine = canBeDealOnLine; return this; } /** * <p>CanCancelFault.</p> */ public Builder canCancelFault(Boolean canCancelFault) { this.canCancelFault = canCancelFault; return this; } /** * <p>ContainHwMode.</p> */ public Builder containHwMode(Boolean containHwMode) { this.containHwMode = containHwMode; return this; } /** * <p>ContainerId.</p> */ public Builder containerId(String containerId) { this.containerId = containerId; return this; } /** * <p>ContainerImageId.</p> */ public Builder containerImageId(String containerImageId) { this.containerImageId = containerImageId; return this; } /** * <p>ContainerImageName.</p> */ public Builder containerImageName(String containerImageName) { this.containerImageName = containerImageName; return this; } /** * <p>DataSource.</p> */ public Builder dataSource(String dataSource) { this.dataSource = dataSource; return this; } /** * <p>Desc.</p> */ public Builder desc(String desc) { this.desc = desc; return this; } /** * <p>Details.</p> */ public Builder details(java.util.List < Details> details) { this.details = details; return this; } /** * <p>EventNotes.</p> */ public Builder eventNotes(java.util.List < EventNotes> eventNotes) { this.eventNotes = eventNotes; return this; } /** * <p>EventStatus.</p> */ public Builder eventStatus(Integer eventStatus) { this.eventStatus = eventStatus; return this; } /** * <p>EventSubType.</p> */ public Builder eventSubType(String eventSubType) { this.eventSubType = eventSubType; return this; } /** * <p>HasTraceInfo.</p> */ public Builder hasTraceInfo(Boolean hasTraceInfo) { this.hasTraceInfo = hasTraceInfo; return this; } /** * <p>Id.</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>InternetIp.</p> */ public Builder internetIp(String internetIp) { this.internetIp = internetIp; return this; } /** * <p>IntranetIp.</p> */ public Builder intranetIp(String intranetIp) { this.intranetIp = intranetIp; return this; } /** * <p>K8sClusterId.</p> */ public Builder k8sClusterId(String k8sClusterId) { this.k8sClusterId = k8sClusterId; return this; } /** * <p>K8sClusterName.</p> */ public Builder k8sClusterName(String k8sClusterName) { this.k8sClusterName = k8sClusterName; return this; } /** * <p>K8sNamespace.</p> */ public Builder k8sNamespace(String k8sNamespace) { this.k8sNamespace = k8sNamespace; return this; } /** * <p>K8sNodeId.</p> */ public Builder k8sNodeId(String k8sNodeId) { this.k8sNodeId = k8sNodeId; return this; } /** * <p>K8sNodeName.</p> */ public Builder k8sNodeName(String k8sNodeName) { this.k8sNodeName = k8sNodeName; return this; } /** * <p>K8sPodName.</p> */ public Builder k8sPodName(String k8sPodName) { this.k8sPodName = k8sPodName; return this; } /** * <p>LastTime.</p> */ public Builder lastTime(String lastTime) { this.lastTime = lastTime; return this; } /** * <p>LastTimeStamp.</p> */ public Builder lastTimeStamp(Long lastTimeStamp) { this.lastTimeStamp = lastTimeStamp; return this; } /** * <p>Level.</p> */ public Builder level(String level) { this.level = level; return this; } /** * <p>MarkMisRules.</p> */ public Builder markMisRules(String markMisRules) { this.markMisRules = markMisRules; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>OccurrenceTime.</p> */ public Builder occurrenceTime(String occurrenceTime) { this.occurrenceTime = occurrenceTime; return this; } /** * <p>OccurrenceTimeStamp.</p> */ public Builder occurrenceTimeStamp(Long occurrenceTimeStamp) { this.occurrenceTimeStamp = occurrenceTimeStamp; return this; } /** * <p>OperateErrorCode.</p> */ public Builder operateErrorCode(String operateErrorCode) { this.operateErrorCode = operateErrorCode; return this; } /** * <p>OperateMsg.</p> */ public Builder operateMsg(String operateMsg) { this.operateMsg = operateMsg; return this; } /** * <p>OperateTime.</p> */ public Builder operateTime(Long operateTime) { this.operateTime = operateTime; return this; } /** * <p>SaleVersion.</p> */ public Builder saleVersion(String saleVersion) { this.saleVersion = saleVersion; return this; } /** * <p>SecurityEventIds.</p> */ public Builder securityEventIds(String securityEventIds) { this.securityEventIds = securityEventIds; return this; } /** * <p>Stages.</p> */ public Builder stages(String stages) { this.stages = stages; return this; } /** * <p>UniqueInfo.</p> */ public Builder uniqueInfo(String uniqueInfo) { this.uniqueInfo = uniqueInfo; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public SuspEvents build() { return new SuspEvents(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspiciousUUIDConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspiciousUUIDConfigRequest} extends {@link RequestModel} * * <p>DescribeSuspiciousUUIDConfigRequest</p> */ public class DescribeSuspiciousUUIDConfigRequest extends Request { @Query @NameInMap("Type") private String type; private DescribeSuspiciousUUIDConfigRequest(Builder builder) { super(builder); this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DescribeSuspiciousUUIDConfigRequest create() { return builder().build(); } /** * @return type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<Builder> { private String type; /** * <p>Type.</p> */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } public DescribeSuspiciousUUIDConfigRequest build() { return new DescribeSuspiciousUUIDConfigRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspiciousUUIDConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspiciousUUIDConfigResponse} extends {@link TeaModel} * * <p>DescribeSuspiciousUUIDConfigResponse</p> */ public class DescribeSuspiciousUUIDConfigResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeSuspiciousUUIDConfigResponseBody body; private DescribeSuspiciousUUIDConfigResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeSuspiciousUUIDConfigResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeSuspiciousUUIDConfigResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeSuspiciousUUIDConfigResponseBody body; private Builder() { super(); } private Builder(DescribeSuspiciousUUIDConfigResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeSuspiciousUUIDConfigResponseBody body) { this.body = body; return this; } public DescribeSuspiciousUUIDConfigResponse build() { return new DescribeSuspiciousUUIDConfigResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeSuspiciousUUIDConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeSuspiciousUUIDConfigResponseBody} extends {@link TeaModel} * * <p>DescribeSuspiciousUUIDConfigResponseBody</p> */ public class DescribeSuspiciousUUIDConfigResponseBody extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("RequestId") private String requestId; @NameInMap("UUIDList") private java.util.List < String > UUIDList; private DescribeSuspiciousUUIDConfigResponseBody(Builder builder) { this.count = builder.count; this.requestId = builder.requestId; this.UUIDList = builder.UUIDList; } public static Builder builder() { return new Builder(); } public static DescribeSuspiciousUUIDConfigResponseBody create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return UUIDList */ public java.util.List < String > getUUIDList() { return this.UUIDList; } public static final class Builder { private Integer count; private String requestId; private java.util.List < String > UUIDList; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>UUIDList.</p> */ public Builder UUIDList(java.util.List < String > UUIDList) { this.UUIDList = UUIDList; return this; } public DescribeSuspiciousUUIDConfigResponseBody build() { return new DescribeSuspiciousUUIDConfigResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUniBackupPoliciesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUniBackupPoliciesRequest} extends {@link RequestModel} * * <p>DescribeUniBackupPoliciesRequest</p> */ public class DescribeUniBackupPoliciesRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("PolicyName") private String policyName; @Query @NameInMap("ResourceOwnerId") private Long resourceOwnerId; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeUniBackupPoliciesRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.policyName = builder.policyName; this.resourceOwnerId = builder.resourceOwnerId; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeUniBackupPoliciesRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return policyName */ public String getPolicyName() { return this.policyName; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private Integer pageSize; private String policyName; private Long resourceOwnerId; private String sourceIp; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>PolicyName.</p> */ public Builder policyName(String policyName) { this.putQueryParameter("PolicyName", policyName); this.policyName = policyName; return this; } /** * <p>ResourceOwnerId.</p> */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeUniBackupPoliciesRequest build() { return new DescribeUniBackupPoliciesRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUniBackupPoliciesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUniBackupPoliciesResponse} extends {@link TeaModel} * * <p>DescribeUniBackupPoliciesResponse</p> */ public class DescribeUniBackupPoliciesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeUniBackupPoliciesResponseBody body; private DescribeUniBackupPoliciesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeUniBackupPoliciesResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeUniBackupPoliciesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeUniBackupPoliciesResponseBody body; private Builder() { super(); } private Builder(DescribeUniBackupPoliciesResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeUniBackupPoliciesResponseBody body) { this.body = body; return this; } public DescribeUniBackupPoliciesResponse build() { return new DescribeUniBackupPoliciesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUniBackupPoliciesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUniBackupPoliciesResponseBody} extends {@link TeaModel} * * <p>DescribeUniBackupPoliciesResponseBody</p> */ public class DescribeUniBackupPoliciesResponseBody extends TeaModel { @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; @NameInMap("UniBackupPolicies") private java.util.List < UniBackupPolicies> uniBackupPolicies; private DescribeUniBackupPoliciesResponseBody(Builder builder) { this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; this.uniBackupPolicies = builder.uniBackupPolicies; } public static Builder builder() { return new Builder(); } public static DescribeUniBackupPoliciesResponseBody create() { return builder().build(); } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return uniBackupPolicies */ public java.util.List < UniBackupPolicies> getUniBackupPolicies() { return this.uniBackupPolicies; } public static final class Builder { private PageInfo pageInfo; private String requestId; private java.util.List < UniBackupPolicies> uniBackupPolicies; /** * <p>PageInfo.</p> */ public Builder pageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>UniBackupPolicies.</p> */ public Builder uniBackupPolicies(java.util.List < UniBackupPolicies> uniBackupPolicies) { this.uniBackupPolicies = uniBackupPolicies; return this; } public DescribeUniBackupPoliciesResponseBody build() { return new DescribeUniBackupPoliciesResponseBody(this); } } public static class PageInfo extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("TotalCount") private Integer totalCount; private PageInfo(Builder builder) { this.count = builder.count; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static PageInfo create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Integer count; private Integer currentPage; private Integer pageSize; private Integer totalCount; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public PageInfo build() { return new PageInfo(this); } } } public static class UniBackupPolicies extends TeaModel { @NameInMap("AgentErrorMessage") private String agentErrorMessage; @NameInMap("AgentStatus") private String agentStatus; @NameInMap("DatabaseName") private String databaseName; @NameInMap("DatabaseType") private String databaseType; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InstanceStatus") private String instanceStatus; @NameInMap("InstanceUuid") private String instanceUuid; @NameInMap("LatestBackResult") private String latestBackResult; @NameInMap("LatestBackupTime") private String latestBackupTime; @NameInMap("PlanStatus") private String planStatus; @NameInMap("PolicyId") private Long policyId; @NameInMap("PolicyName") private String policyName; @NameInMap("PolicyStatus") private String policyStatus; @NameInMap("UniBackUpCount") private Integer uniBackUpCount; @NameInMap("UniRegionId") private String uniRegionId; private UniBackupPolicies(Builder builder) { this.agentErrorMessage = builder.agentErrorMessage; this.agentStatus = builder.agentStatus; this.databaseName = builder.databaseName; this.databaseType = builder.databaseType; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.instanceStatus = builder.instanceStatus; this.instanceUuid = builder.instanceUuid; this.latestBackResult = builder.latestBackResult; this.latestBackupTime = builder.latestBackupTime; this.planStatus = builder.planStatus; this.policyId = builder.policyId; this.policyName = builder.policyName; this.policyStatus = builder.policyStatus; this.uniBackUpCount = builder.uniBackUpCount; this.uniRegionId = builder.uniRegionId; } public static Builder builder() { return new Builder(); } public static UniBackupPolicies create() { return builder().build(); } /** * @return agentErrorMessage */ public String getAgentErrorMessage() { return this.agentErrorMessage; } /** * @return agentStatus */ public String getAgentStatus() { return this.agentStatus; } /** * @return databaseName */ public String getDatabaseName() { return this.databaseName; } /** * @return databaseType */ public String getDatabaseType() { return this.databaseType; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return instanceStatus */ public String getInstanceStatus() { return this.instanceStatus; } /** * @return instanceUuid */ public String getInstanceUuid() { return this.instanceUuid; } /** * @return latestBackResult */ public String getLatestBackResult() { return this.latestBackResult; } /** * @return latestBackupTime */ public String getLatestBackupTime() { return this.latestBackupTime; } /** * @return planStatus */ public String getPlanStatus() { return this.planStatus; } /** * @return policyId */ public Long getPolicyId() { return this.policyId; } /** * @return policyName */ public String getPolicyName() { return this.policyName; } /** * @return policyStatus */ public String getPolicyStatus() { return this.policyStatus; } /** * @return uniBackUpCount */ public Integer getUniBackUpCount() { return this.uniBackUpCount; } /** * @return uniRegionId */ public String getUniRegionId() { return this.uniRegionId; } public static final class Builder { private String agentErrorMessage; private String agentStatus; private String databaseName; private String databaseType; private String errorCode; private String errorMessage; private String instanceId; private String instanceName; private String instanceStatus; private String instanceUuid; private String latestBackResult; private String latestBackupTime; private String planStatus; private Long policyId; private String policyName; private String policyStatus; private Integer uniBackUpCount; private String uniRegionId; /** * <p>AgentErrorMessage.</p> */ public Builder agentErrorMessage(String agentErrorMessage) { this.agentErrorMessage = agentErrorMessage; return this; } /** * <p>AgentStatus.</p> */ public Builder agentStatus(String agentStatus) { this.agentStatus = agentStatus; return this; } /** * <p>DatabaseName.</p> */ public Builder databaseName(String databaseName) { this.databaseName = databaseName; return this; } /** * <p>DatabaseType.</p> */ public Builder databaseType(String databaseType) { this.databaseType = databaseType; return this; } /** * <p>ErrorCode.</p> */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * <p>ErrorMessage.</p> */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>InstanceStatus.</p> */ public Builder instanceStatus(String instanceStatus) { this.instanceStatus = instanceStatus; return this; } /** * <p>InstanceUuid.</p> */ public Builder instanceUuid(String instanceUuid) { this.instanceUuid = instanceUuid; return this; } /** * <p>LatestBackResult.</p> */ public Builder latestBackResult(String latestBackResult) { this.latestBackResult = latestBackResult; return this; } /** * <p>LatestBackupTime.</p> */ public Builder latestBackupTime(String latestBackupTime) { this.latestBackupTime = latestBackupTime; return this; } /** * <p>PlanStatus.</p> */ public Builder planStatus(String planStatus) { this.planStatus = planStatus; return this; } /** * <p>PolicyId.</p> */ public Builder policyId(Long policyId) { this.policyId = policyId; return this; } /** * <p>PolicyName.</p> */ public Builder policyName(String policyName) { this.policyName = policyName; return this; } /** * <p>PolicyStatus.</p> */ public Builder policyStatus(String policyStatus) { this.policyStatus = policyStatus; return this; } /** * <p>UniBackUpCount.</p> */ public Builder uniBackUpCount(Integer uniBackUpCount) { this.uniBackUpCount = uniBackUpCount; return this; } /** * <p>UniRegionId.</p> */ public Builder uniRegionId(String uniRegionId) { this.uniRegionId = uniRegionId; return this; } public UniBackupPolicies build() { return new UniBackupPolicies(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserBackupMachinesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserBackupMachinesRequest} extends {@link RequestModel} * * <p>DescribeUserBackupMachinesRequest</p> */ public class DescribeUserBackupMachinesRequest extends Request { private DescribeUserBackupMachinesRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeUserBackupMachinesRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeUserBackupMachinesRequest build() { return new DescribeUserBackupMachinesRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserBackupMachinesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserBackupMachinesResponse} extends {@link TeaModel} * * <p>DescribeUserBackupMachinesResponse</p> */ public class DescribeUserBackupMachinesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeUserBackupMachinesResponseBody body; private DescribeUserBackupMachinesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeUserBackupMachinesResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeUserBackupMachinesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeUserBackupMachinesResponseBody body; private Builder() { super(); } private Builder(DescribeUserBackupMachinesResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeUserBackupMachinesResponseBody body) { this.body = body; return this; } public DescribeUserBackupMachinesResponse build() { return new DescribeUserBackupMachinesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserBackupMachinesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserBackupMachinesResponseBody} extends {@link TeaModel} * * <p>DescribeUserBackupMachinesResponseBody</p> */ public class DescribeUserBackupMachinesResponseBody extends TeaModel { @NameInMap("Machines") private java.util.List < Machines> machines; @NameInMap("RequestId") private String requestId; private DescribeUserBackupMachinesResponseBody(Builder builder) { this.machines = builder.machines; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeUserBackupMachinesResponseBody create() { return builder().build(); } /** * @return machines */ public java.util.List < Machines> getMachines() { return this.machines; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < Machines> machines; private String requestId; /** * <p>Machines.</p> */ public Builder machines(java.util.List < Machines> machines) { this.machines = machines; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeUserBackupMachinesResponseBody build() { return new DescribeUserBackupMachinesResponseBody(this); } } public static class Machines extends TeaModel { @NameInMap("Id") private Long id; @NameInMap("PolicyName") private String policyName; @NameInMap("Uuid") private String uuid; private Machines(Builder builder) { this.id = builder.id; this.policyName = builder.policyName; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static Machines create() { return builder().build(); } /** * @return id */ public Long getId() { return this.id; } /** * @return policyName */ public String getPolicyName() { return this.policyName; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private Long id; private String policyName; private String uuid; /** * <p>Id.</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>PolicyName.</p> */ public Builder policyName(String policyName) { this.policyName = policyName; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public Machines build() { return new Machines(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserBaselineAuthorizationRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserBaselineAuthorizationRequest} extends {@link RequestModel} * * <p>DescribeUserBaselineAuthorizationRequest</p> */ public class DescribeUserBaselineAuthorizationRequest extends Request { @Query @NameInMap("Lang") private String lang; @Query @NameInMap("ResourceOwnerId") private Long resourceOwnerId; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeUserBaselineAuthorizationRequest(Builder builder) { super(builder); this.lang = builder.lang; this.resourceOwnerId = builder.resourceOwnerId; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeUserBaselineAuthorizationRequest create() { return builder().build(); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String lang; private Long resourceOwnerId; private String sourceIp; /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>ResourceOwnerId.</p> */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeUserBaselineAuthorizationRequest build() { return new DescribeUserBaselineAuthorizationRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserBaselineAuthorizationResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserBaselineAuthorizationResponse} extends {@link TeaModel} * * <p>DescribeUserBaselineAuthorizationResponse</p> */ public class DescribeUserBaselineAuthorizationResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeUserBaselineAuthorizationResponseBody body; private DescribeUserBaselineAuthorizationResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeUserBaselineAuthorizationResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeUserBaselineAuthorizationResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeUserBaselineAuthorizationResponseBody body; private Builder() { super(); } private Builder(DescribeUserBaselineAuthorizationResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeUserBaselineAuthorizationResponseBody body) { this.body = body; return this; } public DescribeUserBaselineAuthorizationResponse build() { return new DescribeUserBaselineAuthorizationResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserBaselineAuthorizationResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserBaselineAuthorizationResponseBody} extends {@link TeaModel} * * <p>DescribeUserBaselineAuthorizationResponseBody</p> */ public class DescribeUserBaselineAuthorizationResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("UserBaselineAuthorization") private UserBaselineAuthorization userBaselineAuthorization; private DescribeUserBaselineAuthorizationResponseBody(Builder builder) { this.requestId = builder.requestId; this.userBaselineAuthorization = builder.userBaselineAuthorization; } public static Builder builder() { return new Builder(); } public static DescribeUserBaselineAuthorizationResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return userBaselineAuthorization */ public UserBaselineAuthorization getUserBaselineAuthorization() { return this.userBaselineAuthorization; } public static final class Builder { private String requestId; private UserBaselineAuthorization userBaselineAuthorization; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>UserBaselineAuthorization.</p> */ public Builder userBaselineAuthorization(UserBaselineAuthorization userBaselineAuthorization) { this.userBaselineAuthorization = userBaselineAuthorization; return this; } public DescribeUserBaselineAuthorizationResponseBody build() { return new DescribeUserBaselineAuthorizationResponseBody(this); } } public static class UserBaselineAuthorization extends TeaModel { @NameInMap("Status") private Integer status; private UserBaselineAuthorization(Builder builder) { this.status = builder.status; } public static Builder builder() { return new Builder(); } public static UserBaselineAuthorization create() { return builder().build(); } /** * @return status */ public Integer getStatus() { return this.status; } public static final class Builder { private Integer status; /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } public UserBaselineAuthorization build() { return new UserBaselineAuthorization(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserLayoutAuthorizationRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserLayoutAuthorizationRequest} extends {@link RequestModel} * * <p>DescribeUserLayoutAuthorizationRequest</p> */ public class DescribeUserLayoutAuthorizationRequest extends Request { @Query @NameInMap("Lang") private String lang; @Query @NameInMap("ResourceOwnerId") private Long resourceOwnerId; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeUserLayoutAuthorizationRequest(Builder builder) { super(builder); this.lang = builder.lang; this.resourceOwnerId = builder.resourceOwnerId; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeUserLayoutAuthorizationRequest create() { return builder().build(); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String lang; private Long resourceOwnerId; private String sourceIp; /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>ResourceOwnerId.</p> */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeUserLayoutAuthorizationRequest build() { return new DescribeUserLayoutAuthorizationRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserLayoutAuthorizationResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserLayoutAuthorizationResponse} extends {@link TeaModel} * * <p>DescribeUserLayoutAuthorizationResponse</p> */ public class DescribeUserLayoutAuthorizationResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeUserLayoutAuthorizationResponseBody body; private DescribeUserLayoutAuthorizationResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeUserLayoutAuthorizationResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeUserLayoutAuthorizationResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeUserLayoutAuthorizationResponseBody body; private Builder() { super(); } private Builder(DescribeUserLayoutAuthorizationResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeUserLayoutAuthorizationResponseBody body) { this.body = body; return this; } public DescribeUserLayoutAuthorizationResponse build() { return new DescribeUserLayoutAuthorizationResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeUserLayoutAuthorizationResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeUserLayoutAuthorizationResponseBody} extends {@link TeaModel} * * <p>DescribeUserLayoutAuthorizationResponseBody</p> */ public class DescribeUserLayoutAuthorizationResponseBody extends TeaModel { @NameInMap("Authorized") private Boolean authorized; @NameInMap("RequestId") private String requestId; private DescribeUserLayoutAuthorizationResponseBody(Builder builder) { this.authorized = builder.authorized; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeUserLayoutAuthorizationResponseBody create() { return builder().build(); } /** * @return authorized */ public Boolean getAuthorized() { return this.authorized; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Boolean authorized; private String requestId; /** * <p>Authorized.</p> */ public Builder authorized(Boolean authorized) { this.authorized = authorized; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeUserLayoutAuthorizationResponseBody build() { return new DescribeUserLayoutAuthorizationResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVersionConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVersionConfigRequest} extends {@link RequestModel} * * <p>DescribeVersionConfigRequest</p> */ public class DescribeVersionConfigRequest extends Request { @Query @NameInMap("ResourceDirectoryAccountId") private String resourceDirectoryAccountId; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeVersionConfigRequest(Builder builder) { super(builder); this.resourceDirectoryAccountId = builder.resourceDirectoryAccountId; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeVersionConfigRequest create() { return builder().build(); } /** * @return resourceDirectoryAccountId */ public String getResourceDirectoryAccountId() { return this.resourceDirectoryAccountId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String resourceDirectoryAccountId; private String sourceIp; /** * <p>ResourceDirectoryAccountId.</p> */ public Builder resourceDirectoryAccountId(String resourceDirectoryAccountId) { this.putQueryParameter("ResourceDirectoryAccountId", resourceDirectoryAccountId); this.resourceDirectoryAccountId = resourceDirectoryAccountId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeVersionConfigRequest build() { return new DescribeVersionConfigRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVersionConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVersionConfigResponse} extends {@link TeaModel} * * <p>DescribeVersionConfigResponse</p> */ public class DescribeVersionConfigResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVersionConfigResponseBody body; private DescribeVersionConfigResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVersionConfigResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVersionConfigResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVersionConfigResponseBody body; private Builder() { super(); } private Builder(DescribeVersionConfigResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVersionConfigResponseBody body) { this.body = body; return this; } public DescribeVersionConfigResponse build() { return new DescribeVersionConfigResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVersionConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVersionConfigResponseBody} extends {@link TeaModel} * * <p>DescribeVersionConfigResponseBody</p> */ public class DescribeVersionConfigResponseBody extends TeaModel { @NameInMap("AllowPartialBuy") private Integer allowPartialBuy; @NameInMap("AppWhiteList") private Integer appWhiteList; @NameInMap("AppWhiteListAuthCount") private Long appWhiteListAuthCount; @NameInMap("AssetLevel") private Integer assetLevel; @NameInMap("HighestVersion") private Integer highestVersion; @NameInMap("HoneypotCapacity") private Long honeypotCapacity; @NameInMap("ImageScanCapacity") private Long imageScanCapacity; @NameInMap("InstanceId") private String instanceId; @NameInMap("IsOverBalance") private Boolean isOverBalance; @NameInMap("IsTrialVersion") private Integer isTrialVersion; @NameInMap("LastTrailEndTime") private Long lastTrailEndTime; @NameInMap("MVAuthCount") private Integer MVAuthCount; @NameInMap("MVUnusedAuthCount") private Integer MVUnusedAuthCount; @NameInMap("ReleaseTime") private Long releaseTime; @NameInMap("RequestId") private String requestId; @NameInMap("SasLog") private Integer sasLog; @NameInMap("SasScreen") private Integer sasScreen; @NameInMap("SlsCapacity") private Long slsCapacity; @NameInMap("UserDefinedAlarms") private Integer userDefinedAlarms; @NameInMap("Version") private Integer version; @NameInMap("VmCores") private Integer vmCores; @NameInMap("WebLock") private Integer webLock; @NameInMap("WebLockAuthCount") private Long webLockAuthCount; private DescribeVersionConfigResponseBody(Builder builder) { this.allowPartialBuy = builder.allowPartialBuy; this.appWhiteList = builder.appWhiteList; this.appWhiteListAuthCount = builder.appWhiteListAuthCount; this.assetLevel = builder.assetLevel; this.highestVersion = builder.highestVersion; this.honeypotCapacity = builder.honeypotCapacity; this.imageScanCapacity = builder.imageScanCapacity; this.instanceId = builder.instanceId; this.isOverBalance = builder.isOverBalance; this.isTrialVersion = builder.isTrialVersion; this.lastTrailEndTime = builder.lastTrailEndTime; this.MVAuthCount = builder.MVAuthCount; this.MVUnusedAuthCount = builder.MVUnusedAuthCount; this.releaseTime = builder.releaseTime; this.requestId = builder.requestId; this.sasLog = builder.sasLog; this.sasScreen = builder.sasScreen; this.slsCapacity = builder.slsCapacity; this.userDefinedAlarms = builder.userDefinedAlarms; this.version = builder.version; this.vmCores = builder.vmCores; this.webLock = builder.webLock; this.webLockAuthCount = builder.webLockAuthCount; } public static Builder builder() { return new Builder(); } public static DescribeVersionConfigResponseBody create() { return builder().build(); } /** * @return allowPartialBuy */ public Integer getAllowPartialBuy() { return this.allowPartialBuy; } /** * @return appWhiteList */ public Integer getAppWhiteList() { return this.appWhiteList; } /** * @return appWhiteListAuthCount */ public Long getAppWhiteListAuthCount() { return this.appWhiteListAuthCount; } /** * @return assetLevel */ public Integer getAssetLevel() { return this.assetLevel; } /** * @return highestVersion */ public Integer getHighestVersion() { return this.highestVersion; } /** * @return honeypotCapacity */ public Long getHoneypotCapacity() { return this.honeypotCapacity; } /** * @return imageScanCapacity */ public Long getImageScanCapacity() { return this.imageScanCapacity; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return isOverBalance */ public Boolean getIsOverBalance() { return this.isOverBalance; } /** * @return isTrialVersion */ public Integer getIsTrialVersion() { return this.isTrialVersion; } /** * @return lastTrailEndTime */ public Long getLastTrailEndTime() { return this.lastTrailEndTime; } /** * @return MVAuthCount */ public Integer getMVAuthCount() { return this.MVAuthCount; } /** * @return MVUnusedAuthCount */ public Integer getMVUnusedAuthCount() { return this.MVUnusedAuthCount; } /** * @return releaseTime */ public Long getReleaseTime() { return this.releaseTime; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return sasLog */ public Integer getSasLog() { return this.sasLog; } /** * @return sasScreen */ public Integer getSasScreen() { return this.sasScreen; } /** * @return slsCapacity */ public Long getSlsCapacity() { return this.slsCapacity; } /** * @return userDefinedAlarms */ public Integer getUserDefinedAlarms() { return this.userDefinedAlarms; } /** * @return version */ public Integer getVersion() { return this.version; } /** * @return vmCores */ public Integer getVmCores() { return this.vmCores; } /** * @return webLock */ public Integer getWebLock() { return this.webLock; } /** * @return webLockAuthCount */ public Long getWebLockAuthCount() { return this.webLockAuthCount; } public static final class Builder { private Integer allowPartialBuy; private Integer appWhiteList; private Long appWhiteListAuthCount; private Integer assetLevel; private Integer highestVersion; private Long honeypotCapacity; private Long imageScanCapacity; private String instanceId; private Boolean isOverBalance; private Integer isTrialVersion; private Long lastTrailEndTime; private Integer MVAuthCount; private Integer MVUnusedAuthCount; private Long releaseTime; private String requestId; private Integer sasLog; private Integer sasScreen; private Long slsCapacity; private Integer userDefinedAlarms; private Integer version; private Integer vmCores; private Integer webLock; private Long webLockAuthCount; /** * <p>AllowPartialBuy.</p> */ public Builder allowPartialBuy(Integer allowPartialBuy) { this.allowPartialBuy = allowPartialBuy; return this; } /** * <p>AppWhiteList.</p> */ public Builder appWhiteList(Integer appWhiteList) { this.appWhiteList = appWhiteList; return this; } /** * <p>AppWhiteListAuthCount.</p> */ public Builder appWhiteListAuthCount(Long appWhiteListAuthCount) { this.appWhiteListAuthCount = appWhiteListAuthCount; return this; } /** * <p>AssetLevel.</p> */ public Builder assetLevel(Integer assetLevel) { this.assetLevel = assetLevel; return this; } /** * <p>HighestVersion.</p> */ public Builder highestVersion(Integer highestVersion) { this.highestVersion = highestVersion; return this; } /** * <p>HoneypotCapacity.</p> */ public Builder honeypotCapacity(Long honeypotCapacity) { this.honeypotCapacity = honeypotCapacity; return this; } /** * <p>ImageScanCapacity.</p> */ public Builder imageScanCapacity(Long imageScanCapacity) { this.imageScanCapacity = imageScanCapacity; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>IsOverBalance.</p> */ public Builder isOverBalance(Boolean isOverBalance) { this.isOverBalance = isOverBalance; return this; } /** * <p>IsTrialVersion.</p> */ public Builder isTrialVersion(Integer isTrialVersion) { this.isTrialVersion = isTrialVersion; return this; } /** * <p>LastTrailEndTime.</p> */ public Builder lastTrailEndTime(Long lastTrailEndTime) { this.lastTrailEndTime = lastTrailEndTime; return this; } /** * <p>MVAuthCount.</p> */ public Builder MVAuthCount(Integer MVAuthCount) { this.MVAuthCount = MVAuthCount; return this; } /** * <p>MVUnusedAuthCount.</p> */ public Builder MVUnusedAuthCount(Integer MVUnusedAuthCount) { this.MVUnusedAuthCount = MVUnusedAuthCount; return this; } /** * <p>ReleaseTime.</p> */ public Builder releaseTime(Long releaseTime) { this.releaseTime = releaseTime; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>SasLog.</p> */ public Builder sasLog(Integer sasLog) { this.sasLog = sasLog; return this; } /** * <p>SasScreen.</p> */ public Builder sasScreen(Integer sasScreen) { this.sasScreen = sasScreen; return this; } /** * <p>SlsCapacity.</p> */ public Builder slsCapacity(Long slsCapacity) { this.slsCapacity = slsCapacity; return this; } /** * <p>UserDefinedAlarms.</p> */ public Builder userDefinedAlarms(Integer userDefinedAlarms) { this.userDefinedAlarms = userDefinedAlarms; return this; } /** * <p>Version.</p> */ public Builder version(Integer version) { this.version = version; return this; } /** * <p>VmCores.</p> */ public Builder vmCores(Integer vmCores) { this.vmCores = vmCores; return this; } /** * <p>WebLock.</p> */ public Builder webLock(Integer webLock) { this.webLock = webLock; return this; } /** * <p>WebLockAuthCount.</p> */ public Builder webLockAuthCount(Long webLockAuthCount) { this.webLockAuthCount = webLockAuthCount; return this; } public DescribeVersionConfigResponseBody build() { return new DescribeVersionConfigResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVolDingdingMessageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVolDingdingMessageRequest} extends {@link RequestModel} * * <p>DescribeVolDingdingMessageRequest</p> */ public class DescribeVolDingdingMessageRequest extends Request { @Query @NameInMap("Lang") private String lang; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeVolDingdingMessageRequest(Builder builder) { super(builder); this.lang = builder.lang; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeVolDingdingMessageRequest create() { return builder().build(); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String lang; private String sourceIp; /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeVolDingdingMessageRequest build() { return new DescribeVolDingdingMessageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVolDingdingMessageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVolDingdingMessageResponse} extends {@link TeaModel} * * <p>DescribeVolDingdingMessageResponse</p> */ public class DescribeVolDingdingMessageResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVolDingdingMessageResponseBody body; private DescribeVolDingdingMessageResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVolDingdingMessageResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVolDingdingMessageResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVolDingdingMessageResponseBody body; private Builder() { super(); } private Builder(DescribeVolDingdingMessageResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVolDingdingMessageResponseBody body) { this.body = body; return this; } public DescribeVolDingdingMessageResponse build() { return new DescribeVolDingdingMessageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVolDingdingMessageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVolDingdingMessageResponseBody} extends {@link TeaModel} * * <p>DescribeVolDingdingMessageResponseBody</p> */ public class DescribeVolDingdingMessageResponseBody extends TeaModel { @NameInMap("DingdingUrl") private String dingdingUrl; @NameInMap("RequestId") private String requestId; private DescribeVolDingdingMessageResponseBody(Builder builder) { this.dingdingUrl = builder.dingdingUrl; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeVolDingdingMessageResponseBody create() { return builder().build(); } /** * @return dingdingUrl */ public String getDingdingUrl() { return this.dingdingUrl; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String dingdingUrl; private String requestId; /** * <p>DingdingUrl.</p> */ public Builder dingdingUrl(String dingdingUrl) { this.dingdingUrl = dingdingUrl; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeVolDingdingMessageResponseBody build() { return new DescribeVolDingdingMessageResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcHoneyPotCriteriaRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcHoneyPotCriteriaRequest} extends {@link RequestModel} * * <p>DescribeVpcHoneyPotCriteriaRequest</p> */ public class DescribeVpcHoneyPotCriteriaRequest extends Request { private DescribeVpcHoneyPotCriteriaRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeVpcHoneyPotCriteriaRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeVpcHoneyPotCriteriaRequest build() { return new DescribeVpcHoneyPotCriteriaRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcHoneyPotCriteriaResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcHoneyPotCriteriaResponse} extends {@link TeaModel} * * <p>DescribeVpcHoneyPotCriteriaResponse</p> */ public class DescribeVpcHoneyPotCriteriaResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVpcHoneyPotCriteriaResponseBody body; private DescribeVpcHoneyPotCriteriaResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVpcHoneyPotCriteriaResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVpcHoneyPotCriteriaResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVpcHoneyPotCriteriaResponseBody body; private Builder() { super(); } private Builder(DescribeVpcHoneyPotCriteriaResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVpcHoneyPotCriteriaResponseBody body) { this.body = body; return this; } public DescribeVpcHoneyPotCriteriaResponse build() { return new DescribeVpcHoneyPotCriteriaResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcHoneyPotCriteriaResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcHoneyPotCriteriaResponseBody} extends {@link TeaModel} * * <p>DescribeVpcHoneyPotCriteriaResponseBody</p> */ public class DescribeVpcHoneyPotCriteriaResponseBody extends TeaModel { @NameInMap("CriteriaList") private java.util.List < CriteriaList> criteriaList; @NameInMap("RequestId") private String requestId; private DescribeVpcHoneyPotCriteriaResponseBody(Builder builder) { this.criteriaList = builder.criteriaList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeVpcHoneyPotCriteriaResponseBody create() { return builder().build(); } /** * @return criteriaList */ public java.util.List < CriteriaList> getCriteriaList() { return this.criteriaList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < CriteriaList> criteriaList; private String requestId; /** * <p>CriteriaList.</p> */ public Builder criteriaList(java.util.List < CriteriaList> criteriaList) { this.criteriaList = criteriaList; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeVpcHoneyPotCriteriaResponseBody build() { return new DescribeVpcHoneyPotCriteriaResponseBody(this); } } public static class CriteriaList extends TeaModel { @NameInMap("Name") private String name; @NameInMap("Type") private String type; @NameInMap("Values") private String values; private CriteriaList(Builder builder) { this.name = builder.name; this.type = builder.type; this.values = builder.values; } public static Builder builder() { return new Builder(); } public static CriteriaList create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return type */ public String getType() { return this.type; } /** * @return values */ public String getValues() { return this.values; } public static final class Builder { private String name; private String type; private String values; /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } /** * <p>Values.</p> */ public Builder values(String values) { this.values = values; return this; } public CriteriaList build() { return new CriteriaList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcHoneyPotListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcHoneyPotListRequest} extends {@link RequestModel} * * <p>DescribeVpcHoneyPotListRequest</p> */ public class DescribeVpcHoneyPotListRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("HoneyPotExistence") private Boolean honeyPotExistence; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("VpcId") private String vpcId; @Query @NameInMap("VpcName") private String vpcName; @Query @NameInMap("VpcRegionId") private String vpcRegionId; private DescribeVpcHoneyPotListRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.honeyPotExistence = builder.honeyPotExistence; this.pageSize = builder.pageSize; this.vpcId = builder.vpcId; this.vpcName = builder.vpcName; this.vpcRegionId = builder.vpcRegionId; } public static Builder builder() { return new Builder(); } public static DescribeVpcHoneyPotListRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return honeyPotExistence */ public Boolean getHoneyPotExistence() { return this.honeyPotExistence; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return vpcId */ public String getVpcId() { return this.vpcId; } /** * @return vpcName */ public String getVpcName() { return this.vpcName; } /** * @return vpcRegionId */ public String getVpcRegionId() { return this.vpcRegionId; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private Boolean honeyPotExistence; private Integer pageSize; private String vpcId; private String vpcName; private String vpcRegionId; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>HoneyPotExistence.</p> */ public Builder honeyPotExistence(Boolean honeyPotExistence) { this.putQueryParameter("HoneyPotExistence", honeyPotExistence); this.honeyPotExistence = honeyPotExistence; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>VpcId.</p> */ public Builder vpcId(String vpcId) { this.putQueryParameter("VpcId", vpcId); this.vpcId = vpcId; return this; } /** * <p>VpcName.</p> */ public Builder vpcName(String vpcName) { this.putQueryParameter("VpcName", vpcName); this.vpcName = vpcName; return this; } /** * <p>VpcRegionId.</p> */ public Builder vpcRegionId(String vpcRegionId) { this.putQueryParameter("VpcRegionId", vpcRegionId); this.vpcRegionId = vpcRegionId; return this; } public DescribeVpcHoneyPotListRequest build() { return new DescribeVpcHoneyPotListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcHoneyPotListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcHoneyPotListResponse} extends {@link TeaModel} * * <p>DescribeVpcHoneyPotListResponse</p> */ public class DescribeVpcHoneyPotListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVpcHoneyPotListResponseBody body; private DescribeVpcHoneyPotListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVpcHoneyPotListResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVpcHoneyPotListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVpcHoneyPotListResponseBody body; private Builder() { super(); } private Builder(DescribeVpcHoneyPotListResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVpcHoneyPotListResponseBody body) { this.body = body; return this; } public DescribeVpcHoneyPotListResponse build() { return new DescribeVpcHoneyPotListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcHoneyPotListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcHoneyPotListResponseBody} extends {@link TeaModel} * * <p>DescribeVpcHoneyPotListResponseBody</p> */ public class DescribeVpcHoneyPotListResponseBody extends TeaModel { @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; @NameInMap("VpcHoneyPotDTOList") private java.util.List < VpcHoneyPotDTOList> vpcHoneyPotDTOList; private DescribeVpcHoneyPotListResponseBody(Builder builder) { this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; this.vpcHoneyPotDTOList = builder.vpcHoneyPotDTOList; } public static Builder builder() { return new Builder(); } public static DescribeVpcHoneyPotListResponseBody create() { return builder().build(); } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return vpcHoneyPotDTOList */ public java.util.List < VpcHoneyPotDTOList> getVpcHoneyPotDTOList() { return this.vpcHoneyPotDTOList; } public static final class Builder { private PageInfo pageInfo; private String requestId; private java.util.List < VpcHoneyPotDTOList> vpcHoneyPotDTOList; /** * <p>PageInfo.</p> */ public Builder pageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>VpcHoneyPotDTOList.</p> */ public Builder vpcHoneyPotDTOList(java.util.List < VpcHoneyPotDTOList> vpcHoneyPotDTOList) { this.vpcHoneyPotDTOList = vpcHoneyPotDTOList; return this; } public DescribeVpcHoneyPotListResponseBody build() { return new DescribeVpcHoneyPotListResponseBody(this); } } public static class PageInfo extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("TotalCount") private Integer totalCount; private PageInfo(Builder builder) { this.count = builder.count; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static PageInfo create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Integer count; private Integer currentPage; private Integer pageSize; private Integer totalCount; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public PageInfo build() { return new PageInfo(this); } } } public static class VpcSwitchIdList extends TeaModel { @NameInMap("VpcSwitchId") private String vpcSwitchId; @NameInMap("VpcSwitchName") private String vpcSwitchName; @NameInMap("ZoneId") private String zoneId; private VpcSwitchIdList(Builder builder) { this.vpcSwitchId = builder.vpcSwitchId; this.vpcSwitchName = builder.vpcSwitchName; this.zoneId = builder.zoneId; } public static Builder builder() { return new Builder(); } public static VpcSwitchIdList create() { return builder().build(); } /** * @return vpcSwitchId */ public String getVpcSwitchId() { return this.vpcSwitchId; } /** * @return vpcSwitchName */ public String getVpcSwitchName() { return this.vpcSwitchName; } /** * @return zoneId */ public String getZoneId() { return this.zoneId; } public static final class Builder { private String vpcSwitchId; private String vpcSwitchName; private String zoneId; /** * <p>VpcSwitchId.</p> */ public Builder vpcSwitchId(String vpcSwitchId) { this.vpcSwitchId = vpcSwitchId; return this; } /** * <p>VpcSwitchName.</p> */ public Builder vpcSwitchName(String vpcSwitchName) { this.vpcSwitchName = vpcSwitchName; return this; } /** * <p>ZoneId.</p> */ public Builder zoneId(String zoneId) { this.zoneId = zoneId; return this; } public VpcSwitchIdList build() { return new VpcSwitchIdList(this); } } } public static class VpcHoneyPotDTOList extends TeaModel { @NameInMap("CidrBlock") private String cidrBlock; @NameInMap("CreateTime") private Long createTime; @NameInMap("HoneyPotEcsInstanceStatus") private String honeyPotEcsInstanceStatus; @NameInMap("HoneyPotEniInstanceId") private String honeyPotEniInstanceId; @NameInMap("HoneyPotExistence") private Boolean honeyPotExistence; @NameInMap("HoneyPotInstanceStatus") private String honeyPotInstanceStatus; @NameInMap("HoneyPotVpcSwitchId") private String honeyPotVpcSwitchId; @NameInMap("VpcId") private String vpcId; @NameInMap("VpcName") private String vpcName; @NameInMap("VpcRegionId") private String vpcRegionId; @NameInMap("VpcStatus") private String vpcStatus; @NameInMap("VpcSwitchIdList") private java.util.List < VpcSwitchIdList> vpcSwitchIdList; private VpcHoneyPotDTOList(Builder builder) { this.cidrBlock = builder.cidrBlock; this.createTime = builder.createTime; this.honeyPotEcsInstanceStatus = builder.honeyPotEcsInstanceStatus; this.honeyPotEniInstanceId = builder.honeyPotEniInstanceId; this.honeyPotExistence = builder.honeyPotExistence; this.honeyPotInstanceStatus = builder.honeyPotInstanceStatus; this.honeyPotVpcSwitchId = builder.honeyPotVpcSwitchId; this.vpcId = builder.vpcId; this.vpcName = builder.vpcName; this.vpcRegionId = builder.vpcRegionId; this.vpcStatus = builder.vpcStatus; this.vpcSwitchIdList = builder.vpcSwitchIdList; } public static Builder builder() { return new Builder(); } public static VpcHoneyPotDTOList create() { return builder().build(); } /** * @return cidrBlock */ public String getCidrBlock() { return this.cidrBlock; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return honeyPotEcsInstanceStatus */ public String getHoneyPotEcsInstanceStatus() { return this.honeyPotEcsInstanceStatus; } /** * @return honeyPotEniInstanceId */ public String getHoneyPotEniInstanceId() { return this.honeyPotEniInstanceId; } /** * @return honeyPotExistence */ public Boolean getHoneyPotExistence() { return this.honeyPotExistence; } /** * @return honeyPotInstanceStatus */ public String getHoneyPotInstanceStatus() { return this.honeyPotInstanceStatus; } /** * @return honeyPotVpcSwitchId */ public String getHoneyPotVpcSwitchId() { return this.honeyPotVpcSwitchId; } /** * @return vpcId */ public String getVpcId() { return this.vpcId; } /** * @return vpcName */ public String getVpcName() { return this.vpcName; } /** * @return vpcRegionId */ public String getVpcRegionId() { return this.vpcRegionId; } /** * @return vpcStatus */ public String getVpcStatus() { return this.vpcStatus; } /** * @return vpcSwitchIdList */ public java.util.List < VpcSwitchIdList> getVpcSwitchIdList() { return this.vpcSwitchIdList; } public static final class Builder { private String cidrBlock; private Long createTime; private String honeyPotEcsInstanceStatus; private String honeyPotEniInstanceId; private Boolean honeyPotExistence; private String honeyPotInstanceStatus; private String honeyPotVpcSwitchId; private String vpcId; private String vpcName; private String vpcRegionId; private String vpcStatus; private java.util.List < VpcSwitchIdList> vpcSwitchIdList; /** * <p>CidrBlock.</p> */ public Builder cidrBlock(String cidrBlock) { this.cidrBlock = cidrBlock; return this; } /** * <p>CreateTime.</p> */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * <p>HoneyPotEcsInstanceStatus.</p> */ public Builder honeyPotEcsInstanceStatus(String honeyPotEcsInstanceStatus) { this.honeyPotEcsInstanceStatus = honeyPotEcsInstanceStatus; return this; } /** * <p>HoneyPotEniInstanceId.</p> */ public Builder honeyPotEniInstanceId(String honeyPotEniInstanceId) { this.honeyPotEniInstanceId = honeyPotEniInstanceId; return this; } /** * <p>HoneyPotExistence.</p> */ public Builder honeyPotExistence(Boolean honeyPotExistence) { this.honeyPotExistence = honeyPotExistence; return this; } /** * <p>HoneyPotInstanceStatus.</p> */ public Builder honeyPotInstanceStatus(String honeyPotInstanceStatus) { this.honeyPotInstanceStatus = honeyPotInstanceStatus; return this; } /** * <p>HoneyPotVpcSwitchId.</p> */ public Builder honeyPotVpcSwitchId(String honeyPotVpcSwitchId) { this.honeyPotVpcSwitchId = honeyPotVpcSwitchId; return this; } /** * <p>VpcId.</p> */ public Builder vpcId(String vpcId) { this.vpcId = vpcId; return this; } /** * <p>VpcName.</p> */ public Builder vpcName(String vpcName) { this.vpcName = vpcName; return this; } /** * <p>VpcRegionId.</p> */ public Builder vpcRegionId(String vpcRegionId) { this.vpcRegionId = vpcRegionId; return this; } /** * <p>VpcStatus.</p> */ public Builder vpcStatus(String vpcStatus) { this.vpcStatus = vpcStatus; return this; } /** * <p>VpcSwitchIdList.</p> */ public Builder vpcSwitchIdList(java.util.List < VpcSwitchIdList> vpcSwitchIdList) { this.vpcSwitchIdList = vpcSwitchIdList; return this; } public VpcHoneyPotDTOList build() { return new VpcHoneyPotDTOList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcListRequest} extends {@link RequestModel} * * <p>DescribeVpcListRequest</p> */ public class DescribeVpcListRequest extends Request { private DescribeVpcListRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeVpcListRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeVpcListRequest build() { return new DescribeVpcListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcListResponse} extends {@link TeaModel} * * <p>DescribeVpcListResponse</p> */ public class DescribeVpcListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVpcListResponseBody body; private DescribeVpcListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVpcListResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVpcListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVpcListResponseBody body; private Builder() { super(); } private Builder(DescribeVpcListResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVpcListResponseBody body) { this.body = body; return this; } public DescribeVpcListResponse build() { return new DescribeVpcListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVpcListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVpcListResponseBody} extends {@link TeaModel} * * <p>DescribeVpcListResponseBody</p> */ public class DescribeVpcListResponseBody extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("RequestId") private String requestId; @NameInMap("VpcList") private java.util.List < VpcList> vpcList; private DescribeVpcListResponseBody(Builder builder) { this.count = builder.count; this.requestId = builder.requestId; this.vpcList = builder.vpcList; } public static Builder builder() { return new Builder(); } public static DescribeVpcListResponseBody create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return vpcList */ public java.util.List < VpcList> getVpcList() { return this.vpcList; } public static final class Builder { private Integer count; private String requestId; private java.util.List < VpcList> vpcList; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>VpcList.</p> */ public Builder vpcList(java.util.List < VpcList> vpcList) { this.vpcList = vpcList; return this; } public DescribeVpcListResponseBody build() { return new DescribeVpcListResponseBody(this); } } public static class VpcList extends TeaModel { @NameInMap("EcsCount") private Integer ecsCount; @NameInMap("InstanceDesc") private String instanceDesc; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("RegionId") private String regionId; private VpcList(Builder builder) { this.ecsCount = builder.ecsCount; this.instanceDesc = builder.instanceDesc; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.regionId = builder.regionId; } public static Builder builder() { return new Builder(); } public static VpcList create() { return builder().build(); } /** * @return ecsCount */ public Integer getEcsCount() { return this.ecsCount; } /** * @return instanceDesc */ public String getInstanceDesc() { return this.instanceDesc; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return regionId */ public String getRegionId() { return this.regionId; } public static final class Builder { private Integer ecsCount; private String instanceDesc; private String instanceId; private String instanceName; private String regionId; /** * <p>EcsCount.</p> */ public Builder ecsCount(Integer ecsCount) { this.ecsCount = ecsCount; return this; } /** * <p>InstanceDesc.</p> */ public Builder instanceDesc(String instanceDesc) { this.instanceDesc = instanceDesc; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } public VpcList build() { return new VpcList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulDetailsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulDetailsRequest} extends {@link RequestModel} * * <p>DescribeVulDetailsRequest</p> */ public class DescribeVulDetailsRequest extends Request { @Query @NameInMap("AliasName") private String aliasName; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Name") private String name; @Query @NameInMap("Type") private String type; private DescribeVulDetailsRequest(Builder builder) { super(builder); this.aliasName = builder.aliasName; this.lang = builder.lang; this.name = builder.name; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DescribeVulDetailsRequest create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return name */ public String getName() { return this.name; } /** * @return type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<Builder> { private String aliasName; private String lang; private String name; private String type; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.putQueryParameter("AliasName", aliasName); this.aliasName = aliasName; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.putQueryParameter("Name", name); this.name = name; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } public DescribeVulDetailsRequest build() { return new DescribeVulDetailsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulDetailsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulDetailsResponse} extends {@link TeaModel} * * <p>DescribeVulDetailsResponse</p> */ public class DescribeVulDetailsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVulDetailsResponseBody body; private DescribeVulDetailsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVulDetailsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVulDetailsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVulDetailsResponseBody body; private Builder() { super(); } private Builder(DescribeVulDetailsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVulDetailsResponseBody body) { this.body = body; return this; } public DescribeVulDetailsResponse build() { return new DescribeVulDetailsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulDetailsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulDetailsResponseBody} extends {@link TeaModel} * * <p>DescribeVulDetailsResponseBody</p> */ public class DescribeVulDetailsResponseBody extends TeaModel { @NameInMap("Cves") private java.util.List < Cves> cves; @NameInMap("RequestId") private String requestId; private DescribeVulDetailsResponseBody(Builder builder) { this.cves = builder.cves; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeVulDetailsResponseBody create() { return builder().build(); } /** * @return cves */ public java.util.List < Cves> getCves() { return this.cves; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < Cves> cves; private String requestId; /** * <p>Cves.</p> */ public Builder cves(java.util.List < Cves> cves) { this.cves = cves; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeVulDetailsResponseBody build() { return new DescribeVulDetailsResponseBody(this); } } public static class Classifys extends TeaModel { @NameInMap("Classify") private String classify; @NameInMap("DemoVideoUrl") private String demoVideoUrl; @NameInMap("Description") private String description; private Classifys(Builder builder) { this.classify = builder.classify; this.demoVideoUrl = builder.demoVideoUrl; this.description = builder.description; } public static Builder builder() { return new Builder(); } public static Classifys create() { return builder().build(); } /** * @return classify */ public String getClassify() { return this.classify; } /** * @return demoVideoUrl */ public String getDemoVideoUrl() { return this.demoVideoUrl; } /** * @return description */ public String getDescription() { return this.description; } public static final class Builder { private String classify; private String demoVideoUrl; private String description; /** * <p>Classify.</p> */ public Builder classify(String classify) { this.classify = classify; return this; } /** * <p>DemoVideoUrl.</p> */ public Builder demoVideoUrl(String demoVideoUrl) { this.demoVideoUrl = demoVideoUrl; return this; } /** * <p>Description.</p> */ public Builder description(String description) { this.description = description; return this; } public Classifys build() { return new Classifys(this); } } } public static class Cves extends TeaModel { @NameInMap("Classify") private String classify; @NameInMap("Classifys") private java.util.List < Classifys> classifys; @NameInMap("CnvdId") private String cnvdId; @NameInMap("Complexity") private String complexity; @NameInMap("Content") private String content; @NameInMap("CveId") private String cveId; @NameInMap("CvssScore") private String cvssScore; @NameInMap("CvssVector") private String cvssVector; @NameInMap("Poc") private String poc; @NameInMap("PocCreateTime") private Long pocCreateTime; @NameInMap("PocDisclosureTime") private Long pocDisclosureTime; @NameInMap("Product") private String product; @NameInMap("Reference") private String reference; @NameInMap("ReleaseTime") private Long releaseTime; @NameInMap("Solution") private String solution; @NameInMap("Summary") private String summary; @NameInMap("Title") private String title; @NameInMap("Vendor") private String vendor; @NameInMap("VulLevel") private String vulLevel; private Cves(Builder builder) { this.classify = builder.classify; this.classifys = builder.classifys; this.cnvdId = builder.cnvdId; this.complexity = builder.complexity; this.content = builder.content; this.cveId = builder.cveId; this.cvssScore = builder.cvssScore; this.cvssVector = builder.cvssVector; this.poc = builder.poc; this.pocCreateTime = builder.pocCreateTime; this.pocDisclosureTime = builder.pocDisclosureTime; this.product = builder.product; this.reference = builder.reference; this.releaseTime = builder.releaseTime; this.solution = builder.solution; this.summary = builder.summary; this.title = builder.title; this.vendor = builder.vendor; this.vulLevel = builder.vulLevel; } public static Builder builder() { return new Builder(); } public static Cves create() { return builder().build(); } /** * @return classify */ public String getClassify() { return this.classify; } /** * @return classifys */ public java.util.List < Classifys> getClassifys() { return this.classifys; } /** * @return cnvdId */ public String getCnvdId() { return this.cnvdId; } /** * @return complexity */ public String getComplexity() { return this.complexity; } /** * @return content */ public String getContent() { return this.content; } /** * @return cveId */ public String getCveId() { return this.cveId; } /** * @return cvssScore */ public String getCvssScore() { return this.cvssScore; } /** * @return cvssVector */ public String getCvssVector() { return this.cvssVector; } /** * @return poc */ public String getPoc() { return this.poc; } /** * @return pocCreateTime */ public Long getPocCreateTime() { return this.pocCreateTime; } /** * @return pocDisclosureTime */ public Long getPocDisclosureTime() { return this.pocDisclosureTime; } /** * @return product */ public String getProduct() { return this.product; } /** * @return reference */ public String getReference() { return this.reference; } /** * @return releaseTime */ public Long getReleaseTime() { return this.releaseTime; } /** * @return solution */ public String getSolution() { return this.solution; } /** * @return summary */ public String getSummary() { return this.summary; } /** * @return title */ public String getTitle() { return this.title; } /** * @return vendor */ public String getVendor() { return this.vendor; } /** * @return vulLevel */ public String getVulLevel() { return this.vulLevel; } public static final class Builder { private String classify; private java.util.List < Classifys> classifys; private String cnvdId; private String complexity; private String content; private String cveId; private String cvssScore; private String cvssVector; private String poc; private Long pocCreateTime; private Long pocDisclosureTime; private String product; private String reference; private Long releaseTime; private String solution; private String summary; private String title; private String vendor; private String vulLevel; /** * <p>Classify.</p> */ public Builder classify(String classify) { this.classify = classify; return this; } /** * <p>Classifys.</p> */ public Builder classifys(java.util.List < Classifys> classifys) { this.classifys = classifys; return this; } /** * <p>CnvdId.</p> */ public Builder cnvdId(String cnvdId) { this.cnvdId = cnvdId; return this; } /** * <p>Complexity.</p> */ public Builder complexity(String complexity) { this.complexity = complexity; return this; } /** * <p>Content.</p> */ public Builder content(String content) { this.content = content; return this; } /** * <p>CveId.</p> */ public Builder cveId(String cveId) { this.cveId = cveId; return this; } /** * <p>CvssScore.</p> */ public Builder cvssScore(String cvssScore) { this.cvssScore = cvssScore; return this; } /** * <p>CvssVector.</p> */ public Builder cvssVector(String cvssVector) { this.cvssVector = cvssVector; return this; } /** * <p>Poc.</p> */ public Builder poc(String poc) { this.poc = poc; return this; } /** * <p>PocCreateTime.</p> */ public Builder pocCreateTime(Long pocCreateTime) { this.pocCreateTime = pocCreateTime; return this; } /** * <p>PocDisclosureTime.</p> */ public Builder pocDisclosureTime(Long pocDisclosureTime) { this.pocDisclosureTime = pocDisclosureTime; return this; } /** * <p>Product.</p> */ public Builder product(String product) { this.product = product; return this; } /** * <p>Reference.</p> */ public Builder reference(String reference) { this.reference = reference; return this; } /** * <p>ReleaseTime.</p> */ public Builder releaseTime(Long releaseTime) { this.releaseTime = releaseTime; return this; } /** * <p>Solution.</p> */ public Builder solution(String solution) { this.solution = solution; return this; } /** * <p>Summary.</p> */ public Builder summary(String summary) { this.summary = summary; return this; } /** * <p>Title.</p> */ public Builder title(String title) { this.title = title; return this; } /** * <p>Vendor.</p> */ public Builder vendor(String vendor) { this.vendor = vendor; return this; } /** * <p>VulLevel.</p> */ public Builder vulLevel(String vulLevel) { this.vulLevel = vulLevel; return this; } public Cves build() { return new Cves(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulExportInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulExportInfoRequest} extends {@link RequestModel} * * <p>DescribeVulExportInfoRequest</p> */ public class DescribeVulExportInfoRequest extends Request { @Query @NameInMap("ExportId") private Long exportId; private DescribeVulExportInfoRequest(Builder builder) { super(builder); this.exportId = builder.exportId; } public static Builder builder() { return new Builder(); } public static DescribeVulExportInfoRequest create() { return builder().build(); } /** * @return exportId */ public Long getExportId() { return this.exportId; } public static final class Builder extends Request.Builder<Builder> { private Long exportId; /** * <p>ExportId.</p> */ public Builder exportId(Long exportId) { this.putQueryParameter("ExportId", exportId); this.exportId = exportId; return this; } public DescribeVulExportInfoRequest build() { return new DescribeVulExportInfoRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulExportInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulExportInfoResponse} extends {@link TeaModel} * * <p>DescribeVulExportInfoResponse</p> */ public class DescribeVulExportInfoResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVulExportInfoResponseBody body; private DescribeVulExportInfoResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVulExportInfoResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVulExportInfoResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVulExportInfoResponseBody body; private Builder() { super(); } private Builder(DescribeVulExportInfoResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVulExportInfoResponseBody body) { this.body = body; return this; } public DescribeVulExportInfoResponse build() { return new DescribeVulExportInfoResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulExportInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulExportInfoResponseBody} extends {@link TeaModel} * * <p>DescribeVulExportInfoResponseBody</p> */ public class DescribeVulExportInfoResponseBody extends TeaModel { @NameInMap("CurrentCount") private Integer currentCount; @NameInMap("ExportStatus") private String exportStatus; @NameInMap("FileName") private String fileName; @NameInMap("Id") private Long id; @NameInMap("Link") private String link; @NameInMap("Message") private String message; @NameInMap("Progress") private Integer progress; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeVulExportInfoResponseBody(Builder builder) { this.currentCount = builder.currentCount; this.exportStatus = builder.exportStatus; this.fileName = builder.fileName; this.id = builder.id; this.link = builder.link; this.message = builder.message; this.progress = builder.progress; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeVulExportInfoResponseBody create() { return builder().build(); } /** * @return currentCount */ public Integer getCurrentCount() { return this.currentCount; } /** * @return exportStatus */ public String getExportStatus() { return this.exportStatus; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return id */ public Long getId() { return this.id; } /** * @return link */ public String getLink() { return this.link; } /** * @return message */ public String getMessage() { return this.message; } /** * @return progress */ public Integer getProgress() { return this.progress; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Integer currentCount; private String exportStatus; private String fileName; private Long id; private String link; private String message; private Integer progress; private String requestId; private Integer totalCount; /** * <p>CurrentCount.</p> */ public Builder currentCount(Integer currentCount) { this.currentCount = currentCount; return this; } /** * <p>ExportStatus.</p> */ public Builder exportStatus(String exportStatus) { this.exportStatus = exportStatus; return this; } /** * <p>FileName.</p> */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * <p>Id.</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Link.</p> */ public Builder link(String link) { this.link = link; return this; } /** * <p>Message.</p> */ public Builder message(String message) { this.message = message; return this; } /** * <p>Progress.</p> */ public Builder progress(Integer progress) { this.progress = progress; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeVulExportInfoResponseBody build() { return new DescribeVulExportInfoResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulListPageRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulListPageRequest} extends {@link RequestModel} * * <p>DescribeVulListPageRequest</p> */ public class DescribeVulListPageRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("CveId") private String cveId; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("VulNameLike") private String vulNameLike; private DescribeVulListPageRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.cveId = builder.cveId; this.pageSize = builder.pageSize; this.sourceIp = builder.sourceIp; this.vulNameLike = builder.vulNameLike; } public static Builder builder() { return new Builder(); } public static DescribeVulListPageRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return cveId */ public String getCveId() { return this.cveId; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return vulNameLike */ public String getVulNameLike() { return this.vulNameLike; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String cveId; private Integer pageSize; private String sourceIp; private String vulNameLike; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>CveId.</p> */ public Builder cveId(String cveId) { this.putQueryParameter("CveId", cveId); this.cveId = cveId; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>VulNameLike.</p> */ public Builder vulNameLike(String vulNameLike) { this.putQueryParameter("VulNameLike", vulNameLike); this.vulNameLike = vulNameLike; return this; } public DescribeVulListPageRequest build() { return new DescribeVulListPageRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulListPageResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulListPageResponse} extends {@link TeaModel} * * <p>DescribeVulListPageResponse</p> */ public class DescribeVulListPageResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVulListPageResponseBody body; private DescribeVulListPageResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVulListPageResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVulListPageResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVulListPageResponseBody body; private Builder() { super(); } private Builder(DescribeVulListPageResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVulListPageResponseBody body) { this.body = body; return this; } public DescribeVulListPageResponse build() { return new DescribeVulListPageResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulListPageResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulListPageResponseBody} extends {@link TeaModel} * * <p>DescribeVulListPageResponseBody</p> */ public class DescribeVulListPageResponseBody extends TeaModel { @NameInMap("Data") private java.util.List < Data> data; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeVulListPageResponseBody(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeVulListPageResponseBody create() { return builder().build(); } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private java.util.List < Data> data; private String requestId; private Integer totalCount; /** * <p>返回参数</p> */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount本次请求条件下的数据总量,此参数为可选参数,默认可不返回</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeVulListPageResponseBody build() { return new DescribeVulListPageResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("CveId") private String cveId; @NameInMap("Id") private Long id; @NameInMap("IsAegis") private Integer isAegis; @NameInMap("IsSas") private Integer isSas; @NameInMap("OtherId") private String otherId; @NameInMap("ReleaseTime") private Long releaseTime; @NameInMap("Title") private String title; private Data(Builder builder) { this.cveId = builder.cveId; this.id = builder.id; this.isAegis = builder.isAegis; this.isSas = builder.isSas; this.otherId = builder.otherId; this.releaseTime = builder.releaseTime; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return cveId */ public String getCveId() { return this.cveId; } /** * @return id */ public Long getId() { return this.id; } /** * @return isAegis */ public Integer getIsAegis() { return this.isAegis; } /** * @return isSas */ public Integer getIsSas() { return this.isSas; } /** * @return otherId */ public String getOtherId() { return this.otherId; } /** * @return releaseTime */ public Long getReleaseTime() { return this.releaseTime; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder { private String cveId; private Long id; private Integer isAegis; private Integer isSas; private String otherId; private Long releaseTime; private String title; /** * <p>cveId</p> */ public Builder cveId(String cveId) { this.cveId = cveId; return this; } /** * <p>id</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>是否安骑士扫描</p> */ public Builder isAegis(Integer isAegis) { this.isAegis = isAegis; return this; } /** * <p>是否网络扫描</p> */ public Builder isSas(Integer isSas) { this.isSas = isSas; return this; } /** * <p>编号</p> */ public Builder otherId(String otherId) { this.otherId = otherId; return this; } /** * <p>发布时间</p> */ public Builder releaseTime(Long releaseTime) { this.releaseTime = releaseTime; return this; } /** * <p>漏洞标题</p> */ public Builder title(String title) { this.title = title; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulListRequest} extends {@link RequestModel} * * <p>DescribeVulListRequest</p> */ public class DescribeVulListRequest extends Request { @Query @NameInMap("AliasName") private String aliasName; @Query @NameInMap("AttachTypes") private String attachTypes; @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("Dealed") private String dealed; @Query @NameInMap("GroupId") private String groupId; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Necessity") private String necessity; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("Remark") private String remark; @Query @NameInMap("Type") private String type; @Query @NameInMap("Uuids") private String uuids; @Query @NameInMap("VpcInstanceIds") private String vpcInstanceIds; private DescribeVulListRequest(Builder builder) { super(builder); this.aliasName = builder.aliasName; this.attachTypes = builder.attachTypes; this.currentPage = builder.currentPage; this.dealed = builder.dealed; this.groupId = builder.groupId; this.lang = builder.lang; this.necessity = builder.necessity; this.pageSize = builder.pageSize; this.remark = builder.remark; this.type = builder.type; this.uuids = builder.uuids; this.vpcInstanceIds = builder.vpcInstanceIds; } public static Builder builder() { return new Builder(); } public static DescribeVulListRequest create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return attachTypes */ public String getAttachTypes() { return this.attachTypes; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return dealed */ public String getDealed() { return this.dealed; } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return necessity */ public String getNecessity() { return this.necessity; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return remark */ public String getRemark() { return this.remark; } /** * @return type */ public String getType() { return this.type; } /** * @return uuids */ public String getUuids() { return this.uuids; } /** * @return vpcInstanceIds */ public String getVpcInstanceIds() { return this.vpcInstanceIds; } public static final class Builder extends Request.Builder<Builder> { private String aliasName; private String attachTypes; private Integer currentPage; private String dealed; private String groupId; private String lang; private String necessity; private Integer pageSize; private String remark; private String type; private String uuids; private String vpcInstanceIds; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.putQueryParameter("AliasName", aliasName); this.aliasName = aliasName; return this; } /** * <p>AttachTypes.</p> */ public Builder attachTypes(String attachTypes) { this.putQueryParameter("AttachTypes", attachTypes); this.attachTypes = attachTypes; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Dealed.</p> */ public Builder dealed(String dealed) { this.putQueryParameter("Dealed", dealed); this.dealed = dealed; return this; } /** * <p>GroupId.</p> */ public Builder groupId(String groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Necessity.</p> */ public Builder necessity(String necessity) { this.putQueryParameter("Necessity", necessity); this.necessity = necessity; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Remark.</p> */ public Builder remark(String remark) { this.putQueryParameter("Remark", remark); this.remark = remark; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } /** * <p>Uuids.</p> */ public Builder uuids(String uuids) { this.putQueryParameter("Uuids", uuids); this.uuids = uuids; return this; } /** * <p>VpcInstanceIds.</p> */ public Builder vpcInstanceIds(String vpcInstanceIds) { this.putQueryParameter("VpcInstanceIds", vpcInstanceIds); this.vpcInstanceIds = vpcInstanceIds; return this; } public DescribeVulListRequest build() { return new DescribeVulListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulListResponse} extends {@link TeaModel} * * <p>DescribeVulListResponse</p> */ public class DescribeVulListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVulListResponseBody body; private DescribeVulListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVulListResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVulListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVulListResponseBody body; private Builder() { super(); } private Builder(DescribeVulListResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVulListResponseBody body) { this.body = body; return this; } public DescribeVulListResponse build() { return new DescribeVulListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulListResponseBody} extends {@link TeaModel} * * <p>DescribeVulListResponseBody</p> */ public class DescribeVulListResponseBody extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; @NameInMap("VulRecords") private java.util.List < VulRecords> vulRecords; private DescribeVulListResponseBody(Builder builder) { this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; this.vulRecords = builder.vulRecords; } public static Builder builder() { return new Builder(); } public static DescribeVulListResponseBody create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } /** * @return vulRecords */ public java.util.List < VulRecords> getVulRecords() { return this.vulRecords; } public static final class Builder { private Integer currentPage; private Integer pageSize; private String requestId; private Integer totalCount; private java.util.List < VulRecords> vulRecords; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } /** * <p>VulRecords.</p> */ public Builder vulRecords(java.util.List < VulRecords> vulRecords) { this.vulRecords = vulRecords; return this; } public DescribeVulListResponseBody build() { return new DescribeVulListResponseBody(this); } } public static class Necessity extends TeaModel { @NameInMap("Assets_factor") private String assetsFactor; @NameInMap("Cvss_factor") private String cvssFactor; @NameInMap("Enviroment_factor") private String enviromentFactor; @NameInMap("Is_calc") private String isCalc; @NameInMap("Status") private String status; @NameInMap("Time_factor") private String timeFactor; @NameInMap("Total_score") private String totalScore; private Necessity(Builder builder) { this.assetsFactor = builder.assetsFactor; this.cvssFactor = builder.cvssFactor; this.enviromentFactor = builder.enviromentFactor; this.isCalc = builder.isCalc; this.status = builder.status; this.timeFactor = builder.timeFactor; this.totalScore = builder.totalScore; } public static Builder builder() { return new Builder(); } public static Necessity create() { return builder().build(); } /** * @return assetsFactor */ public String getAssetsFactor() { return this.assetsFactor; } /** * @return cvssFactor */ public String getCvssFactor() { return this.cvssFactor; } /** * @return enviromentFactor */ public String getEnviromentFactor() { return this.enviromentFactor; } /** * @return isCalc */ public String getIsCalc() { return this.isCalc; } /** * @return status */ public String getStatus() { return this.status; } /** * @return timeFactor */ public String getTimeFactor() { return this.timeFactor; } /** * @return totalScore */ public String getTotalScore() { return this.totalScore; } public static final class Builder { private String assetsFactor; private String cvssFactor; private String enviromentFactor; private String isCalc; private String status; private String timeFactor; private String totalScore; /** * <p>Assets_factor.</p> */ public Builder assetsFactor(String assetsFactor) { this.assetsFactor = assetsFactor; return this; } /** * <p>Cvss_factor.</p> */ public Builder cvssFactor(String cvssFactor) { this.cvssFactor = cvssFactor; return this; } /** * <p>Enviroment_factor.</p> */ public Builder enviromentFactor(String enviromentFactor) { this.enviromentFactor = enviromentFactor; return this; } /** * <p>Is_calc.</p> */ public Builder isCalc(String isCalc) { this.isCalc = isCalc; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>Time_factor.</p> */ public Builder timeFactor(String timeFactor) { this.timeFactor = timeFactor; return this; } /** * <p>Total_score.</p> */ public Builder totalScore(String totalScore) { this.totalScore = totalScore; return this; } public Necessity build() { return new Necessity(this); } } } public static class RpmEntityList extends TeaModel { @NameInMap("ContainerName") private String containerName; @NameInMap("FullVersion") private String fullVersion; @NameInMap("ImageName") private String imageName; @NameInMap("MatchDetail") private String matchDetail; @NameInMap("Name") private String name; @NameInMap("Path") private String path; @NameInMap("UpdateCmd") private String updateCmd; @NameInMap("Version") private String version; private RpmEntityList(Builder builder) { this.containerName = builder.containerName; this.fullVersion = builder.fullVersion; this.imageName = builder.imageName; this.matchDetail = builder.matchDetail; this.name = builder.name; this.path = builder.path; this.updateCmd = builder.updateCmd; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static RpmEntityList create() { return builder().build(); } /** * @return containerName */ public String getContainerName() { return this.containerName; } /** * @return fullVersion */ public String getFullVersion() { return this.fullVersion; } /** * @return imageName */ public String getImageName() { return this.imageName; } /** * @return matchDetail */ public String getMatchDetail() { return this.matchDetail; } /** * @return name */ public String getName() { return this.name; } /** * @return path */ public String getPath() { return this.path; } /** * @return updateCmd */ public String getUpdateCmd() { return this.updateCmd; } /** * @return version */ public String getVersion() { return this.version; } public static final class Builder { private String containerName; private String fullVersion; private String imageName; private String matchDetail; private String name; private String path; private String updateCmd; private String version; /** * <p>ContainerName.</p> */ public Builder containerName(String containerName) { this.containerName = containerName; return this; } /** * <p>FullVersion.</p> */ public Builder fullVersion(String fullVersion) { this.fullVersion = fullVersion; return this; } /** * <p>ImageName.</p> */ public Builder imageName(String imageName) { this.imageName = imageName; return this; } /** * <p>MatchDetail.</p> */ public Builder matchDetail(String matchDetail) { this.matchDetail = matchDetail; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Path.</p> */ public Builder path(String path) { this.path = path; return this; } /** * <p>UpdateCmd.</p> */ public Builder updateCmd(String updateCmd) { this.updateCmd = updateCmd; return this; } /** * <p>Version.</p> */ public Builder version(String version) { this.version = version; return this; } public RpmEntityList build() { return new RpmEntityList(this); } } } public static class ExtendContentJson extends TeaModel { @NameInMap("AbsolutePath") private String absolutePath; @NameInMap("AliasName") private String aliasName; @NameInMap("Description") private String description; @NameInMap("Ip") private String ip; @NameInMap("LastTs") private Long lastTs; @NameInMap("Necessity") private Necessity necessity; @NameInMap("Os") private String os; @NameInMap("OsRelease") private String osRelease; @NameInMap("PrimaryId") private Long primaryId; @NameInMap("RpmEntityList") private java.util.List < RpmEntityList> rpmEntityList; @NameInMap("Status") private String status; @NameInMap("Tag") private String tag; @NameInMap("cveList") private java.util.List < String > cveList; private ExtendContentJson(Builder builder) { this.absolutePath = builder.absolutePath; this.aliasName = builder.aliasName; this.description = builder.description; this.ip = builder.ip; this.lastTs = builder.lastTs; this.necessity = builder.necessity; this.os = builder.os; this.osRelease = builder.osRelease; this.primaryId = builder.primaryId; this.rpmEntityList = builder.rpmEntityList; this.status = builder.status; this.tag = builder.tag; this.cveList = builder.cveList; } public static Builder builder() { return new Builder(); } public static ExtendContentJson create() { return builder().build(); } /** * @return absolutePath */ public String getAbsolutePath() { return this.absolutePath; } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return description */ public String getDescription() { return this.description; } /** * @return ip */ public String getIp() { return this.ip; } /** * @return lastTs */ public Long getLastTs() { return this.lastTs; } /** * @return necessity */ public Necessity getNecessity() { return this.necessity; } /** * @return os */ public String getOs() { return this.os; } /** * @return osRelease */ public String getOsRelease() { return this.osRelease; } /** * @return primaryId */ public Long getPrimaryId() { return this.primaryId; } /** * @return rpmEntityList */ public java.util.List < RpmEntityList> getRpmEntityList() { return this.rpmEntityList; } /** * @return status */ public String getStatus() { return this.status; } /** * @return tag */ public String getTag() { return this.tag; } /** * @return cveList */ public java.util.List < String > getCveList() { return this.cveList; } public static final class Builder { private String absolutePath; private String aliasName; private String description; private String ip; private Long lastTs; private Necessity necessity; private String os; private String osRelease; private Long primaryId; private java.util.List < RpmEntityList> rpmEntityList; private String status; private String tag; private java.util.List < String > cveList; /** * <p>AbsolutePath.</p> */ public Builder absolutePath(String absolutePath) { this.absolutePath = absolutePath; return this; } /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; return this; } /** * <p>Description.</p> */ public Builder description(String description) { this.description = description; return this; } /** * <p>Ip.</p> */ public Builder ip(String ip) { this.ip = ip; return this; } /** * <p>LastTs.</p> */ public Builder lastTs(Long lastTs) { this.lastTs = lastTs; return this; } /** * <p>Necessity.</p> */ public Builder necessity(Necessity necessity) { this.necessity = necessity; return this; } /** * <p>Os.</p> */ public Builder os(String os) { this.os = os; return this; } /** * <p>OsRelease.</p> */ public Builder osRelease(String osRelease) { this.osRelease = osRelease; return this; } /** * <p>PrimaryId.</p> */ public Builder primaryId(Long primaryId) { this.primaryId = primaryId; return this; } /** * <p>RpmEntityList.</p> */ public Builder rpmEntityList(java.util.List < RpmEntityList> rpmEntityList) { this.rpmEntityList = rpmEntityList; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>Tag.</p> */ public Builder tag(String tag) { this.tag = tag; return this; } /** * <p>cveList.</p> */ public Builder cveList(java.util.List < String > cveList) { this.cveList = cveList; return this; } public ExtendContentJson build() { return new ExtendContentJson(this); } } } public static class VulRecords extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("ExtendContentJson") private ExtendContentJson extendContentJson; @NameInMap("FirstTs") private Long firstTs; @NameInMap("GroupId") private Integer groupId; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("LastTs") private Long lastTs; @NameInMap("ModifyTs") private Long modifyTs; @NameInMap("Name") private String name; @NameInMap("Necessity") private String necessity; @NameInMap("Online") private Boolean online; @NameInMap("OsVersion") private String osVersion; @NameInMap("PrimaryId") private Long primaryId; @NameInMap("RegionId") private String regionId; @NameInMap("Related") private String related; @NameInMap("RepairTs") private Long repairTs; @NameInMap("ResultCode") private String resultCode; @NameInMap("ResultMessage") private String resultMessage; @NameInMap("Status") private Integer status; @NameInMap("Tag") private String tag; @NameInMap("Type") private String type; @NameInMap("Uuid") private String uuid; private VulRecords(Builder builder) { this.aliasName = builder.aliasName; this.extendContentJson = builder.extendContentJson; this.firstTs = builder.firstTs; this.groupId = builder.groupId; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.lastTs = builder.lastTs; this.modifyTs = builder.modifyTs; this.name = builder.name; this.necessity = builder.necessity; this.online = builder.online; this.osVersion = builder.osVersion; this.primaryId = builder.primaryId; this.regionId = builder.regionId; this.related = builder.related; this.repairTs = builder.repairTs; this.resultCode = builder.resultCode; this.resultMessage = builder.resultMessage; this.status = builder.status; this.tag = builder.tag; this.type = builder.type; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static VulRecords create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return extendContentJson */ public ExtendContentJson getExtendContentJson() { return this.extendContentJson; } /** * @return firstTs */ public Long getFirstTs() { return this.firstTs; } /** * @return groupId */ public Integer getGroupId() { return this.groupId; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return internetIp */ public String getInternetIp() { return this.internetIp; } /** * @return intranetIp */ public String getIntranetIp() { return this.intranetIp; } /** * @return lastTs */ public Long getLastTs() { return this.lastTs; } /** * @return modifyTs */ public Long getModifyTs() { return this.modifyTs; } /** * @return name */ public String getName() { return this.name; } /** * @return necessity */ public String getNecessity() { return this.necessity; } /** * @return online */ public Boolean getOnline() { return this.online; } /** * @return osVersion */ public String getOsVersion() { return this.osVersion; } /** * @return primaryId */ public Long getPrimaryId() { return this.primaryId; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return related */ public String getRelated() { return this.related; } /** * @return repairTs */ public Long getRepairTs() { return this.repairTs; } /** * @return resultCode */ public String getResultCode() { return this.resultCode; } /** * @return resultMessage */ public String getResultMessage() { return this.resultMessage; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return tag */ public String getTag() { return this.tag; } /** * @return type */ public String getType() { return this.type; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private String aliasName; private ExtendContentJson extendContentJson; private Long firstTs; private Integer groupId; private String instanceId; private String instanceName; private String internetIp; private String intranetIp; private Long lastTs; private Long modifyTs; private String name; private String necessity; private Boolean online; private String osVersion; private Long primaryId; private String regionId; private String related; private Long repairTs; private String resultCode; private String resultMessage; private Integer status; private String tag; private String type; private String uuid; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; return this; } /** * <p>ExtendContentJson.</p> */ public Builder extendContentJson(ExtendContentJson extendContentJson) { this.extendContentJson = extendContentJson; return this; } /** * <p>FirstTs.</p> */ public Builder firstTs(Long firstTs) { this.firstTs = firstTs; return this; } /** * <p>GroupId.</p> */ public Builder groupId(Integer groupId) { this.groupId = groupId; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>InternetIp.</p> */ public Builder internetIp(String internetIp) { this.internetIp = internetIp; return this; } /** * <p>IntranetIp.</p> */ public Builder intranetIp(String intranetIp) { this.intranetIp = intranetIp; return this; } /** * <p>LastTs.</p> */ public Builder lastTs(Long lastTs) { this.lastTs = lastTs; return this; } /** * <p>ModifyTs.</p> */ public Builder modifyTs(Long modifyTs) { this.modifyTs = modifyTs; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Necessity.</p> */ public Builder necessity(String necessity) { this.necessity = necessity; return this; } /** * <p>Online.</p> */ public Builder online(Boolean online) { this.online = online; return this; } /** * <p>OsVersion.</p> */ public Builder osVersion(String osVersion) { this.osVersion = osVersion; return this; } /** * <p>PrimaryId.</p> */ public Builder primaryId(Long primaryId) { this.primaryId = primaryId; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * <p>Related.</p> */ public Builder related(String related) { this.related = related; return this; } /** * <p>RepairTs.</p> */ public Builder repairTs(Long repairTs) { this.repairTs = repairTs; return this; } /** * <p>ResultCode.</p> */ public Builder resultCode(String resultCode) { this.resultCode = resultCode; return this; } /** * <p>ResultMessage.</p> */ public Builder resultMessage(String resultMessage) { this.resultMessage = resultMessage; return this; } /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } /** * <p>Tag.</p> */ public Builder tag(String tag) { this.tag = tag; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public VulRecords build() { return new VulRecords(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulWhitelistRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulWhitelistRequest} extends {@link RequestModel} * * <p>DescribeVulWhitelistRequest</p> */ public class DescribeVulWhitelistRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("PageSize") private Integer pageSize; private DescribeVulWhitelistRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeVulWhitelistRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private Integer pageSize; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } public DescribeVulWhitelistRequest build() { return new DescribeVulWhitelistRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulWhitelistResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulWhitelistResponse} extends {@link TeaModel} * * <p>DescribeVulWhitelistResponse</p> */ public class DescribeVulWhitelistResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeVulWhitelistResponseBody body; private DescribeVulWhitelistResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeVulWhitelistResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeVulWhitelistResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeVulWhitelistResponseBody body; private Builder() { super(); } private Builder(DescribeVulWhitelistResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeVulWhitelistResponseBody body) { this.body = body; return this; } public DescribeVulWhitelistResponse build() { return new DescribeVulWhitelistResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeVulWhitelistResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeVulWhitelistResponseBody} extends {@link TeaModel} * * <p>DescribeVulWhitelistResponseBody</p> */ public class DescribeVulWhitelistResponseBody extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; @NameInMap("VulWhitelists") private java.util.List < VulWhitelists> vulWhitelists; private DescribeVulWhitelistResponseBody(Builder builder) { this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; this.vulWhitelists = builder.vulWhitelists; } public static Builder builder() { return new Builder(); } public static DescribeVulWhitelistResponseBody create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } /** * @return vulWhitelists */ public java.util.List < VulWhitelists> getVulWhitelists() { return this.vulWhitelists; } public static final class Builder { private Integer currentPage; private Integer pageSize; private String requestId; private Integer totalCount; private java.util.List < VulWhitelists> vulWhitelists; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } /** * <p>VulWhitelists.</p> */ public Builder vulWhitelists(java.util.List < VulWhitelists> vulWhitelists) { this.vulWhitelists = vulWhitelists; return this; } public DescribeVulWhitelistResponseBody build() { return new DescribeVulWhitelistResponseBody(this); } } public static class VulWhitelists extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("Id") private String id; @NameInMap("Name") private String name; @NameInMap("Reason") private String reason; @NameInMap("TargetInfo") private String targetInfo; @NameInMap("Type") private String type; private VulWhitelists(Builder builder) { this.aliasName = builder.aliasName; this.id = builder.id; this.name = builder.name; this.reason = builder.reason; this.targetInfo = builder.targetInfo; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static VulWhitelists create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return id */ public String getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return reason */ public String getReason() { return this.reason; } /** * @return targetInfo */ public String getTargetInfo() { return this.targetInfo; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String aliasName; private String id; private String name; private String reason; private String targetInfo; private String type; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; return this; } /** * <p>Id.</p> */ public Builder id(String id) { this.id = id; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Reason.</p> */ public Builder reason(String reason) { this.reason = reason; return this; } /** * <p>TargetInfo.</p> */ public Builder targetInfo(String targetInfo) { this.targetInfo = targetInfo; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } public VulWhitelists build() { return new VulWhitelists(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWarningMachinesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWarningMachinesRequest} extends {@link RequestModel} * * <p>DescribeWarningMachinesRequest</p> */ public class DescribeWarningMachinesRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("MachineName") private String machineName; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("RiskId") private Long riskId; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("StrategyId") private Long strategyId; @Query @NameInMap("Uuids") private String uuids; private DescribeWarningMachinesRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.lang = builder.lang; this.machineName = builder.machineName; this.pageSize = builder.pageSize; this.riskId = builder.riskId; this.sourceIp = builder.sourceIp; this.strategyId = builder.strategyId; this.uuids = builder.uuids; } public static Builder builder() { return new Builder(); } public static DescribeWarningMachinesRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return machineName */ public String getMachineName() { return this.machineName; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return riskId */ public Long getRiskId() { return this.riskId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return strategyId */ public Long getStrategyId() { return this.strategyId; } /** * @return uuids */ public String getUuids() { return this.uuids; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String lang; private String machineName; private Integer pageSize; private Long riskId; private String sourceIp; private Long strategyId; private String uuids; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>MachineName.</p> */ public Builder machineName(String machineName) { this.putQueryParameter("MachineName", machineName); this.machineName = machineName; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>RiskId.</p> */ public Builder riskId(Long riskId) { this.putQueryParameter("RiskId", riskId); this.riskId = riskId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>StrategyId.</p> */ public Builder strategyId(Long strategyId) { this.putQueryParameter("StrategyId", strategyId); this.strategyId = strategyId; return this; } /** * <p>Uuids.</p> */ public Builder uuids(String uuids) { this.putQueryParameter("Uuids", uuids); this.uuids = uuids; return this; } public DescribeWarningMachinesRequest build() { return new DescribeWarningMachinesRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWarningMachinesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWarningMachinesResponse} extends {@link TeaModel} * * <p>DescribeWarningMachinesResponse</p> */ public class DescribeWarningMachinesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeWarningMachinesResponseBody body; private DescribeWarningMachinesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeWarningMachinesResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeWarningMachinesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeWarningMachinesResponseBody body; private Builder() { super(); } private Builder(DescribeWarningMachinesResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeWarningMachinesResponseBody body) { this.body = body; return this; } public DescribeWarningMachinesResponse build() { return new DescribeWarningMachinesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWarningMachinesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWarningMachinesResponseBody} extends {@link TeaModel} * * <p>DescribeWarningMachinesResponseBody</p> */ public class DescribeWarningMachinesResponseBody extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; @NameInMap("WarningMachines") private java.util.List < WarningMachines> warningMachines; private DescribeWarningMachinesResponseBody(Builder builder) { this.count = builder.count; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; this.warningMachines = builder.warningMachines; } public static Builder builder() { return new Builder(); } public static DescribeWarningMachinesResponseBody create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } /** * @return warningMachines */ public java.util.List < WarningMachines> getWarningMachines() { return this.warningMachines; } public static final class Builder { private Integer count; private Integer currentPage; private Integer pageSize; private String requestId; private Integer totalCount; private java.util.List < WarningMachines> warningMachines; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } /** * <p>WarningMachines.</p> */ public Builder warningMachines(java.util.List < WarningMachines> warningMachines) { this.warningMachines = warningMachines; return this; } public DescribeWarningMachinesResponseBody build() { return new DescribeWarningMachinesResponseBody(this); } } public static class WarningMachines extends TeaModel { @NameInMap("HighWarningCount") private Integer highWarningCount; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("LowWarningCount") private Integer lowWarningCount; @NameInMap("MediumWarningCount") private Integer mediumWarningCount; @NameInMap("PassCount") private Integer passCount; @NameInMap("PortOpen") private Boolean portOpen; @NameInMap("RegionId") private String regionId; @NameInMap("Status") private Integer status; @NameInMap("Uuid") private String uuid; private WarningMachines(Builder builder) { this.highWarningCount = builder.highWarningCount; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.lowWarningCount = builder.lowWarningCount; this.mediumWarningCount = builder.mediumWarningCount; this.passCount = builder.passCount; this.portOpen = builder.portOpen; this.regionId = builder.regionId; this.status = builder.status; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static WarningMachines create() { return builder().build(); } /** * @return highWarningCount */ public Integer getHighWarningCount() { return this.highWarningCount; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return internetIp */ public String getInternetIp() { return this.internetIp; } /** * @return intranetIp */ public String getIntranetIp() { return this.intranetIp; } /** * @return lowWarningCount */ public Integer getLowWarningCount() { return this.lowWarningCount; } /** * @return mediumWarningCount */ public Integer getMediumWarningCount() { return this.mediumWarningCount; } /** * @return passCount */ public Integer getPassCount() { return this.passCount; } /** * @return portOpen */ public Boolean getPortOpen() { return this.portOpen; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private Integer highWarningCount; private String instanceId; private String instanceName; private String internetIp; private String intranetIp; private Integer lowWarningCount; private Integer mediumWarningCount; private Integer passCount; private Boolean portOpen; private String regionId; private Integer status; private String uuid; /** * <p>HighWarningCount.</p> */ public Builder highWarningCount(Integer highWarningCount) { this.highWarningCount = highWarningCount; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>InternetIp.</p> */ public Builder internetIp(String internetIp) { this.internetIp = internetIp; return this; } /** * <p>IntranetIp.</p> */ public Builder intranetIp(String intranetIp) { this.intranetIp = intranetIp; return this; } /** * <p>LowWarningCount.</p> */ public Builder lowWarningCount(Integer lowWarningCount) { this.lowWarningCount = lowWarningCount; return this; } /** * <p>MediumWarningCount.</p> */ public Builder mediumWarningCount(Integer mediumWarningCount) { this.mediumWarningCount = mediumWarningCount; return this; } /** * <p>PassCount.</p> */ public Builder passCount(Integer passCount) { this.passCount = passCount; return this; } /** * <p>PortOpen.</p> */ public Builder portOpen(Boolean portOpen) { this.portOpen = portOpen; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public WarningMachines build() { return new WarningMachines(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWebLockBindListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWebLockBindListRequest} extends {@link RequestModel} * * <p>DescribeWebLockBindListRequest</p> */ public class DescribeWebLockBindListRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("Remark") private String remark; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Status") private String status; private DescribeWebLockBindListRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.lang = builder.lang; this.pageSize = builder.pageSize; this.remark = builder.remark; this.sourceIp = builder.sourceIp; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static DescribeWebLockBindListRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return remark */ public String getRemark() { return this.remark; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String lang; private Integer pageSize; private String remark; private String sourceIp; private String status; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>Remark.</p> */ public Builder remark(String remark) { this.putQueryParameter("Remark", remark); this.remark = remark; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } public DescribeWebLockBindListRequest build() { return new DescribeWebLockBindListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWebLockBindListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWebLockBindListResponse} extends {@link TeaModel} * * <p>DescribeWebLockBindListResponse</p> */ public class DescribeWebLockBindListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeWebLockBindListResponseBody body; private DescribeWebLockBindListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeWebLockBindListResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeWebLockBindListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeWebLockBindListResponseBody body; private Builder() { super(); } private Builder(DescribeWebLockBindListResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeWebLockBindListResponseBody body) { this.body = body; return this; } public DescribeWebLockBindListResponse build() { return new DescribeWebLockBindListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWebLockBindListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWebLockBindListResponseBody} extends {@link TeaModel} * * <p>DescribeWebLockBindListResponseBody</p> */ public class DescribeWebLockBindListResponseBody extends TeaModel { @NameInMap("BindList") private java.util.List < BindList> bindList; @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeWebLockBindListResponseBody(Builder builder) { this.bindList = builder.bindList; this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeWebLockBindListResponseBody create() { return builder().build(); } /** * @return bindList */ public java.util.List < BindList> getBindList() { return this.bindList; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private java.util.List < BindList> bindList; private Integer currentPage; private Integer pageSize; private String requestId; private Integer totalCount; /** * <p>BindList.</p> */ public Builder bindList(java.util.List < BindList> bindList) { this.bindList = bindList; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeWebLockBindListResponseBody build() { return new DescribeWebLockBindListResponseBody(this); } } public static class BindList extends TeaModel { @NameInMap("AuditCount") private String auditCount; @NameInMap("BlockCount") private String blockCount; @NameInMap("DirCount") private String dirCount; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("Os") private String os; @NameInMap("Percent") private Integer percent; @NameInMap("ServiceCode") private String serviceCode; @NameInMap("ServiceDetail") private String serviceDetail; @NameInMap("ServiceStatus") private String serviceStatus; @NameInMap("Status") private String status; @NameInMap("Uuid") private String uuid; private BindList(Builder builder) { this.auditCount = builder.auditCount; this.blockCount = builder.blockCount; this.dirCount = builder.dirCount; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.os = builder.os; this.percent = builder.percent; this.serviceCode = builder.serviceCode; this.serviceDetail = builder.serviceDetail; this.serviceStatus = builder.serviceStatus; this.status = builder.status; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static BindList create() { return builder().build(); } /** * @return auditCount */ public String getAuditCount() { return this.auditCount; } /** * @return blockCount */ public String getBlockCount() { return this.blockCount; } /** * @return dirCount */ public String getDirCount() { return this.dirCount; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return internetIp */ public String getInternetIp() { return this.internetIp; } /** * @return intranetIp */ public String getIntranetIp() { return this.intranetIp; } /** * @return os */ public String getOs() { return this.os; } /** * @return percent */ public Integer getPercent() { return this.percent; } /** * @return serviceCode */ public String getServiceCode() { return this.serviceCode; } /** * @return serviceDetail */ public String getServiceDetail() { return this.serviceDetail; } /** * @return serviceStatus */ public String getServiceStatus() { return this.serviceStatus; } /** * @return status */ public String getStatus() { return this.status; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private String auditCount; private String blockCount; private String dirCount; private String instanceName; private String internetIp; private String intranetIp; private String os; private Integer percent; private String serviceCode; private String serviceDetail; private String serviceStatus; private String status; private String uuid; /** * <p>AuditCount.</p> */ public Builder auditCount(String auditCount) { this.auditCount = auditCount; return this; } /** * <p>BlockCount.</p> */ public Builder blockCount(String blockCount) { this.blockCount = blockCount; return this; } /** * <p>DirCount.</p> */ public Builder dirCount(String dirCount) { this.dirCount = dirCount; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.instanceName = instanceName; return this; } /** * <p>InternetIp.</p> */ public Builder internetIp(String internetIp) { this.internetIp = internetIp; return this; } /** * <p>IntranetIp.</p> */ public Builder intranetIp(String intranetIp) { this.intranetIp = intranetIp; return this; } /** * <p>Os.</p> */ public Builder os(String os) { this.os = os; return this; } /** * <p>Percent.</p> */ public Builder percent(Integer percent) { this.percent = percent; return this; } /** * <p>ServiceCode.</p> */ public Builder serviceCode(String serviceCode) { this.serviceCode = serviceCode; return this; } /** * <p>ServiceDetail.</p> */ public Builder serviceDetail(String serviceDetail) { this.serviceDetail = serviceDetail; return this; } /** * <p>ServiceStatus.</p> */ public Builder serviceStatus(String serviceStatus) { this.serviceStatus = serviceStatus; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.status = status; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public BindList build() { return new BindList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWebLockConfigListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWebLockConfigListRequest} extends {@link RequestModel} * * <p>DescribeWebLockConfigListRequest</p> */ public class DescribeWebLockConfigListRequest extends Request { @Query @NameInMap("Lang") private String lang; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Uuid") private String uuid; private DescribeWebLockConfigListRequest(Builder builder) { super(builder); this.lang = builder.lang; this.sourceIp = builder.sourceIp; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static DescribeWebLockConfigListRequest create() { return builder().build(); } /** * @return lang */ public String getLang() { return this.lang; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder extends Request.Builder<Builder> { private String lang; private String sourceIp; private String uuid; /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.putQueryParameter("Uuid", uuid); this.uuid = uuid; return this; } public DescribeWebLockConfigListRequest build() { return new DescribeWebLockConfigListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWebLockConfigListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWebLockConfigListResponse} extends {@link TeaModel} * * <p>DescribeWebLockConfigListResponse</p> */ public class DescribeWebLockConfigListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeWebLockConfigListResponseBody body; private DescribeWebLockConfigListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeWebLockConfigListResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public DescribeWebLockConfigListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeWebLockConfigListResponseBody body; private Builder() { super(); } private Builder(DescribeWebLockConfigListResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(DescribeWebLockConfigListResponseBody body) { this.body = body; return this; } public DescribeWebLockConfigListResponse build() { return new DescribeWebLockConfigListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/DescribeWebLockConfigListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link DescribeWebLockConfigListResponseBody} extends {@link TeaModel} * * <p>DescribeWebLockConfigListResponseBody</p> */ public class DescribeWebLockConfigListResponseBody extends TeaModel { @NameInMap("ConfigList") private java.util.List < ConfigList> configList; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeWebLockConfigListResponseBody(Builder builder) { this.configList = builder.configList; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeWebLockConfigListResponseBody create() { return builder().build(); } /** * @return configList */ public java.util.List < ConfigList> getConfigList() { return this.configList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private java.util.List < ConfigList> configList; private String requestId; private Integer totalCount; /** * <p>ConfigList.</p> */ public Builder configList(java.util.List < ConfigList> configList) { this.configList = configList; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeWebLockConfigListResponseBody build() { return new DescribeWebLockConfigListResponseBody(this); } } public static class ConfigList extends TeaModel { @NameInMap("DefenceMode") private String defenceMode; @NameInMap("Dir") private String dir; @NameInMap("ExclusiveDir") private String exclusiveDir; @NameInMap("ExclusiveFile") private String exclusiveFile; @NameInMap("ExclusiveFileType") private String exclusiveFileType; @NameInMap("Id") private String id; @NameInMap("InclusiveFile") private String inclusiveFile; @NameInMap("InclusiveFileType") private String inclusiveFileType; @NameInMap("LocalBackupDir") private String localBackupDir; @NameInMap("Mode") private String mode; @NameInMap("Uuid") private String uuid; private ConfigList(Builder builder) { this.defenceMode = builder.defenceMode; this.dir = builder.dir; this.exclusiveDir = builder.exclusiveDir; this.exclusiveFile = builder.exclusiveFile; this.exclusiveFileType = builder.exclusiveFileType; this.id = builder.id; this.inclusiveFile = builder.inclusiveFile; this.inclusiveFileType = builder.inclusiveFileType; this.localBackupDir = builder.localBackupDir; this.mode = builder.mode; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static ConfigList create() { return builder().build(); } /** * @return defenceMode */ public String getDefenceMode() { return this.defenceMode; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return exclusiveDir */ public String getExclusiveDir() { return this.exclusiveDir; } /** * @return exclusiveFile */ public String getExclusiveFile() { return this.exclusiveFile; } /** * @return exclusiveFileType */ public String getExclusiveFileType() { return this.exclusiveFileType; } /** * @return id */ public String getId() { return this.id; } /** * @return inclusiveFile */ public String getInclusiveFile() { return this.inclusiveFile; } /** * @return inclusiveFileType */ public String getInclusiveFileType() { return this.inclusiveFileType; } /** * @return localBackupDir */ public String getLocalBackupDir() { return this.localBackupDir; } /** * @return mode */ public String getMode() { return this.mode; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private String defenceMode; private String dir; private String exclusiveDir; private String exclusiveFile; private String exclusiveFileType; private String id; private String inclusiveFile; private String inclusiveFileType; private String localBackupDir; private String mode; private String uuid; /** * <p>DefenceMode.</p> */ public Builder defenceMode(String defenceMode) { this.defenceMode = defenceMode; return this; } /** * <p>Dir.</p> */ public Builder dir(String dir) { this.dir = dir; return this; } /** * <p>ExclusiveDir.</p> */ public Builder exclusiveDir(String exclusiveDir) { this.exclusiveDir = exclusiveDir; return this; } /** * <p>ExclusiveFile.</p> */ public Builder exclusiveFile(String exclusiveFile) { this.exclusiveFile = exclusiveFile; return this; } /** * <p>ExclusiveFileType.</p> */ public Builder exclusiveFileType(String exclusiveFileType) { this.exclusiveFileType = exclusiveFileType; return this; } /** * <p>Id.</p> */ public Builder id(String id) { this.id = id; return this; } /** * <p>InclusiveFile.</p> */ public Builder inclusiveFile(String inclusiveFile) { this.inclusiveFile = inclusiveFile; return this; } /** * <p>InclusiveFileType.</p> */ public Builder inclusiveFileType(String inclusiveFileType) { this.inclusiveFileType = inclusiveFileType; return this; } /** * <p>LocalBackupDir.</p> */ public Builder localBackupDir(String localBackupDir) { this.localBackupDir = localBackupDir; return this; } /** * <p>Mode.</p> */ public Builder mode(String mode) { this.mode = mode; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public ConfigList build() { return new ConfigList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportRecordRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportRecordRequest} extends {@link RequestModel} * * <p>ExportRecordRequest</p> */ public class ExportRecordRequest extends Request { @Query @NameInMap("ExportType") private String exportType; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Params") private String params; private ExportRecordRequest(Builder builder) { super(builder); this.exportType = builder.exportType; this.lang = builder.lang; this.params = builder.params; } public static Builder builder() { return new Builder(); } public static ExportRecordRequest create() { return builder().build(); } /** * @return exportType */ public String getExportType() { return this.exportType; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return params */ public String getParams() { return this.params; } public static final class Builder extends Request.Builder<Builder> { private String exportType; private String lang; private String params; /** * <p>ExportType.</p> */ public Builder exportType(String exportType) { this.putQueryParameter("ExportType", exportType); this.exportType = exportType; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Params.</p> */ public Builder params(String params) { this.putQueryParameter("Params", params); this.params = params; return this; } public ExportRecordRequest build() { return new ExportRecordRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportRecordResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportRecordResponse} extends {@link TeaModel} * * <p>ExportRecordResponse</p> */ public class ExportRecordResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private ExportRecordResponseBody body; private ExportRecordResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static ExportRecordResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public ExportRecordResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private ExportRecordResponseBody body; private Builder() { super(); } private Builder(ExportRecordResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(ExportRecordResponseBody body) { this.body = body; return this; } public ExportRecordResponse build() { return new ExportRecordResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportRecordResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportRecordResponseBody} extends {@link TeaModel} * * <p>ExportRecordResponseBody</p> */ public class ExportRecordResponseBody extends TeaModel { @NameInMap("FileName") private String fileName; @NameInMap("Id") private Long id; @NameInMap("RequestId") private String requestId; private ExportRecordResponseBody(Builder builder) { this.fileName = builder.fileName; this.id = builder.id; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static ExportRecordResponseBody create() { return builder().build(); } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return id */ public Long getId() { return this.id; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String fileName; private Long id; private String requestId; /** * <p>FileName.</p> */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * <p>Id.</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public ExportRecordResponseBody build() { return new ExportRecordResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportSuspEventsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportSuspEventsRequest} extends {@link RequestModel} * * <p>ExportSuspEventsRequest</p> */ public class ExportSuspEventsRequest extends Request { @Query @NameInMap("ClusterId") private String clusterId; @Query @NameInMap("ContainerFieldName") private String containerFieldName; @Query @NameInMap("ContainerFieldValue") private String containerFieldValue; @Query @NameInMap("Dealed") private String dealed; @Query @NameInMap("From") private String from; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Levels") private String levels; @Query @NameInMap("Name") private String name; @Query @NameInMap("ParentEventTypes") private String parentEventTypes; @Query @NameInMap("Remark") private String remark; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Status") private String status; @Query @NameInMap("TargetType") private String targetType; @Query @NameInMap("TimeEnd") private String timeEnd; @Query @NameInMap("TimeStart") private String timeStart; private ExportSuspEventsRequest(Builder builder) { super(builder); this.clusterId = builder.clusterId; this.containerFieldName = builder.containerFieldName; this.containerFieldValue = builder.containerFieldValue; this.dealed = builder.dealed; this.from = builder.from; this.lang = builder.lang; this.levels = builder.levels; this.name = builder.name; this.parentEventTypes = builder.parentEventTypes; this.remark = builder.remark; this.sourceIp = builder.sourceIp; this.status = builder.status; this.targetType = builder.targetType; this.timeEnd = builder.timeEnd; this.timeStart = builder.timeStart; } public static Builder builder() { return new Builder(); } public static ExportSuspEventsRequest create() { return builder().build(); } /** * @return clusterId */ public String getClusterId() { return this.clusterId; } /** * @return containerFieldName */ public String getContainerFieldName() { return this.containerFieldName; } /** * @return containerFieldValue */ public String getContainerFieldValue() { return this.containerFieldValue; } /** * @return dealed */ public String getDealed() { return this.dealed; } /** * @return from */ public String getFrom() { return this.from; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return levels */ public String getLevels() { return this.levels; } /** * @return name */ public String getName() { return this.name; } /** * @return parentEventTypes */ public String getParentEventTypes() { return this.parentEventTypes; } /** * @return remark */ public String getRemark() { return this.remark; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return status */ public String getStatus() { return this.status; } /** * @return targetType */ public String getTargetType() { return this.targetType; } /** * @return timeEnd */ public String getTimeEnd() { return this.timeEnd; } /** * @return timeStart */ public String getTimeStart() { return this.timeStart; } public static final class Builder extends Request.Builder<Builder> { private String clusterId; private String containerFieldName; private String containerFieldValue; private String dealed; private String from; private String lang; private String levels; private String name; private String parentEventTypes; private String remark; private String sourceIp; private String status; private String targetType; private String timeEnd; private String timeStart; /** * <p>ClusterId.</p> */ public Builder clusterId(String clusterId) { this.putQueryParameter("ClusterId", clusterId); this.clusterId = clusterId; return this; } /** * <p>ContainerFieldName.</p> */ public Builder containerFieldName(String containerFieldName) { this.putQueryParameter("ContainerFieldName", containerFieldName); this.containerFieldName = containerFieldName; return this; } /** * <p>ContainerFieldValue.</p> */ public Builder containerFieldValue(String containerFieldValue) { this.putQueryParameter("ContainerFieldValue", containerFieldValue); this.containerFieldValue = containerFieldValue; return this; } /** * <p>Dealed.</p> */ public Builder dealed(String dealed) { this.putQueryParameter("Dealed", dealed); this.dealed = dealed; return this; } /** * <p>From.</p> */ public Builder from(String from) { this.putQueryParameter("From", from); this.from = from; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Levels.</p> */ public Builder levels(String levels) { this.putQueryParameter("Levels", levels); this.levels = levels; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.putQueryParameter("Name", name); this.name = name; return this; } /** * <p>ParentEventTypes.</p> */ public Builder parentEventTypes(String parentEventTypes) { this.putQueryParameter("ParentEventTypes", parentEventTypes); this.parentEventTypes = parentEventTypes; return this; } /** * <p>Remark.</p> */ public Builder remark(String remark) { this.putQueryParameter("Remark", remark); this.remark = remark; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } /** * <p>TargetType.</p> */ public Builder targetType(String targetType) { this.putQueryParameter("TargetType", targetType); this.targetType = targetType; return this; } /** * <p>TimeEnd.</p> */ public Builder timeEnd(String timeEnd) { this.putQueryParameter("TimeEnd", timeEnd); this.timeEnd = timeEnd; return this; } /** * <p>TimeStart.</p> */ public Builder timeStart(String timeStart) { this.putQueryParameter("TimeStart", timeStart); this.timeStart = timeStart; return this; } public ExportSuspEventsRequest build() { return new ExportSuspEventsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportSuspEventsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportSuspEventsResponse} extends {@link TeaModel} * * <p>ExportSuspEventsResponse</p> */ public class ExportSuspEventsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private ExportSuspEventsResponseBody body; private ExportSuspEventsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static ExportSuspEventsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public ExportSuspEventsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private ExportSuspEventsResponseBody body; private Builder() { super(); } private Builder(ExportSuspEventsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(ExportSuspEventsResponseBody body) { this.body = body; return this; } public ExportSuspEventsResponse build() { return new ExportSuspEventsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportSuspEventsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportSuspEventsResponseBody} extends {@link TeaModel} * * <p>ExportSuspEventsResponseBody</p> */ public class ExportSuspEventsResponseBody extends TeaModel { @NameInMap("FileName") private Integer fileName; @NameInMap("Id") private Integer id; @NameInMap("RequestId") private String requestId; private ExportSuspEventsResponseBody(Builder builder) { this.fileName = builder.fileName; this.id = builder.id; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static ExportSuspEventsResponseBody create() { return builder().build(); } /** * @return fileName */ public Integer getFileName() { return this.fileName; } /** * @return id */ public Integer getId() { return this.id; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Integer fileName; private Integer id; private String requestId; /** * <p>FileName.</p> */ public Builder fileName(Integer fileName) { this.fileName = fileName; return this; } /** * <p>Id.</p> */ public Builder id(Integer id) { this.id = id; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public ExportSuspEventsResponseBody build() { return new ExportSuspEventsResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportVulRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportVulRequest} extends {@link RequestModel} * * <p>ExportVulRequest</p> */ public class ExportVulRequest extends Request { @Query @NameInMap("AliasName") private String aliasName; @Query @NameInMap("AttachTypes") private String attachTypes; @Query @NameInMap("Dealed") private String dealed; @Query @NameInMap("GroupId") private String groupId; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Necessity") private String necessity; @Query @NameInMap("SearchTags") private String searchTags; @Query @NameInMap("Type") private String type; @Query @NameInMap("Uuids") private String uuids; @Query @NameInMap("VpcInstanceIds") private String vpcInstanceIds; private ExportVulRequest(Builder builder) { super(builder); this.aliasName = builder.aliasName; this.attachTypes = builder.attachTypes; this.dealed = builder.dealed; this.groupId = builder.groupId; this.lang = builder.lang; this.necessity = builder.necessity; this.searchTags = builder.searchTags; this.type = builder.type; this.uuids = builder.uuids; this.vpcInstanceIds = builder.vpcInstanceIds; } public static Builder builder() { return new Builder(); } public static ExportVulRequest create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return attachTypes */ public String getAttachTypes() { return this.attachTypes; } /** * @return dealed */ public String getDealed() { return this.dealed; } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return necessity */ public String getNecessity() { return this.necessity; } /** * @return searchTags */ public String getSearchTags() { return this.searchTags; } /** * @return type */ public String getType() { return this.type; } /** * @return uuids */ public String getUuids() { return this.uuids; } /** * @return vpcInstanceIds */ public String getVpcInstanceIds() { return this.vpcInstanceIds; } public static final class Builder extends Request.Builder<Builder> { private String aliasName; private String attachTypes; private String dealed; private String groupId; private String lang; private String necessity; private String searchTags; private String type; private String uuids; private String vpcInstanceIds; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.putQueryParameter("AliasName", aliasName); this.aliasName = aliasName; return this; } /** * <p>AttachTypes.</p> */ public Builder attachTypes(String attachTypes) { this.putQueryParameter("AttachTypes", attachTypes); this.attachTypes = attachTypes; return this; } /** * <p>Dealed.</p> */ public Builder dealed(String dealed) { this.putQueryParameter("Dealed", dealed); this.dealed = dealed; return this; } /** * <p>GroupId.</p> */ public Builder groupId(String groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>Necessity.</p> */ public Builder necessity(String necessity) { this.putQueryParameter("Necessity", necessity); this.necessity = necessity; return this; } /** * <p>SearchTags.</p> */ public Builder searchTags(String searchTags) { this.putQueryParameter("SearchTags", searchTags); this.searchTags = searchTags; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } /** * <p>Uuids.</p> */ public Builder uuids(String uuids) { this.putQueryParameter("Uuids", uuids); this.uuids = uuids; return this; } /** * <p>VpcInstanceIds.</p> */ public Builder vpcInstanceIds(String vpcInstanceIds) { this.putQueryParameter("VpcInstanceIds", vpcInstanceIds); this.vpcInstanceIds = vpcInstanceIds; return this; } public ExportVulRequest build() { return new ExportVulRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportVulResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportVulResponse} extends {@link TeaModel} * * <p>ExportVulResponse</p> */ public class ExportVulResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private ExportVulResponseBody body; private ExportVulResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static ExportVulResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public ExportVulResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private ExportVulResponseBody body; private Builder() { super(); } private Builder(ExportVulResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(ExportVulResponseBody body) { this.body = body; return this; } public ExportVulResponse build() { return new ExportVulResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportVulResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportVulResponseBody} extends {@link TeaModel} * * <p>ExportVulResponseBody</p> */ public class ExportVulResponseBody extends TeaModel { @NameInMap("FileName") private String fileName; @NameInMap("Id") private Long id; @NameInMap("RequestId") private String requestId; private ExportVulResponseBody(Builder builder) { this.fileName = builder.fileName; this.id = builder.id; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static ExportVulResponseBody create() { return builder().build(); } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return id */ public Long getId() { return this.id; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String fileName; private Long id; private String requestId; /** * <p>FileName.</p> */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * <p>Id.</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public ExportVulResponseBody build() { return new ExportVulResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportWarningRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportWarningRequest} extends {@link RequestModel} * * <p>ExportWarningRequest</p> */ public class ExportWarningRequest extends Request { @Query @NameInMap("Dealed") private String dealed; @Query @NameInMap("ExportType") private String exportType; @Query @NameInMap("IsCleartextPwd") private Integer isCleartextPwd; @Query @NameInMap("IsSummaryExport") private Integer isSummaryExport; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("RiskIds") private String riskIds; @Query @NameInMap("RiskLevels") private String riskLevels; @Query @NameInMap("RiskName") private String riskName; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("StatusList") private String statusList; @Query @NameInMap("StrategyId") private Long strategyId; @Query @NameInMap("SubTypeNames") private String subTypeNames; @Query @NameInMap("TypeName") private String typeName; @Query @NameInMap("TypeNames") private String typeNames; @Query @NameInMap("Uuids") private String uuids; private ExportWarningRequest(Builder builder) { super(builder); this.dealed = builder.dealed; this.exportType = builder.exportType; this.isCleartextPwd = builder.isCleartextPwd; this.isSummaryExport = builder.isSummaryExport; this.lang = builder.lang; this.riskIds = builder.riskIds; this.riskLevels = builder.riskLevels; this.riskName = builder.riskName; this.sourceIp = builder.sourceIp; this.statusList = builder.statusList; this.strategyId = builder.strategyId; this.subTypeNames = builder.subTypeNames; this.typeName = builder.typeName; this.typeNames = builder.typeNames; this.uuids = builder.uuids; } public static Builder builder() { return new Builder(); } public static ExportWarningRequest create() { return builder().build(); } /** * @return dealed */ public String getDealed() { return this.dealed; } /** * @return exportType */ public String getExportType() { return this.exportType; } /** * @return isCleartextPwd */ public Integer getIsCleartextPwd() { return this.isCleartextPwd; } /** * @return isSummaryExport */ public Integer getIsSummaryExport() { return this.isSummaryExport; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return riskIds */ public String getRiskIds() { return this.riskIds; } /** * @return riskLevels */ public String getRiskLevels() { return this.riskLevels; } /** * @return riskName */ public String getRiskName() { return this.riskName; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return statusList */ public String getStatusList() { return this.statusList; } /** * @return strategyId */ public Long getStrategyId() { return this.strategyId; } /** * @return subTypeNames */ public String getSubTypeNames() { return this.subTypeNames; } /** * @return typeName */ public String getTypeName() { return this.typeName; } /** * @return typeNames */ public String getTypeNames() { return this.typeNames; } /** * @return uuids */ public String getUuids() { return this.uuids; } public static final class Builder extends Request.Builder<Builder> { private String dealed; private String exportType; private Integer isCleartextPwd; private Integer isSummaryExport; private String lang; private String riskIds; private String riskLevels; private String riskName; private String sourceIp; private String statusList; private Long strategyId; private String subTypeNames; private String typeName; private String typeNames; private String uuids; /** * <p>Dealed.</p> */ public Builder dealed(String dealed) { this.putQueryParameter("Dealed", dealed); this.dealed = dealed; return this; } /** * <p>ExportType.</p> */ public Builder exportType(String exportType) { this.putQueryParameter("ExportType", exportType); this.exportType = exportType; return this; } /** * <p>IsCleartextPwd.</p> */ public Builder isCleartextPwd(Integer isCleartextPwd) { this.putQueryParameter("IsCleartextPwd", isCleartextPwd); this.isCleartextPwd = isCleartextPwd; return this; } /** * <p>IsSummaryExport.</p> */ public Builder isSummaryExport(Integer isSummaryExport) { this.putQueryParameter("IsSummaryExport", isSummaryExport); this.isSummaryExport = isSummaryExport; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>RiskIds.</p> */ public Builder riskIds(String riskIds) { this.putQueryParameter("RiskIds", riskIds); this.riskIds = riskIds; return this; } /** * <p>RiskLevels.</p> */ public Builder riskLevels(String riskLevels) { this.putQueryParameter("RiskLevels", riskLevels); this.riskLevels = riskLevels; return this; } /** * <p>RiskName.</p> */ public Builder riskName(String riskName) { this.putQueryParameter("RiskName", riskName); this.riskName = riskName; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>StatusList.</p> */ public Builder statusList(String statusList) { this.putQueryParameter("StatusList", statusList); this.statusList = statusList; return this; } /** * <p>StrategyId.</p> */ public Builder strategyId(Long strategyId) { this.putQueryParameter("StrategyId", strategyId); this.strategyId = strategyId; return this; } /** * <p>SubTypeNames.</p> */ public Builder subTypeNames(String subTypeNames) { this.putQueryParameter("SubTypeNames", subTypeNames); this.subTypeNames = subTypeNames; return this; } /** * <p>TypeName.</p> */ public Builder typeName(String typeName) { this.putQueryParameter("TypeName", typeName); this.typeName = typeName; return this; } /** * <p>TypeNames.</p> */ public Builder typeNames(String typeNames) { this.putQueryParameter("TypeNames", typeNames); this.typeNames = typeNames; return this; } /** * <p>Uuids.</p> */ public Builder uuids(String uuids) { this.putQueryParameter("Uuids", uuids); this.uuids = uuids; return this; } public ExportWarningRequest build() { return new ExportWarningRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportWarningResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportWarningResponse} extends {@link TeaModel} * * <p>ExportWarningResponse</p> */ public class ExportWarningResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private ExportWarningResponseBody body; private ExportWarningResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static ExportWarningResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public ExportWarningResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private ExportWarningResponseBody body; private Builder() { super(); } private Builder(ExportWarningResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(ExportWarningResponseBody body) { this.body = body; return this; } public ExportWarningResponse build() { return new ExportWarningResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/ExportWarningResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link ExportWarningResponseBody} extends {@link TeaModel} * * <p>ExportWarningResponseBody</p> */ public class ExportWarningResponseBody extends TeaModel { @NameInMap("FileName") private String fileName; @NameInMap("Id") private Long id; @NameInMap("RequestId") private String requestId; private ExportWarningResponseBody(Builder builder) { this.fileName = builder.fileName; this.id = builder.id; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static ExportWarningResponseBody create() { return builder().build(); } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return id */ public Long getId() { return this.id; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String fileName; private Long id; private String requestId; /** * <p>FileName.</p> */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * <p>Id.</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public ExportWarningResponseBody build() { return new ExportWarningResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/FixCheckWarningsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link FixCheckWarningsRequest} extends {@link RequestModel} * * <p>FixCheckWarningsRequest</p> */ public class FixCheckWarningsRequest extends Request { @Query @NameInMap("CheckParams") private String checkParams; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("RiskId") private Long riskId; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Uuids") private String uuids; private FixCheckWarningsRequest(Builder builder) { super(builder); this.checkParams = builder.checkParams; this.lang = builder.lang; this.riskId = builder.riskId; this.sourceIp = builder.sourceIp; this.uuids = builder.uuids; } public static Builder builder() { return new Builder(); } public static FixCheckWarningsRequest create() { return builder().build(); } /** * @return checkParams */ public String getCheckParams() { return this.checkParams; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return riskId */ public Long getRiskId() { return this.riskId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return uuids */ public String getUuids() { return this.uuids; } public static final class Builder extends Request.Builder<Builder> { private String checkParams; private String lang; private Long riskId; private String sourceIp; private String uuids; /** * <p>CheckParams.</p> */ public Builder checkParams(String checkParams) { this.putQueryParameter("CheckParams", checkParams); this.checkParams = checkParams; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>RiskId.</p> */ public Builder riskId(Long riskId) { this.putQueryParameter("RiskId", riskId); this.riskId = riskId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Uuids.</p> */ public Builder uuids(String uuids) { this.putQueryParameter("Uuids", uuids); this.uuids = uuids; return this; } public FixCheckWarningsRequest build() { return new FixCheckWarningsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/FixCheckWarningsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link FixCheckWarningsResponse} extends {@link TeaModel} * * <p>FixCheckWarningsResponse</p> */ public class FixCheckWarningsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private FixCheckWarningsResponseBody body; private FixCheckWarningsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static FixCheckWarningsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public FixCheckWarningsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private FixCheckWarningsResponseBody body; private Builder() { super(); } private Builder(FixCheckWarningsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(FixCheckWarningsResponseBody body) { this.body = body; return this; } public FixCheckWarningsResponse build() { return new FixCheckWarningsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/FixCheckWarningsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link FixCheckWarningsResponseBody} extends {@link TeaModel} * * <p>FixCheckWarningsResponseBody</p> */ public class FixCheckWarningsResponseBody extends TeaModel { @NameInMap("BatchId") private Long batchId; @NameInMap("RequestId") private String requestId; private FixCheckWarningsResponseBody(Builder builder) { this.batchId = builder.batchId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static FixCheckWarningsResponseBody create() { return builder().build(); } /** * @return batchId */ public Long getBatchId() { return this.batchId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Long batchId; private String requestId; /** * <p>BatchId.</p> */ public Builder batchId(Long batchId) { this.batchId = batchId; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public FixCheckWarningsResponseBody build() { return new FixCheckWarningsResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetBackupStorageCountRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetBackupStorageCountRequest} extends {@link RequestModel} * * <p>GetBackupStorageCountRequest</p> */ public class GetBackupStorageCountRequest extends Request { private GetBackupStorageCountRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static GetBackupStorageCountRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public GetBackupStorageCountRequest build() { return new GetBackupStorageCountRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetBackupStorageCountResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetBackupStorageCountResponse} extends {@link TeaModel} * * <p>GetBackupStorageCountResponse</p> */ public class GetBackupStorageCountResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private GetBackupStorageCountResponseBody body; private GetBackupStorageCountResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static GetBackupStorageCountResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public GetBackupStorageCountResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private GetBackupStorageCountResponseBody body; private Builder() { super(); } private Builder(GetBackupStorageCountResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(GetBackupStorageCountResponseBody body) { this.body = body; return this; } public GetBackupStorageCountResponse build() { return new GetBackupStorageCountResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetBackupStorageCountResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetBackupStorageCountResponseBody} extends {@link TeaModel} * * <p>GetBackupStorageCountResponseBody</p> */ public class GetBackupStorageCountResponseBody extends TeaModel { @NameInMap("BackupStorageCount") private BackupStorageCount backupStorageCount; @NameInMap("RequestId") private String requestId; private GetBackupStorageCountResponseBody(Builder builder) { this.backupStorageCount = builder.backupStorageCount; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static GetBackupStorageCountResponseBody create() { return builder().build(); } /** * @return backupStorageCount */ public BackupStorageCount getBackupStorageCount() { return this.backupStorageCount; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private BackupStorageCount backupStorageCount; private String requestId; /** * <p>BackupStorageCount.</p> */ public Builder backupStorageCount(BackupStorageCount backupStorageCount) { this.backupStorageCount = backupStorageCount; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public GetBackupStorageCountResponseBody build() { return new GetBackupStorageCountResponseBody(this); } } public static class BackupStorageCount extends TeaModel { @NameInMap("BuyStorageByte") private Long buyStorageByte; @NameInMap("EcsUsageStorageByte") private Long ecsUsageStorageByte; @NameInMap("Overflow") private Integer overflow; @NameInMap("UniUsageStorageByte") private Long uniUsageStorageByte; @NameInMap("UsageStorageByte") private Long usageStorageByte; private BackupStorageCount(Builder builder) { this.buyStorageByte = builder.buyStorageByte; this.ecsUsageStorageByte = builder.ecsUsageStorageByte; this.overflow = builder.overflow; this.uniUsageStorageByte = builder.uniUsageStorageByte; this.usageStorageByte = builder.usageStorageByte; } public static Builder builder() { return new Builder(); } public static BackupStorageCount create() { return builder().build(); } /** * @return buyStorageByte */ public Long getBuyStorageByte() { return this.buyStorageByte; } /** * @return ecsUsageStorageByte */ public Long getEcsUsageStorageByte() { return this.ecsUsageStorageByte; } /** * @return overflow */ public Integer getOverflow() { return this.overflow; } /** * @return uniUsageStorageByte */ public Long getUniUsageStorageByte() { return this.uniUsageStorageByte; } /** * @return usageStorageByte */ public Long getUsageStorageByte() { return this.usageStorageByte; } public static final class Builder { private Long buyStorageByte; private Long ecsUsageStorageByte; private Integer overflow; private Long uniUsageStorageByte; private Long usageStorageByte; /** * <p>BuyStorageByte.</p> */ public Builder buyStorageByte(Long buyStorageByte) { this.buyStorageByte = buyStorageByte; return this; } /** * <p>EcsUsageStorageByte.</p> */ public Builder ecsUsageStorageByte(Long ecsUsageStorageByte) { this.ecsUsageStorageByte = ecsUsageStorageByte; return this; } /** * <p>Overflow.</p> */ public Builder overflow(Integer overflow) { this.overflow = overflow; return this; } /** * <p>UniUsageStorageByte.</p> */ public Builder uniUsageStorageByte(Long uniUsageStorageByte) { this.uniUsageStorageByte = uniUsageStorageByte; return this; } /** * <p>UsageStorageByte.</p> */ public Builder usageStorageByte(Long usageStorageByte) { this.usageStorageByte = usageStorageByte; return this; } public BackupStorageCount build() { return new BackupStorageCount(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetSuspiciousStatisticsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetSuspiciousStatisticsRequest} extends {@link RequestModel} * * <p>GetSuspiciousStatisticsRequest</p> */ public class GetSuspiciousStatisticsRequest extends Request { @Query @NameInMap("GroupIdList") private String groupIdList; @Query @NameInMap("SourceIp") private String sourceIp; private GetSuspiciousStatisticsRequest(Builder builder) { super(builder); this.groupIdList = builder.groupIdList; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static GetSuspiciousStatisticsRequest create() { return builder().build(); } /** * @return groupIdList */ public String getGroupIdList() { return this.groupIdList; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String groupIdList; private String sourceIp; /** * <p>GroupIdList.</p> */ public Builder groupIdList(String groupIdList) { this.putQueryParameter("GroupIdList", groupIdList); this.groupIdList = groupIdList; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public GetSuspiciousStatisticsRequest build() { return new GetSuspiciousStatisticsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetSuspiciousStatisticsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetSuspiciousStatisticsResponse} extends {@link TeaModel} * * <p>GetSuspiciousStatisticsResponse</p> */ public class GetSuspiciousStatisticsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private GetSuspiciousStatisticsResponseBody body; private GetSuspiciousStatisticsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static GetSuspiciousStatisticsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public GetSuspiciousStatisticsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private GetSuspiciousStatisticsResponseBody body; private Builder() { super(); } private Builder(GetSuspiciousStatisticsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(GetSuspiciousStatisticsResponseBody body) { this.body = body; return this; } public GetSuspiciousStatisticsResponse build() { return new GetSuspiciousStatisticsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetSuspiciousStatisticsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetSuspiciousStatisticsResponseBody} extends {@link TeaModel} * * <p>GetSuspiciousStatisticsResponseBody</p> */ public class GetSuspiciousStatisticsResponseBody extends TeaModel { @NameInMap("RemindCount") private Integer remindCount; @NameInMap("RequestId") private String requestId; @NameInMap("SeriousCount") private Integer seriousCount; @NameInMap("SuspiciousCount") private Integer suspiciousCount; @NameInMap("TotalCount") private Integer totalCount; private GetSuspiciousStatisticsResponseBody(Builder builder) { this.remindCount = builder.remindCount; this.requestId = builder.requestId; this.seriousCount = builder.seriousCount; this.suspiciousCount = builder.suspiciousCount; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static GetSuspiciousStatisticsResponseBody create() { return builder().build(); } /** * @return remindCount */ public Integer getRemindCount() { return this.remindCount; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return seriousCount */ public Integer getSeriousCount() { return this.seriousCount; } /** * @return suspiciousCount */ public Integer getSuspiciousCount() { return this.suspiciousCount; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Integer remindCount; private String requestId; private Integer seriousCount; private Integer suspiciousCount; private Integer totalCount; /** * <p>RemindCount.</p> */ public Builder remindCount(Integer remindCount) { this.remindCount = remindCount; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>SeriousCount.</p> */ public Builder seriousCount(Integer seriousCount) { this.seriousCount = seriousCount; return this; } /** * <p>SuspiciousCount.</p> */ public Builder suspiciousCount(Integer suspiciousCount) { this.suspiciousCount = suspiciousCount; return this; } /** * <p>TotalCount.</p> */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public GetSuspiciousStatisticsResponseBody build() { return new GetSuspiciousStatisticsResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetVulStatisticsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetVulStatisticsRequest} extends {@link RequestModel} * * <p>GetVulStatisticsRequest</p> */ public class GetVulStatisticsRequest extends Request { @Query @NameInMap("GroupIdList") private String groupIdList; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("TypeList") private String typeList; private GetVulStatisticsRequest(Builder builder) { super(builder); this.groupIdList = builder.groupIdList; this.sourceIp = builder.sourceIp; this.typeList = builder.typeList; } public static Builder builder() { return new Builder(); } public static GetVulStatisticsRequest create() { return builder().build(); } /** * @return groupIdList */ public String getGroupIdList() { return this.groupIdList; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return typeList */ public String getTypeList() { return this.typeList; } public static final class Builder extends Request.Builder<Builder> { private String groupIdList; private String sourceIp; private String typeList; /** * <p>GroupIdList.</p> */ public Builder groupIdList(String groupIdList) { this.putQueryParameter("GroupIdList", groupIdList); this.groupIdList = groupIdList; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>TypeList.</p> */ public Builder typeList(String typeList) { this.putQueryParameter("TypeList", typeList); this.typeList = typeList; return this; } public GetVulStatisticsRequest build() { return new GetVulStatisticsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetVulStatisticsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetVulStatisticsResponse} extends {@link TeaModel} * * <p>GetVulStatisticsResponse</p> */ public class GetVulStatisticsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private GetVulStatisticsResponseBody body; private GetVulStatisticsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static GetVulStatisticsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public GetVulStatisticsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private GetVulStatisticsResponseBody body; private Builder() { super(); } private Builder(GetVulStatisticsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(GetVulStatisticsResponseBody body) { this.body = body; return this; } public GetVulStatisticsResponse build() { return new GetVulStatisticsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/GetVulStatisticsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link GetVulStatisticsResponseBody} extends {@link TeaModel} * * <p>GetVulStatisticsResponseBody</p> */ public class GetVulStatisticsResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("VulAsapSum") private Integer vulAsapSum; @NameInMap("VulLaterSum") private Integer vulLaterSum; @NameInMap("VulNntfSum") private Integer vulNntfSum; private GetVulStatisticsResponseBody(Builder builder) { this.requestId = builder.requestId; this.vulAsapSum = builder.vulAsapSum; this.vulLaterSum = builder.vulLaterSum; this.vulNntfSum = builder.vulNntfSum; } public static Builder builder() { return new Builder(); } public static GetVulStatisticsResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return vulAsapSum */ public Integer getVulAsapSum() { return this.vulAsapSum; } /** * @return vulLaterSum */ public Integer getVulLaterSum() { return this.vulLaterSum; } /** * @return vulNntfSum */ public Integer getVulNntfSum() { return this.vulNntfSum; } public static final class Builder { private String requestId; private Integer vulAsapSum; private Integer vulLaterSum; private Integer vulNntfSum; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>VulAsapSum.</p> */ public Builder vulAsapSum(Integer vulAsapSum) { this.vulAsapSum = vulAsapSum; return this; } /** * <p>VulLaterSum.</p> */ public Builder vulLaterSum(Integer vulLaterSum) { this.vulLaterSum = vulLaterSum; return this; } /** * <p>VulNntfSum.</p> */ public Builder vulNntfSum(Integer vulNntfSum) { this.vulNntfSum = vulNntfSum; return this; } public GetVulStatisticsResponseBody build() { return new GetVulStatisticsResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/HandleSecurityEventsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link HandleSecurityEventsRequest} extends {@link RequestModel} * * <p>HandleSecurityEventsRequest</p> */ public class HandleSecurityEventsRequest extends Request { @Query @NameInMap("MarkBatch") private String markBatch; @Query @NameInMap("MarkMissParam") private String markMissParam; @Query @NameInMap("OperationCode") private String operationCode; @Query @NameInMap("OperationParams") private String operationParams; @Query @NameInMap("SecurityEventIds") private java.util.List < String > securityEventIds; @Query @NameInMap("SourceIp") private String sourceIp; private HandleSecurityEventsRequest(Builder builder) { super(builder); this.markBatch = builder.markBatch; this.markMissParam = builder.markMissParam; this.operationCode = builder.operationCode; this.operationParams = builder.operationParams; this.securityEventIds = builder.securityEventIds; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static HandleSecurityEventsRequest create() { return builder().build(); } /** * @return markBatch */ public String getMarkBatch() { return this.markBatch; } /** * @return markMissParam */ public String getMarkMissParam() { return this.markMissParam; } /** * @return operationCode */ public String getOperationCode() { return this.operationCode; } /** * @return operationParams */ public String getOperationParams() { return this.operationParams; } /** * @return securityEventIds */ public java.util.List < String > getSecurityEventIds() { return this.securityEventIds; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String markBatch; private String markMissParam; private String operationCode; private String operationParams; private java.util.List < String > securityEventIds; private String sourceIp; /** * <p>MarkBatch.</p> */ public Builder markBatch(String markBatch) { this.putQueryParameter("MarkBatch", markBatch); this.markBatch = markBatch; return this; } /** * <p>MarkMissParam.</p> */ public Builder markMissParam(String markMissParam) { this.putQueryParameter("MarkMissParam", markMissParam); this.markMissParam = markMissParam; return this; } /** * <p>OperationCode.</p> */ public Builder operationCode(String operationCode) { this.putQueryParameter("OperationCode", operationCode); this.operationCode = operationCode; return this; } /** * <p>OperationParams.</p> */ public Builder operationParams(String operationParams) { this.putQueryParameter("OperationParams", operationParams); this.operationParams = operationParams; return this; } /** * <p>SecurityEventIds.</p> */ public Builder securityEventIds(java.util.List < String > securityEventIds) { this.putQueryParameter("SecurityEventIds", securityEventIds); this.securityEventIds = securityEventIds; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public HandleSecurityEventsRequest build() { return new HandleSecurityEventsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/HandleSecurityEventsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link HandleSecurityEventsResponse} extends {@link TeaModel} * * <p>HandleSecurityEventsResponse</p> */ public class HandleSecurityEventsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private HandleSecurityEventsResponseBody body; private HandleSecurityEventsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static HandleSecurityEventsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public HandleSecurityEventsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private HandleSecurityEventsResponseBody body; private Builder() { super(); } private Builder(HandleSecurityEventsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(HandleSecurityEventsResponseBody body) { this.body = body; return this; } public HandleSecurityEventsResponse build() { return new HandleSecurityEventsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/HandleSecurityEventsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link HandleSecurityEventsResponseBody} extends {@link TeaModel} * * <p>HandleSecurityEventsResponseBody</p> */ public class HandleSecurityEventsResponseBody extends TeaModel { @NameInMap("HandleSecurityEventsResponse") private HandleSecurityEventsResponse handleSecurityEventsResponse; @NameInMap("RequestId") private String requestId; private HandleSecurityEventsResponseBody(Builder builder) { this.handleSecurityEventsResponse = builder.handleSecurityEventsResponse; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static HandleSecurityEventsResponseBody create() { return builder().build(); } /** * @return handleSecurityEventsResponse */ public HandleSecurityEventsResponse getHandleSecurityEventsResponse() { return this.handleSecurityEventsResponse; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private HandleSecurityEventsResponse handleSecurityEventsResponse; private String requestId; /** * <p>HandleSecurityEventsResponse.</p> */ public Builder handleSecurityEventsResponse(HandleSecurityEventsResponse handleSecurityEventsResponse) { this.handleSecurityEventsResponse = handleSecurityEventsResponse; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public HandleSecurityEventsResponseBody build() { return new HandleSecurityEventsResponseBody(this); } } public static class HandleSecurityEventsResponse extends TeaModel { @NameInMap("TaskId") private Long taskId; private HandleSecurityEventsResponse(Builder builder) { this.taskId = builder.taskId; } public static Builder builder() { return new Builder(); } public static HandleSecurityEventsResponse create() { return builder().build(); } /** * @return taskId */ public Long getTaskId() { return this.taskId; } public static final class Builder { private Long taskId; /** * <p>TaskId.</p> */ public Builder taskId(Long taskId) { this.taskId = taskId; return this; } public HandleSecurityEventsResponse build() { return new HandleSecurityEventsResponse(this); } } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/HandleSimilarSecurityEventsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link HandleSimilarSecurityEventsRequest} extends {@link RequestModel} * * <p>HandleSimilarSecurityEventsRequest</p> */ public class HandleSimilarSecurityEventsRequest extends Request { @Query @NameInMap("MarkMissParam") private String markMissParam; @Query @NameInMap("OperationCode") private String operationCode; @Query @NameInMap("OperationParams") private String operationParams; @Query @NameInMap("ResourceOwnerId") private Long resourceOwnerId; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("TaskId") private Long taskId; private HandleSimilarSecurityEventsRequest(Builder builder) { super(builder); this.markMissParam = builder.markMissParam; this.operationCode = builder.operationCode; this.operationParams = builder.operationParams; this.resourceOwnerId = builder.resourceOwnerId; this.sourceIp = builder.sourceIp; this.taskId = builder.taskId; } public static Builder builder() { return new Builder(); } public static HandleSimilarSecurityEventsRequest create() { return builder().build(); } /** * @return markMissParam */ public String getMarkMissParam() { return this.markMissParam; } /** * @return operationCode */ public String getOperationCode() { return this.operationCode; } /** * @return operationParams */ public String getOperationParams() { return this.operationParams; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return taskId */ public Long getTaskId() { return this.taskId; } public static final class Builder extends Request.Builder<Builder> { private String markMissParam; private String operationCode; private String operationParams; private Long resourceOwnerId; private String sourceIp; private Long taskId; /** * <p>MarkMissParam.</p> */ public Builder markMissParam(String markMissParam) { this.putQueryParameter("MarkMissParam", markMissParam); this.markMissParam = markMissParam; return this; } /** * <p>OperationCode.</p> */ public Builder operationCode(String operationCode) { this.putQueryParameter("OperationCode", operationCode); this.operationCode = operationCode; return this; } /** * <p>OperationParams.</p> */ public Builder operationParams(String operationParams) { this.putQueryParameter("OperationParams", operationParams); this.operationParams = operationParams; return this; } /** * <p>ResourceOwnerId.</p> */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>TaskId.</p> */ public Builder taskId(Long taskId) { this.putQueryParameter("TaskId", taskId); this.taskId = taskId; return this; } public HandleSimilarSecurityEventsRequest build() { return new HandleSimilarSecurityEventsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/HandleSimilarSecurityEventsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link HandleSimilarSecurityEventsResponse} extends {@link TeaModel} * * <p>HandleSimilarSecurityEventsResponse</p> */ public class HandleSimilarSecurityEventsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private HandleSimilarSecurityEventsResponseBody body; private HandleSimilarSecurityEventsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static HandleSimilarSecurityEventsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public HandleSimilarSecurityEventsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private HandleSimilarSecurityEventsResponseBody body; private Builder() { super(); } private Builder(HandleSimilarSecurityEventsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(HandleSimilarSecurityEventsResponseBody body) { this.body = body; return this; } public HandleSimilarSecurityEventsResponse build() { return new HandleSimilarSecurityEventsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/HandleSimilarSecurityEventsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link HandleSimilarSecurityEventsResponseBody} extends {@link TeaModel} * * <p>HandleSimilarSecurityEventsResponseBody</p> */ public class HandleSimilarSecurityEventsResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; private HandleSimilarSecurityEventsResponseBody(Builder builder) { this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static HandleSimilarSecurityEventsResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String requestId; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public HandleSimilarSecurityEventsResponseBody build() { return new HandleSimilarSecurityEventsResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/IgnoreHcCheckWarningsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link IgnoreHcCheckWarningsRequest} extends {@link RequestModel} * * <p>IgnoreHcCheckWarningsRequest</p> */ public class IgnoreHcCheckWarningsRequest extends Request { @Query @NameInMap("CheckIds") private String checkIds; @Query @NameInMap("CheckWarningIds") private String checkWarningIds; @Query @NameInMap("Reason") private String reason; @Query @NameInMap("RiskId") private String riskId; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Type") private Long type; private IgnoreHcCheckWarningsRequest(Builder builder) { super(builder); this.checkIds = builder.checkIds; this.checkWarningIds = builder.checkWarningIds; this.reason = builder.reason; this.riskId = builder.riskId; this.sourceIp = builder.sourceIp; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static IgnoreHcCheckWarningsRequest create() { return builder().build(); } /** * @return checkIds */ public String getCheckIds() { return this.checkIds; } /** * @return checkWarningIds */ public String getCheckWarningIds() { return this.checkWarningIds; } /** * @return reason */ public String getReason() { return this.reason; } /** * @return riskId */ public String getRiskId() { return this.riskId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return type */ public Long getType() { return this.type; } public static final class Builder extends Request.Builder<Builder> { private String checkIds; private String checkWarningIds; private String reason; private String riskId; private String sourceIp; private Long type; /** * <p>CheckIds.</p> */ public Builder checkIds(String checkIds) { this.putQueryParameter("CheckIds", checkIds); this.checkIds = checkIds; return this; } /** * <p>CheckWarningIds.</p> */ public Builder checkWarningIds(String checkWarningIds) { this.putQueryParameter("CheckWarningIds", checkWarningIds); this.checkWarningIds = checkWarningIds; return this; } /** * <p>Reason.</p> */ public Builder reason(String reason) { this.putQueryParameter("Reason", reason); this.reason = reason; return this; } /** * <p>RiskId.</p> */ public Builder riskId(String riskId) { this.putQueryParameter("RiskId", riskId); this.riskId = riskId; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } /** * <p>Type.</p> */ public Builder type(Long type) { this.putQueryParameter("Type", type); this.type = type; return this; } public IgnoreHcCheckWarningsRequest build() { return new IgnoreHcCheckWarningsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203
java-sources/com/aliyun/alibabacloud-sas20181203-async/1.0.1-beta/com/aliyun/sas20181203/models/IgnoreHcCheckWarningsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sas20181203.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; /** * {@link IgnoreHcCheckWarningsResponse} extends {@link TeaModel} * * <p>IgnoreHcCheckWarningsResponse</p> */ public class IgnoreHcCheckWarningsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private IgnoreHcCheckWarningsResponseBody body; private IgnoreHcCheckWarningsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static IgnoreHcCheckWarningsResponse create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return body */ public IgnoreHcCheckWarningsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private IgnoreHcCheckWarningsResponseBody body; private Builder() { super(); } private Builder(IgnoreHcCheckWarningsResponse response) { super(response); this.headers = response.headers; this.body = response.body; } /** * <p>headers.</p> */ public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * <p>body.</p> */ public Builder body(IgnoreHcCheckWarningsResponseBody body) { this.body = body; return this; } public IgnoreHcCheckWarningsResponse build() { return new IgnoreHcCheckWarningsResponse(this); } } }