Procházet zdrojové kódy

Generated 2020-05-18 for dataworks-public.

sdk-team před 1 rokem
rodič
revize
72138b276a

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.2057
+1.36.2058

+ 3 - 0
dataworks-public/include/alibabacloud/dataworks-public/model/ListFilesRequest.h

@@ -36,6 +36,8 @@ public:
 	void setFileTypes(const std::string &fileTypes);
 	bool getNeedContent() const;
 	void setNeedContent(bool needContent);
+	int getCommitStatus() const;
+	void setCommitStatus(int commitStatus);
 	bool getNeedAbsoluteFolderPath() const;
 	void setNeedAbsoluteFolderPath(bool needAbsoluteFolderPath);
 	std::string getProjectIdentifier() const;
@@ -65,6 +67,7 @@ private:
 	std::string owner_;
 	std::string fileTypes_;
 	bool needContent_;
+	int commitStatus_;
 	bool needAbsoluteFolderPath_;
 	std::string projectIdentifier_;
 	int pageNumber_;

+ 9 - 0
dataworks-public/src/model/ListFilesRequest.cc

@@ -52,6 +52,15 @@ void ListFilesRequest::setNeedContent(bool needContent) {
   setBodyParameter(std::string("NeedContent"), needContent ? "true" : "false");
 }
 
+int ListFilesRequest::getCommitStatus() const {
+  return commitStatus_;
+}
+
+void ListFilesRequest::setCommitStatus(int commitStatus) {
+  commitStatus_ = commitStatus;
+  setBodyParameter(std::string("CommitStatus"), std::to_string(commitStatus));
+}
+
 bool ListFilesRequest::getNeedAbsoluteFolderPath() const {
   return needAbsoluteFolderPath_;
 }