com.aliyun.sas20181203.models.DescribeSyncAssetTaskListRequest 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 DescribeSyncAssetTaskListRequest extends TeaModel {
/**
* The page number. Default value: 1. Pages start from page 1.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* The timestamp when the IDC scan task ends. Unit: milliseconds.
*
* example:
* 1662430077000
*/
@NameInMap("EndTime")
public Long endTime;
/**
* The number of entries per page. Default value: 20. If you leave this parameter empty, 20 entries are returned on each page.
*
* We recommend that you do not leave this parameter empty.
*
*
* example:
* 20
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The timestamp when the IDC scan task starts. Unit: milliseconds.
*
* example:
* 1652063828796
*/
@NameInMap("StartTime")
public Long startTime;
/**
* The name of the IDC scan task.
*
* example:
* IDC_PROBE_SCAN***
*/
@NameInMap("TaskName")
public String taskName;
public static DescribeSyncAssetTaskListRequest build(java.util.Map map) throws Exception {
DescribeSyncAssetTaskListRequest self = new DescribeSyncAssetTaskListRequest();
return TeaModel.build(map, self);
}
public DescribeSyncAssetTaskListRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public DescribeSyncAssetTaskListRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public DescribeSyncAssetTaskListRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribeSyncAssetTaskListRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public DescribeSyncAssetTaskListRequest setTaskName(String taskName) {
this.taskName = taskName;
return this;
}
public String getTaskName() {
return this.taskName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy