Ver Fonte

Update by sdk platform.

sdk-team há 4 anos atrás
pai
commit
0bab75ea88

+ 3 - 0
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.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1099
+1.36.1100

+ 1 - 0
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;

+ 2 - 0
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)
 		{