diff --git a/CHANGELOG b/CHANGELOG index e018d2b96..7b569ac78 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2022-04-07 Version: 1.36.1100 +- Update by sdk platform. + 2022-04-06 Version: 1.36.1099 - Release FeedbackSession. diff --git a/VERSION b/VERSION index 68d57b21e..c843ebed5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1099 \ No newline at end of file +1.36.1100 \ No newline at end of file diff --git a/r-kvstore/include/alibabacloud/r-kvstore/model/DescribeInstancesResult.h b/r-kvstore/include/alibabacloud/r-kvstore/model/DescribeInstancesResult.h index 7234f8d5a..6d5dbb302 100644 --- a/r-kvstore/include/alibabacloud/r-kvstore/model/DescribeInstancesResult.h +++ b/r-kvstore/include/alibabacloud/r-kvstore/model/DescribeInstancesResult.h @@ -42,6 +42,7 @@ namespace AlibabaCloud long connections; std::string endTime; std::string resourceGroupId; + std::string editionType; std::string config; long port; std::string destroyTime; diff --git a/r-kvstore/src/model/DescribeInstancesResult.cc b/r-kvstore/src/model/DescribeInstancesResult.cc index 7a5835b78..26e71eb65 100644 --- a/r-kvstore/src/model/DescribeInstancesResult.cc +++ b/r-kvstore/src/model/DescribeInstancesResult.cc @@ -121,6 +121,8 @@ void DescribeInstancesResult::parse(const std::string &payload) instancesObject.proxyCount = std::stoi(valueInstancesKVStoreInstance["ProxyCount"].asString()); if(!valueInstancesKVStoreInstance["CloudType"].isNull()) instancesObject.cloudType = valueInstancesKVStoreInstance["CloudType"].asString(); + if(!valueInstancesKVStoreInstance["EditionType"].isNull()) + instancesObject.editionType = valueInstancesKVStoreInstance["EditionType"].asString(); auto allTagsNode = valueInstancesKVStoreInstance["Tags"]["Tag"]; for (auto valueInstancesKVStoreInstanceTagsTag : allTagsNode) {