File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
include/alibabacloud/dataworks-public/model Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1- 1.36.2057
1+ 1.36.2058
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT ListFilesRequest : public RpcServiceR
3636 void setFileTypes (const std::string &fileTypes);
3737 bool getNeedContent () const ;
3838 void setNeedContent (bool needContent);
39+ int getCommitStatus () const ;
40+ void setCommitStatus (int commitStatus);
3941 bool getNeedAbsoluteFolderPath () const ;
4042 void setNeedAbsoluteFolderPath (bool needAbsoluteFolderPath);
4143 std::string getProjectIdentifier () const ;
@@ -65,6 +67,7 @@ class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT ListFilesRequest : public RpcServiceR
6567 std::string owner_;
6668 std::string fileTypes_;
6769 bool needContent_;
70+ int commitStatus_;
6871 bool needAbsoluteFolderPath_;
6972 std::string projectIdentifier_;
7073 int pageNumber_;
Original file line number Diff line number Diff line change @@ -52,6 +52,15 @@ void ListFilesRequest::setNeedContent(bool needContent) {
5252 setBodyParameter (std::string (" NeedContent" ), needContent ? " true" : " false" );
5353}
5454
55+ int ListFilesRequest::getCommitStatus () const {
56+ return commitStatus_;
57+ }
58+
59+ void ListFilesRequest::setCommitStatus (int commitStatus) {
60+ commitStatus_ = commitStatus;
61+ setBodyParameter (std::string (" CommitStatus" ), std::to_string (commitStatus));
62+ }
63+
5564bool ListFilesRequest::getNeedAbsoluteFolderPath () const {
5665 return needAbsoluteFolderPath_;
5766}
You can’t perform that action at this time.
0 commit comments