
com.alicloud.openservices.tablestore.model.timeseries.DescribeTimeseriesTableRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tablestore Show documentation
Show all versions of tablestore Show documentation
Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有
(C)阿里云计算有限公司 http://www.aliyun.com
The newest version!
package com.alicloud.openservices.tablestore.model.timeseries;
import com.alicloud.openservices.tablestore.core.utils.Preconditions;
import com.alicloud.openservices.tablestore.model.OperationNames;
import com.alicloud.openservices.tablestore.model.Request;
public class DescribeTimeseriesTableRequest implements Request {
/**
* Table name information.
*/
private String timeseriesTableName;
/**
* Initialize the DeleteTimeseriesTableRequest instance.
* @param timeseriesTableName The table name.
*/
public DescribeTimeseriesTableRequest(String timeseriesTableName) {
setTimeseriesTableName(timeseriesTableName);
}
/**
* Get the name of the table.
* @return The name of the table.
*/
public String getTimeseriesTableName() {
return timeseriesTableName;
}
/**
* Set the name of the table.
* @param timeseriesTableName The name of the table.
*/
public void setTimeseriesTableName(String timeseriesTableName) {
Preconditions.checkArgument(
timeseriesTableName != null && !timeseriesTableName.isEmpty(),
"The name of table should not be null or empty.");
this.timeseriesTableName = timeseriesTableName;
}
@Override
public String getOperationName() {
return OperationNames.OP_DESCRIBE_TIMESERIES_TABLE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy