com.aliyun.sas20181203.models.ListVirusScanMachineEventRequest 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 ListVirusScanMachineEventRequest extends TeaModel {
/**
* The page number.
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* The language of the content within the request and response. Default value: zh. Valid values:
*
* - zh: Chinese
* - en: English
*
*
* example:
* en
*/
@NameInMap("Lang")
public String lang;
/**
* The task ID that is generated by the handling operation.
*
* You can call the OperateVirusEvents operation to handle alerts. You can obtain the task ID from the response parameters.
*
*
* example:
* 233886xx
*/
@NameInMap("OperateTaskId")
public String operateTaskId;
/**
* The number of entries per page.
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The UUID of the server.
*
* example:
* a6931624-c43e-4323-9128-a6be6ffdxxxx
*/
@NameInMap("Uuid")
public String uuid;
public static ListVirusScanMachineEventRequest build(java.util.Map map) throws Exception {
ListVirusScanMachineEventRequest self = new ListVirusScanMachineEventRequest();
return TeaModel.build(map, self);
}
public ListVirusScanMachineEventRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public ListVirusScanMachineEventRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
public ListVirusScanMachineEventRequest setOperateTaskId(String operateTaskId) {
this.operateTaskId = operateTaskId;
return this;
}
public String getOperateTaskId() {
return this.operateTaskId;
}
public ListVirusScanMachineEventRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListVirusScanMachineEventRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy