Supported DescribeImageSharePermission.

This commit is contained in:
sdk-team
2025-03-18 07:33:31 +00:00
parent ec9cd15b58
commit fb513278fe
87 changed files with 1547 additions and 99 deletions

View File

@@ -39,6 +39,13 @@ void ReleaseInstanceResult::parse(const std::string &payload)
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
if(!value["ResourceType"].isNull())
resourceType_ = value["ResourceType"].asString();
}
std::string ReleaseInstanceResult::getResourceType()const
{
return resourceType_;
}