com.aliyun.dms_enterprise20181101.models.GetDataArchiveCountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;
import com.aliyun.tea.*;
public class GetDataArchiveCountRequest extends TeaModel {
/**
* The type of the identity. Default value: AS_ADMIN.
*
* example:
* AS_ADMIN
*/
@NameInMap("OrderResultType")
public String orderResultType;
/**
* The plugin type. Default value: DATA_ARCHIVE.
*
* example:
* DATA_ARCHIVE
*/
@NameInMap("PluginType")
public String pluginType;
/**
* The time when the ticket is modified or created. The statistics of data archiving tickets are calculated based on the creation time.
*
* example:
* CREATE_TIME
*/
@NameInMap("SearchDateType")
public String searchDateType;
/**
* The tenant ID.
*
* To view the tenant ID, move the pointer over the profile picture in the upper-right corner of the Data Management (DMS) console. For more information, see Manage DMS tenants.
*
*
* example:
* 2****
*/
@NameInMap("Tid")
public Long tid;
public static GetDataArchiveCountRequest build(java.util.Map map) throws Exception {
GetDataArchiveCountRequest self = new GetDataArchiveCountRequest();
return TeaModel.build(map, self);
}
public GetDataArchiveCountRequest setOrderResultType(String orderResultType) {
this.orderResultType = orderResultType;
return this;
}
public String getOrderResultType() {
return this.orderResultType;
}
public GetDataArchiveCountRequest setPluginType(String pluginType) {
this.pluginType = pluginType;
return this;
}
public String getPluginType() {
return this.pluginType;
}
public GetDataArchiveCountRequest setSearchDateType(String searchDateType) {
this.searchDateType = searchDateType;
return this;
}
public String getSearchDateType() {
return this.searchDateType;
}
public GetDataArchiveCountRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}