浏览代码

Generated 2020-05-18 for dataworks-public.

sdk-team 3 年之前
父节点
当前提交
cfec2a4f73

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1391
+1.36.1392

+ 3 - 0
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

+ 9 - 0
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);
+}
+