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/DescribeContainerTagsResponseBody.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 DescribeContainerTagsResponseBody} extends {@link TeaModel} * * <p>DescribeContainerTagsResponseBody</p> */ public class DescribeContainerTagsResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("TagValues") private java.util.List < String > tagValues; private DescribeContainerTagsResponseBody(Builder builder) { this.requestId = builder.requestId; this.tagValues = builder.tagValues; } public static Builder builder() { return new Builder(); } public static DescribeContainerTagsResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return tagValues */ public java.util.List < String > getTagValues() { return this.tagValues; } public static final class Builder { private String requestId; private java.util.List < String > tagValues; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>TagValues.</p> */ public Builder tagValues(java.util.List < String > tagValues) { this.tagValues = tagValues; return this; } public DescribeContainerTagsResponseBody build() { return new DescribeContainerTagsResponseBody(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/DescribeCriteriaRequest.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 DescribeCriteriaRequest} extends {@link RequestModel} * * <p>DescribeCriteriaRequest</p> */ public class DescribeCriteriaRequest extends Request { @Query @NameInMap("MachineTypes") private String machineTypes; @Query @NameInMap("SupportAutoTag") private Boolean supportAutoTag; @Query @NameInMap("Value") private String value; private DescribeCriteriaRequest(Builder builder) { super(builder); this.machineTypes = builder.machineTypes; this.supportAutoTag = builder.supportAutoTag; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static DescribeCriteriaRequest create() { return builder().build(); } /** * @return machineTypes */ public String getMachineTypes() { return this.machineTypes; } /** * @return supportAutoTag */ public Boolean getSupportAutoTag() { return this.supportAutoTag; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder extends Request.Builder<Builder> { private String machineTypes; private Boolean supportAutoTag; private String value; /** * <p>MachineTypes.</p> */ public Builder machineTypes(String machineTypes) { this.putQueryParameter("MachineTypes", machineTypes); this.machineTypes = machineTypes; return this; } /** * <p>SupportAutoTag.</p> */ public Builder supportAutoTag(Boolean supportAutoTag) { this.putQueryParameter("SupportAutoTag", supportAutoTag); this.supportAutoTag = supportAutoTag; return this; } /** * <p>Value.</p> */ public Builder value(String value) { this.putQueryParameter("Value", value); this.value = value; return this; } public DescribeCriteriaRequest build() { return new DescribeCriteriaRequest(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/DescribeCriteriaResponse.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 DescribeCriteriaResponse} extends {@link TeaModel} * * <p>DescribeCriteriaResponse</p> */ public class DescribeCriteriaResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeCriteriaResponseBody body; private DescribeCriteriaResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeCriteriaResponse 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 DescribeCriteriaResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeCriteriaResponseBody body; private Builder() { super(); } private Builder(DescribeCriteriaResponse 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(DescribeCriteriaResponseBody body) { this.body = body; return this; } public DescribeCriteriaResponse build() { return new DescribeCriteriaResponse(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/DescribeCriteriaResponseBody.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 DescribeCriteriaResponseBody} extends {@link TeaModel} * * <p>DescribeCriteriaResponseBody</p> */ public class DescribeCriteriaResponseBody extends TeaModel { @NameInMap("CriteriaList") private java.util.List < CriteriaList> criteriaList; @NameInMap("RequestId") private String requestId; private DescribeCriteriaResponseBody(Builder builder) { this.criteriaList = builder.criteriaList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeCriteriaResponseBody 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 DescribeCriteriaResponseBody build() { return new DescribeCriteriaResponseBody(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/DescribeDialogMessagesRequest.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 DescribeDialogMessagesRequest} extends {@link RequestModel} * * <p>DescribeDialogMessagesRequest</p> */ public class DescribeDialogMessagesRequest extends Request { @Query @NameInMap("SourceIp") private String sourceIp; private DescribeDialogMessagesRequest(Builder builder) { super(builder); this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeDialogMessagesRequest create() { return builder().build(); } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String sourceIp; /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeDialogMessagesRequest build() { return new DescribeDialogMessagesRequest(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/DescribeDialogMessagesResponse.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 DescribeDialogMessagesResponse} extends {@link TeaModel} * * <p>DescribeDialogMessagesResponse</p> */ public class DescribeDialogMessagesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeDialogMessagesResponseBody body; private DescribeDialogMessagesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeDialogMessagesResponse 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 DescribeDialogMessagesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeDialogMessagesResponseBody body; private Builder() { super(); } private Builder(DescribeDialogMessagesResponse 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(DescribeDialogMessagesResponseBody body) { this.body = body; return this; } public DescribeDialogMessagesResponse build() { return new DescribeDialogMessagesResponse(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/DescribeDialogMessagesResponseBody.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 DescribeDialogMessagesResponseBody} extends {@link TeaModel} * * <p>DescribeDialogMessagesResponseBody</p> */ public class DescribeDialogMessagesResponseBody extends TeaModel { @NameInMap("DialogList") private java.util.List < DialogList> dialogList; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeDialogMessagesResponseBody(Builder builder) { this.dialogList = builder.dialogList; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeDialogMessagesResponseBody create() { return builder().build(); } /** * @return dialogList */ public java.util.List < DialogList> getDialogList() { return this.dialogList; } /** * @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 < DialogList> dialogList; private String requestId; private Integer totalCount; /** * <p>DialogList.</p> */ public Builder dialogList(java.util.List < DialogList> dialogList) { this.dialogList = dialogList; 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 DescribeDialogMessagesResponseBody build() { return new DescribeDialogMessagesResponseBody(this); } } public static class DialogList extends TeaModel { @NameInMap("DialogKey") private String dialogKey; @NameInMap("ID") private Long ID; @NameInMap("Params") private String params; private DialogList(Builder builder) { this.dialogKey = builder.dialogKey; this.ID = builder.ID; this.params = builder.params; } public static Builder builder() { return new Builder(); } public static DialogList create() { return builder().build(); } /** * @return dialogKey */ public String getDialogKey() { return this.dialogKey; } /** * @return ID */ public Long getID() { return this.ID; } /** * @return params */ public String getParams() { return this.params; } public static final class Builder { private String dialogKey; private Long ID; private String params; /** * <p>DialogKey.</p> */ public Builder dialogKey(String dialogKey) { this.dialogKey = dialogKey; return this; } /** * <p>ID.</p> */ public Builder ID(Long ID) { this.ID = ID; return this; } /** * <p>Params.</p> */ public Builder params(String params) { this.params = params; return this; } public DialogList build() { return new DialogList(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/DescribeDingTalkRequest.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 DescribeDingTalkRequest} extends {@link RequestModel} * * <p>DescribeDingTalkRequest</p> */ public class DescribeDingTalkRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("RuleActionName") private String ruleActionName; private DescribeDingTalkRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.ruleActionName = builder.ruleActionName; } public static Builder builder() { return new Builder(); } public static DescribeDingTalkRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return ruleActionName */ public String getRuleActionName() { return this.ruleActionName; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private Integer pageSize; private String ruleActionName; /** * <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>RuleActionName.</p> */ public Builder ruleActionName(String ruleActionName) { this.putQueryParameter("RuleActionName", ruleActionName); this.ruleActionName = ruleActionName; return this; } public DescribeDingTalkRequest build() { return new DescribeDingTalkRequest(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/DescribeDingTalkResponse.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 DescribeDingTalkResponse} extends {@link TeaModel} * * <p>DescribeDingTalkResponse</p> */ public class DescribeDingTalkResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeDingTalkResponseBody body; private DescribeDingTalkResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeDingTalkResponse 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 DescribeDingTalkResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeDingTalkResponseBody body; private Builder() { super(); } private Builder(DescribeDingTalkResponse 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(DescribeDingTalkResponseBody body) { this.body = body; return this; } public DescribeDingTalkResponse build() { return new DescribeDingTalkResponse(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/DescribeDingTalkResponseBody.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 DescribeDingTalkResponseBody} extends {@link TeaModel} * * <p>DescribeDingTalkResponseBody</p> */ public class DescribeDingTalkResponseBody extends TeaModel { @NameInMap("ActionList") private java.util.List < ActionList> actionList; @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; private DescribeDingTalkResponseBody(Builder builder) { this.actionList = builder.actionList; this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeDingTalkResponseBody create() { return builder().build(); } /** * @return actionList */ public java.util.List < ActionList> getActionList() { return this.actionList; } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < ActionList> actionList; private PageInfo pageInfo; private String requestId; /** * <p>ActionList.</p> */ public Builder actionList(java.util.List < ActionList> actionList) { this.actionList = actionList; return this; } /** * <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; } public DescribeDingTalkResponseBody build() { return new DescribeDingTalkResponseBody(this); } } public static class ActionList extends TeaModel { @NameInMap("ActionName") private String actionName; @NameInMap("AliUid") private Long aliUid; @NameInMap("ConfigList") private String configList; @NameInMap("DingTalkLang") private String dingTalkLang; @NameInMap("GmtCreate") private Long gmtCreate; @NameInMap("GmtModified") private Long gmtModified; @NameInMap("GroupIdList") private String groupIdList; @NameInMap("Id") private Integer id; @NameInMap("IntervalTime") private Integer intervalTime; @NameInMap("Status") private Integer status; @NameInMap("Url") private String url; private ActionList(Builder builder) { this.actionName = builder.actionName; this.aliUid = builder.aliUid; this.configList = builder.configList; this.dingTalkLang = builder.dingTalkLang; this.gmtCreate = builder.gmtCreate; this.gmtModified = builder.gmtModified; this.groupIdList = builder.groupIdList; this.id = builder.id; this.intervalTime = builder.intervalTime; this.status = builder.status; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static ActionList create() { return builder().build(); } /** * @return actionName */ public String getActionName() { return this.actionName; } /** * @return aliUid */ public Long getAliUid() { return this.aliUid; } /** * @return configList */ public String getConfigList() { return this.configList; } /** * @return dingTalkLang */ public String getDingTalkLang() { return this.dingTalkLang; } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return gmtModified */ public Long getGmtModified() { return this.gmtModified; } /** * @return groupIdList */ public String getGroupIdList() { return this.groupIdList; } /** * @return id */ public Integer getId() { return this.id; } /** * @return intervalTime */ public Integer getIntervalTime() { return this.intervalTime; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String actionName; private Long aliUid; private String configList; private String dingTalkLang; private Long gmtCreate; private Long gmtModified; private String groupIdList; private Integer id; private Integer intervalTime; private Integer status; private String url; /** * <p>ActionName.</p> */ public Builder actionName(String actionName) { this.actionName = actionName; return this; } /** * <p>AliUid.</p> */ public Builder aliUid(Long aliUid) { this.aliUid = aliUid; return this; } /** * <p>ConfigList.</p> */ public Builder configList(String configList) { this.configList = configList; return this; } /** * <p>DingTalkLang.</p> */ public Builder dingTalkLang(String dingTalkLang) { this.dingTalkLang = dingTalkLang; 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>GroupIdList.</p> */ public Builder groupIdList(String groupIdList) { this.groupIdList = groupIdList; return this; } /** * <p>Id.</p> */ public Builder id(Integer id) { this.id = id; return this; } /** * <p>IntervalTime.</p> */ public Builder intervalTime(Integer intervalTime) { this.intervalTime = intervalTime; return this; } /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } /** * <p>Url.</p> */ public Builder url(String url) { this.url = url; return this; } public ActionList build() { return new ActionList(this); } } } public static class PageInfo extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("TotalCount") private Integer totalCount; private PageInfo(Builder builder) { 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 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 currentPage; private Integer pageSize; private Integer totalCount; /** * <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); } } } }
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/DescribeDomainCountRequest.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 DescribeDomainCountRequest} extends {@link RequestModel} * * <p>DescribeDomainCountRequest</p> */ public class DescribeDomainCountRequest extends Request { @Query @NameInMap("SourceIp") private String sourceIp; private DescribeDomainCountRequest(Builder builder) { super(builder); this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeDomainCountRequest create() { return builder().build(); } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String sourceIp; /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeDomainCountRequest build() { return new DescribeDomainCountRequest(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/DescribeDomainCountResponse.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 DescribeDomainCountResponse} extends {@link TeaModel} * * <p>DescribeDomainCountResponse</p> */ public class DescribeDomainCountResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeDomainCountResponseBody body; private DescribeDomainCountResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeDomainCountResponse 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 DescribeDomainCountResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeDomainCountResponseBody body; private Builder() { super(); } private Builder(DescribeDomainCountResponse 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(DescribeDomainCountResponseBody body) { this.body = body; return this; } public DescribeDomainCountResponse build() { return new DescribeDomainCountResponse(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/DescribeDomainCountResponseBody.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 DescribeDomainCountResponseBody} extends {@link TeaModel} * * <p>DescribeDomainCountResponseBody</p> */ public class DescribeDomainCountResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("RootDomainsCount") private Integer rootDomainsCount; @NameInMap("SubDomainsCount") private Integer subDomainsCount; @NameInMap("TotalDomainsCount") private Integer totalDomainsCount; private DescribeDomainCountResponseBody(Builder builder) { this.requestId = builder.requestId; this.rootDomainsCount = builder.rootDomainsCount; this.subDomainsCount = builder.subDomainsCount; this.totalDomainsCount = builder.totalDomainsCount; } public static Builder builder() { return new Builder(); } public static DescribeDomainCountResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return rootDomainsCount */ public Integer getRootDomainsCount() { return this.rootDomainsCount; } /** * @return subDomainsCount */ public Integer getSubDomainsCount() { return this.subDomainsCount; } /** * @return totalDomainsCount */ public Integer getTotalDomainsCount() { return this.totalDomainsCount; } public static final class Builder { private String requestId; private Integer rootDomainsCount; private Integer subDomainsCount; private Integer totalDomainsCount; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>RootDomainsCount.</p> */ public Builder rootDomainsCount(Integer rootDomainsCount) { this.rootDomainsCount = rootDomainsCount; return this; } /** * <p>SubDomainsCount.</p> */ public Builder subDomainsCount(Integer subDomainsCount) { this.subDomainsCount = subDomainsCount; return this; } /** * <p>TotalDomainsCount.</p> */ public Builder totalDomainsCount(Integer totalDomainsCount) { this.totalDomainsCount = totalDomainsCount; return this; } public DescribeDomainCountResponseBody build() { return new DescribeDomainCountResponseBody(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/DescribeDomainDetailRequest.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 DescribeDomainDetailRequest} extends {@link RequestModel} * * <p>DescribeDomainDetailRequest</p> */ public class DescribeDomainDetailRequest extends Request { @Query @NameInMap("DomainName") private String domainName; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeDomainDetailRequest(Builder builder) { super(builder); this.domainName = builder.domainName; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeDomainDetailRequest create() { return builder().build(); } /** * @return domainName */ public String getDomainName() { return this.domainName; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private String domainName; private String sourceIp; /** * <p>DomainName.</p> */ public Builder domainName(String domainName) { this.putQueryParameter("DomainName", domainName); this.domainName = domainName; return this; } /** * <p>SourceIp.</p> */ public Builder sourceIp(String sourceIp) { this.putQueryParameter("SourceIp", sourceIp); this.sourceIp = sourceIp; return this; } public DescribeDomainDetailRequest build() { return new DescribeDomainDetailRequest(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/DescribeDomainDetailResponse.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 DescribeDomainDetailResponse} extends {@link TeaModel} * * <p>DescribeDomainDetailResponse</p> */ public class DescribeDomainDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeDomainDetailResponseBody body; private DescribeDomainDetailResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeDomainDetailResponse 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 DescribeDomainDetailResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeDomainDetailResponseBody body; private Builder() { super(); } private Builder(DescribeDomainDetailResponse 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(DescribeDomainDetailResponseBody body) { this.body = body; return this; } public DescribeDomainDetailResponse build() { return new DescribeDomainDetailResponse(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/DescribeDomainDetailResponseBody.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 DescribeDomainDetailResponseBody} extends {@link TeaModel} * * <p>DescribeDomainDetailResponseBody</p> */ public class DescribeDomainDetailResponseBody extends TeaModel { @NameInMap("AlarmCount") private Integer alarmCount; @NameInMap("Domain") private String domain; @NameInMap("DomainDetailItems") private java.util.List < DomainDetailItems> domainDetailItems; @NameInMap("RequestId") private String requestId; @NameInMap("RootDomain") private String rootDomain; @NameInMap("VulCount") private Integer vulCount; private DescribeDomainDetailResponseBody(Builder builder) { this.alarmCount = builder.alarmCount; this.domain = builder.domain; this.domainDetailItems = builder.domainDetailItems; this.requestId = builder.requestId; this.rootDomain = builder.rootDomain; this.vulCount = builder.vulCount; } public static Builder builder() { return new Builder(); } public static DescribeDomainDetailResponseBody create() { return builder().build(); } /** * @return alarmCount */ public Integer getAlarmCount() { return this.alarmCount; } /** * @return domain */ public String getDomain() { return this.domain; } /** * @return domainDetailItems */ public java.util.List < DomainDetailItems> getDomainDetailItems() { return this.domainDetailItems; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return rootDomain */ public String getRootDomain() { return this.rootDomain; } /** * @return vulCount */ public Integer getVulCount() { return this.vulCount; } public static final class Builder { private Integer alarmCount; private String domain; private java.util.List < DomainDetailItems> domainDetailItems; private String requestId; private String rootDomain; private Integer vulCount; /** * <p>AlarmCount.</p> */ public Builder alarmCount(Integer alarmCount) { this.alarmCount = alarmCount; return this; } /** * <p>Domain.</p> */ public Builder domain(String domain) { this.domain = domain; return this; } /** * <p>DomainDetailItems.</p> */ public Builder domainDetailItems(java.util.List < DomainDetailItems> domainDetailItems) { this.domainDetailItems = domainDetailItems; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>RootDomain.</p> */ public Builder rootDomain(String rootDomain) { this.rootDomain = rootDomain; return this; } /** * <p>VulCount.</p> */ public Builder vulCount(Integer vulCount) { this.vulCount = vulCount; return this; } public DescribeDomainDetailResponseBody build() { return new DescribeDomainDetailResponseBody(this); } } public static class DomainDetailItems extends TeaModel { @NameInMap("AssetType") private String assetType; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("Uuid") private String uuid; private DomainDetailItems(Builder builder) { this.assetType = builder.assetType; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static DomainDetailItems create() { return builder().build(); } /** * @return assetType */ public String getAssetType() { return this.assetType; } /** * @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 uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private String assetType; private String instanceId; private String instanceName; private String internetIp; private String intranetIp; private String uuid; /** * <p>AssetType.</p> */ public Builder assetType(String assetType) { this.assetType = assetType; 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>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public DomainDetailItems build() { return new DomainDetailItems(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/DescribeDomainListRequest.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 DescribeDomainListRequest} extends {@link RequestModel} * * <p>DescribeDomainListRequest</p> */ public class DescribeDomainListRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("DomainType") private String domainType; @Query @NameInMap("FuzzyDomain") private String fuzzyDomain; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeDomainListRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.domainType = builder.domainType; this.fuzzyDomain = builder.fuzzyDomain; this.pageSize = builder.pageSize; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeDomainListRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return domainType */ public String getDomainType() { return this.domainType; } /** * @return fuzzyDomain */ public String getFuzzyDomain() { return this.fuzzyDomain; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String domainType; private String fuzzyDomain; private Integer pageSize; private String sourceIp; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>DomainType.</p> */ public Builder domainType(String domainType) { this.putQueryParameter("DomainType", domainType); this.domainType = domainType; return this; } /** * <p>FuzzyDomain.</p> */ public Builder fuzzyDomain(String fuzzyDomain) { this.putQueryParameter("FuzzyDomain", fuzzyDomain); this.fuzzyDomain = fuzzyDomain; 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; } public DescribeDomainListRequest build() { return new DescribeDomainListRequest(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/DescribeDomainListResponse.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 DescribeDomainListResponse} extends {@link TeaModel} * * <p>DescribeDomainListResponse</p> */ public class DescribeDomainListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeDomainListResponseBody body; private DescribeDomainListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeDomainListResponse 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 DescribeDomainListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeDomainListResponseBody body; private Builder() { super(); } private Builder(DescribeDomainListResponse 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(DescribeDomainListResponseBody body) { this.body = body; return this; } public DescribeDomainListResponse build() { return new DescribeDomainListResponse(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/DescribeDomainListResponseBody.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 DescribeDomainListResponseBody} extends {@link TeaModel} * * <p>DescribeDomainListResponseBody</p> */ public class DescribeDomainListResponseBody extends TeaModel { @NameInMap("DomainListResponseList") private java.util.List < DomainListResponseList> domainListResponseList; @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; private DescribeDomainListResponseBody(Builder builder) { this.domainListResponseList = builder.domainListResponseList; this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeDomainListResponseBody create() { return builder().build(); } /** * @return domainListResponseList */ public java.util.List < DomainListResponseList> getDomainListResponseList() { return this.domainListResponseList; } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < DomainListResponseList> domainListResponseList; private PageInfo pageInfo; private String requestId; /** * <p>DomainListResponseList.</p> */ public Builder domainListResponseList(java.util.List < DomainListResponseList> domainListResponseList) { this.domainListResponseList = domainListResponseList; return this; } /** * <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; } public DescribeDomainListResponseBody build() { return new DescribeDomainListResponseBody(this); } } public static class DomainListResponseList extends TeaModel { @NameInMap("Domain") private String domain; @NameInMap("IpList") private String ipList; private DomainListResponseList(Builder builder) { this.domain = builder.domain; this.ipList = builder.ipList; } public static Builder builder() { return new Builder(); } public static DomainListResponseList create() { return builder().build(); } /** * @return domain */ public String getDomain() { return this.domain; } /** * @return ipList */ public String getIpList() { return this.ipList; } public static final class Builder { private String domain; private String ipList; /** * <p>Domain.</p> */ public Builder domain(String domain) { this.domain = domain; return this; } /** * <p>IpList.</p> */ public Builder ipList(String ipList) { this.ipList = ipList; return this; } public DomainListResponseList build() { return new DomainListResponseList(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); } } } }
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/DescribeEmgVulItemRequest.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 DescribeEmgVulItemRequest} extends {@link RequestModel} * * <p>DescribeEmgVulItemRequest</p> */ public class DescribeEmgVulItemRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("RiskStatus") private String riskStatus; @Query @NameInMap("ScanType") private String scanType; @Query @NameInMap("VulName") private String vulName; private DescribeEmgVulItemRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.lang = builder.lang; this.pageSize = builder.pageSize; this.riskStatus = builder.riskStatus; this.scanType = builder.scanType; this.vulName = builder.vulName; } public static Builder builder() { return new Builder(); } public static DescribeEmgVulItemRequest 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 riskStatus */ public String getRiskStatus() { return this.riskStatus; } /** * @return scanType */ public String getScanType() { return this.scanType; } /** * @return vulName */ public String getVulName() { return this.vulName; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String lang; private Integer pageSize; private String riskStatus; private String scanType; private String vulName; /** * <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>RiskStatus.</p> */ public Builder riskStatus(String riskStatus) { this.putQueryParameter("RiskStatus", riskStatus); this.riskStatus = riskStatus; return this; } /** * <p>ScanType.</p> */ public Builder scanType(String scanType) { this.putQueryParameter("ScanType", scanType); this.scanType = scanType; return this; } /** * <p>VulName.</p> */ public Builder vulName(String vulName) { this.putQueryParameter("VulName", vulName); this.vulName = vulName; return this; } public DescribeEmgVulItemRequest build() { return new DescribeEmgVulItemRequest(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/DescribeEmgVulItemResponse.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 DescribeEmgVulItemResponse} extends {@link TeaModel} * * <p>DescribeEmgVulItemResponse</p> */ public class DescribeEmgVulItemResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeEmgVulItemResponseBody body; private DescribeEmgVulItemResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeEmgVulItemResponse 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 DescribeEmgVulItemResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeEmgVulItemResponseBody body; private Builder() { super(); } private Builder(DescribeEmgVulItemResponse 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(DescribeEmgVulItemResponseBody body) { this.body = body; return this; } public DescribeEmgVulItemResponse build() { return new DescribeEmgVulItemResponse(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/DescribeEmgVulItemResponseBody.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 DescribeEmgVulItemResponseBody} extends {@link TeaModel} * * <p>DescribeEmgVulItemResponseBody</p> */ public class DescribeEmgVulItemResponseBody extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("GroupedVulItems") private java.util.List < GroupedVulItems> groupedVulItems; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeEmgVulItemResponseBody(Builder builder) { this.currentPage = builder.currentPage; this.groupedVulItems = builder.groupedVulItems; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeEmgVulItemResponseBody create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return groupedVulItems */ public java.util.List < GroupedVulItems> getGroupedVulItems() { return this.groupedVulItems; } /** * @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 Integer currentPage; private java.util.List < GroupedVulItems> groupedVulItems; private Integer pageSize; private String requestId; private Integer totalCount; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>GroupedVulItems.</p> */ public Builder groupedVulItems(java.util.List < GroupedVulItems> groupedVulItems) { this.groupedVulItems = groupedVulItems; 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 DescribeEmgVulItemResponseBody build() { return new DescribeEmgVulItemResponseBody(this); } } public static class GroupedVulItems extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("GmtLastCheck") private Long gmtLastCheck; @NameInMap("GmtPublish") private Long gmtPublish; @NameInMap("Name") private String name; @NameInMap("PendingCount") private Integer pendingCount; @NameInMap("Progress") private Integer progress; @NameInMap("Status") private Integer status; @NameInMap("Type") private String type; private GroupedVulItems(Builder builder) { this.aliasName = builder.aliasName; this.gmtLastCheck = builder.gmtLastCheck; this.gmtPublish = builder.gmtPublish; this.name = builder.name; this.pendingCount = builder.pendingCount; this.progress = builder.progress; this.status = builder.status; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static GroupedVulItems create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return gmtLastCheck */ public Long getGmtLastCheck() { return this.gmtLastCheck; } /** * @return gmtPublish */ public Long getGmtPublish() { return this.gmtPublish; } /** * @return name */ public String getName() { return this.name; } /** * @return pendingCount */ public Integer getPendingCount() { return this.pendingCount; } /** * @return progress */ public Integer getProgress() { return this.progress; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String aliasName; private Long gmtLastCheck; private Long gmtPublish; private String name; private Integer pendingCount; private Integer progress; private Integer status; private String type; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; return this; } /** * <p>GmtLastCheck.</p> */ public Builder gmtLastCheck(Long gmtLastCheck) { this.gmtLastCheck = gmtLastCheck; return this; } /** * <p>GmtPublish.</p> */ public Builder gmtPublish(Long gmtPublish) { this.gmtPublish = gmtPublish; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>PendingCount.</p> */ public Builder pendingCount(Integer pendingCount) { this.pendingCount = pendingCount; return this; } /** * <p>Progress.</p> */ public Builder progress(Integer progress) { this.progress = progress; return this; } /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } public GroupedVulItems build() { return new GroupedVulItems(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/DescribeExportInfoRequest.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 DescribeExportInfoRequest} extends {@link RequestModel} * * <p>DescribeExportInfoRequest</p> */ public class DescribeExportInfoRequest extends Request { @Query @NameInMap("ExportId") private Long exportId; private DescribeExportInfoRequest(Builder builder) { super(builder); this.exportId = builder.exportId; } public static Builder builder() { return new Builder(); } public static DescribeExportInfoRequest 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 DescribeExportInfoRequest build() { return new DescribeExportInfoRequest(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/DescribeExportInfoResponse.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 DescribeExportInfoResponse} extends {@link TeaModel} * * <p>DescribeExportInfoResponse</p> */ public class DescribeExportInfoResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeExportInfoResponseBody body; private DescribeExportInfoResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeExportInfoResponse 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 DescribeExportInfoResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeExportInfoResponseBody body; private Builder() { super(); } private Builder(DescribeExportInfoResponse 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(DescribeExportInfoResponseBody body) { this.body = body; return this; } public DescribeExportInfoResponse build() { return new DescribeExportInfoResponse(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/DescribeExportInfoResponseBody.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 DescribeExportInfoResponseBody} extends {@link TeaModel} * * <p>DescribeExportInfoResponseBody</p> */ public class DescribeExportInfoResponseBody 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 DescribeExportInfoResponseBody(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 DescribeExportInfoResponseBody 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 DescribeExportInfoResponseBody build() { return new DescribeExportInfoResponseBody(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/DescribeExposedInstanceCriteriaRequest.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 DescribeExposedInstanceCriteriaRequest} extends {@link RequestModel} * * <p>DescribeExposedInstanceCriteriaRequest</p> */ public class DescribeExposedInstanceCriteriaRequest extends Request { @Query @NameInMap("Value") private String value; private DescribeExposedInstanceCriteriaRequest(Builder builder) { super(builder); this.value = builder.value; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceCriteriaRequest create() { return builder().build(); } /** * @return value */ public String getValue() { return this.value; } public static final class Builder extends Request.Builder<Builder> { private String value; /** * <p>Value.</p> */ public Builder value(String value) { this.putQueryParameter("Value", value); this.value = value; return this; } public DescribeExposedInstanceCriteriaRequest build() { return new DescribeExposedInstanceCriteriaRequest(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/DescribeExposedInstanceCriteriaResponse.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 DescribeExposedInstanceCriteriaResponse} extends {@link TeaModel} * * <p>DescribeExposedInstanceCriteriaResponse</p> */ public class DescribeExposedInstanceCriteriaResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeExposedInstanceCriteriaResponseBody body; private DescribeExposedInstanceCriteriaResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceCriteriaResponse 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 DescribeExposedInstanceCriteriaResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeExposedInstanceCriteriaResponseBody body; private Builder() { super(); } private Builder(DescribeExposedInstanceCriteriaResponse 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(DescribeExposedInstanceCriteriaResponseBody body) { this.body = body; return this; } public DescribeExposedInstanceCriteriaResponse build() { return new DescribeExposedInstanceCriteriaResponse(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/DescribeExposedInstanceCriteriaResponseBody.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 DescribeExposedInstanceCriteriaResponseBody} extends {@link TeaModel} * * <p>DescribeExposedInstanceCriteriaResponseBody</p> */ public class DescribeExposedInstanceCriteriaResponseBody extends TeaModel { @NameInMap("CriteriaList") private java.util.List < CriteriaList> criteriaList; @NameInMap("RequestId") private String requestId; private DescribeExposedInstanceCriteriaResponseBody(Builder builder) { this.criteriaList = builder.criteriaList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceCriteriaResponseBody 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 DescribeExposedInstanceCriteriaResponseBody build() { return new DescribeExposedInstanceCriteriaResponseBody(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/DescribeExposedInstanceDetailRequest.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 DescribeExposedInstanceDetailRequest} extends {@link RequestModel} * * <p>DescribeExposedInstanceDetailRequest</p> */ public class DescribeExposedInstanceDetailRequest extends Request { @Query @NameInMap("Uuid") private String uuid; private DescribeExposedInstanceDetailRequest(Builder builder) { super(builder); this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceDetailRequest create() { return builder().build(); } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder extends Request.Builder<Builder> { private String uuid; /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.putQueryParameter("Uuid", uuid); this.uuid = uuid; return this; } public DescribeExposedInstanceDetailRequest build() { return new DescribeExposedInstanceDetailRequest(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/DescribeExposedInstanceDetailResponse.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 DescribeExposedInstanceDetailResponse} extends {@link TeaModel} * * <p>DescribeExposedInstanceDetailResponse</p> */ public class DescribeExposedInstanceDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeExposedInstanceDetailResponseBody body; private DescribeExposedInstanceDetailResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceDetailResponse 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 DescribeExposedInstanceDetailResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeExposedInstanceDetailResponseBody body; private Builder() { super(); } private Builder(DescribeExposedInstanceDetailResponse 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(DescribeExposedInstanceDetailResponseBody body) { this.body = body; return this; } public DescribeExposedInstanceDetailResponse build() { return new DescribeExposedInstanceDetailResponse(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/DescribeExposedInstanceDetailResponseBody.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 DescribeExposedInstanceDetailResponseBody} extends {@link TeaModel} * * <p>DescribeExposedInstanceDetailResponseBody</p> */ public class DescribeExposedInstanceDetailResponseBody extends TeaModel { @NameInMap("ExposedChains") private java.util.List < ExposedChains> exposedChains; @NameInMap("RequestId") private String requestId; private DescribeExposedInstanceDetailResponseBody(Builder builder) { this.exposedChains = builder.exposedChains; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceDetailResponseBody create() { return builder().build(); } /** * @return exposedChains */ public java.util.List < ExposedChains> getExposedChains() { return this.exposedChains; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < ExposedChains> exposedChains; private String requestId; /** * <p>ExposedChains.</p> */ public Builder exposedChains(java.util.List < ExposedChains> exposedChains) { this.exposedChains = exposedChains; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeExposedInstanceDetailResponseBody build() { return new DescribeExposedInstanceDetailResponseBody(this); } } public static class AllVulList extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("Name") private String name; @NameInMap("Necessity") private String necessity; @NameInMap("Type") private String type; @NameInMap("Uuid") private String uuid; private AllVulList(Builder builder) { this.aliasName = builder.aliasName; this.name = builder.name; this.necessity = builder.necessity; this.type = builder.type; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static AllVulList create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return name */ public String getName() { return this.name; } /** * @return necessity */ public String getNecessity() { return this.necessity; } /** * @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 String name; private String necessity; private String type; private String uuid; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; 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>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 AllVulList build() { return new AllVulList(this); } } } public static class RealVulList extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("Name") private String name; @NameInMap("Necessity") private String necessity; @NameInMap("Type") private String type; @NameInMap("Uuid") private String uuid; private RealVulList(Builder builder) { this.aliasName = builder.aliasName; this.name = builder.name; this.necessity = builder.necessity; this.type = builder.type; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static RealVulList create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return name */ public String getName() { return this.name; } /** * @return necessity */ public String getNecessity() { return this.necessity; } /** * @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 String name; private String necessity; private String type; private String uuid; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; 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>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 RealVulList build() { return new RealVulList(this); } } } public static class ExposedChains extends TeaModel { @NameInMap("AllVulList") private java.util.List < AllVulList> allVulList; @NameInMap("ExposureComponent") private String exposureComponent; @NameInMap("ExposureIp") private String exposureIp; @NameInMap("ExposurePort") private String exposurePort; @NameInMap("ExposureType") private String exposureType; @NameInMap("ExposureTypeId") private String exposureTypeId; @NameInMap("GroupNo") private String groupNo; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("RealVulList") private java.util.List < RealVulList> realVulList; @NameInMap("RegionId") private String regionId; @NameInMap("Uuid") private String uuid; private ExposedChains(Builder builder) { this.allVulList = builder.allVulList; this.exposureComponent = builder.exposureComponent; this.exposureIp = builder.exposureIp; this.exposurePort = builder.exposurePort; this.exposureType = builder.exposureType; this.exposureTypeId = builder.exposureTypeId; this.groupNo = builder.groupNo; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.realVulList = builder.realVulList; this.regionId = builder.regionId; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static ExposedChains create() { return builder().build(); } /** * @return allVulList */ public java.util.List < AllVulList> getAllVulList() { return this.allVulList; } /** * @return exposureComponent */ public String getExposureComponent() { return this.exposureComponent; } /** * @return exposureIp */ public String getExposureIp() { return this.exposureIp; } /** * @return exposurePort */ public String getExposurePort() { return this.exposurePort; } /** * @return exposureType */ public String getExposureType() { return this.exposureType; } /** * @return exposureTypeId */ public String getExposureTypeId() { return this.exposureTypeId; } /** * @return groupNo */ public String getGroupNo() { return this.groupNo; } /** * @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 realVulList */ public java.util.List < RealVulList> getRealVulList() { return this.realVulList; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private java.util.List < AllVulList> allVulList; private String exposureComponent; private String exposureIp; private String exposurePort; private String exposureType; private String exposureTypeId; private String groupNo; private String instanceId; private String instanceName; private String internetIp; private String intranetIp; private java.util.List < RealVulList> realVulList; private String regionId; private String uuid; /** * <p>AllVulList.</p> */ public Builder allVulList(java.util.List < AllVulList> allVulList) { this.allVulList = allVulList; return this; } /** * <p>ExposureComponent.</p> */ public Builder exposureComponent(String exposureComponent) { this.exposureComponent = exposureComponent; return this; } /** * <p>ExposureIp.</p> */ public Builder exposureIp(String exposureIp) { this.exposureIp = exposureIp; return this; } /** * <p>ExposurePort.</p> */ public Builder exposurePort(String exposurePort) { this.exposurePort = exposurePort; return this; } /** * <p>ExposureType.</p> */ public Builder exposureType(String exposureType) { this.exposureType = exposureType; return this; } /** * <p>ExposureTypeId.</p> */ public Builder exposureTypeId(String exposureTypeId) { this.exposureTypeId = exposureTypeId; return this; } /** * <p>GroupNo.</p> */ public Builder groupNo(String groupNo) { this.groupNo = groupNo; 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>RealVulList.</p> */ public Builder realVulList(java.util.List < RealVulList> realVulList) { this.realVulList = realVulList; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public ExposedChains build() { return new ExposedChains(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/DescribeExposedInstanceListRequest.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 DescribeExposedInstanceListRequest} extends {@link RequestModel} * * <p>DescribeExposedInstanceListRequest</p> */ public class DescribeExposedInstanceListRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("ExposureComponent") private String exposureComponent; @Query @NameInMap("ExposureIp") private String exposureIp; @Query @NameInMap("ExposurePort") private String exposurePort; @Query @NameInMap("GroupId") private Long groupId; @Query @NameInMap("HealthStatus") private Boolean healthStatus; @Query @NameInMap("InstanceId") private String instanceId; @Query @NameInMap("InstanceName") private String instanceName; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("VulStatus") private Boolean vulStatus; private DescribeExposedInstanceListRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.exposureComponent = builder.exposureComponent; this.exposureIp = builder.exposureIp; this.exposurePort = builder.exposurePort; this.groupId = builder.groupId; this.healthStatus = builder.healthStatus; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.pageSize = builder.pageSize; this.vulStatus = builder.vulStatus; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceListRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return exposureComponent */ public String getExposureComponent() { return this.exposureComponent; } /** * @return exposureIp */ public String getExposureIp() { return this.exposureIp; } /** * @return exposurePort */ public String getExposurePort() { return this.exposurePort; } /** * @return groupId */ public Long getGroupId() { return this.groupId; } /** * @return healthStatus */ public Boolean getHealthStatus() { return this.healthStatus; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return vulStatus */ public Boolean getVulStatus() { return this.vulStatus; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String exposureComponent; private String exposureIp; private String exposurePort; private Long groupId; private Boolean healthStatus; private String instanceId; private String instanceName; private Integer pageSize; private Boolean vulStatus; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>ExposureComponent.</p> */ public Builder exposureComponent(String exposureComponent) { this.putQueryParameter("ExposureComponent", exposureComponent); this.exposureComponent = exposureComponent; return this; } /** * <p>ExposureIp.</p> */ public Builder exposureIp(String exposureIp) { this.putQueryParameter("ExposureIp", exposureIp); this.exposureIp = exposureIp; return this; } /** * <p>ExposurePort.</p> */ public Builder exposurePort(String exposurePort) { this.putQueryParameter("ExposurePort", exposurePort); this.exposurePort = exposurePort; return this; } /** * <p>GroupId.</p> */ public Builder groupId(Long groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * <p>HealthStatus.</p> */ public Builder healthStatus(Boolean healthStatus) { this.putQueryParameter("HealthStatus", healthStatus); this.healthStatus = healthStatus; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.putQueryParameter("InstanceId", instanceId); this.instanceId = instanceId; return this; } /** * <p>InstanceName.</p> */ public Builder instanceName(String instanceName) { this.putQueryParameter("InstanceName", instanceName); this.instanceName = instanceName; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>VulStatus.</p> */ public Builder vulStatus(Boolean vulStatus) { this.putQueryParameter("VulStatus", vulStatus); this.vulStatus = vulStatus; return this; } public DescribeExposedInstanceListRequest build() { return new DescribeExposedInstanceListRequest(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/DescribeExposedInstanceListResponse.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 DescribeExposedInstanceListResponse} extends {@link TeaModel} * * <p>DescribeExposedInstanceListResponse</p> */ public class DescribeExposedInstanceListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeExposedInstanceListResponseBody body; private DescribeExposedInstanceListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceListResponse 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 DescribeExposedInstanceListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeExposedInstanceListResponseBody body; private Builder() { super(); } private Builder(DescribeExposedInstanceListResponse 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(DescribeExposedInstanceListResponseBody body) { this.body = body; return this; } public DescribeExposedInstanceListResponse build() { return new DescribeExposedInstanceListResponse(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/DescribeExposedInstanceListResponseBody.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 DescribeExposedInstanceListResponseBody} extends {@link TeaModel} * * <p>DescribeExposedInstanceListResponseBody</p> */ public class DescribeExposedInstanceListResponseBody extends TeaModel { @NameInMap("ExposedInstances") private java.util.List < ExposedInstances> exposedInstances; @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; private DescribeExposedInstanceListResponseBody(Builder builder) { this.exposedInstances = builder.exposedInstances; this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeExposedInstanceListResponseBody create() { return builder().build(); } /** * @return exposedInstances */ public java.util.List < ExposedInstances> getExposedInstances() { return this.exposedInstances; } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < ExposedInstances> exposedInstances; private PageInfo pageInfo; private String requestId; /** * <p>ExposedInstances.</p> */ public Builder exposedInstances(java.util.List < ExposedInstances> exposedInstances) { this.exposedInstances = exposedInstances; return this; } /** * <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; } public DescribeExposedInstanceListResponseBody build() { return new DescribeExposedInstanceListResponseBody(this); } } public static class ExposedInstances extends TeaModel { @NameInMap("AsapVulCount") private Integer asapVulCount; @NameInMap("ExploitHealthCount") private Integer exploitHealthCount; @NameInMap("ExposureComponent") private String exposureComponent; @NameInMap("ExposureIp") private String exposureIp; @NameInMap("ExposurePort") private String exposurePort; @NameInMap("ExposureType") private String exposureType; @NameInMap("ExposureTypeId") private String exposureTypeId; @NameInMap("GroupId") private Long groupId; @NameInMap("GroupName") private String groupName; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("InternetIp") private String internetIp; @NameInMap("IntranetIp") private String intranetIp; @NameInMap("LaterVulCount") private Integer laterVulCount; @NameInMap("NntfVulCount") private Integer nntfVulCount; @NameInMap("RegionId") private String regionId; @NameInMap("TotalVulCount") private Integer totalVulCount; @NameInMap("Uuid") private String uuid; private ExposedInstances(Builder builder) { this.asapVulCount = builder.asapVulCount; this.exploitHealthCount = builder.exploitHealthCount; this.exposureComponent = builder.exposureComponent; this.exposureIp = builder.exposureIp; this.exposurePort = builder.exposurePort; this.exposureType = builder.exposureType; this.exposureTypeId = builder.exposureTypeId; this.groupId = builder.groupId; this.groupName = builder.groupName; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.internetIp = builder.internetIp; this.intranetIp = builder.intranetIp; this.laterVulCount = builder.laterVulCount; this.nntfVulCount = builder.nntfVulCount; this.regionId = builder.regionId; this.totalVulCount = builder.totalVulCount; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static ExposedInstances create() { return builder().build(); } /** * @return asapVulCount */ public Integer getAsapVulCount() { return this.asapVulCount; } /** * @return exploitHealthCount */ public Integer getExploitHealthCount() { return this.exploitHealthCount; } /** * @return exposureComponent */ public String getExposureComponent() { return this.exposureComponent; } /** * @return exposureIp */ public String getExposureIp() { return this.exposureIp; } /** * @return exposurePort */ public String getExposurePort() { return this.exposurePort; } /** * @return exposureType */ public String getExposureType() { return this.exposureType; } /** * @return exposureTypeId */ public String getExposureTypeId() { return this.exposureTypeId; } /** * @return groupId */ public Long getGroupId() { return this.groupId; } /** * @return groupName */ public String getGroupName() { return this.groupName; } /** * @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 laterVulCount */ public Integer getLaterVulCount() { return this.laterVulCount; } /** * @return nntfVulCount */ public Integer getNntfVulCount() { return this.nntfVulCount; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return totalVulCount */ public Integer getTotalVulCount() { return this.totalVulCount; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private Integer asapVulCount; private Integer exploitHealthCount; private String exposureComponent; private String exposureIp; private String exposurePort; private String exposureType; private String exposureTypeId; private Long groupId; private String groupName; private String instanceId; private String instanceName; private String internetIp; private String intranetIp; private Integer laterVulCount; private Integer nntfVulCount; private String regionId; private Integer totalVulCount; private String uuid; /** * <p>AsapVulCount.</p> */ public Builder asapVulCount(Integer asapVulCount) { this.asapVulCount = asapVulCount; return this; } /** * <p>ExploitHealthCount.</p> */ public Builder exploitHealthCount(Integer exploitHealthCount) { this.exploitHealthCount = exploitHealthCount; return this; } /** * <p>ExposureComponent.</p> */ public Builder exposureComponent(String exposureComponent) { this.exposureComponent = exposureComponent; return this; } /** * <p>ExposureIp.</p> */ public Builder exposureIp(String exposureIp) { this.exposureIp = exposureIp; return this; } /** * <p>ExposurePort.</p> */ public Builder exposurePort(String exposurePort) { this.exposurePort = exposurePort; return this; } /** * <p>ExposureType.</p> */ public Builder exposureType(String exposureType) { this.exposureType = exposureType; return this; } /** * <p>ExposureTypeId.</p> */ public Builder exposureTypeId(String exposureTypeId) { this.exposureTypeId = exposureTypeId; return this; } /** * <p>GroupId.</p> */ public Builder groupId(Long groupId) { this.groupId = groupId; return this; } /** * <p>GroupName.</p> */ public Builder groupName(String groupName) { this.groupName = groupName; 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>LaterVulCount.</p> */ public Builder laterVulCount(Integer laterVulCount) { this.laterVulCount = laterVulCount; return this; } /** * <p>NntfVulCount.</p> */ public Builder nntfVulCount(Integer nntfVulCount) { this.nntfVulCount = nntfVulCount; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * <p>TotalVulCount.</p> */ public Builder totalVulCount(Integer totalVulCount) { this.totalVulCount = totalVulCount; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public ExposedInstances build() { return new ExposedInstances(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); } } } }
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/DescribeExposedStatisticsDetailRequest.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 DescribeExposedStatisticsDetailRequest} extends {@link RequestModel} * * <p>DescribeExposedStatisticsDetailRequest</p> */ public class DescribeExposedStatisticsDetailRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("StatisticsType") private String statisticsType; @Query @NameInMap("StatisticsTypeGatewayType") private String statisticsTypeGatewayType; @Query @NameInMap("StatisticsTypeInstanceValue") private String statisticsTypeInstanceValue; private DescribeExposedStatisticsDetailRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.statisticsType = builder.statisticsType; this.statisticsTypeGatewayType = builder.statisticsTypeGatewayType; this.statisticsTypeInstanceValue = builder.statisticsTypeInstanceValue; } public static Builder builder() { return new Builder(); } public static DescribeExposedStatisticsDetailRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return statisticsType */ public String getStatisticsType() { return this.statisticsType; } /** * @return statisticsTypeGatewayType */ public String getStatisticsTypeGatewayType() { return this.statisticsTypeGatewayType; } /** * @return statisticsTypeInstanceValue */ public String getStatisticsTypeInstanceValue() { return this.statisticsTypeInstanceValue; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private Integer pageSize; private String statisticsType; private String statisticsTypeGatewayType; private String statisticsTypeInstanceValue; /** * <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>StatisticsType.</p> */ public Builder statisticsType(String statisticsType) { this.putQueryParameter("StatisticsType", statisticsType); this.statisticsType = statisticsType; return this; } /** * <p>StatisticsTypeGatewayType.</p> */ public Builder statisticsTypeGatewayType(String statisticsTypeGatewayType) { this.putQueryParameter("StatisticsTypeGatewayType", statisticsTypeGatewayType); this.statisticsTypeGatewayType = statisticsTypeGatewayType; return this; } /** * <p>StatisticsTypeInstanceValue.</p> */ public Builder statisticsTypeInstanceValue(String statisticsTypeInstanceValue) { this.putQueryParameter("StatisticsTypeInstanceValue", statisticsTypeInstanceValue); this.statisticsTypeInstanceValue = statisticsTypeInstanceValue; return this; } public DescribeExposedStatisticsDetailRequest build() { return new DescribeExposedStatisticsDetailRequest(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/DescribeExposedStatisticsDetailResponse.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 DescribeExposedStatisticsDetailResponse} extends {@link TeaModel} * * <p>DescribeExposedStatisticsDetailResponse</p> */ public class DescribeExposedStatisticsDetailResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeExposedStatisticsDetailResponseBody body; private DescribeExposedStatisticsDetailResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeExposedStatisticsDetailResponse 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 DescribeExposedStatisticsDetailResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeExposedStatisticsDetailResponseBody body; private Builder() { super(); } private Builder(DescribeExposedStatisticsDetailResponse 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(DescribeExposedStatisticsDetailResponseBody body) { this.body = body; return this; } public DescribeExposedStatisticsDetailResponse build() { return new DescribeExposedStatisticsDetailResponse(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/DescribeExposedStatisticsDetailResponseBody.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 DescribeExposedStatisticsDetailResponseBody} extends {@link TeaModel} * * <p>DescribeExposedStatisticsDetailResponseBody</p> */ public class DescribeExposedStatisticsDetailResponseBody extends TeaModel { @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; @NameInMap("StatisticsDetails") private java.util.List < StatisticsDetails> statisticsDetails; private DescribeExposedStatisticsDetailResponseBody(Builder builder) { this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; this.statisticsDetails = builder.statisticsDetails; } public static Builder builder() { return new Builder(); } public static DescribeExposedStatisticsDetailResponseBody create() { return builder().build(); } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return statisticsDetails */ public java.util.List < StatisticsDetails> getStatisticsDetails() { return this.statisticsDetails; } public static final class Builder { private PageInfo pageInfo; private String requestId; private java.util.List < StatisticsDetails> statisticsDetails; /** * <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>StatisticsDetails.</p> */ public Builder statisticsDetails(java.util.List < StatisticsDetails> statisticsDetails) { this.statisticsDetails = statisticsDetails; return this; } public DescribeExposedStatisticsDetailResponseBody build() { return new DescribeExposedStatisticsDetailResponseBody(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 StatisticsDetails extends TeaModel { @NameInMap("ExposedCount") private Integer exposedCount; @NameInMap("ExposureComponent") private String exposureComponent; @NameInMap("ExposureIp") private String exposureIp; @NameInMap("ExposurePort") private String exposurePort; @NameInMap("ExposureType") private String exposureType; @NameInMap("ExposureTypeId") private String exposureTypeId; @NameInMap("ExposureTypeInstanceName") private String exposureTypeInstanceName; @NameInMap("RegionId") private String regionId; private StatisticsDetails(Builder builder) { this.exposedCount = builder.exposedCount; this.exposureComponent = builder.exposureComponent; this.exposureIp = builder.exposureIp; this.exposurePort = builder.exposurePort; this.exposureType = builder.exposureType; this.exposureTypeId = builder.exposureTypeId; this.exposureTypeInstanceName = builder.exposureTypeInstanceName; this.regionId = builder.regionId; } public static Builder builder() { return new Builder(); } public static StatisticsDetails create() { return builder().build(); } /** * @return exposedCount */ public Integer getExposedCount() { return this.exposedCount; } /** * @return exposureComponent */ public String getExposureComponent() { return this.exposureComponent; } /** * @return exposureIp */ public String getExposureIp() { return this.exposureIp; } /** * @return exposurePort */ public String getExposurePort() { return this.exposurePort; } /** * @return exposureType */ public String getExposureType() { return this.exposureType; } /** * @return exposureTypeId */ public String getExposureTypeId() { return this.exposureTypeId; } /** * @return exposureTypeInstanceName */ public String getExposureTypeInstanceName() { return this.exposureTypeInstanceName; } /** * @return regionId */ public String getRegionId() { return this.regionId; } public static final class Builder { private Integer exposedCount; private String exposureComponent; private String exposureIp; private String exposurePort; private String exposureType; private String exposureTypeId; private String exposureTypeInstanceName; private String regionId; /** * <p>ExposedCount.</p> */ public Builder exposedCount(Integer exposedCount) { this.exposedCount = exposedCount; return this; } /** * <p>ExposureComponent.</p> */ public Builder exposureComponent(String exposureComponent) { this.exposureComponent = exposureComponent; return this; } /** * <p>ExposureIp.</p> */ public Builder exposureIp(String exposureIp) { this.exposureIp = exposureIp; return this; } /** * <p>ExposurePort.</p> */ public Builder exposurePort(String exposurePort) { this.exposurePort = exposurePort; return this; } /** * <p>ExposureType.</p> */ public Builder exposureType(String exposureType) { this.exposureType = exposureType; return this; } /** * <p>ExposureTypeId.</p> */ public Builder exposureTypeId(String exposureTypeId) { this.exposureTypeId = exposureTypeId; return this; } /** * <p>ExposureTypeInstanceName.</p> */ public Builder exposureTypeInstanceName(String exposureTypeInstanceName) { this.exposureTypeInstanceName = exposureTypeInstanceName; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } public StatisticsDetails build() { return new StatisticsDetails(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/DescribeExposedStatisticsRequest.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 DescribeExposedStatisticsRequest} extends {@link RequestModel} * * <p>DescribeExposedStatisticsRequest</p> */ public class DescribeExposedStatisticsRequest extends Request { private DescribeExposedStatisticsRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeExposedStatisticsRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeExposedStatisticsRequest build() { return new DescribeExposedStatisticsRequest(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/DescribeExposedStatisticsResponse.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 DescribeExposedStatisticsResponse} extends {@link TeaModel} * * <p>DescribeExposedStatisticsResponse</p> */ public class DescribeExposedStatisticsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeExposedStatisticsResponseBody body; private DescribeExposedStatisticsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeExposedStatisticsResponse 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 DescribeExposedStatisticsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeExposedStatisticsResponseBody body; private Builder() { super(); } private Builder(DescribeExposedStatisticsResponse 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(DescribeExposedStatisticsResponseBody body) { this.body = body; return this; } public DescribeExposedStatisticsResponse build() { return new DescribeExposedStatisticsResponse(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/DescribeExposedStatisticsResponseBody.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 DescribeExposedStatisticsResponseBody} extends {@link TeaModel} * * <p>DescribeExposedStatisticsResponseBody</p> */ public class DescribeExposedStatisticsResponseBody extends TeaModel { @NameInMap("ExposedAsapVulCount") private Integer exposedAsapVulCount; @NameInMap("ExposedComponentCount") private Integer exposedComponentCount; @NameInMap("ExposedInstanceCount") private Integer exposedInstanceCount; @NameInMap("ExposedIpCount") private Integer exposedIpCount; @NameInMap("ExposedLaterVulCount") private Integer exposedLaterVulCount; @NameInMap("ExposedNntfVulCount") private Integer exposedNntfVulCount; @NameInMap("ExposedPortCount") private Integer exposedPortCount; @NameInMap("ExposedWeekPasswordMachineCount") private Integer exposedWeekPasswordMachineCount; @NameInMap("GatewayAssetCount") private Integer gatewayAssetCount; @NameInMap("RequestId") private String requestId; private DescribeExposedStatisticsResponseBody(Builder builder) { this.exposedAsapVulCount = builder.exposedAsapVulCount; this.exposedComponentCount = builder.exposedComponentCount; this.exposedInstanceCount = builder.exposedInstanceCount; this.exposedIpCount = builder.exposedIpCount; this.exposedLaterVulCount = builder.exposedLaterVulCount; this.exposedNntfVulCount = builder.exposedNntfVulCount; this.exposedPortCount = builder.exposedPortCount; this.exposedWeekPasswordMachineCount = builder.exposedWeekPasswordMachineCount; this.gatewayAssetCount = builder.gatewayAssetCount; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeExposedStatisticsResponseBody create() { return builder().build(); } /** * @return exposedAsapVulCount */ public Integer getExposedAsapVulCount() { return this.exposedAsapVulCount; } /** * @return exposedComponentCount */ public Integer getExposedComponentCount() { return this.exposedComponentCount; } /** * @return exposedInstanceCount */ public Integer getExposedInstanceCount() { return this.exposedInstanceCount; } /** * @return exposedIpCount */ public Integer getExposedIpCount() { return this.exposedIpCount; } /** * @return exposedLaterVulCount */ public Integer getExposedLaterVulCount() { return this.exposedLaterVulCount; } /** * @return exposedNntfVulCount */ public Integer getExposedNntfVulCount() { return this.exposedNntfVulCount; } /** * @return exposedPortCount */ public Integer getExposedPortCount() { return this.exposedPortCount; } /** * @return exposedWeekPasswordMachineCount */ public Integer getExposedWeekPasswordMachineCount() { return this.exposedWeekPasswordMachineCount; } /** * @return gatewayAssetCount */ public Integer getGatewayAssetCount() { return this.gatewayAssetCount; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Integer exposedAsapVulCount; private Integer exposedComponentCount; private Integer exposedInstanceCount; private Integer exposedIpCount; private Integer exposedLaterVulCount; private Integer exposedNntfVulCount; private Integer exposedPortCount; private Integer exposedWeekPasswordMachineCount; private Integer gatewayAssetCount; private String requestId; /** * <p>ExposedAsapVulCount.</p> */ public Builder exposedAsapVulCount(Integer exposedAsapVulCount) { this.exposedAsapVulCount = exposedAsapVulCount; return this; } /** * <p>ExposedComponentCount.</p> */ public Builder exposedComponentCount(Integer exposedComponentCount) { this.exposedComponentCount = exposedComponentCount; return this; } /** * <p>ExposedInstanceCount.</p> */ public Builder exposedInstanceCount(Integer exposedInstanceCount) { this.exposedInstanceCount = exposedInstanceCount; return this; } /** * <p>ExposedIpCount.</p> */ public Builder exposedIpCount(Integer exposedIpCount) { this.exposedIpCount = exposedIpCount; return this; } /** * <p>ExposedLaterVulCount.</p> */ public Builder exposedLaterVulCount(Integer exposedLaterVulCount) { this.exposedLaterVulCount = exposedLaterVulCount; return this; } /** * <p>ExposedNntfVulCount.</p> */ public Builder exposedNntfVulCount(Integer exposedNntfVulCount) { this.exposedNntfVulCount = exposedNntfVulCount; return this; } /** * <p>ExposedPortCount.</p> */ public Builder exposedPortCount(Integer exposedPortCount) { this.exposedPortCount = exposedPortCount; return this; } /** * <p>ExposedWeekPasswordMachineCount.</p> */ public Builder exposedWeekPasswordMachineCount(Integer exposedWeekPasswordMachineCount) { this.exposedWeekPasswordMachineCount = exposedWeekPasswordMachineCount; return this; } /** * <p>GatewayAssetCount.</p> */ public Builder gatewayAssetCount(Integer gatewayAssetCount) { this.gatewayAssetCount = gatewayAssetCount; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeExposedStatisticsResponseBody build() { return new DescribeExposedStatisticsResponseBody(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/DescribeFieldStatisticsRequest.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 DescribeFieldStatisticsRequest} extends {@link RequestModel} * * <p>DescribeFieldStatisticsRequest</p> */ public class DescribeFieldStatisticsRequest extends Request { @Query @NameInMap("MachineTypes") private String machineTypes; @Query @NameInMap("RegionId") private String regionId; private DescribeFieldStatisticsRequest(Builder builder) { super(builder); this.machineTypes = builder.machineTypes; this.regionId = builder.regionId; } public static Builder builder() { return new Builder(); } public static DescribeFieldStatisticsRequest create() { return builder().build(); } /** * @return machineTypes */ public String getMachineTypes() { return this.machineTypes; } /** * @return regionId */ public String getRegionId() { return this.regionId; } public static final class Builder extends Request.Builder<Builder> { private String machineTypes; private String regionId; /** * <p>MachineTypes.</p> */ public Builder machineTypes(String machineTypes) { this.putQueryParameter("MachineTypes", machineTypes); this.machineTypes = machineTypes; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.putQueryParameter("RegionId", regionId); this.regionId = regionId; return this; } public DescribeFieldStatisticsRequest build() { return new DescribeFieldStatisticsRequest(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/DescribeFieldStatisticsResponse.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 DescribeFieldStatisticsResponse} extends {@link TeaModel} * * <p>DescribeFieldStatisticsResponse</p> */ public class DescribeFieldStatisticsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeFieldStatisticsResponseBody body; private DescribeFieldStatisticsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeFieldStatisticsResponse 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 DescribeFieldStatisticsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeFieldStatisticsResponseBody body; private Builder() { super(); } private Builder(DescribeFieldStatisticsResponse 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(DescribeFieldStatisticsResponseBody body) { this.body = body; return this; } public DescribeFieldStatisticsResponse build() { return new DescribeFieldStatisticsResponse(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/DescribeFieldStatisticsResponseBody.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 DescribeFieldStatisticsResponseBody} extends {@link TeaModel} * * <p>DescribeFieldStatisticsResponseBody</p> */ public class DescribeFieldStatisticsResponseBody extends TeaModel { @NameInMap("GroupedFields") private GroupedFields groupedFields; @NameInMap("RequestId") private String requestId; private DescribeFieldStatisticsResponseBody(Builder builder) { this.groupedFields = builder.groupedFields; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeFieldStatisticsResponseBody create() { return builder().build(); } /** * @return groupedFields */ public GroupedFields getGroupedFields() { return this.groupedFields; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private GroupedFields groupedFields; private String requestId; /** * <p>GroupedFields.</p> */ public Builder groupedFields(GroupedFields groupedFields) { this.groupedFields = groupedFields; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeFieldStatisticsResponseBody build() { return new DescribeFieldStatisticsResponseBody(this); } } public static class GroupedFields extends TeaModel { @NameInMap("AliYunInstanceCount") private Integer aliYunInstanceCount; @NameInMap("ExposedInstanceCount") private Integer exposedInstanceCount; @NameInMap("GeneralAssetCount") private Integer generalAssetCount; @NameInMap("GroupCount") private Integer groupCount; @NameInMap("IdcInstanceCount") private Integer idcInstanceCount; @NameInMap("ImportantAssetCount") private Integer importantAssetCount; @NameInMap("InstanceCount") private Integer instanceCount; @NameInMap("InstanceSyncTaskCount") private Integer instanceSyncTaskCount; @NameInMap("NewInstanceCount") private Integer newInstanceCount; @NameInMap("NotRunningStatusCount") private Integer notRunningStatusCount; @NameInMap("OfflineInstanceCount") private Integer offlineInstanceCount; @NameInMap("PauseInstanceCount") private Integer pauseInstanceCount; @NameInMap("RegionCount") private Integer regionCount; @NameInMap("RiskInstanceCount") private Integer riskInstanceCount; @NameInMap("TencentInstanceCount") private Integer tencentInstanceCount; @NameInMap("TestAssetCount") private Integer testAssetCount; @NameInMap("UnprotectedInstanceCount") private Integer unprotectedInstanceCount; @NameInMap("VpcCount") private Integer vpcCount; private GroupedFields(Builder builder) { this.aliYunInstanceCount = builder.aliYunInstanceCount; this.exposedInstanceCount = builder.exposedInstanceCount; this.generalAssetCount = builder.generalAssetCount; this.groupCount = builder.groupCount; this.idcInstanceCount = builder.idcInstanceCount; this.importantAssetCount = builder.importantAssetCount; this.instanceCount = builder.instanceCount; this.instanceSyncTaskCount = builder.instanceSyncTaskCount; this.newInstanceCount = builder.newInstanceCount; this.notRunningStatusCount = builder.notRunningStatusCount; this.offlineInstanceCount = builder.offlineInstanceCount; this.pauseInstanceCount = builder.pauseInstanceCount; this.regionCount = builder.regionCount; this.riskInstanceCount = builder.riskInstanceCount; this.tencentInstanceCount = builder.tencentInstanceCount; this.testAssetCount = builder.testAssetCount; this.unprotectedInstanceCount = builder.unprotectedInstanceCount; this.vpcCount = builder.vpcCount; } public static Builder builder() { return new Builder(); } public static GroupedFields create() { return builder().build(); } /** * @return aliYunInstanceCount */ public Integer getAliYunInstanceCount() { return this.aliYunInstanceCount; } /** * @return exposedInstanceCount */ public Integer getExposedInstanceCount() { return this.exposedInstanceCount; } /** * @return generalAssetCount */ public Integer getGeneralAssetCount() { return this.generalAssetCount; } /** * @return groupCount */ public Integer getGroupCount() { return this.groupCount; } /** * @return idcInstanceCount */ public Integer getIdcInstanceCount() { return this.idcInstanceCount; } /** * @return importantAssetCount */ public Integer getImportantAssetCount() { return this.importantAssetCount; } /** * @return instanceCount */ public Integer getInstanceCount() { return this.instanceCount; } /** * @return instanceSyncTaskCount */ public Integer getInstanceSyncTaskCount() { return this.instanceSyncTaskCount; } /** * @return newInstanceCount */ public Integer getNewInstanceCount() { return this.newInstanceCount; } /** * @return notRunningStatusCount */ public Integer getNotRunningStatusCount() { return this.notRunningStatusCount; } /** * @return offlineInstanceCount */ public Integer getOfflineInstanceCount() { return this.offlineInstanceCount; } /** * @return pauseInstanceCount */ public Integer getPauseInstanceCount() { return this.pauseInstanceCount; } /** * @return regionCount */ public Integer getRegionCount() { return this.regionCount; } /** * @return riskInstanceCount */ public Integer getRiskInstanceCount() { return this.riskInstanceCount; } /** * @return tencentInstanceCount */ public Integer getTencentInstanceCount() { return this.tencentInstanceCount; } /** * @return testAssetCount */ public Integer getTestAssetCount() { return this.testAssetCount; } /** * @return unprotectedInstanceCount */ public Integer getUnprotectedInstanceCount() { return this.unprotectedInstanceCount; } /** * @return vpcCount */ public Integer getVpcCount() { return this.vpcCount; } public static final class Builder { private Integer aliYunInstanceCount; private Integer exposedInstanceCount; private Integer generalAssetCount; private Integer groupCount; private Integer idcInstanceCount; private Integer importantAssetCount; private Integer instanceCount; private Integer instanceSyncTaskCount; private Integer newInstanceCount; private Integer notRunningStatusCount; private Integer offlineInstanceCount; private Integer pauseInstanceCount; private Integer regionCount; private Integer riskInstanceCount; private Integer tencentInstanceCount; private Integer testAssetCount; private Integer unprotectedInstanceCount; private Integer vpcCount; /** * <p>AliYunInstanceCount.</p> */ public Builder aliYunInstanceCount(Integer aliYunInstanceCount) { this.aliYunInstanceCount = aliYunInstanceCount; return this; } /** * <p>ExposedInstanceCount.</p> */ public Builder exposedInstanceCount(Integer exposedInstanceCount) { this.exposedInstanceCount = exposedInstanceCount; return this; } /** * <p>GeneralAssetCount.</p> */ public Builder generalAssetCount(Integer generalAssetCount) { this.generalAssetCount = generalAssetCount; return this; } /** * <p>GroupCount.</p> */ public Builder groupCount(Integer groupCount) { this.groupCount = groupCount; return this; } /** * <p>IdcInstanceCount.</p> */ public Builder idcInstanceCount(Integer idcInstanceCount) { this.idcInstanceCount = idcInstanceCount; return this; } /** * <p>ImportantAssetCount.</p> */ public Builder importantAssetCount(Integer importantAssetCount) { this.importantAssetCount = importantAssetCount; return this; } /** * <p>InstanceCount.</p> */ public Builder instanceCount(Integer instanceCount) { this.instanceCount = instanceCount; return this; } /** * <p>InstanceSyncTaskCount.</p> */ public Builder instanceSyncTaskCount(Integer instanceSyncTaskCount) { this.instanceSyncTaskCount = instanceSyncTaskCount; return this; } /** * <p>NewInstanceCount.</p> */ public Builder newInstanceCount(Integer newInstanceCount) { this.newInstanceCount = newInstanceCount; return this; } /** * <p>NotRunningStatusCount.</p> */ public Builder notRunningStatusCount(Integer notRunningStatusCount) { this.notRunningStatusCount = notRunningStatusCount; return this; } /** * <p>OfflineInstanceCount.</p> */ public Builder offlineInstanceCount(Integer offlineInstanceCount) { this.offlineInstanceCount = offlineInstanceCount; return this; } /** * <p>PauseInstanceCount.</p> */ public Builder pauseInstanceCount(Integer pauseInstanceCount) { this.pauseInstanceCount = pauseInstanceCount; return this; } /** * <p>RegionCount.</p> */ public Builder regionCount(Integer regionCount) { this.regionCount = regionCount; return this; } /** * <p>RiskInstanceCount.</p> */ public Builder riskInstanceCount(Integer riskInstanceCount) { this.riskInstanceCount = riskInstanceCount; return this; } /** * <p>TencentInstanceCount.</p> */ public Builder tencentInstanceCount(Integer tencentInstanceCount) { this.tencentInstanceCount = tencentInstanceCount; return this; } /** * <p>TestAssetCount.</p> */ public Builder testAssetCount(Integer testAssetCount) { this.testAssetCount = testAssetCount; return this; } /** * <p>UnprotectedInstanceCount.</p> */ public Builder unprotectedInstanceCount(Integer unprotectedInstanceCount) { this.unprotectedInstanceCount = unprotectedInstanceCount; return this; } /** * <p>VpcCount.</p> */ public Builder vpcCount(Integer vpcCount) { this.vpcCount = vpcCount; return this; } public GroupedFields build() { return new GroupedFields(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/DescribeGroupedContainerInstancesRequest.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 DescribeGroupedContainerInstancesRequest} extends {@link RequestModel} * * <p>DescribeGroupedContainerInstancesRequest</p> */ public class DescribeGroupedContainerInstancesRequest extends Request { @Query @NameInMap("Criteria") private String criteria; @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("FieldValue") private String fieldValue; @Query @NameInMap("GroupField") private String groupField; @Query @NameInMap("LogicalExp") private String logicalExp; @Query @NameInMap("PageSize") private Integer pageSize; private DescribeGroupedContainerInstancesRequest(Builder builder) { super(builder); this.criteria = builder.criteria; this.currentPage = builder.currentPage; this.fieldValue = builder.fieldValue; this.groupField = builder.groupField; this.logicalExp = builder.logicalExp; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeGroupedContainerInstancesRequest create() { return builder().build(); } /** * @return criteria */ public String getCriteria() { return this.criteria; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return fieldValue */ public String getFieldValue() { return this.fieldValue; } /** * @return groupField */ public String getGroupField() { return this.groupField; } /** * @return logicalExp */ public String getLogicalExp() { return this.logicalExp; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<Builder> { private String criteria; private Integer currentPage; private String fieldValue; private String groupField; private String logicalExp; private Integer pageSize; /** * <p>Criteria.</p> */ public Builder criteria(String criteria) { this.putQueryParameter("Criteria", criteria); this.criteria = criteria; return this; } /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>FieldValue.</p> */ public Builder fieldValue(String fieldValue) { this.putQueryParameter("FieldValue", fieldValue); this.fieldValue = fieldValue; return this; } /** * <p>GroupField.</p> */ public Builder groupField(String groupField) { this.putQueryParameter("GroupField", groupField); this.groupField = groupField; return this; } /** * <p>LogicalExp.</p> */ public Builder logicalExp(String logicalExp) { this.putQueryParameter("LogicalExp", logicalExp); this.logicalExp = logicalExp; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } public DescribeGroupedContainerInstancesRequest build() { return new DescribeGroupedContainerInstancesRequest(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/DescribeGroupedContainerInstancesResponse.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 DescribeGroupedContainerInstancesResponse} extends {@link TeaModel} * * <p>DescribeGroupedContainerInstancesResponse</p> */ public class DescribeGroupedContainerInstancesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeGroupedContainerInstancesResponseBody body; private DescribeGroupedContainerInstancesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeGroupedContainerInstancesResponse 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 DescribeGroupedContainerInstancesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeGroupedContainerInstancesResponseBody body; private Builder() { super(); } private Builder(DescribeGroupedContainerInstancesResponse 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(DescribeGroupedContainerInstancesResponseBody body) { this.body = body; return this; } public DescribeGroupedContainerInstancesResponse build() { return new DescribeGroupedContainerInstancesResponse(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/DescribeGroupedContainerInstancesResponseBody.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 DescribeGroupedContainerInstancesResponseBody} extends {@link TeaModel} * * <p>DescribeGroupedContainerInstancesResponseBody</p> */ public class DescribeGroupedContainerInstancesResponseBody extends TeaModel { @NameInMap("GroupedContainerInstanceList") private java.util.List < GroupedContainerInstanceList> groupedContainerInstanceList; @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; private DescribeGroupedContainerInstancesResponseBody(Builder builder) { this.groupedContainerInstanceList = builder.groupedContainerInstanceList; this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeGroupedContainerInstancesResponseBody create() { return builder().build(); } /** * @return groupedContainerInstanceList */ public java.util.List < GroupedContainerInstanceList> getGroupedContainerInstanceList() { return this.groupedContainerInstanceList; } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < GroupedContainerInstanceList> groupedContainerInstanceList; private PageInfo pageInfo; private String requestId; /** * <p>GroupedContainerInstanceList.</p> */ public Builder groupedContainerInstanceList(java.util.List < GroupedContainerInstanceList> groupedContainerInstanceList) { this.groupedContainerInstanceList = groupedContainerInstanceList; return this; } /** * <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; } public DescribeGroupedContainerInstancesResponseBody build() { return new DescribeGroupedContainerInstancesResponseBody(this); } } public static class GroupedContainerInstanceList extends TeaModel { @NameInMap("AlarmCount") private Integer alarmCount; @NameInMap("AppName") private String appName; @NameInMap("ClusterId") private String clusterId; @NameInMap("ClusterName") private String clusterName; @NameInMap("ClusterType") private String clusterType; @NameInMap("CreateTime") private Long createTime; @NameInMap("CusterState") private String custerState; @NameInMap("HostIp") private String hostIp; @NameInMap("InstanceCount") private Integer instanceCount; @NameInMap("InstanceId") private String instanceId; @NameInMap("Namespace") private String namespace; @NameInMap("Pod") private String pod; @NameInMap("PodIp") private String podIp; @NameInMap("RegionId") private String regionId; @NameInMap("RiskInstanceCount") private Integer riskInstanceCount; @NameInMap("RiskLevel") private String riskLevel; @NameInMap("RiskStatus") private String riskStatus; @NameInMap("VulCount") private Integer vulCount; private GroupedContainerInstanceList(Builder builder) { this.alarmCount = builder.alarmCount; this.appName = builder.appName; this.clusterId = builder.clusterId; this.clusterName = builder.clusterName; this.clusterType = builder.clusterType; this.createTime = builder.createTime; this.custerState = builder.custerState; this.hostIp = builder.hostIp; this.instanceCount = builder.instanceCount; this.instanceId = builder.instanceId; this.namespace = builder.namespace; this.pod = builder.pod; this.podIp = builder.podIp; this.regionId = builder.regionId; this.riskInstanceCount = builder.riskInstanceCount; this.riskLevel = builder.riskLevel; this.riskStatus = builder.riskStatus; this.vulCount = builder.vulCount; } public static Builder builder() { return new Builder(); } public static GroupedContainerInstanceList create() { return builder().build(); } /** * @return alarmCount */ public Integer getAlarmCount() { return this.alarmCount; } /** * @return appName */ public String getAppName() { return this.appName; } /** * @return clusterId */ public String getClusterId() { return this.clusterId; } /** * @return clusterName */ public String getClusterName() { return this.clusterName; } /** * @return clusterType */ public String getClusterType() { return this.clusterType; } /** * @return createTime */ public Long getCreateTime() { return this.createTime; } /** * @return custerState */ public String getCusterState() { return this.custerState; } /** * @return hostIp */ public String getHostIp() { return this.hostIp; } /** * @return instanceCount */ public Integer getInstanceCount() { return this.instanceCount; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return pod */ public String getPod() { return this.pod; } /** * @return podIp */ public String getPodIp() { return this.podIp; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return riskInstanceCount */ public Integer getRiskInstanceCount() { return this.riskInstanceCount; } /** * @return riskLevel */ public String getRiskLevel() { return this.riskLevel; } /** * @return riskStatus */ public String getRiskStatus() { return this.riskStatus; } /** * @return vulCount */ public Integer getVulCount() { return this.vulCount; } public static final class Builder { private Integer alarmCount; private String appName; private String clusterId; private String clusterName; private String clusterType; private Long createTime; private String custerState; private String hostIp; private Integer instanceCount; private String instanceId; private String namespace; private String pod; private String podIp; private String regionId; private Integer riskInstanceCount; private String riskLevel; private String riskStatus; private Integer vulCount; /** * <p>AlarmCount.</p> */ public Builder alarmCount(Integer alarmCount) { this.alarmCount = alarmCount; return this; } /** * <p>AppName.</p> */ public Builder appName(String appName) { this.appName = appName; return this; } /** * <p>ClusterId.</p> */ public Builder clusterId(String clusterId) { this.clusterId = clusterId; return this; } /** * <p>ClusterName.</p> */ public Builder clusterName(String clusterName) { this.clusterName = clusterName; return this; } /** * <p>ClusterType.</p> */ public Builder clusterType(String clusterType) { this.clusterType = clusterType; return this; } /** * <p>CreateTime.</p> */ public Builder createTime(Long createTime) { this.createTime = createTime; return this; } /** * <p>CusterState.</p> */ public Builder custerState(String custerState) { this.custerState = custerState; return this; } /** * <p>HostIp.</p> */ public Builder hostIp(String hostIp) { this.hostIp = hostIp; return this; } /** * <p>InstanceCount.</p> */ public Builder instanceCount(Integer instanceCount) { this.instanceCount = instanceCount; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * <p>Namespace.</p> */ public Builder namespace(String namespace) { this.namespace = namespace; return this; } /** * <p>Pod.</p> */ public Builder pod(String pod) { this.pod = pod; return this; } /** * <p>PodIp.</p> */ public Builder podIp(String podIp) { this.podIp = podIp; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * <p>RiskInstanceCount.</p> */ public Builder riskInstanceCount(Integer riskInstanceCount) { this.riskInstanceCount = riskInstanceCount; return this; } /** * <p>RiskLevel.</p> */ public Builder riskLevel(String riskLevel) { this.riskLevel = riskLevel; return this; } /** * <p>RiskStatus.</p> */ public Builder riskStatus(String riskStatus) { this.riskStatus = riskStatus; return this; } /** * <p>VulCount.</p> */ public Builder vulCount(Integer vulCount) { this.vulCount = vulCount; return this; } public GroupedContainerInstanceList build() { return new GroupedContainerInstanceList(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); } } } }
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/DescribeGroupedInstancesRequest.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 DescribeGroupedInstancesRequest} extends {@link RequestModel} * * <p>DescribeGroupedInstancesRequest</p> */ public class DescribeGroupedInstancesRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("FieldValue") private String fieldValue; @Query @NameInMap("GroupField") private String groupField; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("MachineTypes") private String machineTypes; @Query @NameInMap("NoPage") private Boolean noPage; @Query @NameInMap("PageSize") private Integer pageSize; private DescribeGroupedInstancesRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.fieldValue = builder.fieldValue; this.groupField = builder.groupField; this.lang = builder.lang; this.machineTypes = builder.machineTypes; this.noPage = builder.noPage; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeGroupedInstancesRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return fieldValue */ public String getFieldValue() { return this.fieldValue; } /** * @return groupField */ public String getGroupField() { return this.groupField; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return machineTypes */ public String getMachineTypes() { return this.machineTypes; } /** * @return noPage */ public Boolean getNoPage() { return this.noPage; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String fieldValue; private String groupField; private String lang; private String machineTypes; private Boolean noPage; private Integer pageSize; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>FieldValue.</p> */ public Builder fieldValue(String fieldValue) { this.putQueryParameter("FieldValue", fieldValue); this.fieldValue = fieldValue; return this; } /** * <p>GroupField.</p> */ public Builder groupField(String groupField) { this.putQueryParameter("GroupField", groupField); this.groupField = groupField; return this; } /** * <p>Lang.</p> */ public Builder lang(String lang) { this.putQueryParameter("Lang", lang); this.lang = lang; return this; } /** * <p>MachineTypes.</p> */ public Builder machineTypes(String machineTypes) { this.putQueryParameter("MachineTypes", machineTypes); this.machineTypes = machineTypes; return this; } /** * <p>NoPage.</p> */ public Builder noPage(Boolean noPage) { this.putQueryParameter("NoPage", noPage); this.noPage = noPage; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } public DescribeGroupedInstancesRequest build() { return new DescribeGroupedInstancesRequest(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/DescribeGroupedInstancesResponse.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 DescribeGroupedInstancesResponse} extends {@link TeaModel} * * <p>DescribeGroupedInstancesResponse</p> */ public class DescribeGroupedInstancesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeGroupedInstancesResponseBody body; private DescribeGroupedInstancesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeGroupedInstancesResponse 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 DescribeGroupedInstancesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeGroupedInstancesResponseBody body; private Builder() { super(); } private Builder(DescribeGroupedInstancesResponse 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(DescribeGroupedInstancesResponseBody body) { this.body = body; return this; } public DescribeGroupedInstancesResponse build() { return new DescribeGroupedInstancesResponse(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/DescribeGroupedInstancesResponseBody.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 DescribeGroupedInstancesResponseBody} extends {@link TeaModel} * * <p>DescribeGroupedInstancesResponseBody</p> */ public class DescribeGroupedInstancesResponseBody extends TeaModel { @NameInMap("Instances") private java.util.List < Instances> instances; @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; private DescribeGroupedInstancesResponseBody(Builder builder) { this.instances = builder.instances; this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeGroupedInstancesResponseBody create() { return builder().build(); } /** * @return instances */ public java.util.List < Instances> getInstances() { return this.instances; } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < Instances> instances; private PageInfo pageInfo; private String requestId; /** * <p>Instances.</p> */ public Builder instances(java.util.List < Instances> instances) { this.instances = instances; return this; } /** * <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; } public DescribeGroupedInstancesResponseBody build() { return new DescribeGroupedInstancesResponseBody(this); } } public static class Instances extends TeaModel { @NameInMap("AsapVulInstanceCount") private Long asapVulInstanceCount; @NameInMap("FieldAliasName") private String fieldAliasName; @NameInMap("GroupFlag") private Integer groupFlag; @NameInMap("InstanceCount") private String instanceCount; @NameInMap("RiskInstanceCount") private String riskInstanceCount; @NameInMap("UnProtectedInstanceCount") private String unProtectedInstanceCount; private Instances(Builder builder) { this.asapVulInstanceCount = builder.asapVulInstanceCount; this.fieldAliasName = builder.fieldAliasName; this.groupFlag = builder.groupFlag; this.instanceCount = builder.instanceCount; this.riskInstanceCount = builder.riskInstanceCount; this.unProtectedInstanceCount = builder.unProtectedInstanceCount; } public static Builder builder() { return new Builder(); } public static Instances create() { return builder().build(); } /** * @return asapVulInstanceCount */ public Long getAsapVulInstanceCount() { return this.asapVulInstanceCount; } /** * @return fieldAliasName */ public String getFieldAliasName() { return this.fieldAliasName; } /** * @return groupFlag */ public Integer getGroupFlag() { return this.groupFlag; } /** * @return instanceCount */ public String getInstanceCount() { return this.instanceCount; } /** * @return riskInstanceCount */ public String getRiskInstanceCount() { return this.riskInstanceCount; } /** * @return unProtectedInstanceCount */ public String getUnProtectedInstanceCount() { return this.unProtectedInstanceCount; } public static final class Builder { private Long asapVulInstanceCount; private String fieldAliasName; private Integer groupFlag; private String instanceCount; private String riskInstanceCount; private String unProtectedInstanceCount; /** * <p>AsapVulInstanceCount.</p> */ public Builder asapVulInstanceCount(Long asapVulInstanceCount) { this.asapVulInstanceCount = asapVulInstanceCount; return this; } /** * <p>FieldAliasName.</p> */ public Builder fieldAliasName(String fieldAliasName) { this.fieldAliasName = fieldAliasName; return this; } /** * <p>GroupFlag.</p> */ public Builder groupFlag(Integer groupFlag) { this.groupFlag = groupFlag; return this; } /** * <p>InstanceCount.</p> */ public Builder instanceCount(String instanceCount) { this.instanceCount = instanceCount; return this; } /** * <p>RiskInstanceCount.</p> */ public Builder riskInstanceCount(String riskInstanceCount) { this.riskInstanceCount = riskInstanceCount; return this; } /** * <p>UnProtectedInstanceCount.</p> */ public Builder unProtectedInstanceCount(String unProtectedInstanceCount) { this.unProtectedInstanceCount = unProtectedInstanceCount; return this; } public Instances build() { return new Instances(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); } } } }
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/DescribeGroupedMaliciousFilesRequest.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 DescribeGroupedMaliciousFilesRequest} extends {@link RequestModel} * * <p>DescribeGroupedMaliciousFilesRequest</p> */ public class DescribeGroupedMaliciousFilesRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("FuzzyMaliciousName") private String fuzzyMaliciousName; @Query @NameInMap("ImageDigest") private String imageDigest; @Query @NameInMap("ImageLayer") private String imageLayer; @Query @NameInMap("ImageTag") private String imageTag; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Levels") private String levels; @Query @NameInMap("PageSize") private String pageSize; @Query @NameInMap("RepoId") private String repoId; @Query @NameInMap("RepoInstanceId") private String repoInstanceId; @Query @NameInMap("RepoName") private String repoName; @Query @NameInMap("RepoNamespace") private String repoNamespace; @Query @NameInMap("RepoRegionId") private String repoRegionId; private DescribeGroupedMaliciousFilesRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.fuzzyMaliciousName = builder.fuzzyMaliciousName; this.imageDigest = builder.imageDigest; this.imageLayer = builder.imageLayer; this.imageTag = builder.imageTag; this.lang = builder.lang; this.levels = builder.levels; this.pageSize = builder.pageSize; this.repoId = builder.repoId; this.repoInstanceId = builder.repoInstanceId; this.repoName = builder.repoName; this.repoNamespace = builder.repoNamespace; this.repoRegionId = builder.repoRegionId; } public static Builder builder() { return new Builder(); } public static DescribeGroupedMaliciousFilesRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return fuzzyMaliciousName */ public String getFuzzyMaliciousName() { return this.fuzzyMaliciousName; } /** * @return imageDigest */ public String getImageDigest() { return this.imageDigest; } /** * @return imageLayer */ public String getImageLayer() { return this.imageLayer; } /** * @return imageTag */ public String getImageTag() { return this.imageTag; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return levels */ public String getLevels() { return this.levels; } /** * @return pageSize */ public String getPageSize() { return this.pageSize; } /** * @return repoId */ public String getRepoId() { return this.repoId; } /** * @return repoInstanceId */ public String getRepoInstanceId() { return this.repoInstanceId; } /** * @return repoName */ public String getRepoName() { return this.repoName; } /** * @return repoNamespace */ public String getRepoNamespace() { return this.repoNamespace; } /** * @return repoRegionId */ public String getRepoRegionId() { return this.repoRegionId; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private String fuzzyMaliciousName; private String imageDigest; private String imageLayer; private String imageTag; private String lang; private String levels; private String pageSize; private String repoId; private String repoInstanceId; private String repoName; private String repoNamespace; private String repoRegionId; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>FuzzyMaliciousName.</p> */ public Builder fuzzyMaliciousName(String fuzzyMaliciousName) { this.putQueryParameter("FuzzyMaliciousName", fuzzyMaliciousName); this.fuzzyMaliciousName = fuzzyMaliciousName; return this; } /** * <p>ImageDigest.</p> */ public Builder imageDigest(String imageDigest) { this.putQueryParameter("ImageDigest", imageDigest); this.imageDigest = imageDigest; return this; } /** * <p>ImageLayer.</p> */ public Builder imageLayer(String imageLayer) { this.putQueryParameter("ImageLayer", imageLayer); this.imageLayer = imageLayer; return this; } /** * <p>ImageTag.</p> */ public Builder imageTag(String imageTag) { this.putQueryParameter("ImageTag", imageTag); this.imageTag = imageTag; 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>PageSize.</p> */ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>RepoId.</p> */ public Builder repoId(String repoId) { this.putQueryParameter("RepoId", repoId); this.repoId = repoId; return this; } /** * <p>RepoInstanceId.</p> */ public Builder repoInstanceId(String repoInstanceId) { this.putQueryParameter("RepoInstanceId", repoInstanceId); this.repoInstanceId = repoInstanceId; return this; } /** * <p>RepoName.</p> */ public Builder repoName(String repoName) { this.putQueryParameter("RepoName", repoName); this.repoName = repoName; return this; } /** * <p>RepoNamespace.</p> */ public Builder repoNamespace(String repoNamespace) { this.putQueryParameter("RepoNamespace", repoNamespace); this.repoNamespace = repoNamespace; return this; } /** * <p>RepoRegionId.</p> */ public Builder repoRegionId(String repoRegionId) { this.putQueryParameter("RepoRegionId", repoRegionId); this.repoRegionId = repoRegionId; return this; } public DescribeGroupedMaliciousFilesRequest build() { return new DescribeGroupedMaliciousFilesRequest(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/DescribeGroupedMaliciousFilesResponse.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 DescribeGroupedMaliciousFilesResponse} extends {@link TeaModel} * * <p>DescribeGroupedMaliciousFilesResponse</p> */ public class DescribeGroupedMaliciousFilesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeGroupedMaliciousFilesResponseBody body; private DescribeGroupedMaliciousFilesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeGroupedMaliciousFilesResponse 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 DescribeGroupedMaliciousFilesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeGroupedMaliciousFilesResponseBody body; private Builder() { super(); } private Builder(DescribeGroupedMaliciousFilesResponse 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(DescribeGroupedMaliciousFilesResponseBody body) { this.body = body; return this; } public DescribeGroupedMaliciousFilesResponse build() { return new DescribeGroupedMaliciousFilesResponse(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/DescribeGroupedMaliciousFilesResponseBody.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 DescribeGroupedMaliciousFilesResponseBody} extends {@link TeaModel} * * <p>DescribeGroupedMaliciousFilesResponseBody</p> */ public class DescribeGroupedMaliciousFilesResponseBody extends TeaModel { @NameInMap("GroupedMaliciousFileResponse") private java.util.List < GroupedMaliciousFileResponse> groupedMaliciousFileResponse; @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; private DescribeGroupedMaliciousFilesResponseBody(Builder builder) { this.groupedMaliciousFileResponse = builder.groupedMaliciousFileResponse; this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeGroupedMaliciousFilesResponseBody create() { return builder().build(); } /** * @return groupedMaliciousFileResponse */ public java.util.List < GroupedMaliciousFileResponse> getGroupedMaliciousFileResponse() { return this.groupedMaliciousFileResponse; } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < GroupedMaliciousFileResponse> groupedMaliciousFileResponse; private PageInfo pageInfo; private String requestId; /** * <p>GroupedMaliciousFileResponse.</p> */ public Builder groupedMaliciousFileResponse(java.util.List < GroupedMaliciousFileResponse> groupedMaliciousFileResponse) { this.groupedMaliciousFileResponse = groupedMaliciousFileResponse; return this; } /** * <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; } public DescribeGroupedMaliciousFilesResponseBody build() { return new DescribeGroupedMaliciousFilesResponseBody(this); } } public static class GroupedMaliciousFileResponse extends TeaModel { @NameInMap("FirstScanTimestamp") private Long firstScanTimestamp; @NameInMap("ImageCount") private Long imageCount; @NameInMap("LatestScanTimestamp") private Long latestScanTimestamp; @NameInMap("Level") private String level; @NameInMap("MaliciousMd5") private String maliciousMd5; @NameInMap("MaliciousName") private String maliciousName; @NameInMap("Status") private Integer status; private GroupedMaliciousFileResponse(Builder builder) { this.firstScanTimestamp = builder.firstScanTimestamp; this.imageCount = builder.imageCount; this.latestScanTimestamp = builder.latestScanTimestamp; this.level = builder.level; this.maliciousMd5 = builder.maliciousMd5; this.maliciousName = builder.maliciousName; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static GroupedMaliciousFileResponse create() { return builder().build(); } /** * @return firstScanTimestamp */ public Long getFirstScanTimestamp() { return this.firstScanTimestamp; } /** * @return imageCount */ public Long getImageCount() { return this.imageCount; } /** * @return latestScanTimestamp */ public Long getLatestScanTimestamp() { return this.latestScanTimestamp; } /** * @return level */ public String getLevel() { return this.level; } /** * @return maliciousMd5 */ public String getMaliciousMd5() { return this.maliciousMd5; } /** * @return maliciousName */ public String getMaliciousName() { return this.maliciousName; } /** * @return status */ public Integer getStatus() { return this.status; } public static final class Builder { private Long firstScanTimestamp; private Long imageCount; private Long latestScanTimestamp; private String level; private String maliciousMd5; private String maliciousName; private Integer status; /** * <p>FirstScanTimestamp.</p> */ public Builder firstScanTimestamp(Long firstScanTimestamp) { this.firstScanTimestamp = firstScanTimestamp; return this; } /** * <p>ImageCount.</p> */ public Builder imageCount(Long imageCount) { this.imageCount = imageCount; return this; } /** * <p>LatestScanTimestamp.</p> */ public Builder latestScanTimestamp(Long latestScanTimestamp) { this.latestScanTimestamp = latestScanTimestamp; return this; } /** * <p>Level.</p> */ public Builder level(String level) { this.level = level; return this; } /** * <p>MaliciousMd5.</p> */ public Builder maliciousMd5(String maliciousMd5) { this.maliciousMd5 = maliciousMd5; return this; } /** * <p>MaliciousName.</p> */ public Builder maliciousName(String maliciousName) { this.maliciousName = maliciousName; return this; } /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } public GroupedMaliciousFileResponse build() { return new GroupedMaliciousFileResponse(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); } } } }
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/DescribeGroupedTagsRequest.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 DescribeGroupedTagsRequest} extends {@link RequestModel} * * <p>DescribeGroupedTagsRequest</p> */ public class DescribeGroupedTagsRequest extends Request { @Query @NameInMap("MachineTypes") private String machineTypes; private DescribeGroupedTagsRequest(Builder builder) { super(builder); this.machineTypes = builder.machineTypes; } public static Builder builder() { return new Builder(); } public static DescribeGroupedTagsRequest create() { return builder().build(); } /** * @return machineTypes */ public String getMachineTypes() { return this.machineTypes; } public static final class Builder extends Request.Builder<Builder> { private String machineTypes; /** * <p>MachineTypes.</p> */ public Builder machineTypes(String machineTypes) { this.putQueryParameter("MachineTypes", machineTypes); this.machineTypes = machineTypes; return this; } public DescribeGroupedTagsRequest build() { return new DescribeGroupedTagsRequest(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/DescribeGroupedTagsResponse.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 DescribeGroupedTagsResponse} extends {@link TeaModel} * * <p>DescribeGroupedTagsResponse</p> */ public class DescribeGroupedTagsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeGroupedTagsResponseBody body; private DescribeGroupedTagsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeGroupedTagsResponse 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 DescribeGroupedTagsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeGroupedTagsResponseBody body; private Builder() { super(); } private Builder(DescribeGroupedTagsResponse 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(DescribeGroupedTagsResponseBody body) { this.body = body; return this; } public DescribeGroupedTagsResponse build() { return new DescribeGroupedTagsResponse(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/DescribeGroupedTagsResponseBody.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 DescribeGroupedTagsResponseBody} extends {@link TeaModel} * * <p>DescribeGroupedTagsResponseBody</p> */ public class DescribeGroupedTagsResponseBody extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("GroupedFileds") private java.util.List < GroupedFileds> groupedFileds; @NameInMap("HttpStatusCode") private Integer httpStatusCode; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private DescribeGroupedTagsResponseBody(Builder builder) { this.count = builder.count; this.groupedFileds = builder.groupedFileds; this.httpStatusCode = builder.httpStatusCode; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DescribeGroupedTagsResponseBody create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return groupedFileds */ public java.util.List < GroupedFileds> getGroupedFileds() { return this.groupedFileds; } /** * @return httpStatusCode */ public Integer getHttpStatusCode() { return this.httpStatusCode; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private Integer count; private java.util.List < GroupedFileds> groupedFileds; private Integer httpStatusCode; private String requestId; private Boolean success; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>GroupedFileds.</p> */ public Builder groupedFileds(java.util.List < GroupedFileds> groupedFileds) { this.groupedFileds = groupedFileds; return this; } /** * <p>HttpStatusCode.</p> */ public Builder httpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Success.</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeGroupedTagsResponseBody build() { return new DescribeGroupedTagsResponseBody(this); } } public static class GroupedFileds extends TeaModel { @NameInMap("Count") private String count; @NameInMap("Name") private String name; @NameInMap("TagId") private Integer tagId; private GroupedFileds(Builder builder) { this.count = builder.count; this.name = builder.name; this.tagId = builder.tagId; } public static Builder builder() { return new Builder(); } public static GroupedFileds create() { return builder().build(); } /** * @return count */ public String getCount() { return this.count; } /** * @return name */ public String getName() { return this.name; } /** * @return tagId */ public Integer getTagId() { return this.tagId; } public static final class Builder { private String count; private String name; private Integer tagId; /** * <p>Count.</p> */ public Builder count(String count) { this.count = count; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>TagId.</p> */ public Builder tagId(Integer tagId) { this.tagId = tagId; return this; } public GroupedFileds build() { return new GroupedFileds(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/DescribeGroupedVulRequest.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 DescribeGroupedVulRequest} extends {@link RequestModel} * * <p>DescribeGroupedVulRequest</p> */ public class DescribeGroupedVulRequest extends Request { @Query @NameInMap("AliasName") private String aliasName; @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("SearchTags") private String searchTags; @Query @NameInMap("Type") private String type; @Query @NameInMap("Uuids") private String uuids; private DescribeGroupedVulRequest(Builder builder) { super(builder); this.aliasName = builder.aliasName; 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.searchTags = builder.searchTags; this.type = builder.type; this.uuids = builder.uuids; } public static Builder builder() { return new Builder(); } public static DescribeGroupedVulRequest create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @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 searchTags */ public String getSearchTags() { return this.searchTags; } /** * @return type */ public String getType() { return this.type; } /** * @return uuids */ public String getUuids() { return this.uuids; } public static final class Builder extends Request.Builder<Builder> { private String aliasName; private Integer currentPage; private String dealed; private String groupId; private String lang; private String necessity; private Integer pageSize; private String searchTags; private String type; private String uuids; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.putQueryParameter("AliasName", aliasName); this.aliasName = aliasName; 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>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; } public DescribeGroupedVulRequest build() { return new DescribeGroupedVulRequest(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/DescribeGroupedVulResponse.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 DescribeGroupedVulResponse} extends {@link TeaModel} * * <p>DescribeGroupedVulResponse</p> */ public class DescribeGroupedVulResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeGroupedVulResponseBody body; private DescribeGroupedVulResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeGroupedVulResponse 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 DescribeGroupedVulResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeGroupedVulResponseBody body; private Builder() { super(); } private Builder(DescribeGroupedVulResponse 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(DescribeGroupedVulResponseBody body) { this.body = body; return this; } public DescribeGroupedVulResponse build() { return new DescribeGroupedVulResponse(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/DescribeGroupedVulResponseBody.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 DescribeGroupedVulResponseBody} extends {@link TeaModel} * * <p>DescribeGroupedVulResponseBody</p> */ public class DescribeGroupedVulResponseBody extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("GroupedVulItems") private java.util.List < GroupedVulItems> groupedVulItems; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeGroupedVulResponseBody(Builder builder) { this.currentPage = builder.currentPage; this.groupedVulItems = builder.groupedVulItems; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeGroupedVulResponseBody create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return groupedVulItems */ public java.util.List < GroupedVulItems> getGroupedVulItems() { return this.groupedVulItems; } /** * @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 Integer currentPage; private java.util.List < GroupedVulItems> groupedVulItems; private Integer pageSize; private String requestId; private Integer totalCount; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>GroupedVulItems.</p> */ public Builder groupedVulItems(java.util.List < GroupedVulItems> groupedVulItems) { this.groupedVulItems = groupedVulItems; 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 DescribeGroupedVulResponseBody build() { return new DescribeGroupedVulResponseBody(this); } } public static class GroupedVulItems extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("AsapCount") private Integer asapCount; @NameInMap("GmtLast") private Long gmtLast; @NameInMap("HandledCount") private Integer handledCount; @NameInMap("LaterCount") private Integer laterCount; @NameInMap("Name") private String name; @NameInMap("NntfCount") private Integer nntfCount; @NameInMap("Tags") private String tags; @NameInMap("TotalFixCount") private Long totalFixCount; @NameInMap("Type") private String type; private GroupedVulItems(Builder builder) { this.aliasName = builder.aliasName; this.asapCount = builder.asapCount; this.gmtLast = builder.gmtLast; this.handledCount = builder.handledCount; this.laterCount = builder.laterCount; this.name = builder.name; this.nntfCount = builder.nntfCount; this.tags = builder.tags; this.totalFixCount = builder.totalFixCount; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static GroupedVulItems create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return asapCount */ public Integer getAsapCount() { return this.asapCount; } /** * @return gmtLast */ public Long getGmtLast() { return this.gmtLast; } /** * @return handledCount */ public Integer getHandledCount() { return this.handledCount; } /** * @return laterCount */ public Integer getLaterCount() { return this.laterCount; } /** * @return name */ public String getName() { return this.name; } /** * @return nntfCount */ public Integer getNntfCount() { return this.nntfCount; } /** * @return tags */ public String getTags() { return this.tags; } /** * @return totalFixCount */ public Long getTotalFixCount() { return this.totalFixCount; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String aliasName; private Integer asapCount; private Long gmtLast; private Integer handledCount; private Integer laterCount; private String name; private Integer nntfCount; private String tags; private Long totalFixCount; private String type; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; return this; } /** * <p>AsapCount.</p> */ public Builder asapCount(Integer asapCount) { this.asapCount = asapCount; return this; } /** * <p>GmtLast.</p> */ public Builder gmtLast(Long gmtLast) { this.gmtLast = gmtLast; return this; } /** * <p>HandledCount.</p> */ public Builder handledCount(Integer handledCount) { this.handledCount = handledCount; return this; } /** * <p>LaterCount.</p> */ public Builder laterCount(Integer laterCount) { this.laterCount = laterCount; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>NntfCount.</p> */ public Builder nntfCount(Integer nntfCount) { this.nntfCount = nntfCount; return this; } /** * <p>Tags.</p> */ public Builder tags(String tags) { this.tags = tags; return this; } /** * <p>TotalFixCount.</p> */ public Builder totalFixCount(Long totalFixCount) { this.totalFixCount = totalFixCount; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } public GroupedVulItems build() { return new GroupedVulItems(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/DescribeHoneyPotAuthRequest.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 DescribeHoneyPotAuthRequest} extends {@link RequestModel} * * <p>DescribeHoneyPotAuthRequest</p> */ public class DescribeHoneyPotAuthRequest extends Request { private DescribeHoneyPotAuthRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeHoneyPotAuthRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeHoneyPotAuthRequest build() { return new DescribeHoneyPotAuthRequest(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/DescribeHoneyPotAuthResponse.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 DescribeHoneyPotAuthResponse} extends {@link TeaModel} * * <p>DescribeHoneyPotAuthResponse</p> */ public class DescribeHoneyPotAuthResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeHoneyPotAuthResponseBody body; private DescribeHoneyPotAuthResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeHoneyPotAuthResponse 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 DescribeHoneyPotAuthResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeHoneyPotAuthResponseBody body; private Builder() { super(); } private Builder(DescribeHoneyPotAuthResponse 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(DescribeHoneyPotAuthResponseBody body) { this.body = body; return this; } public DescribeHoneyPotAuthResponse build() { return new DescribeHoneyPotAuthResponse(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/DescribeHoneyPotAuthResponseBody.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 DescribeHoneyPotAuthResponseBody} extends {@link TeaModel} * * <p>DescribeHoneyPotAuthResponseBody</p> */ public class DescribeHoneyPotAuthResponseBody extends TeaModel { @NameInMap("HoneyPotAuthCount") private Long honeyPotAuthCount; @NameInMap("HoneyPotCount") private Integer honeyPotCount; @NameInMap("RequestId") private String requestId; private DescribeHoneyPotAuthResponseBody(Builder builder) { this.honeyPotAuthCount = builder.honeyPotAuthCount; this.honeyPotCount = builder.honeyPotCount; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeHoneyPotAuthResponseBody create() { return builder().build(); } /** * @return honeyPotAuthCount */ public Long getHoneyPotAuthCount() { return this.honeyPotAuthCount; } /** * @return honeyPotCount */ public Integer getHoneyPotCount() { return this.honeyPotCount; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Long honeyPotAuthCount; private Integer honeyPotCount; private String requestId; /** * <p>HoneyPotAuthCount.</p> */ public Builder honeyPotAuthCount(Long honeyPotAuthCount) { this.honeyPotAuthCount = honeyPotAuthCount; return this; } /** * <p>HoneyPotCount.</p> */ public Builder honeyPotCount(Integer honeyPotCount) { this.honeyPotCount = honeyPotCount; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeHoneyPotAuthResponseBody build() { return new DescribeHoneyPotAuthResponseBody(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/DescribeHoneyPotSuspStatisticsRequest.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 DescribeHoneyPotSuspStatisticsRequest} extends {@link RequestModel} * * <p>DescribeHoneyPotSuspStatisticsRequest</p> */ public class DescribeHoneyPotSuspStatisticsRequest extends Request { @Query @NameInMap("From") private String from; @Query @NameInMap("StatisticsDays") private Integer statisticsDays; @Query @NameInMap("StatisticsKeyType") private String statisticsKeyType; private DescribeHoneyPotSuspStatisticsRequest(Builder builder) { super(builder); this.from = builder.from; this.statisticsDays = builder.statisticsDays; this.statisticsKeyType = builder.statisticsKeyType; } public static Builder builder() { return new Builder(); } public static DescribeHoneyPotSuspStatisticsRequest create() { return builder().build(); } /** * @return from */ public String getFrom() { return this.from; } /** * @return statisticsDays */ public Integer getStatisticsDays() { return this.statisticsDays; } /** * @return statisticsKeyType */ public String getStatisticsKeyType() { return this.statisticsKeyType; } public static final class Builder extends Request.Builder<Builder> { private String from; private Integer statisticsDays; private String statisticsKeyType; /** * <p>From.</p> */ public Builder from(String from) { this.putQueryParameter("From", from); this.from = from; return this; } /** * <p>StatisticsDays.</p> */ public Builder statisticsDays(Integer statisticsDays) { this.putQueryParameter("StatisticsDays", statisticsDays); this.statisticsDays = statisticsDays; return this; } /** * <p>StatisticsKeyType.</p> */ public Builder statisticsKeyType(String statisticsKeyType) { this.putQueryParameter("StatisticsKeyType", statisticsKeyType); this.statisticsKeyType = statisticsKeyType; return this; } public DescribeHoneyPotSuspStatisticsRequest build() { return new DescribeHoneyPotSuspStatisticsRequest(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/DescribeHoneyPotSuspStatisticsResponse.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 DescribeHoneyPotSuspStatisticsResponse} extends {@link TeaModel} * * <p>DescribeHoneyPotSuspStatisticsResponse</p> */ public class DescribeHoneyPotSuspStatisticsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeHoneyPotSuspStatisticsResponseBody body; private DescribeHoneyPotSuspStatisticsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeHoneyPotSuspStatisticsResponse 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 DescribeHoneyPotSuspStatisticsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeHoneyPotSuspStatisticsResponseBody body; private Builder() { super(); } private Builder(DescribeHoneyPotSuspStatisticsResponse 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(DescribeHoneyPotSuspStatisticsResponseBody body) { this.body = body; return this; } public DescribeHoneyPotSuspStatisticsResponse build() { return new DescribeHoneyPotSuspStatisticsResponse(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/DescribeHoneyPotSuspStatisticsResponseBody.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 DescribeHoneyPotSuspStatisticsResponseBody} extends {@link TeaModel} * * <p>DescribeHoneyPotSuspStatisticsResponseBody</p> */ public class DescribeHoneyPotSuspStatisticsResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("SuspHoneyPotStatisticsResponse") private java.util.List < SuspHoneyPotStatisticsResponse> suspHoneyPotStatisticsResponse; private DescribeHoneyPotSuspStatisticsResponseBody(Builder builder) { this.requestId = builder.requestId; this.suspHoneyPotStatisticsResponse = builder.suspHoneyPotStatisticsResponse; } public static Builder builder() { return new Builder(); } public static DescribeHoneyPotSuspStatisticsResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return suspHoneyPotStatisticsResponse */ public java.util.List < SuspHoneyPotStatisticsResponse> getSuspHoneyPotStatisticsResponse() { return this.suspHoneyPotStatisticsResponse; } public static final class Builder { private String requestId; private java.util.List < SuspHoneyPotStatisticsResponse> suspHoneyPotStatisticsResponse; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>SuspHoneyPotStatisticsResponse.</p> */ public Builder suspHoneyPotStatisticsResponse(java.util.List < SuspHoneyPotStatisticsResponse> suspHoneyPotStatisticsResponse) { this.suspHoneyPotStatisticsResponse = suspHoneyPotStatisticsResponse; return this; } public DescribeHoneyPotSuspStatisticsResponseBody build() { return new DescribeHoneyPotSuspStatisticsResponseBody(this); } } public static class SuspHoneyPotStatisticsResponse extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("Type") private String type; @NameInMap("VpcId") private String vpcId; @NameInMap("VpcName") private String vpcName; private SuspHoneyPotStatisticsResponse(Builder builder) { this.count = builder.count; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.type = builder.type; this.vpcId = builder.vpcId; this.vpcName = builder.vpcName; } public static Builder builder() { return new Builder(); } public static SuspHoneyPotStatisticsResponse create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceName */ public String getInstanceName() { return this.instanceName; } /** * @return type */ public String getType() { return this.type; } /** * @return vpcId */ public String getVpcId() { return this.vpcId; } /** * @return vpcName */ public String getVpcName() { return this.vpcName; } public static final class Builder { private Integer count; private String instanceId; private String instanceName; private String type; private String vpcId; private String vpcName; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; 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>Type.</p> */ public Builder type(String type) { this.type = type; 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; } public SuspHoneyPotStatisticsResponse build() { return new SuspHoneyPotStatisticsResponse(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/DescribeImageFixTaskRequest.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 DescribeImageFixTaskRequest} extends {@link RequestModel} * * <p>DescribeImageFixTaskRequest</p> */ public class DescribeImageFixTaskRequest extends Request { @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("EndTime") private Long endTime; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("StartTime") private Long startTime; @Query @NameInMap("Status") private String status; private DescribeImageFixTaskRequest(Builder builder) { super(builder); this.currentPage = builder.currentPage; this.endTime = builder.endTime; this.pageSize = builder.pageSize; this.startTime = builder.startTime; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static DescribeImageFixTaskRequest create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return endTime */ public Long getEndTime() { return this.endTime; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return startTime */ public Long getStartTime() { return this.startTime; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder extends Request.Builder<Builder> { private Integer currentPage; private Long endTime; private Integer pageSize; private Long startTime; private String status; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.putQueryParameter("CurrentPage", currentPage); this.currentPage = currentPage; return this; } /** * <p>EndTime.</p> */ public Builder endTime(Long endTime) { this.putQueryParameter("EndTime", endTime); this.endTime = endTime; return this; } /** * <p>PageSize.</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>StartTime.</p> */ public Builder startTime(Long startTime) { this.putQueryParameter("StartTime", startTime); this.startTime = startTime; return this; } /** * <p>Status.</p> */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } public DescribeImageFixTaskRequest build() { return new DescribeImageFixTaskRequest(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/DescribeImageFixTaskResponse.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 DescribeImageFixTaskResponse} extends {@link TeaModel} * * <p>DescribeImageFixTaskResponse</p> */ public class DescribeImageFixTaskResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeImageFixTaskResponseBody body; private DescribeImageFixTaskResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeImageFixTaskResponse 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 DescribeImageFixTaskResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeImageFixTaskResponseBody body; private Builder() { super(); } private Builder(DescribeImageFixTaskResponse 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(DescribeImageFixTaskResponseBody body) { this.body = body; return this; } public DescribeImageFixTaskResponse build() { return new DescribeImageFixTaskResponse(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/DescribeImageFixTaskResponseBody.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 DescribeImageFixTaskResponseBody} extends {@link TeaModel} * * <p>DescribeImageFixTaskResponseBody</p> */ public class DescribeImageFixTaskResponseBody extends TeaModel { @NameInMap("BuildTasks") private java.util.List < BuildTasks> buildTasks; @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; private DescribeImageFixTaskResponseBody(Builder builder) { this.buildTasks = builder.buildTasks; this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeImageFixTaskResponseBody create() { return builder().build(); } /** * @return buildTasks */ public java.util.List < BuildTasks> getBuildTasks() { return this.buildTasks; } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < BuildTasks> buildTasks; private PageInfo pageInfo; private String requestId; /** * <p>BuildTasks.</p> */ public Builder buildTasks(java.util.List < BuildTasks> buildTasks) { this.buildTasks = buildTasks; return this; } /** * <p>PageInfo.</p> */ public Builder pageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; return this; } /** * <p>Id of the request</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeImageFixTaskResponseBody build() { return new DescribeImageFixTaskResponseBody(this); } } public static class BuildTasks extends TeaModel { @NameInMap("BuildTaskId") private String buildTaskId; @NameInMap("FinishTime") private String finishTime; @NameInMap("FixTime") private String fixTime; @NameInMap("NewTag") private String newTag; @NameInMap("NewUuid") private String newUuid; @NameInMap("OldTag") private String oldTag; @NameInMap("OldUuid") private String oldUuid; @NameInMap("RegionId") private String regionId; @NameInMap("RepoName") private String repoName; @NameInMap("RepoNamespace") private String repoNamespace; @NameInMap("Status") private Integer status; @NameInMap("TaskType") private String taskType; private BuildTasks(Builder builder) { this.buildTaskId = builder.buildTaskId; this.finishTime = builder.finishTime; this.fixTime = builder.fixTime; this.newTag = builder.newTag; this.newUuid = builder.newUuid; this.oldTag = builder.oldTag; this.oldUuid = builder.oldUuid; this.regionId = builder.regionId; this.repoName = builder.repoName; this.repoNamespace = builder.repoNamespace; this.status = builder.status; this.taskType = builder.taskType; } public static Builder builder() { return new Builder(); } public static BuildTasks create() { return builder().build(); } /** * @return buildTaskId */ public String getBuildTaskId() { return this.buildTaskId; } /** * @return finishTime */ public String getFinishTime() { return this.finishTime; } /** * @return fixTime */ public String getFixTime() { return this.fixTime; } /** * @return newTag */ public String getNewTag() { return this.newTag; } /** * @return newUuid */ public String getNewUuid() { return this.newUuid; } /** * @return oldTag */ public String getOldTag() { return this.oldTag; } /** * @return oldUuid */ public String getOldUuid() { return this.oldUuid; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return repoName */ public String getRepoName() { return this.repoName; } /** * @return repoNamespace */ public String getRepoNamespace() { return this.repoNamespace; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return taskType */ public String getTaskType() { return this.taskType; } public static final class Builder { private String buildTaskId; private String finishTime; private String fixTime; private String newTag; private String newUuid; private String oldTag; private String oldUuid; private String regionId; private String repoName; private String repoNamespace; private Integer status; private String taskType; /** * <p>BuildTaskId.</p> */ public Builder buildTaskId(String buildTaskId) { this.buildTaskId = buildTaskId; return this; } /** * <p>FinishTime.</p> */ public Builder finishTime(String finishTime) { this.finishTime = finishTime; return this; } /** * <p>FixTime.</p> */ public Builder fixTime(String fixTime) { this.fixTime = fixTime; return this; } /** * <p>NewTag.</p> */ public Builder newTag(String newTag) { this.newTag = newTag; return this; } /** * <p>NewUuid.</p> */ public Builder newUuid(String newUuid) { this.newUuid = newUuid; return this; } /** * <p>OldTag.</p> */ public Builder oldTag(String oldTag) { this.oldTag = oldTag; return this; } /** * <p>OldUuid.</p> */ public Builder oldUuid(String oldUuid) { this.oldUuid = oldUuid; return this; } /** * <p>RegionId.</p> */ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** * <p>RepoName.</p> */ public Builder repoName(String repoName) { this.repoName = repoName; return this; } /** * <p>RepoNamespace.</p> */ public Builder repoNamespace(String repoNamespace) { this.repoNamespace = repoNamespace; return this; } /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } /** * <p>TaskType.</p> */ public Builder taskType(String taskType) { this.taskType = taskType; return this; } public BuildTasks build() { return new BuildTasks(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); } } } }
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/DescribeImageGroupedVulListRequest.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 DescribeImageGroupedVulListRequest} extends {@link RequestModel} * * <p>DescribeImageGroupedVulListRequest</p> */ public class DescribeImageGroupedVulListRequest extends Request { @Query @NameInMap("AliasName") private String aliasName; @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("CveId") private String cveId; @Query @NameInMap("GroupId") private String groupId; @Query @NameInMap("ImageDigest") private String imageDigest; @Query @NameInMap("ImageLayer") private String imageLayer; @Query @NameInMap("ImageTag") private String imageTag; @Query @NameInMap("IsLatest") private Integer isLatest; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Name") private String name; @Query @NameInMap("Necessity") private String necessity; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("PatchId") private Long patchId; @Query @NameInMap("RepoId") private String repoId; @Query @NameInMap("RepoInstanceId") private String repoInstanceId; @Query @NameInMap("RepoName") private String repoName; @Query @NameInMap("RepoNamespace") private String repoNamespace; @Query @NameInMap("RepoRegionId") private String repoRegionId; @Query @NameInMap("Type") private String type; @Query @NameInMap("Uuids") private String uuids; private DescribeImageGroupedVulListRequest(Builder builder) { super(builder); this.aliasName = builder.aliasName; this.currentPage = builder.currentPage; this.cveId = builder.cveId; this.groupId = builder.groupId; this.imageDigest = builder.imageDigest; this.imageLayer = builder.imageLayer; this.imageTag = builder.imageTag; this.isLatest = builder.isLatest; this.lang = builder.lang; this.name = builder.name; this.necessity = builder.necessity; this.pageSize = builder.pageSize; this.patchId = builder.patchId; this.repoId = builder.repoId; this.repoInstanceId = builder.repoInstanceId; this.repoName = builder.repoName; this.repoNamespace = builder.repoNamespace; this.repoRegionId = builder.repoRegionId; this.type = builder.type; this.uuids = builder.uuids; } public static Builder builder() { return new Builder(); } public static DescribeImageGroupedVulListRequest create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return cveId */ public String getCveId() { return this.cveId; } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return imageDigest */ public String getImageDigest() { return this.imageDigest; } /** * @return imageLayer */ public String getImageLayer() { return this.imageLayer; } /** * @return imageTag */ public String getImageTag() { return this.imageTag; } /** * @return isLatest */ public Integer getIsLatest() { return this.isLatest; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return name */ public String getName() { return this.name; } /** * @return necessity */ public String getNecessity() { return this.necessity; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return patchId */ public Long getPatchId() { return this.patchId; } /** * @return repoId */ public String getRepoId() { return this.repoId; } /** * @return repoInstanceId */ public String getRepoInstanceId() { return this.repoInstanceId; } /** * @return repoName */ public String getRepoName() { return this.repoName; } /** * @return repoNamespace */ public String getRepoNamespace() { return this.repoNamespace; } /** * @return repoRegionId */ public String getRepoRegionId() { return this.repoRegionId; } /** * @return type */ public String getType() { return this.type; } /** * @return uuids */ public String getUuids() { return this.uuids; } public static final class Builder extends Request.Builder<Builder> { private String aliasName; private Integer currentPage; private String cveId; private String groupId; private String imageDigest; private String imageLayer; private String imageTag; private Integer isLatest; private String lang; private String name; private String necessity; private Integer pageSize; private Long patchId; private String repoId; private String repoInstanceId; private String repoName; private String repoNamespace; private String repoRegionId; private String type; private String uuids; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.putQueryParameter("AliasName", aliasName); this.aliasName = aliasName; return this; } /** * <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>GroupId.</p> */ public Builder groupId(String groupId) { this.putQueryParameter("GroupId", groupId); this.groupId = groupId; return this; } /** * <p>ImageDigest.</p> */ public Builder imageDigest(String imageDigest) { this.putQueryParameter("ImageDigest", imageDigest); this.imageDigest = imageDigest; return this; } /** * <p>ImageLayer.</p> */ public Builder imageLayer(String imageLayer) { this.putQueryParameter("ImageLayer", imageLayer); this.imageLayer = imageLayer; return this; } /** * <p>ImageTag.</p> */ public Builder imageTag(String imageTag) { this.putQueryParameter("ImageTag", imageTag); this.imageTag = imageTag; return this; } /** * <p>IsLatest.</p> */ public Builder isLatest(Integer isLatest) { this.putQueryParameter("IsLatest", isLatest); this.isLatest = isLatest; 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>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>PatchId.</p> */ public Builder patchId(Long patchId) { this.putQueryParameter("PatchId", patchId); this.patchId = patchId; return this; } /** * <p>RepoId.</p> */ public Builder repoId(String repoId) { this.putQueryParameter("RepoId", repoId); this.repoId = repoId; return this; } /** * <p>RepoInstanceId.</p> */ public Builder repoInstanceId(String repoInstanceId) { this.putQueryParameter("RepoInstanceId", repoInstanceId); this.repoInstanceId = repoInstanceId; return this; } /** * <p>RepoName.</p> */ public Builder repoName(String repoName) { this.putQueryParameter("RepoName", repoName); this.repoName = repoName; return this; } /** * <p>RepoNamespace.</p> */ public Builder repoNamespace(String repoNamespace) { this.putQueryParameter("RepoNamespace", repoNamespace); this.repoNamespace = repoNamespace; return this; } /** * <p>RepoRegionId.</p> */ public Builder repoRegionId(String repoRegionId) { this.putQueryParameter("RepoRegionId", repoRegionId); this.repoRegionId = repoRegionId; 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; } public DescribeImageGroupedVulListRequest build() { return new DescribeImageGroupedVulListRequest(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/DescribeImageGroupedVulListResponse.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 DescribeImageGroupedVulListResponse} extends {@link TeaModel} * * <p>DescribeImageGroupedVulListResponse</p> */ public class DescribeImageGroupedVulListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeImageGroupedVulListResponseBody body; private DescribeImageGroupedVulListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeImageGroupedVulListResponse 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 DescribeImageGroupedVulListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeImageGroupedVulListResponseBody body; private Builder() { super(); } private Builder(DescribeImageGroupedVulListResponse 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(DescribeImageGroupedVulListResponseBody body) { this.body = body; return this; } public DescribeImageGroupedVulListResponse build() { return new DescribeImageGroupedVulListResponse(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/DescribeImageGroupedVulListResponseBody.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 DescribeImageGroupedVulListResponseBody} extends {@link TeaModel} * * <p>DescribeImageGroupedVulListResponseBody</p> */ public class DescribeImageGroupedVulListResponseBody extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("GroupedVulItems") private java.util.List < GroupedVulItems> groupedVulItems; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeImageGroupedVulListResponseBody(Builder builder) { this.currentPage = builder.currentPage; this.groupedVulItems = builder.groupedVulItems; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeImageGroupedVulListResponseBody create() { return builder().build(); } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return groupedVulItems */ public java.util.List < GroupedVulItems> getGroupedVulItems() { return this.groupedVulItems; } /** * @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 Integer currentPage; private java.util.List < GroupedVulItems> groupedVulItems; private Integer pageSize; private String requestId; private Integer totalCount; /** * <p>CurrentPage.</p> */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * <p>GroupedVulItems.</p> */ public Builder groupedVulItems(java.util.List < GroupedVulItems> groupedVulItems) { this.groupedVulItems = groupedVulItems; 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 DescribeImageGroupedVulListResponseBody build() { return new DescribeImageGroupedVulListResponseBody(this); } } public static class GroupedVulItems extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("AsapCount") private Integer asapCount; @NameInMap("GmtLast") private Long gmtLast; @NameInMap("LastScanTime") private Long lastScanTime; @NameInMap("LaterCount") private Integer laterCount; @NameInMap("Name") private String name; @NameInMap("NntfCount") private Integer nntfCount; @NameInMap("Status") private Integer status; @NameInMap("Tags") private String tags; @NameInMap("Type") private String type; private GroupedVulItems(Builder builder) { this.aliasName = builder.aliasName; this.asapCount = builder.asapCount; this.gmtLast = builder.gmtLast; this.lastScanTime = builder.lastScanTime; this.laterCount = builder.laterCount; this.name = builder.name; this.nntfCount = builder.nntfCount; this.status = builder.status; this.tags = builder.tags; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static GroupedVulItems create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return asapCount */ public Integer getAsapCount() { return this.asapCount; } /** * @return gmtLast */ public Long getGmtLast() { return this.gmtLast; } /** * @return lastScanTime */ public Long getLastScanTime() { return this.lastScanTime; } /** * @return laterCount */ public Integer getLaterCount() { return this.laterCount; } /** * @return name */ public String getName() { return this.name; } /** * @return nntfCount */ public Integer getNntfCount() { return this.nntfCount; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return tags */ public String getTags() { return this.tags; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String aliasName; private Integer asapCount; private Long gmtLast; private Long lastScanTime; private Integer laterCount; private String name; private Integer nntfCount; private Integer status; private String tags; private String type; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.aliasName = aliasName; return this; } /** * <p>AsapCount.</p> */ public Builder asapCount(Integer asapCount) { this.asapCount = asapCount; return this; } /** * <p>GmtLast.</p> */ public Builder gmtLast(Long gmtLast) { this.gmtLast = gmtLast; return this; } /** * <p>LastScanTime.</p> */ public Builder lastScanTime(Long lastScanTime) { this.lastScanTime = lastScanTime; return this; } /** * <p>LaterCount.</p> */ public Builder laterCount(Integer laterCount) { this.laterCount = laterCount; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>NntfCount.</p> */ public Builder nntfCount(Integer nntfCount) { this.nntfCount = nntfCount; return this; } /** * <p>Status.</p> */ public Builder status(Integer status) { this.status = status; return this; } /** * <p>Tags.</p> */ public Builder tags(String tags) { this.tags = tags; return this; } /** * <p>Type.</p> */ public Builder type(String type) { this.type = type; return this; } public GroupedVulItems build() { return new GroupedVulItems(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/DescribeImageScanAuthCountRequest.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 DescribeImageScanAuthCountRequest} extends {@link RequestModel} * * <p>DescribeImageScanAuthCountRequest</p> */ public class DescribeImageScanAuthCountRequest extends Request { private DescribeImageScanAuthCountRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeImageScanAuthCountRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeImageScanAuthCountRequest build() { return new DescribeImageScanAuthCountRequest(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/DescribeImageScanAuthCountResponse.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 DescribeImageScanAuthCountResponse} extends {@link TeaModel} * * <p>DescribeImageScanAuthCountResponse</p> */ public class DescribeImageScanAuthCountResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeImageScanAuthCountResponseBody body; private DescribeImageScanAuthCountResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeImageScanAuthCountResponse 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 DescribeImageScanAuthCountResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeImageScanAuthCountResponseBody body; private Builder() { super(); } private Builder(DescribeImageScanAuthCountResponse 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(DescribeImageScanAuthCountResponseBody body) { this.body = body; return this; } public DescribeImageScanAuthCountResponse build() { return new DescribeImageScanAuthCountResponse(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/DescribeImageScanAuthCountResponseBody.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 DescribeImageScanAuthCountResponseBody} extends {@link TeaModel} * * <p>DescribeImageScanAuthCountResponseBody</p> */ public class DescribeImageScanAuthCountResponseBody extends TeaModel { @NameInMap("ImageScan") private ImageScan imageScan; @NameInMap("RequestId") private String requestId; private DescribeImageScanAuthCountResponseBody(Builder builder) { this.imageScan = builder.imageScan; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeImageScanAuthCountResponseBody create() { return builder().build(); } /** * @return imageScan */ public ImageScan getImageScan() { return this.imageScan; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private ImageScan imageScan; private String requestId; /** * <p>ImageScan.</p> */ public Builder imageScan(ImageScan imageScan) { this.imageScan = imageScan; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeImageScanAuthCountResponseBody build() { return new DescribeImageScanAuthCountResponseBody(this); } } public static class ImageScan extends TeaModel { @NameInMap("ImageScanCapacity") private Long imageScanCapacity; @NameInMap("InstanceId") private String instanceId; @NameInMap("ScanCount") private Long scanCount; private ImageScan(Builder builder) { this.imageScanCapacity = builder.imageScanCapacity; this.instanceId = builder.instanceId; this.scanCount = builder.scanCount; } public static Builder builder() { return new Builder(); } public static ImageScan create() { return builder().build(); } /** * @return imageScanCapacity */ public Long getImageScanCapacity() { return this.imageScanCapacity; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return scanCount */ public Long getScanCount() { return this.scanCount; } public static final class Builder { private Long imageScanCapacity; private String instanceId; private Long scanCount; /** * <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>ScanCount.</p> */ public Builder scanCount(Long scanCount) { this.scanCount = scanCount; return this; } public ImageScan build() { return new ImageScan(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/DescribeImageStatisticsRequest.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 DescribeImageStatisticsRequest} extends {@link RequestModel} * * <p>DescribeImageStatisticsRequest</p> */ public class DescribeImageStatisticsRequest extends Request { private DescribeImageStatisticsRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeImageStatisticsRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeImageStatisticsRequest build() { return new DescribeImageStatisticsRequest(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/DescribeImageStatisticsResponse.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 DescribeImageStatisticsResponse} extends {@link TeaModel} * * <p>DescribeImageStatisticsResponse</p> */ public class DescribeImageStatisticsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeImageStatisticsResponseBody body; private DescribeImageStatisticsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeImageStatisticsResponse 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 DescribeImageStatisticsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeImageStatisticsResponseBody body; private Builder() { super(); } private Builder(DescribeImageStatisticsResponse 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(DescribeImageStatisticsResponseBody body) { this.body = body; return this; } public DescribeImageStatisticsResponse build() { return new DescribeImageStatisticsResponse(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/DescribeImageStatisticsResponseBody.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 DescribeImageStatisticsResponseBody} extends {@link TeaModel} * * <p>DescribeImageStatisticsResponseBody</p> */ public class DescribeImageStatisticsResponseBody extends TeaModel { @NameInMap("InstanceCount") private Integer instanceCount; @NameInMap("RequestId") private String requestId; @NameInMap("RiskInstanceCount") private Integer riskInstanceCount; private DescribeImageStatisticsResponseBody(Builder builder) { this.instanceCount = builder.instanceCount; this.requestId = builder.requestId; this.riskInstanceCount = builder.riskInstanceCount; } public static Builder builder() { return new Builder(); } public static DescribeImageStatisticsResponseBody create() { return builder().build(); } /** * @return instanceCount */ public Integer getInstanceCount() { return this.instanceCount; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return riskInstanceCount */ public Integer getRiskInstanceCount() { return this.riskInstanceCount; } public static final class Builder { private Integer instanceCount; private String requestId; private Integer riskInstanceCount; /** * <p>InstanceCount.</p> */ public Builder instanceCount(Integer instanceCount) { this.instanceCount = instanceCount; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>RiskInstanceCount.</p> */ public Builder riskInstanceCount(Integer riskInstanceCount) { this.riskInstanceCount = riskInstanceCount; return this; } public DescribeImageStatisticsResponseBody build() { return new DescribeImageStatisticsResponseBody(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/DescribeImageVulListRequest.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 DescribeImageVulListRequest} extends {@link RequestModel} * * <p>DescribeImageVulListRequest</p> */ public class DescribeImageVulListRequest extends Request { @Query @NameInMap("AliasName") private String aliasName; @Query @NameInMap("CurrentPage") private Integer currentPage; @Query @NameInMap("Dealed") private String dealed; @Query @NameInMap("Digest") private String digest; @Query @NameInMap("InstanceId") private String instanceId; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("Name") private String name; @Query @NameInMap("Necessity") private String necessity; @Query @NameInMap("PageSize") private Integer pageSize; @Query @NameInMap("RegionId") private String regionId; @Query @NameInMap("RepoId") private String repoId; @Query @NameInMap("RepoInstanceId") private String repoInstanceId; @Query @NameInMap("RepoName") private String repoName; @Query @NameInMap("RepoNamespace") private String repoNamespace; @Query @NameInMap("RepoRegionId") private String repoRegionId; @Query @NameInMap("StatusList") private String statusList; @Query @NameInMap("Tag") private String tag; @Query @NameInMap("Type") private String type; @Query @NameInMap("Uuids") private String uuids; private DescribeImageVulListRequest(Builder builder) { super(builder); this.aliasName = builder.aliasName; this.currentPage = builder.currentPage; this.dealed = builder.dealed; this.digest = builder.digest; this.instanceId = builder.instanceId; this.lang = builder.lang; this.name = builder.name; this.necessity = builder.necessity; this.pageSize = builder.pageSize; this.regionId = builder.regionId; this.repoId = builder.repoId; this.repoInstanceId = builder.repoInstanceId; this.repoName = builder.repoName; this.repoNamespace = builder.repoNamespace; this.repoRegionId = builder.repoRegionId; this.statusList = builder.statusList; this.tag = builder.tag; this.type = builder.type; this.uuids = builder.uuids; } public static Builder builder() { return new Builder(); } public static DescribeImageVulListRequest create() { return builder().build(); } /** * @return aliasName */ public String getAliasName() { return this.aliasName; } /** * @return currentPage */ public Integer getCurrentPage() { return this.currentPage; } /** * @return dealed */ public String getDealed() { return this.dealed; } /** * @return digest */ public String getDigest() { return this.digest; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return lang */ public String getLang() { return this.lang; } /** * @return name */ public String getName() { return this.name; } /** * @return necessity */ public String getNecessity() { return this.necessity; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return repoId */ public String getRepoId() { return this.repoId; } /** * @return repoInstanceId */ public String getRepoInstanceId() { return this.repoInstanceId; } /** * @return repoName */ public String getRepoName() { return this.repoName; } /** * @return repoNamespace */ public String getRepoNamespace() { return this.repoNamespace; } /** * @return repoRegionId */ public String getRepoRegionId() { return this.repoRegionId; } /** * @return statusList */ public String getStatusList() { return this.statusList; } /** * @return tag */ public String getTag() { return this.tag; } /** * @return type */ public String getType() { return this.type; } /** * @return uuids */ public String getUuids() { return this.uuids; } public static final class Builder extends Request.Builder<Builder> { private String aliasName; private Integer currentPage; private String dealed; private String digest; private String instanceId; private String lang; private String name; private String necessity; private Integer pageSize; private String regionId; private String repoId; private String repoInstanceId; private String repoName; private String repoNamespace; private String repoRegionId; private String statusList; private String tag; private String type; private String uuids; /** * <p>AliasName.</p> */ public Builder aliasName(String aliasName) { this.putQueryParameter("AliasName", aliasName); this.aliasName = aliasName; 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>Digest.</p> */ public Builder digest(String digest) { this.putQueryParameter("Digest", digest); this.digest = digest; return this; } /** * <p>InstanceId.</p> */ public Builder instanceId(String instanceId) { this.putQueryParameter("InstanceId", instanceId); this.instanceId = instanceId; 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>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>RegionId.</p> */ public Builder regionId(String regionId) { this.putQueryParameter("RegionId", regionId); this.regionId = regionId; return this; } /** * <p>RepoId.</p> */ public Builder repoId(String repoId) { this.putQueryParameter("RepoId", repoId); this.repoId = repoId; return this; } /** * <p>RepoInstanceId.</p> */ public Builder repoInstanceId(String repoInstanceId) { this.putQueryParameter("RepoInstanceId", repoInstanceId); this.repoInstanceId = repoInstanceId; return this; } /** * <p>RepoName.</p> */ public Builder repoName(String repoName) { this.putQueryParameter("RepoName", repoName); this.repoName = repoName; return this; } /** * <p>RepoNamespace.</p> */ public Builder repoNamespace(String repoNamespace) { this.putQueryParameter("RepoNamespace", repoNamespace); this.repoNamespace = repoNamespace; return this; } /** * <p>RepoRegionId.</p> */ public Builder repoRegionId(String repoRegionId) { this.putQueryParameter("RepoRegionId", repoRegionId); this.repoRegionId = repoRegionId; return this; } /** * <p>StatusList.</p> */ public Builder statusList(String statusList) { this.putQueryParameter("StatusList", statusList); this.statusList = statusList; return this; } /** * <p>Tag.</p> */ public Builder tag(String tag) { this.putQueryParameter("Tag", tag); this.tag = tag; 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; } public DescribeImageVulListRequest build() { return new DescribeImageVulListRequest(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/DescribeImageVulListResponse.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 DescribeImageVulListResponse} extends {@link TeaModel} * * <p>DescribeImageVulListResponse</p> */ public class DescribeImageVulListResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeImageVulListResponseBody body; private DescribeImageVulListResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeImageVulListResponse 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 DescribeImageVulListResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeImageVulListResponseBody body; private Builder() { super(); } private Builder(DescribeImageVulListResponse 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(DescribeImageVulListResponseBody body) { this.body = body; return this; } public DescribeImageVulListResponse build() { return new DescribeImageVulListResponse(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/DescribeImageVulListResponseBody.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 DescribeImageVulListResponseBody} extends {@link TeaModel} * * <p>DescribeImageVulListResponseBody</p> */ public class DescribeImageVulListResponseBody 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 DescribeImageVulListResponseBody(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 DescribeImageVulListResponseBody 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 DescribeImageVulListResponseBody build() { return new DescribeImageVulListResponseBody(this); } } public static class RpmEntityList extends TeaModel { @NameInMap("FullVersion") private String fullVersion; @NameInMap("Layer") private String layer; @NameInMap("MatchDetail") private String matchDetail; @NameInMap("MatchList") private String matchList; @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.fullVersion = builder.fullVersion; this.layer = builder.layer; this.matchDetail = builder.matchDetail; this.matchList = builder.matchList; 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 fullVersion */ public String getFullVersion() { return this.fullVersion; } /** * @return layer */ public String getLayer() { return this.layer; } /** * @return matchDetail */ public String getMatchDetail() { return this.matchDetail; } /** * @return matchList */ public String getMatchList() { return this.matchList; } /** * @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 fullVersion; private String layer; private String matchDetail; private String matchList; private String name; private String path; private String updateCmd; private String version; /** * <p>FullVersion.</p> */ public Builder fullVersion(String fullVersion) { this.fullVersion = fullVersion; return this; } /** * <p>Layer.</p> */ public Builder layer(String layer) { this.layer = layer; return this; } /** * <p>MatchDetail.</p> */ public Builder matchDetail(String matchDetail) { this.matchDetail = matchDetail; return this; } /** * <p>MatchList.</p> */ public Builder matchList(String matchList) { this.matchList = matchList; 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("Os") private String os; @NameInMap("OsRelease") private String osRelease; @NameInMap("RpmEntityList") private java.util.List < RpmEntityList> rpmEntityList; private ExtendContentJson(Builder builder) { this.os = builder.os; this.osRelease = builder.osRelease; this.rpmEntityList = builder.rpmEntityList; } public static Builder builder() { return new Builder(); } public static ExtendContentJson create() { return builder().build(); } /** * @return os */ public String getOs() { return this.os; } /** * @return osRelease */ public String getOsRelease() { return this.osRelease; } /** * @return rpmEntityList */ public java.util.List < RpmEntityList> getRpmEntityList() { return this.rpmEntityList; } public static final class Builder { private String os; private String osRelease; private java.util.List < RpmEntityList> rpmEntityList; /** * <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>RpmEntityList.</p> */ public Builder rpmEntityList(java.util.List < RpmEntityList> rpmEntityList) { this.rpmEntityList = rpmEntityList; return this; } public ExtendContentJson build() { return new ExtendContentJson(this); } } } public static class VulRecords extends TeaModel { @NameInMap("AliasName") private String aliasName; @NameInMap("CanUpdate") private Boolean canUpdate; @NameInMap("ExtendContentJson") private ExtendContentJson extendContentJson; @NameInMap("FirstTs") private Long firstTs; @NameInMap("ImageDigest") private String imageDigest; @NameInMap("LastTs") private Long lastTs; @NameInMap("Layers") private java.util.List < String > layers; @NameInMap("ModifyTs") private Long modifyTs; @NameInMap("Name") private String name; @NameInMap("Necessity") private String necessity; @NameInMap("PrimaryId") private Long primaryId; @NameInMap("Related") private String related; @NameInMap("RepoName") private String repoName; @NameInMap("RepoNamespace") private String repoNamespace; @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.canUpdate = builder.canUpdate; this.extendContentJson = builder.extendContentJson; this.firstTs = builder.firstTs; this.imageDigest = builder.imageDigest; this.lastTs = builder.lastTs; this.layers = builder.layers; this.modifyTs = builder.modifyTs; this.name = builder.name; this.necessity = builder.necessity; this.primaryId = builder.primaryId; this.related = builder.related; this.repoName = builder.repoName; this.repoNamespace = builder.repoNamespace; 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 canUpdate */ public Boolean getCanUpdate() { return this.canUpdate; } /** * @return extendContentJson */ public ExtendContentJson getExtendContentJson() { return this.extendContentJson; } /** * @return firstTs */ public Long getFirstTs() { return this.firstTs; } /** * @return imageDigest */ public String getImageDigest() { return this.imageDigest; } /** * @return lastTs */ public Long getLastTs() { return this.lastTs; } /** * @return layers */ public java.util.List < String > getLayers() { return this.layers; } /** * @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 primaryId */ public Long getPrimaryId() { return this.primaryId; } /** * @return related */ public String getRelated() { return this.related; } /** * @return repoName */ public String getRepoName() { return this.repoName; } /** * @return repoNamespace */ public String getRepoNamespace() { return this.repoNamespace; } /** * @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 Boolean canUpdate; private ExtendContentJson extendContentJson; private Long firstTs; private String imageDigest; private Long lastTs; private java.util.List < String > layers; private Long modifyTs; private String name; private String necessity; private Long primaryId; private String related; private String repoName; private String repoNamespace; 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>CanUpdate.</p> */ public Builder canUpdate(Boolean canUpdate) { this.canUpdate = canUpdate; 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>ImageDigest.</p> */ public Builder imageDigest(String imageDigest) { this.imageDigest = imageDigest; return this; } /** * <p>LastTs.</p> */ public Builder lastTs(Long lastTs) { this.lastTs = lastTs; return this; } /** * <p>Layers.</p> */ public Builder layers(java.util.List < String > layers) { this.layers = layers; 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>PrimaryId.</p> */ public Builder primaryId(Long primaryId) { this.primaryId = primaryId; return this; } /** * <p>Related.</p> */ public Builder related(String related) { this.related = related; return this; } /** * <p>RepoName.</p> */ public Builder repoName(String repoName) { this.repoName = repoName; return this; } /** * <p>RepoNamespace.</p> */ public Builder repoNamespace(String repoNamespace) { this.repoNamespace = repoNamespace; 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/DescribeInstallCaptchaRequest.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 DescribeInstallCaptchaRequest} extends {@link RequestModel} * * <p>DescribeInstallCaptchaRequest</p> */ public class DescribeInstallCaptchaRequest extends Request { @Query @NameInMap("Deadline") private String deadline; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("SourceIp") private String sourceIp; private DescribeInstallCaptchaRequest(Builder builder) { super(builder); this.deadline = builder.deadline; this.lang = builder.lang; this.sourceIp = builder.sourceIp; } public static Builder builder() { return new Builder(); } public static DescribeInstallCaptchaRequest create() { return builder().build(); } /** * @return deadline */ public String getDeadline() { return this.deadline; } /** * @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 deadline; private String lang; private String sourceIp; /** * <p>Deadline.</p> */ public Builder deadline(String deadline) { this.putQueryParameter("Deadline", deadline); this.deadline = deadline; 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; } public DescribeInstallCaptchaRequest build() { return new DescribeInstallCaptchaRequest(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/DescribeInstallCaptchaResponse.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 DescribeInstallCaptchaResponse} extends {@link TeaModel} * * <p>DescribeInstallCaptchaResponse</p> */ public class DescribeInstallCaptchaResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeInstallCaptchaResponseBody body; private DescribeInstallCaptchaResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeInstallCaptchaResponse 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 DescribeInstallCaptchaResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeInstallCaptchaResponseBody body; private Builder() { super(); } private Builder(DescribeInstallCaptchaResponse 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(DescribeInstallCaptchaResponseBody body) { this.body = body; return this; } public DescribeInstallCaptchaResponse build() { return new DescribeInstallCaptchaResponse(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/DescribeInstallCaptchaResponseBody.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 DescribeInstallCaptchaResponseBody} extends {@link TeaModel} * * <p>DescribeInstallCaptchaResponseBody</p> */ public class DescribeInstallCaptchaResponseBody extends TeaModel { @NameInMap("CaptchaCode") private String captchaCode; @NameInMap("Deadline") private String deadline; @NameInMap("RequestId") private String requestId; private DescribeInstallCaptchaResponseBody(Builder builder) { this.captchaCode = builder.captchaCode; this.deadline = builder.deadline; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeInstallCaptchaResponseBody create() { return builder().build(); } /** * @return captchaCode */ public String getCaptchaCode() { return this.captchaCode; } /** * @return deadline */ public String getDeadline() { return this.deadline; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String captchaCode; private String deadline; private String requestId; /** * <p>CaptchaCode.</p> */ public Builder captchaCode(String captchaCode) { this.captchaCode = captchaCode; return this; } /** * <p>Deadline.</p> */ public Builder deadline(String deadline) { this.deadline = deadline; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeInstallCaptchaResponseBody build() { return new DescribeInstallCaptchaResponseBody(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/DescribeInstallCodesRequest.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 DescribeInstallCodesRequest} extends {@link RequestModel} * * <p>DescribeInstallCodesRequest</p> */ public class DescribeInstallCodesRequest extends Request { private DescribeInstallCodesRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeInstallCodesRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeInstallCodesRequest build() { return new DescribeInstallCodesRequest(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/DescribeInstallCodesResponse.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 DescribeInstallCodesResponse} extends {@link TeaModel} * * <p>DescribeInstallCodesResponse</p> */ public class DescribeInstallCodesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeInstallCodesResponseBody body; private DescribeInstallCodesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeInstallCodesResponse 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 DescribeInstallCodesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeInstallCodesResponseBody body; private Builder() { super(); } private Builder(DescribeInstallCodesResponse 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(DescribeInstallCodesResponseBody body) { this.body = body; return this; } public DescribeInstallCodesResponse build() { return new DescribeInstallCodesResponse(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/DescribeInstallCodesResponseBody.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 DescribeInstallCodesResponseBody} extends {@link TeaModel} * * <p>DescribeInstallCodesResponseBody</p> */ public class DescribeInstallCodesResponseBody extends TeaModel { @NameInMap("InstallCodes") private java.util.List < InstallCodes> installCodes; @NameInMap("RequestId") private String requestId; private DescribeInstallCodesResponseBody(Builder builder) { this.installCodes = builder.installCodes; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeInstallCodesResponseBody create() { return builder().build(); } /** * @return installCodes */ public java.util.List < InstallCodes> getInstallCodes() { return this.installCodes; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < InstallCodes> installCodes; private String requestId; /** * <p>InstallCodes.</p> */ public Builder installCodes(java.util.List < InstallCodes> installCodes) { this.installCodes = installCodes; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeInstallCodesResponseBody build() { return new DescribeInstallCodesResponseBody(this); } } public static class InstallCodes extends TeaModel { @NameInMap("CaptchaCode") private String captchaCode; @NameInMap("ExpiredDate") private Long expiredDate; @NameInMap("GroupId") private Long groupId; @NameInMap("GroupName") private String groupName; @NameInMap("OnlyImage") private Boolean onlyImage; @NameInMap("Os") private String os; @NameInMap("VendorName") private String vendorName; private InstallCodes(Builder builder) { this.captchaCode = builder.captchaCode; this.expiredDate = builder.expiredDate; this.groupId = builder.groupId; this.groupName = builder.groupName; this.onlyImage = builder.onlyImage; this.os = builder.os; this.vendorName = builder.vendorName; } public static Builder builder() { return new Builder(); } public static InstallCodes create() { return builder().build(); } /** * @return captchaCode */ public String getCaptchaCode() { return this.captchaCode; } /** * @return expiredDate */ public Long getExpiredDate() { return this.expiredDate; } /** * @return groupId */ public Long getGroupId() { return this.groupId; } /** * @return groupName */ public String getGroupName() { return this.groupName; } /** * @return onlyImage */ public Boolean getOnlyImage() { return this.onlyImage; } /** * @return os */ public String getOs() { return this.os; } /** * @return vendorName */ public String getVendorName() { return this.vendorName; } public static final class Builder { private String captchaCode; private Long expiredDate; private Long groupId; private String groupName; private Boolean onlyImage; private String os; private String vendorName; /** * <p>CaptchaCode.</p> */ public Builder captchaCode(String captchaCode) { this.captchaCode = captchaCode; return this; } /** * <p>ExpiredDate.</p> */ public Builder expiredDate(Long expiredDate) { this.expiredDate = expiredDate; return this; } /** * <p>GroupId.</p> */ public Builder groupId(Long groupId) { this.groupId = groupId; return this; } /** * <p>GroupName.</p> */ public Builder groupName(String groupName) { this.groupName = groupName; return this; } /** * <p>OnlyImage.</p> */ public Builder onlyImage(Boolean onlyImage) { this.onlyImage = onlyImage; return this; } /** * <p>Os.</p> */ public Builder os(String os) { this.os = os; return this; } /** * <p>VendorName.</p> */ public Builder vendorName(String vendorName) { this.vendorName = vendorName; return this; } public InstallCodes build() { return new InstallCodes(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/DescribeInstanceAntiBruteForceRulesRequest.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 DescribeInstanceAntiBruteForceRulesRequest} extends {@link RequestModel} * * <p>DescribeInstanceAntiBruteForceRulesRequest</p> */ public class DescribeInstanceAntiBruteForceRulesRequest extends Request { @Query @NameInMap("ResourceOwnerId") private Long resourceOwnerId; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("UuidList") private java.util.List < String > uuidList; private DescribeInstanceAntiBruteForceRulesRequest(Builder builder) { super(builder); this.resourceOwnerId = builder.resourceOwnerId; this.sourceIp = builder.sourceIp; this.uuidList = builder.uuidList; } public static Builder builder() { return new Builder(); } public static DescribeInstanceAntiBruteForceRulesRequest create() { return builder().build(); } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return sourceIp */ public String getSourceIp() { return this.sourceIp; } /** * @return uuidList */ public java.util.List < String > getUuidList() { return this.uuidList; } public static final class Builder extends Request.Builder<Builder> { private Long resourceOwnerId; private String sourceIp; private java.util.List < String > uuidList; /** * <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>UuidList.</p> */ public Builder uuidList(java.util.List < String > uuidList) { this.putQueryParameter("UuidList", uuidList); this.uuidList = uuidList; return this; } public DescribeInstanceAntiBruteForceRulesRequest build() { return new DescribeInstanceAntiBruteForceRulesRequest(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/DescribeInstanceAntiBruteForceRulesResponse.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 DescribeInstanceAntiBruteForceRulesResponse} extends {@link TeaModel} * * <p>DescribeInstanceAntiBruteForceRulesResponse</p> */ public class DescribeInstanceAntiBruteForceRulesResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeInstanceAntiBruteForceRulesResponseBody body; private DescribeInstanceAntiBruteForceRulesResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeInstanceAntiBruteForceRulesResponse 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 DescribeInstanceAntiBruteForceRulesResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeInstanceAntiBruteForceRulesResponseBody body; private Builder() { super(); } private Builder(DescribeInstanceAntiBruteForceRulesResponse 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(DescribeInstanceAntiBruteForceRulesResponseBody body) { this.body = body; return this; } public DescribeInstanceAntiBruteForceRulesResponse build() { return new DescribeInstanceAntiBruteForceRulesResponse(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/DescribeInstanceAntiBruteForceRulesResponseBody.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 DescribeInstanceAntiBruteForceRulesResponseBody} extends {@link TeaModel} * * <p>DescribeInstanceAntiBruteForceRulesResponseBody</p> */ public class DescribeInstanceAntiBruteForceRulesResponseBody extends TeaModel { @NameInMap("PageInfo") private PageInfo pageInfo; @NameInMap("RequestId") private String requestId; @NameInMap("Rules") private java.util.List < Rules> rules; private DescribeInstanceAntiBruteForceRulesResponseBody(Builder builder) { this.pageInfo = builder.pageInfo; this.requestId = builder.requestId; this.rules = builder.rules; } public static Builder builder() { return new Builder(); } public static DescribeInstanceAntiBruteForceRulesResponseBody create() { return builder().build(); } /** * @return pageInfo */ public PageInfo getPageInfo() { return this.pageInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return rules */ public java.util.List < Rules> getRules() { return this.rules; } public static final class Builder { private PageInfo pageInfo; private String requestId; private java.util.List < Rules> rules; /** * <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>Rules.</p> */ public Builder rules(java.util.List < Rules> rules) { this.rules = rules; return this; } public DescribeInstanceAntiBruteForceRulesResponseBody build() { return new DescribeInstanceAntiBruteForceRulesResponseBody(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 Rules extends TeaModel { @NameInMap("Id") private Long id; @NameInMap("Name") private String name; @NameInMap("Uuid") private String uuid; private Rules(Builder builder) { this.id = builder.id; this.name = builder.name; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static Rules create() { return builder().build(); } /** * @return id */ public Long getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private Long id; private String name; private String uuid; /** * <p>Id.</p> */ public Builder id(Long id) { this.id = id; return this; } /** * <p>Name.</p> */ public Builder name(String name) { this.name = name; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public Rules build() { return new Rules(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/DescribeInstanceStatisticsRequest.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 DescribeInstanceStatisticsRequest} extends {@link RequestModel} * * <p>DescribeInstanceStatisticsRequest</p> */ public class DescribeInstanceStatisticsRequest extends Request { @Query @NameInMap("From") private String from; @Query @NameInMap("Lang") private String lang; @Query @NameInMap("SourceIp") private String sourceIp; @Query @NameInMap("Uuid") private String uuid; private DescribeInstanceStatisticsRequest(Builder builder) { super(builder); this.from = builder.from; this.lang = builder.lang; this.sourceIp = builder.sourceIp; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static DescribeInstanceStatisticsRequest 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 uuid */ public String getUuid() { return this.uuid; } public static final class Builder extends Request.Builder<Builder> { private String from; private String lang; private String sourceIp; private String uuid; /** * <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>Uuid.</p> */ public Builder uuid(String uuid) { this.putQueryParameter("Uuid", uuid); this.uuid = uuid; return this; } public DescribeInstanceStatisticsRequest build() { return new DescribeInstanceStatisticsRequest(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/DescribeInstanceStatisticsResponse.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 DescribeInstanceStatisticsResponse} extends {@link TeaModel} * * <p>DescribeInstanceStatisticsResponse</p> */ public class DescribeInstanceStatisticsResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeInstanceStatisticsResponseBody body; private DescribeInstanceStatisticsResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeInstanceStatisticsResponse 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 DescribeInstanceStatisticsResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeInstanceStatisticsResponseBody body; private Builder() { super(); } private Builder(DescribeInstanceStatisticsResponse 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(DescribeInstanceStatisticsResponseBody body) { this.body = body; return this; } public DescribeInstanceStatisticsResponse build() { return new DescribeInstanceStatisticsResponse(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/DescribeInstanceStatisticsResponseBody.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 DescribeInstanceStatisticsResponseBody} extends {@link TeaModel} * * <p>DescribeInstanceStatisticsResponseBody</p> */ public class DescribeInstanceStatisticsResponseBody extends TeaModel { @NameInMap("Data") private java.util.List < Data> data; @NameInMap("RequestId") private String requestId; private DescribeInstanceStatisticsResponseBody(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeInstanceStatisticsResponseBody create() { return builder().build(); } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List < Data> data; private String requestId; /** * <p>Data.</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; } public DescribeInstanceStatisticsResponseBody build() { return new DescribeInstanceStatisticsResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("Account") private Integer account; @NameInMap("AppNum") private Integer appNum; @NameInMap("CmsNum") private Integer cmsNum; @NameInMap("CveNum") private Integer cveNum; @NameInMap("EmgNum") private Integer emgNum; @NameInMap("Health") private Integer health; @NameInMap("ScaNum") private Integer scaNum; @NameInMap("Suspicious") private Integer suspicious; @NameInMap("SysNum") private Integer sysNum; @NameInMap("Trojan") private Integer trojan; @NameInMap("Uuid") private String uuid; @NameInMap("Vul") private Integer vul; private Data(Builder builder) { this.account = builder.account; this.appNum = builder.appNum; this.cmsNum = builder.cmsNum; this.cveNum = builder.cveNum; this.emgNum = builder.emgNum; this.health = builder.health; this.scaNum = builder.scaNum; this.suspicious = builder.suspicious; this.sysNum = builder.sysNum; this.trojan = builder.trojan; this.uuid = builder.uuid; this.vul = builder.vul; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return account */ public Integer getAccount() { return this.account; } /** * @return appNum */ public Integer getAppNum() { return this.appNum; } /** * @return cmsNum */ public Integer getCmsNum() { return this.cmsNum; } /** * @return cveNum */ public Integer getCveNum() { return this.cveNum; } /** * @return emgNum */ public Integer getEmgNum() { return this.emgNum; } /** * @return health */ public Integer getHealth() { return this.health; } /** * @return scaNum */ public Integer getScaNum() { return this.scaNum; } /** * @return suspicious */ public Integer getSuspicious() { return this.suspicious; } /** * @return sysNum */ public Integer getSysNum() { return this.sysNum; } /** * @return trojan */ public Integer getTrojan() { return this.trojan; } /** * @return uuid */ public String getUuid() { return this.uuid; } /** * @return vul */ public Integer getVul() { return this.vul; } public static final class Builder { private Integer account; private Integer appNum; private Integer cmsNum; private Integer cveNum; private Integer emgNum; private Integer health; private Integer scaNum; private Integer suspicious; private Integer sysNum; private Integer trojan; private String uuid; private Integer vul; /** * <p>Account.</p> */ public Builder account(Integer account) { this.account = account; return this; } /** * <p>AppNum.</p> */ public Builder appNum(Integer appNum) { this.appNum = appNum; return this; } /** * <p>CmsNum.</p> */ public Builder cmsNum(Integer cmsNum) { this.cmsNum = cmsNum; return this; } /** * <p>CveNum.</p> */ public Builder cveNum(Integer cveNum) { this.cveNum = cveNum; return this; } /** * <p>EmgNum.</p> */ public Builder emgNum(Integer emgNum) { this.emgNum = emgNum; return this; } /** * <p>Health.</p> */ public Builder health(Integer health) { this.health = health; return this; } /** * <p>ScaNum.</p> */ public Builder scaNum(Integer scaNum) { this.scaNum = scaNum; return this; } /** * <p>Suspicious.</p> */ public Builder suspicious(Integer suspicious) { this.suspicious = suspicious; return this; } /** * <p>SysNum.</p> */ public Builder sysNum(Integer sysNum) { this.sysNum = sysNum; return this; } /** * <p>Trojan.</p> */ public Builder trojan(Integer trojan) { this.trojan = trojan; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } /** * <p>Vul.</p> */ public Builder vul(Integer vul) { this.vul = vul; 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/DescribeIpInfoRequest.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 DescribeIpInfoRequest} extends {@link RequestModel} * * <p>DescribeIpInfoRequest</p> */ public class DescribeIpInfoRequest extends Request { @Query @NameInMap("Field") private String field; @Query @NameInMap("Ip") private String ip; private DescribeIpInfoRequest(Builder builder) { super(builder); this.field = builder.field; this.ip = builder.ip; } public static Builder builder() { return new Builder(); } public static DescribeIpInfoRequest create() { return builder().build(); } /** * @return field */ public String getField() { return this.field; } /** * @return ip */ public String getIp() { return this.ip; } public static final class Builder extends Request.Builder<Builder> { private String field; private String ip; /** * <p>Field.</p> */ public Builder field(String field) { this.putQueryParameter("Field", field); this.field = field; return this; } /** * <p>Ip.</p> */ public Builder ip(String ip) { this.putQueryParameter("Ip", ip); this.ip = ip; return this; } public DescribeIpInfoRequest build() { return new DescribeIpInfoRequest(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/DescribeIpInfoResponse.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 DescribeIpInfoResponse} extends {@link TeaModel} * * <p>DescribeIpInfoResponse</p> */ public class DescribeIpInfoResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeIpInfoResponseBody body; private DescribeIpInfoResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeIpInfoResponse 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 DescribeIpInfoResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeIpInfoResponseBody body; private Builder() { super(); } private Builder(DescribeIpInfoResponse 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(DescribeIpInfoResponseBody body) { this.body = body; return this; } public DescribeIpInfoResponse build() { return new DescribeIpInfoResponse(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/DescribeIpInfoResponseBody.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 DescribeIpInfoResponseBody} extends {@link TeaModel} * * <p>DescribeIpInfoResponseBody</p> */ public class DescribeIpInfoResponseBody extends TeaModel { @NameInMap("RequestId") private String requestId; @NameInMap("c2_day_trace") private String c2DayTrace; @NameInMap("city") private String city; @NameInMap("country") private String country; @NameInMap("day_cnt_30d_tor") private String dayCnt30dTor; @NameInMap("day_cnt_30d_web_attack") private String dayCnt30dWebAttack; @NameInMap("day_cnt_7d_tor") private String dayCnt7dTor; @NameInMap("day_cnt_7d_web_attack") private String dayCnt7dWebAttack; @NameInMap("geo") private String geo; @NameInMap("gmt_first_c2") private String gmtFirstC2; @NameInMap("gmt_first_mining_pool") private String gmtFirstMiningPool; @NameInMap("gmt_last_c2") private String gmtLastC2; @NameInMap("gmt_last_malicious_login") private String gmtLastMaliciousLogin; @NameInMap("gmt_last_malicious_source") private String gmtLastMaliciousSource; @NameInMap("gmt_last_mining_pool") private String gmtLastMiningPool; @NameInMap("gmt_last_nat") private String gmtLastNat; @NameInMap("gmt_last_proxy") private String gmtLastProxy; @NameInMap("gmt_last_tor") private String gmtLastTor; @NameInMap("gmt_last_web_attack") private String gmtLastWebAttack; @NameInMap("idc_name") private String idcName; @NameInMap("ip") private String ip; @NameInMap("is_c2") private String isC2; @NameInMap("is_c2_1d") private String isC21d; @NameInMap("is_c2_7d") private String isC27d; @NameInMap("is_idc") private String isIdc; @NameInMap("is_malicious_login") private String isMaliciousLogin; @NameInMap("is_malicious_login_1d") private String isMaliciousLogin1d; @NameInMap("is_malicious_login_7d") private String isMaliciousLogin7d; @NameInMap("is_malicious_source") private String isMaliciousSource; @NameInMap("is_malicious_source_1d") private String isMaliciousSource1d; @NameInMap("is_malicious_source_30d") private String isMaliciousSource30d; @NameInMap("is_malicious_source_7d") private String isMaliciousSource7d; @NameInMap("is_mining_pool") private String isMiningPool; @NameInMap("is_mining_pool_1d") private String isMiningPool1d; @NameInMap("is_mining_pool_7d") private String isMiningPool7d; @NameInMap("is_nat") private String isNat; @NameInMap("is_nat_1d") private String isNat1d; @NameInMap("is_nat_7d") private String isNat7d; @NameInMap("is_proxy") private String isProxy; @NameInMap("is_proxy_1d") private String isProxy1d; @NameInMap("is_proxy_7d") private String isProxy7d; @NameInMap("is_tor") private String isTor; @NameInMap("is_tor_1d") private String isTor1d; @NameInMap("is_tor_7d") private String isTor7d; @NameInMap("is_web_attack") private String isWebAttack; @NameInMap("is_web_attack_1d") private String isWebAttack1d; @NameInMap("is_web_attack_30d") private String isWebAttack30d; @NameInMap("is_web_attack_7d") private String isWebAttack7d; @NameInMap("isp") private String isp; @NameInMap("malicious_login_day_trace") private String maliciousLoginDayTrace; @NameInMap("malicious_score") private String maliciousScore; @NameInMap("malicious_source_day_trace") private String maliciousSourceDayTrace; @NameInMap("mining_pool_day_trace") private String miningPoolDayTrace; @NameInMap("nat_day_trace") private String natDayTrace; @NameInMap("province") private String province; @NameInMap("proxy_day_trace") private String proxyDayTrace; @NameInMap("rdns") private String rdns; @NameInMap("tags") private String tags; @NameInMap("tor_day_trace") private String torDayTrace; @NameInMap("total_day_cnt_tor") private String totalDayCntTor; @NameInMap("total_day_cnt_web_attack") private String totalDayCntWebAttack; @NameInMap("web_attack_day_trace") private String webAttackDayTrace; private DescribeIpInfoResponseBody(Builder builder) { this.requestId = builder.requestId; this.c2DayTrace = builder.c2DayTrace; this.city = builder.city; this.country = builder.country; this.dayCnt30dTor = builder.dayCnt30dTor; this.dayCnt30dWebAttack = builder.dayCnt30dWebAttack; this.dayCnt7dTor = builder.dayCnt7dTor; this.dayCnt7dWebAttack = builder.dayCnt7dWebAttack; this.geo = builder.geo; this.gmtFirstC2 = builder.gmtFirstC2; this.gmtFirstMiningPool = builder.gmtFirstMiningPool; this.gmtLastC2 = builder.gmtLastC2; this.gmtLastMaliciousLogin = builder.gmtLastMaliciousLogin; this.gmtLastMaliciousSource = builder.gmtLastMaliciousSource; this.gmtLastMiningPool = builder.gmtLastMiningPool; this.gmtLastNat = builder.gmtLastNat; this.gmtLastProxy = builder.gmtLastProxy; this.gmtLastTor = builder.gmtLastTor; this.gmtLastWebAttack = builder.gmtLastWebAttack; this.idcName = builder.idcName; this.ip = builder.ip; this.isC2 = builder.isC2; this.isC21d = builder.isC21d; this.isC27d = builder.isC27d; this.isIdc = builder.isIdc; this.isMaliciousLogin = builder.isMaliciousLogin; this.isMaliciousLogin1d = builder.isMaliciousLogin1d; this.isMaliciousLogin7d = builder.isMaliciousLogin7d; this.isMaliciousSource = builder.isMaliciousSource; this.isMaliciousSource1d = builder.isMaliciousSource1d; this.isMaliciousSource30d = builder.isMaliciousSource30d; this.isMaliciousSource7d = builder.isMaliciousSource7d; this.isMiningPool = builder.isMiningPool; this.isMiningPool1d = builder.isMiningPool1d; this.isMiningPool7d = builder.isMiningPool7d; this.isNat = builder.isNat; this.isNat1d = builder.isNat1d; this.isNat7d = builder.isNat7d; this.isProxy = builder.isProxy; this.isProxy1d = builder.isProxy1d; this.isProxy7d = builder.isProxy7d; this.isTor = builder.isTor; this.isTor1d = builder.isTor1d; this.isTor7d = builder.isTor7d; this.isWebAttack = builder.isWebAttack; this.isWebAttack1d = builder.isWebAttack1d; this.isWebAttack30d = builder.isWebAttack30d; this.isWebAttack7d = builder.isWebAttack7d; this.isp = builder.isp; this.maliciousLoginDayTrace = builder.maliciousLoginDayTrace; this.maliciousScore = builder.maliciousScore; this.maliciousSourceDayTrace = builder.maliciousSourceDayTrace; this.miningPoolDayTrace = builder.miningPoolDayTrace; this.natDayTrace = builder.natDayTrace; this.province = builder.province; this.proxyDayTrace = builder.proxyDayTrace; this.rdns = builder.rdns; this.tags = builder.tags; this.torDayTrace = builder.torDayTrace; this.totalDayCntTor = builder.totalDayCntTor; this.totalDayCntWebAttack = builder.totalDayCntWebAttack; this.webAttackDayTrace = builder.webAttackDayTrace; } public static Builder builder() { return new Builder(); } public static DescribeIpInfoResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return c2DayTrace */ public String getC2DayTrace() { return this.c2DayTrace; } /** * @return city */ public String getCity() { return this.city; } /** * @return country */ public String getCountry() { return this.country; } /** * @return dayCnt30dTor */ public String getDayCnt30dTor() { return this.dayCnt30dTor; } /** * @return dayCnt30dWebAttack */ public String getDayCnt30dWebAttack() { return this.dayCnt30dWebAttack; } /** * @return dayCnt7dTor */ public String getDayCnt7dTor() { return this.dayCnt7dTor; } /** * @return dayCnt7dWebAttack */ public String getDayCnt7dWebAttack() { return this.dayCnt7dWebAttack; } /** * @return geo */ public String getGeo() { return this.geo; } /** * @return gmtFirstC2 */ public String getGmtFirstC2() { return this.gmtFirstC2; } /** * @return gmtFirstMiningPool */ public String getGmtFirstMiningPool() { return this.gmtFirstMiningPool; } /** * @return gmtLastC2 */ public String getGmtLastC2() { return this.gmtLastC2; } /** * @return gmtLastMaliciousLogin */ public String getGmtLastMaliciousLogin() { return this.gmtLastMaliciousLogin; } /** * @return gmtLastMaliciousSource */ public String getGmtLastMaliciousSource() { return this.gmtLastMaliciousSource; } /** * @return gmtLastMiningPool */ public String getGmtLastMiningPool() { return this.gmtLastMiningPool; } /** * @return gmtLastNat */ public String getGmtLastNat() { return this.gmtLastNat; } /** * @return gmtLastProxy */ public String getGmtLastProxy() { return this.gmtLastProxy; } /** * @return gmtLastTor */ public String getGmtLastTor() { return this.gmtLastTor; } /** * @return gmtLastWebAttack */ public String getGmtLastWebAttack() { return this.gmtLastWebAttack; } /** * @return idcName */ public String getIdcName() { return this.idcName; } /** * @return ip */ public String getIp() { return this.ip; } /** * @return isC2 */ public String getIsC2() { return this.isC2; } /** * @return isC21d */ public String getIsC21d() { return this.isC21d; } /** * @return isC27d */ public String getIsC27d() { return this.isC27d; } /** * @return isIdc */ public String getIsIdc() { return this.isIdc; } /** * @return isMaliciousLogin */ public String getIsMaliciousLogin() { return this.isMaliciousLogin; } /** * @return isMaliciousLogin1d */ public String getIsMaliciousLogin1d() { return this.isMaliciousLogin1d; } /** * @return isMaliciousLogin7d */ public String getIsMaliciousLogin7d() { return this.isMaliciousLogin7d; } /** * @return isMaliciousSource */ public String getIsMaliciousSource() { return this.isMaliciousSource; } /** * @return isMaliciousSource1d */ public String getIsMaliciousSource1d() { return this.isMaliciousSource1d; } /** * @return isMaliciousSource30d */ public String getIsMaliciousSource30d() { return this.isMaliciousSource30d; } /** * @return isMaliciousSource7d */ public String getIsMaliciousSource7d() { return this.isMaliciousSource7d; } /** * @return isMiningPool */ public String getIsMiningPool() { return this.isMiningPool; } /** * @return isMiningPool1d */ public String getIsMiningPool1d() { return this.isMiningPool1d; } /** * @return isMiningPool7d */ public String getIsMiningPool7d() { return this.isMiningPool7d; } /** * @return isNat */ public String getIsNat() { return this.isNat; } /** * @return isNat1d */ public String getIsNat1d() { return this.isNat1d; } /** * @return isNat7d */ public String getIsNat7d() { return this.isNat7d; } /** * @return isProxy */ public String getIsProxy() { return this.isProxy; } /** * @return isProxy1d */ public String getIsProxy1d() { return this.isProxy1d; } /** * @return isProxy7d */ public String getIsProxy7d() { return this.isProxy7d; } /** * @return isTor */ public String getIsTor() { return this.isTor; } /** * @return isTor1d */ public String getIsTor1d() { return this.isTor1d; } /** * @return isTor7d */ public String getIsTor7d() { return this.isTor7d; } /** * @return isWebAttack */ public String getIsWebAttack() { return this.isWebAttack; } /** * @return isWebAttack1d */ public String getIsWebAttack1d() { return this.isWebAttack1d; } /** * @return isWebAttack30d */ public String getIsWebAttack30d() { return this.isWebAttack30d; } /** * @return isWebAttack7d */ public String getIsWebAttack7d() { return this.isWebAttack7d; } /** * @return isp */ public String getIsp() { return this.isp; } /** * @return maliciousLoginDayTrace */ public String getMaliciousLoginDayTrace() { return this.maliciousLoginDayTrace; } /** * @return maliciousScore */ public String getMaliciousScore() { return this.maliciousScore; } /** * @return maliciousSourceDayTrace */ public String getMaliciousSourceDayTrace() { return this.maliciousSourceDayTrace; } /** * @return miningPoolDayTrace */ public String getMiningPoolDayTrace() { return this.miningPoolDayTrace; } /** * @return natDayTrace */ public String getNatDayTrace() { return this.natDayTrace; } /** * @return province */ public String getProvince() { return this.province; } /** * @return proxyDayTrace */ public String getProxyDayTrace() { return this.proxyDayTrace; } /** * @return rdns */ public String getRdns() { return this.rdns; } /** * @return tags */ public String getTags() { return this.tags; } /** * @return torDayTrace */ public String getTorDayTrace() { return this.torDayTrace; } /** * @return totalDayCntTor */ public String getTotalDayCntTor() { return this.totalDayCntTor; } /** * @return totalDayCntWebAttack */ public String getTotalDayCntWebAttack() { return this.totalDayCntWebAttack; } /** * @return webAttackDayTrace */ public String getWebAttackDayTrace() { return this.webAttackDayTrace; } public static final class Builder { private String requestId; private String c2DayTrace; private String city; private String country; private String dayCnt30dTor; private String dayCnt30dWebAttack; private String dayCnt7dTor; private String dayCnt7dWebAttack; private String geo; private String gmtFirstC2; private String gmtFirstMiningPool; private String gmtLastC2; private String gmtLastMaliciousLogin; private String gmtLastMaliciousSource; private String gmtLastMiningPool; private String gmtLastNat; private String gmtLastProxy; private String gmtLastTor; private String gmtLastWebAttack; private String idcName; private String ip; private String isC2; private String isC21d; private String isC27d; private String isIdc; private String isMaliciousLogin; private String isMaliciousLogin1d; private String isMaliciousLogin7d; private String isMaliciousSource; private String isMaliciousSource1d; private String isMaliciousSource30d; private String isMaliciousSource7d; private String isMiningPool; private String isMiningPool1d; private String isMiningPool7d; private String isNat; private String isNat1d; private String isNat7d; private String isProxy; private String isProxy1d; private String isProxy7d; private String isTor; private String isTor1d; private String isTor7d; private String isWebAttack; private String isWebAttack1d; private String isWebAttack30d; private String isWebAttack7d; private String isp; private String maliciousLoginDayTrace; private String maliciousScore; private String maliciousSourceDayTrace; private String miningPoolDayTrace; private String natDayTrace; private String province; private String proxyDayTrace; private String rdns; private String tags; private String torDayTrace; private String totalDayCntTor; private String totalDayCntWebAttack; private String webAttackDayTrace; /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>c2_day_trace.</p> */ public Builder c2DayTrace(String c2DayTrace) { this.c2DayTrace = c2DayTrace; return this; } /** * <p>city.</p> */ public Builder city(String city) { this.city = city; return this; } /** * <p>country.</p> */ public Builder country(String country) { this.country = country; return this; } /** * <p>day_cnt_30d_tor.</p> */ public Builder dayCnt30dTor(String dayCnt30dTor) { this.dayCnt30dTor = dayCnt30dTor; return this; } /** * <p>day_cnt_30d_web_attack.</p> */ public Builder dayCnt30dWebAttack(String dayCnt30dWebAttack) { this.dayCnt30dWebAttack = dayCnt30dWebAttack; return this; } /** * <p>day_cnt_7d_tor.</p> */ public Builder dayCnt7dTor(String dayCnt7dTor) { this.dayCnt7dTor = dayCnt7dTor; return this; } /** * <p>day_cnt_7d_web_attack.</p> */ public Builder dayCnt7dWebAttack(String dayCnt7dWebAttack) { this.dayCnt7dWebAttack = dayCnt7dWebAttack; return this; } /** * <p>geo.</p> */ public Builder geo(String geo) { this.geo = geo; return this; } /** * <p>gmt_first_c2.</p> */ public Builder gmtFirstC2(String gmtFirstC2) { this.gmtFirstC2 = gmtFirstC2; return this; } /** * <p>gmt_first_mining_pool.</p> */ public Builder gmtFirstMiningPool(String gmtFirstMiningPool) { this.gmtFirstMiningPool = gmtFirstMiningPool; return this; } /** * <p>gmt_last_c2.</p> */ public Builder gmtLastC2(String gmtLastC2) { this.gmtLastC2 = gmtLastC2; return this; } /** * <p>gmt_last_malicious_login.</p> */ public Builder gmtLastMaliciousLogin(String gmtLastMaliciousLogin) { this.gmtLastMaliciousLogin = gmtLastMaliciousLogin; return this; } /** * <p>gmt_last_malicious_source.</p> */ public Builder gmtLastMaliciousSource(String gmtLastMaliciousSource) { this.gmtLastMaliciousSource = gmtLastMaliciousSource; return this; } /** * <p>gmt_last_mining_pool.</p> */ public Builder gmtLastMiningPool(String gmtLastMiningPool) { this.gmtLastMiningPool = gmtLastMiningPool; return this; } /** * <p>gmt_last_nat.</p> */ public Builder gmtLastNat(String gmtLastNat) { this.gmtLastNat = gmtLastNat; return this; } /** * <p>gmt_last_proxy.</p> */ public Builder gmtLastProxy(String gmtLastProxy) { this.gmtLastProxy = gmtLastProxy; return this; } /** * <p>gmt_last_tor.</p> */ public Builder gmtLastTor(String gmtLastTor) { this.gmtLastTor = gmtLastTor; return this; } /** * <p>gmt_last_web_attack.</p> */ public Builder gmtLastWebAttack(String gmtLastWebAttack) { this.gmtLastWebAttack = gmtLastWebAttack; return this; } /** * <p>idc_name.</p> */ public Builder idcName(String idcName) { this.idcName = idcName; return this; } /** * <p>ip.</p> */ public Builder ip(String ip) { this.ip = ip; return this; } /** * <p>is_c2.</p> */ public Builder isC2(String isC2) { this.isC2 = isC2; return this; } /** * <p>is_c2_1d.</p> */ public Builder isC21d(String isC21d) { this.isC21d = isC21d; return this; } /** * <p>is_c2_7d.</p> */ public Builder isC27d(String isC27d) { this.isC27d = isC27d; return this; } /** * <p>is_idc.</p> */ public Builder isIdc(String isIdc) { this.isIdc = isIdc; return this; } /** * <p>is_malicious_login.</p> */ public Builder isMaliciousLogin(String isMaliciousLogin) { this.isMaliciousLogin = isMaliciousLogin; return this; } /** * <p>is_malicious_login_1d.</p> */ public Builder isMaliciousLogin1d(String isMaliciousLogin1d) { this.isMaliciousLogin1d = isMaliciousLogin1d; return this; } /** * <p>is_malicious_login_7d.</p> */ public Builder isMaliciousLogin7d(String isMaliciousLogin7d) { this.isMaliciousLogin7d = isMaliciousLogin7d; return this; } /** * <p>is_malicious_source.</p> */ public Builder isMaliciousSource(String isMaliciousSource) { this.isMaliciousSource = isMaliciousSource; return this; } /** * <p>is_malicious_source_1d.</p> */ public Builder isMaliciousSource1d(String isMaliciousSource1d) { this.isMaliciousSource1d = isMaliciousSource1d; return this; } /** * <p>is_malicious_source_30d.</p> */ public Builder isMaliciousSource30d(String isMaliciousSource30d) { this.isMaliciousSource30d = isMaliciousSource30d; return this; } /** * <p>is_malicious_source_7d.</p> */ public Builder isMaliciousSource7d(String isMaliciousSource7d) { this.isMaliciousSource7d = isMaliciousSource7d; return this; } /** * <p>is_mining_pool.</p> */ public Builder isMiningPool(String isMiningPool) { this.isMiningPool = isMiningPool; return this; } /** * <p>is_mining_pool_1d.</p> */ public Builder isMiningPool1d(String isMiningPool1d) { this.isMiningPool1d = isMiningPool1d; return this; } /** * <p>is_mining_pool_7d.</p> */ public Builder isMiningPool7d(String isMiningPool7d) { this.isMiningPool7d = isMiningPool7d; return this; } /** * <p>is_nat.</p> */ public Builder isNat(String isNat) { this.isNat = isNat; return this; } /** * <p>is_nat_1d.</p> */ public Builder isNat1d(String isNat1d) { this.isNat1d = isNat1d; return this; } /** * <p>is_nat_7d.</p> */ public Builder isNat7d(String isNat7d) { this.isNat7d = isNat7d; return this; } /** * <p>is_proxy.</p> */ public Builder isProxy(String isProxy) { this.isProxy = isProxy; return this; } /** * <p>is_proxy_1d.</p> */ public Builder isProxy1d(String isProxy1d) { this.isProxy1d = isProxy1d; return this; } /** * <p>is_proxy_7d.</p> */ public Builder isProxy7d(String isProxy7d) { this.isProxy7d = isProxy7d; return this; } /** * <p>is_tor.</p> */ public Builder isTor(String isTor) { this.isTor = isTor; return this; } /** * <p>is_tor_1d.</p> */ public Builder isTor1d(String isTor1d) { this.isTor1d = isTor1d; return this; } /** * <p>is_tor_7d.</p> */ public Builder isTor7d(String isTor7d) { this.isTor7d = isTor7d; return this; } /** * <p>is_web_attack.</p> */ public Builder isWebAttack(String isWebAttack) { this.isWebAttack = isWebAttack; return this; } /** * <p>is_web_attack_1d.</p> */ public Builder isWebAttack1d(String isWebAttack1d) { this.isWebAttack1d = isWebAttack1d; return this; } /** * <p>is_web_attack_30d.</p> */ public Builder isWebAttack30d(String isWebAttack30d) { this.isWebAttack30d = isWebAttack30d; return this; } /** * <p>is_web_attack_7d.</p> */ public Builder isWebAttack7d(String isWebAttack7d) { this.isWebAttack7d = isWebAttack7d; return this; } /** * <p>isp.</p> */ public Builder isp(String isp) { this.isp = isp; return this; } /** * <p>malicious_login_day_trace.</p> */ public Builder maliciousLoginDayTrace(String maliciousLoginDayTrace) { this.maliciousLoginDayTrace = maliciousLoginDayTrace; return this; } /** * <p>malicious_score.</p> */ public Builder maliciousScore(String maliciousScore) { this.maliciousScore = maliciousScore; return this; } /** * <p>malicious_source_day_trace.</p> */ public Builder maliciousSourceDayTrace(String maliciousSourceDayTrace) { this.maliciousSourceDayTrace = maliciousSourceDayTrace; return this; } /** * <p>mining_pool_day_trace.</p> */ public Builder miningPoolDayTrace(String miningPoolDayTrace) { this.miningPoolDayTrace = miningPoolDayTrace; return this; } /** * <p>nat_day_trace.</p> */ public Builder natDayTrace(String natDayTrace) { this.natDayTrace = natDayTrace; return this; } /** * <p>province.</p> */ public Builder province(String province) { this.province = province; return this; } /** * <p>proxy_day_trace.</p> */ public Builder proxyDayTrace(String proxyDayTrace) { this.proxyDayTrace = proxyDayTrace; return this; } /** * <p>rdns.</p> */ public Builder rdns(String rdns) { this.rdns = rdns; return this; } /** * <p>tags.</p> */ public Builder tags(String tags) { this.tags = tags; return this; } /** * <p>tor_day_trace.</p> */ public Builder torDayTrace(String torDayTrace) { this.torDayTrace = torDayTrace; return this; } /** * <p>total_day_cnt_tor.</p> */ public Builder totalDayCntTor(String totalDayCntTor) { this.totalDayCntTor = totalDayCntTor; return this; } /** * <p>total_day_cnt_web_attack.</p> */ public Builder totalDayCntWebAttack(String totalDayCntWebAttack) { this.totalDayCntWebAttack = totalDayCntWebAttack; return this; } /** * <p>web_attack_day_trace.</p> */ public Builder webAttackDayTrace(String webAttackDayTrace) { this.webAttackDayTrace = webAttackDayTrace; return this; } public DescribeIpInfoResponseBody build() { return new DescribeIpInfoResponseBody(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/DescribeLogstoreStorageRequest.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 DescribeLogstoreStorageRequest} extends {@link RequestModel} * * <p>DescribeLogstoreStorageRequest</p> */ public class DescribeLogstoreStorageRequest extends Request { @Query @NameInMap("From") private String from; @Query @NameInMap("Lang") private String lang; private DescribeLogstoreStorageRequest(Builder builder) { super(builder); this.from = builder.from; this.lang = builder.lang; } public static Builder builder() { return new Builder(); } public static DescribeLogstoreStorageRequest create() { return builder().build(); } /** * @return from */ public String getFrom() { return this.from; } /** * @return lang */ public String getLang() { return this.lang; } public static final class Builder extends Request.Builder<Builder> { private String from; private String lang; /** * <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; } public DescribeLogstoreStorageRequest build() { return new DescribeLogstoreStorageRequest(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/DescribeLogstoreStorageResponse.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 DescribeLogstoreStorageResponse} extends {@link TeaModel} * * <p>DescribeLogstoreStorageResponse</p> */ public class DescribeLogstoreStorageResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeLogstoreStorageResponseBody body; private DescribeLogstoreStorageResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeLogstoreStorageResponse 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 DescribeLogstoreStorageResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeLogstoreStorageResponseBody body; private Builder() { super(); } private Builder(DescribeLogstoreStorageResponse 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(DescribeLogstoreStorageResponseBody body) { this.body = body; return this; } public DescribeLogstoreStorageResponse build() { return new DescribeLogstoreStorageResponse(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/DescribeLogstoreStorageResponseBody.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 DescribeLogstoreStorageResponseBody} extends {@link TeaModel} * * <p>DescribeLogstoreStorageResponseBody</p> */ public class DescribeLogstoreStorageResponseBody extends TeaModel { @NameInMap("Logstore") private String logstore; @NameInMap("Preserve") private Long preserve; @NameInMap("RequestId") private String requestId; @NameInMap("Ttl") private Integer ttl; @NameInMap("Used") private Long used; private DescribeLogstoreStorageResponseBody(Builder builder) { this.logstore = builder.logstore; this.preserve = builder.preserve; this.requestId = builder.requestId; this.ttl = builder.ttl; this.used = builder.used; } public static Builder builder() { return new Builder(); } public static DescribeLogstoreStorageResponseBody create() { return builder().build(); } /** * @return logstore */ public String getLogstore() { return this.logstore; } /** * @return preserve */ public Long getPreserve() { return this.preserve; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return ttl */ public Integer getTtl() { return this.ttl; } /** * @return used */ public Long getUsed() { return this.used; } public static final class Builder { private String logstore; private Long preserve; private String requestId; private Integer ttl; private Long used; /** * <p>Logstore.</p> */ public Builder logstore(String logstore) { this.logstore = logstore; return this; } /** * <p>Preserve.</p> */ public Builder preserve(Long preserve) { this.preserve = preserve; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Ttl.</p> */ public Builder ttl(Integer ttl) { this.ttl = ttl; return this; } /** * <p>Used.</p> */ public Builder used(Long used) { this.used = used; return this; } public DescribeLogstoreStorageResponseBody build() { return new DescribeLogstoreStorageResponseBody(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/DescribeModuleConfigRequest.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 DescribeModuleConfigRequest} extends {@link RequestModel} * * <p>DescribeModuleConfigRequest</p> */ public class DescribeModuleConfigRequest extends Request { private DescribeModuleConfigRequest(Builder builder) { super(builder); } public static Builder builder() { return new Builder(); } public static DescribeModuleConfigRequest create() { return builder().build(); } public static final class Builder extends Request.Builder<Builder> { public DescribeModuleConfigRequest build() { return new DescribeModuleConfigRequest(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/DescribeModuleConfigResponse.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 DescribeModuleConfigResponse} extends {@link TeaModel} * * <p>DescribeModuleConfigResponse</p> */ public class DescribeModuleConfigResponse extends Response { @NameInMap("headers") @Validation(required = true) private java.util.Map < String, String > headers; @NameInMap("body") @Validation(required = true) private DescribeModuleConfigResponseBody body; private DescribeModuleConfigResponse(Builder builder) { super(builder); this.headers = builder.headers; this.body = builder.body; } public static Builder builder() { return new Builder(); } public static DescribeModuleConfigResponse 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 DescribeModuleConfigResponseBody getBody() { return this.body; } public static final class Builder extends Response.Builder { private java.util.Map < String, String > headers; private DescribeModuleConfigResponseBody body; private Builder() { super(); } private Builder(DescribeModuleConfigResponse 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(DescribeModuleConfigResponseBody body) { this.body = body; return this; } public DescribeModuleConfigResponse build() { return new DescribeModuleConfigResponse(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/DescribeModuleConfigResponseBody.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 DescribeModuleConfigResponseBody} extends {@link TeaModel} * * <p>DescribeModuleConfigResponseBody</p> */ public class DescribeModuleConfigResponseBody extends TeaModel { @NameInMap("Count") private Integer count; @NameInMap("HttpStatusCode") private Integer httpStatusCode; @NameInMap("ModuleConfigList") private java.util.List < ModuleConfigList> moduleConfigList; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private DescribeModuleConfigResponseBody(Builder builder) { this.count = builder.count; this.httpStatusCode = builder.httpStatusCode; this.moduleConfigList = builder.moduleConfigList; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DescribeModuleConfigResponseBody create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } /** * @return httpStatusCode */ public Integer getHttpStatusCode() { return this.httpStatusCode; } /** * @return moduleConfigList */ public java.util.List < ModuleConfigList> getModuleConfigList() { return this.moduleConfigList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private Integer count; private Integer httpStatusCode; private java.util.List < ModuleConfigList> moduleConfigList; private String requestId; private Boolean success; /** * <p>Count.</p> */ public Builder count(Integer count) { this.count = count; return this; } /** * <p>HttpStatusCode.</p> */ public Builder httpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } /** * <p>ModuleConfigList.</p> */ public Builder moduleConfigList(java.util.List < ModuleConfigList> moduleConfigList) { this.moduleConfigList = moduleConfigList; return this; } /** * <p>RequestId.</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * <p>Success.</p> */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeModuleConfigResponseBody build() { return new DescribeModuleConfigResponseBody(this); } } public static class Items extends TeaModel { @NameInMap("GroupId") private Integer groupId; @NameInMap("InstanceId") private String instanceId; @NameInMap("InstanceName") private String instanceName; @NameInMap("Ip") private String ip; @NameInMap("Region") private String region; @NameInMap("Uuid") private String uuid; private Items(Builder builder) { this.groupId = builder.groupId; this.instanceId = builder.instanceId; this.instanceName = builder.instanceName; this.ip = builder.ip; this.region = builder.region; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static Items create() { return builder().build(); } /** * @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 ip */ public String getIp() { return this.ip; } /** * @return region */ public String getRegion() { return this.region; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private Integer groupId; private String instanceId; private String instanceName; private String ip; private String region; private String uuid; /** * <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>Ip.</p> */ public Builder ip(String ip) { this.ip = ip; return this; } /** * <p>Region.</p> */ public Builder region(String region) { this.region = region; return this; } /** * <p>Uuid.</p> */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public Items build() { return new Items(this); } } } public static class ModuleConfigList extends TeaModel { @NameInMap("ConfigName") private String configName; @NameInMap("Items") private java.util.List < Items> items; @NameInMap("ModuleName") private String moduleName; private ModuleConfigList(Builder builder) { this.configName = builder.configName; this.items = builder.items; this.moduleName = builder.moduleName; } public static Builder builder() { return new Builder(); } public static ModuleConfigList create() { return builder().build(); } /** * @return configName */ public String getConfigName() { return this.configName; } /** * @return items */ public java.util.List < Items> getItems() { return this.items; } /** * @return moduleName */ public String getModuleName() { return this.moduleName; } public static final class Builder { private String configName; private java.util.List < Items> items; private String moduleName; /** * <p>ConfigName.</p> */ public Builder configName(String configName) { this.configName = configName; return this; } /** * <p>Items.</p> */ public Builder items(java.util.List < Items> items) { this.items = items; return this; } /** * <p>ModuleName.</p> */ public Builder moduleName(String moduleName) { this.moduleName = moduleName; return this; } public ModuleConfigList build() { return new ModuleConfigList(this); } } } }