From 2c3af87947342c82c1753ff90216207303e1c763 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Fri, 30 Jun 2023 07:57:37 +0000 Subject: [PATCH] Modify ListTaskFlowsByPage API. Add output parameter: DagOwnerId. --- VERSION | 2 +- .../dms-enterprise/model/ListTaskFlowsByPageResult.h | 1 + dms-enterprise/src/model/ListTaskFlowsByPageResult.cc | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 61995c57c..f879efd1a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1621 \ No newline at end of file +1.36.1622 \ No newline at end of file diff --git a/dms-enterprise/include/alibabacloud/dms-enterprise/model/ListTaskFlowsByPageResult.h b/dms-enterprise/include/alibabacloud/dms-enterprise/model/ListTaskFlowsByPageResult.h index 1df557770..3b644624c 100644 --- a/dms-enterprise/include/alibabacloud/dms-enterprise/model/ListTaskFlowsByPageResult.h +++ b/dms-enterprise/include/alibabacloud/dms-enterprise/model/ListTaskFlowsByPageResult.h @@ -41,6 +41,7 @@ namespace AlibabaCloud std::string description; std::string scenarioId; std::string creatorId; + std::string dagOwnerId; long deployId; std::string dagName; std::string dagOwnerNickName; diff --git a/dms-enterprise/src/model/ListTaskFlowsByPageResult.cc b/dms-enterprise/src/model/ListTaskFlowsByPageResult.cc index ba8b839d1..e177fb4ce 100644 --- a/dms-enterprise/src/model/ListTaskFlowsByPageResult.cc +++ b/dms-enterprise/src/model/ListTaskFlowsByPageResult.cc @@ -81,6 +81,8 @@ void ListTaskFlowsByPageResult::parse(const std::string &payload) taskFlowListObject.cronEndDate = valueTaskFlowListTaskFlow["CronEndDate"].asString(); if(!valueTaskFlowListTaskFlow["TimeZoneId"].isNull()) taskFlowListObject.timeZoneId = valueTaskFlowListTaskFlow["TimeZoneId"].asString(); + if(!valueTaskFlowListTaskFlow["DagOwnerId"].isNull()) + taskFlowListObject.dagOwnerId = valueTaskFlowListTaskFlow["DagOwnerId"].asString(); taskFlowList_.push_back(taskFlowListObject); } if(!value["ErrorCode"].isNull())