From 011b8ae4c52de50843268661b02a77af4a015acf Mon Sep 17 00:00:00 2001 From: sdk-team Date: Wed, 31 Aug 2022 11:30:00 +0000 Subject: [PATCH] Generated 2020-05-18 for dataworks-public. --- VERSION | 2 +- .../dataworks-public/model/ListAlertMessagesRequest.h | 3 +++ .../dataworks-public/model/ListInstancesRequest.h | 3 +++ dataworks-public/src/model/ListAlertMessagesRequest.cc | 9 +++++++++ dataworks-public/src/model/ListInstancesRequest.cc | 9 +++++++++ 5 files changed, 25 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9e3459d22..1b097318d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1243 \ No newline at end of file +1.36.1244 \ No newline at end of file diff --git a/dataworks-public/include/alibabacloud/dataworks-public/model/ListAlertMessagesRequest.h b/dataworks-public/include/alibabacloud/dataworks-public/model/ListAlertMessagesRequest.h index 4dcaf4268..380d2e895 100644 --- a/dataworks-public/include/alibabacloud/dataworks-public/model/ListAlertMessagesRequest.h +++ b/dataworks-public/include/alibabacloud/dataworks-public/model/ListAlertMessagesRequest.h @@ -40,6 +40,8 @@ public: void setAlertMethods(const std::string &alertMethods); int getPageNumber() const; void setPageNumber(int pageNumber); + long getBaselineId() const; + void setBaselineId(long baselineId); long getRemindId() const; void setRemindId(long remindId); int getPageSize() const; @@ -53,6 +55,7 @@ private: std::string beginTime_; std::string alertMethods_; int pageNumber_; + long baselineId_; long remindId_; int pageSize_; std::string alertRuleTypes_; diff --git a/dataworks-public/include/alibabacloud/dataworks-public/model/ListInstancesRequest.h b/dataworks-public/include/alibabacloud/dataworks-public/model/ListInstancesRequest.h index 0e177776c..50ffd510d 100644 --- a/dataworks-public/include/alibabacloud/dataworks-public/model/ListInstancesRequest.h +++ b/dataworks-public/include/alibabacloud/dataworks-public/model/ListInstancesRequest.h @@ -56,6 +56,8 @@ public: void setNodeId(long nodeId); long getProjectId() const; void setProjectId(long projectId); + std::string getStatus() const; + void setStatus(const std::string &status); private: std::string projectEnv_; @@ -71,6 +73,7 @@ private: int pageSize_; long nodeId_; long projectId_; + std::string status_; }; } // namespace Model } // namespace Dataworks_public diff --git a/dataworks-public/src/model/ListAlertMessagesRequest.cc b/dataworks-public/src/model/ListAlertMessagesRequest.cc index a3049489f..6126ed820 100644 --- a/dataworks-public/src/model/ListAlertMessagesRequest.cc +++ b/dataworks-public/src/model/ListAlertMessagesRequest.cc @@ -70,6 +70,15 @@ void ListAlertMessagesRequest::setPageNumber(int pageNumber) { setBodyParameter(std::string("PageNumber"), std::to_string(pageNumber)); } +long ListAlertMessagesRequest::getBaselineId() const { + return baselineId_; +} + +void ListAlertMessagesRequest::setBaselineId(long baselineId) { + baselineId_ = baselineId; + setBodyParameter(std::string("BaselineId"), std::to_string(baselineId)); +} + long ListAlertMessagesRequest::getRemindId() const { return remindId_; } diff --git a/dataworks-public/src/model/ListInstancesRequest.cc b/dataworks-public/src/model/ListInstancesRequest.cc index 9cddebc76..edb75d45d 100644 --- a/dataworks-public/src/model/ListInstancesRequest.cc +++ b/dataworks-public/src/model/ListInstancesRequest.cc @@ -142,3 +142,12 @@ void ListInstancesRequest::setProjectId(long projectId) { setBodyParameter(std::string("ProjectId"), std::to_string(projectId)); } +std::string ListInstancesRequest::getStatus() const { + return status_; +} + +void ListInstancesRequest::setStatus(const std::string &status) { + status_ = status; + setBodyParameter(std::string("Status"), status); +} +