Generated 2020-05-18 for dataworks-public.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2022-08-11 Version: 1.36.1220
|
||||
- Generated 2020-05-18 for `dataworks-public`.
|
||||
|
||||
2022-08-09 Version: 1.36.1219
|
||||
- Support API ARMInstance.
|
||||
- Support Control ARM API.
|
||||
|
||||
@@ -28,8 +28,14 @@ namespace Dataworks_public {
|
||||
namespace Model {
|
||||
class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT GetMetaTablePartitionRequest : public RpcServiceRequest {
|
||||
public:
|
||||
struct SortCriterion {
|
||||
std::string sortField;
|
||||
std::string order;
|
||||
};
|
||||
GetMetaTablePartitionRequest();
|
||||
~GetMetaTablePartitionRequest();
|
||||
SortCriterion getSortCriterion() const;
|
||||
void setSortCriterion(const SortCriterion &sortCriterion);
|
||||
std::string getDataSourceType() const;
|
||||
void setDataSourceType(const std::string &dataSourceType);
|
||||
std::string getClusterId() const;
|
||||
@@ -46,6 +52,7 @@ public:
|
||||
void setTableName(const std::string &tableName);
|
||||
|
||||
private:
|
||||
SortCriterion sortCriterion_;
|
||||
std::string dataSourceType_;
|
||||
std::string clusterId_;
|
||||
int pageNumber_;
|
||||
|
||||
@@ -25,6 +25,16 @@ GetMetaTablePartitionRequest::GetMetaTablePartitionRequest()
|
||||
|
||||
GetMetaTablePartitionRequest::~GetMetaTablePartitionRequest() {}
|
||||
|
||||
GetMetaTablePartitionRequest::SortCriterion GetMetaTablePartitionRequest::getSortCriterion() const {
|
||||
return sortCriterion_;
|
||||
}
|
||||
|
||||
void GetMetaTablePartitionRequest::setSortCriterion(const GetMetaTablePartitionRequest::SortCriterion &sortCriterion) {
|
||||
sortCriterion_ = sortCriterion;
|
||||
setParameter(std::string("SortCriterion") + ".SortField", sortCriterion.sortField);
|
||||
setParameter(std::string("SortCriterion") + ".Order", sortCriterion.order);
|
||||
}
|
||||
|
||||
std::string GetMetaTablePartitionRequest::getDataSourceType() const {
|
||||
return dataSourceType_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user