diff --git a/VERSION b/VERSION index b8a5331ae..82f2e87dd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1391 \ No newline at end of file +1.36.1392 \ No newline at end of file diff --git a/dataworks-public/include/alibabacloud/dataworks-public/model/GetMetaTableOutputRequest.h b/dataworks-public/include/alibabacloud/dataworks-public/model/GetMetaTableOutputRequest.h index 81a1835a0..79a2c45bc 100644 --- a/dataworks-public/include/alibabacloud/dataworks-public/model/GetMetaTableOutputRequest.h +++ b/dataworks-public/include/alibabacloud/dataworks-public/model/GetMetaTableOutputRequest.h @@ -40,6 +40,8 @@ public: void setTableGuid(const std::string &tableGuid); int getPageSize() const; void setPageSize(int pageSize); + std::string getTaskId() const; + void setTaskId(const std::string &taskId); private: std::string startDate_; @@ -47,6 +49,7 @@ private: std::string endDate_; std::string tableGuid_; int pageSize_; + std::string taskId_; }; } // namespace Model } // namespace Dataworks_public diff --git a/dataworks-public/src/model/GetMetaTableOutputRequest.cc b/dataworks-public/src/model/GetMetaTableOutputRequest.cc index 869f9bfa0..cd5ddcf7f 100644 --- a/dataworks-public/src/model/GetMetaTableOutputRequest.cc +++ b/dataworks-public/src/model/GetMetaTableOutputRequest.cc @@ -70,3 +70,12 @@ void GetMetaTableOutputRequest::setPageSize(int pageSize) { setParameter(std::string("PageSize"), std::to_string(pageSize)); } +std::string GetMetaTableOutputRequest::getTaskId() const { + return taskId_; +} + +void GetMetaTableOutputRequest::setTaskId(const std::string &taskId) { + taskId_ = taskId; + setParameter(std::string("TaskId"), taskId); +} +