Update by sdk platform.

This commit is contained in:
sdk-team
2022-04-07 12:50:29 +00:00
parent 2fa9cc7eb1
commit 0bab75ea88
4 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
2022-04-07 Version: 1.36.1100
- Update by sdk platform.
2022-04-06 Version: 1.36.1099
- Release FeedbackSession.

View File

@@ -1 +1 @@
1.36.1099
1.36.1100

View File

@@ -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;

View File

@@ -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)
{