Skip to content

Commit 72138b2

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent 53d26e9 commit 72138b2

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.2057
1+
1.36.2058

dataworks-public/include/alibabacloud/dataworks-public/model/ListFilesRequest.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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_;

dataworks-public/src/model/ListFilesRequest.cc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
5564
bool ListFilesRequest::getNeedAbsoluteFolderPath() const {
5665
return needAbsoluteFolderPath_;
5766
}

0 commit comments

Comments
 (0)