From 6994be7a5e42b17a2ba6b9af932dec14bb9a9870 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Wed, 15 Jan 2020 14:14:04 +0800 Subject: [PATCH] Fix parameter issues for label synchronization group. --- CHANGELOG | 3 +++ VERSION | 2 +- .../cms/model/CreateDynamicTagGroupRequest.h | 1 - .../cms/model/DeleteDynamicTagGroupRequest.h | 6 ++--- .../model/DescribeDynamicTagRuleListResult.h | 3 +-- .../cms/model/DescribeMonitorGroupsRequest.h | 6 ++--- cms/src/model/CreateDynamicTagGroupRequest.cc | 1 - cms/src/model/DeleteDynamicTagGroupRequest.cc | 10 ++++----- .../model/DescribeDynamicTagRuleListResult.cc | 6 ++--- cms/src/model/DescribeMonitorGroupsRequest.cc | 22 +++++++++---------- 10 files changed, 29 insertions(+), 31 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 642cd2c34..da9cdaf59 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2020-01-15 Version 1.36.241 +- Fix parameter issues for label synchronization group. + 2020-01-13 Version 1.36.240 - New API DescribeAvailableResource. diff --git a/VERSION b/VERSION index fc927c5f1..bf4a1f93e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.240 \ No newline at end of file +1.36.241 \ No newline at end of file diff --git a/cms/include/alibabacloud/cms/model/CreateDynamicTagGroupRequest.h b/cms/include/alibabacloud/cms/model/CreateDynamicTagGroupRequest.h index d71a9e1b7..0ab592a2c 100644 --- a/cms/include/alibabacloud/cms/model/CreateDynamicTagGroupRequest.h +++ b/cms/include/alibabacloud/cms/model/CreateDynamicTagGroupRequest.h @@ -32,7 +32,6 @@ namespace AlibabaCloud { struct MatchExpress { - std::string tagName; std::string tagValue; std::string tagValueMatchFunction; }; diff --git a/cms/include/alibabacloud/cms/model/DeleteDynamicTagGroupRequest.h b/cms/include/alibabacloud/cms/model/DeleteDynamicTagGroupRequest.h index 47e03eaed..0b6b172a6 100644 --- a/cms/include/alibabacloud/cms/model/DeleteDynamicTagGroupRequest.h +++ b/cms/include/alibabacloud/cms/model/DeleteDynamicTagGroupRequest.h @@ -35,11 +35,11 @@ namespace AlibabaCloud DeleteDynamicTagGroupRequest(); ~DeleteDynamicTagGroupRequest(); - std::string getDynamicTagGroupId()const; - void setDynamicTagGroupId(const std::string& dynamicTagGroupId); + std::string getDynamicTagRuleId()const; + void setDynamicTagRuleId(const std::string& dynamicTagRuleId); private: - std::string dynamicTagGroupId_; + std::string dynamicTagRuleId_; }; } diff --git a/cms/include/alibabacloud/cms/model/DescribeDynamicTagRuleListResult.h b/cms/include/alibabacloud/cms/model/DescribeDynamicTagRuleListResult.h index 5169ed65e..caef43b2b 100644 --- a/cms/include/alibabacloud/cms/model/DescribeDynamicTagRuleListResult.h +++ b/cms/include/alibabacloud/cms/model/DescribeDynamicTagRuleListResult.h @@ -36,13 +36,12 @@ namespace AlibabaCloud { struct MatchExpressItem { - std::string tagName; std::string tagValue; std::string tagValueMatchFunction; }; - std::string dynamicTagGroupId; std::string status; std::string matchExpressFilterRelation; + std::string dynamicTagRuleId; std::vector templateIdList; std::string tagKey; std::vector matchExpress; diff --git a/cms/include/alibabacloud/cms/model/DescribeMonitorGroupsRequest.h b/cms/include/alibabacloud/cms/model/DescribeMonitorGroupsRequest.h index 0df8ef169..6dac033ae 100644 --- a/cms/include/alibabacloud/cms/model/DescribeMonitorGroupsRequest.h +++ b/cms/include/alibabacloud/cms/model/DescribeMonitorGroupsRequest.h @@ -44,6 +44,8 @@ namespace AlibabaCloud void setSelectContactGroups(bool selectContactGroups); bool getIncludeTemplateHistory()const; void setIncludeTemplateHistory(bool includeTemplateHistory); + std::string getDynamicTagRuleId()const; + void setDynamicTagRuleId(const std::string& dynamicTagRuleId); std::string getType()const; void setType(const std::string& type); int getPageNumber()const; @@ -60,12 +62,11 @@ namespace AlibabaCloud void setGroupName(const std::string& groupName); std::string getInstanceId()const; void setInstanceId(const std::string& instanceId); - std::string getDynamicTagGroupId()const; - void setDynamicTagGroupId(const std::string& dynamicTagGroupId); private: bool selectContactGroups_; bool includeTemplateHistory_; + std::string dynamicTagRuleId_; std::string type_; int pageNumber_; int pageSize_; @@ -74,7 +75,6 @@ namespace AlibabaCloud std::string groupId_; std::string groupName_; std::string instanceId_; - std::string dynamicTagGroupId_; }; } diff --git a/cms/src/model/CreateDynamicTagGroupRequest.cc b/cms/src/model/CreateDynamicTagGroupRequest.cc index 2603c9400..6d3817e58 100644 --- a/cms/src/model/CreateDynamicTagGroupRequest.cc +++ b/cms/src/model/CreateDynamicTagGroupRequest.cc @@ -82,7 +82,6 @@ void CreateDynamicTagGroupRequest::setMatchExpress(const std::vector