com.aliyun.sas20181203.models.ListVirusScanMachineRequest 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 ListVirusScanMachineRequest extends TeaModel {
/**
* The page number.
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* The number of entries per page.
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The information about the server that you want to query. The value can be the name or the IP address of the server.
*
* example:
* 192.168.1****
*/
@NameInMap("Remark")
public String remark;
/**
* The UUID of the server.
*
* example:
* 7cc91747-2845-40d4-bb69-c077597f****
*/
@NameInMap("Uuid")
public String uuid;
public static ListVirusScanMachineRequest build(java.util.Map map) throws Exception {
ListVirusScanMachineRequest self = new ListVirusScanMachineRequest();
return TeaModel.build(map, self);
}
public ListVirusScanMachineRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public ListVirusScanMachineRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListVirusScanMachineRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public ListVirusScanMachineRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy