com.aliyun.sas20181203.models.DescribeRiskListCheckResultRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribeRiskListCheckResultRequest extends TeaModel {
/**
* The number of the page to return. Pages start from page 1. Default value: 1.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* The instance IDs of the cloud services that you want to query. Separate multiple IDs with commas (,).
*
* If you do not specify this parameter, an empty list is returned.
*
*/
@NameInMap("InstanceIds")
public java.util.List instanceIds;
/**
* The language of the content within the request and response. Valid values:
*
* - zh: Chinese
* - en: English
*
*
* example:
* zh
*/
@NameInMap("Lang")
public String lang;
/**
* The number of entries to return on each page.
*
* example:
* 10
*/
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
/**
* The source IP address of the request.
*
* example:
* 59.57.XX.XX
*/
@NameInMap("SourceIp")
public String sourceIp;
public static DescribeRiskListCheckResultRequest build(java.util.Map map) throws Exception {
DescribeRiskListCheckResultRequest self = new DescribeRiskListCheckResultRequest();
return TeaModel.build(map, self);
}
public DescribeRiskListCheckResultRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public DescribeRiskListCheckResultRequest setInstanceIds(java.util.List instanceIds) {
this.instanceIds = instanceIds;
return this;
}
public java.util.List getInstanceIds() {
return this.instanceIds;
}
public DescribeRiskListCheckResultRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
public DescribeRiskListCheckResultRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribeRiskListCheckResultRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public DescribeRiskListCheckResultRequest setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
return this;
}
public String getSourceIp() {
return this.sourceIp;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy