From b5ed975753a024151324ee10863b048156212168 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Wed, 29 Jul 2020 10:47:59 +0800 Subject: [PATCH] Generated 2020-05-18 for dataworks-public. --- CHANGELOG | 3 +++ VERSION | 2 +- .../alibabacloud/dataworks-public/model/ListFilesResult.h | 1 + dataworks-public/src/model/ListFilesResult.cc | 2 ++ 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 298e587ee..b3a60995a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2020-07-29 Version: 1.36.541 +- Generated 2020-05-18 for `dataworks-public`. + 2020-07-27 Version: 1.36.540 - Supported CheckCloudResourceAuthorized API. diff --git a/VERSION b/VERSION index f95c00ed9..c24309140 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.540 \ No newline at end of file +1.36.541 \ No newline at end of file diff --git a/dataworks-public/include/alibabacloud/dataworks-public/model/ListFilesResult.h b/dataworks-public/include/alibabacloud/dataworks-public/model/ListFilesResult.h index afc2cb03b..3945d2b8d 100644 --- a/dataworks-public/include/alibabacloud/dataworks-public/model/ListFilesResult.h +++ b/dataworks-public/include/alibabacloud/dataworks-public/model/ListFilesResult.h @@ -52,6 +52,7 @@ namespace AlibabaCloud std::string lastEditUser; long nodeId; int commitStatus; + long fileId; std::string fileFolderId; long bizId; }; diff --git a/dataworks-public/src/model/ListFilesResult.cc b/dataworks-public/src/model/ListFilesResult.cc index f334a06e7..f340cc3c8 100644 --- a/dataworks-public/src/model/ListFilesResult.cc +++ b/dataworks-public/src/model/ListFilesResult.cc @@ -86,6 +86,8 @@ void ListFilesResult::parse(const std::string &payload) fileObject.lastEditTime = std::stol(dataNodeFilesFile["LastEditTime"].asString()); if(!dataNodeFilesFile["CommitStatus"].isNull()) fileObject.commitStatus = std::stoi(dataNodeFilesFile["CommitStatus"].asString()); + if(!dataNodeFilesFile["FileId"].isNull()) + fileObject.fileId = std::stol(dataNodeFilesFile["FileId"].asString()); data_.files.push_back(fileObject); } if(!value["Success"].isNull())