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
36
36
void setFileTypes (const std::string &fileTypes);
37
37
bool getNeedContent () const ;
38
38
void setNeedContent (bool needContent);
39
+ int getCommitStatus () const ;
40
+ void setCommitStatus (int commitStatus);
39
41
bool getNeedAbsoluteFolderPath () const ;
40
42
void setNeedAbsoluteFolderPath (bool needAbsoluteFolderPath);
41
43
std::string getProjectIdentifier () const ;
@@ -65,6 +67,7 @@ class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT ListFilesRequest : public RpcServiceR
65
67
std::string owner_;
66
68
std::string fileTypes_;
67
69
bool needContent_;
70
+ int commitStatus_;
68
71
bool needAbsoluteFolderPath_;
69
72
std::string projectIdentifier_;
70
73
int pageNumber_;
Original file line number Diff line number Diff line change @@ -52,6 +52,15 @@ void ListFilesRequest::setNeedContent(bool needContent) {
52
52
setBodyParameter (std::string (" NeedContent" ), needContent ? " true" : " false" );
53
53
}
54
54
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
+
55
64
bool ListFilesRequest::getNeedAbsoluteFolderPath () const {
56
65
return needAbsoluteFolderPath_;
57
66
}
You can’t perform that action at this time.
0 commit comments