DescribeInstanceTypes Supports EniIpv6AddressQuantity.

This commit is contained in:
sdk-team
2020-03-24 10:37:01 +08:00
parent 9e1e045351
commit b0e4c8f705
27 changed files with 570 additions and 1 deletions

View File

@@ -82,6 +82,22 @@ void DescribeAutoSnapshotPolicyExRequest::setPageSize(int pageSize)
setParameter("PageSize", std::to_string(pageSize));
}
std::vector<DescribeAutoSnapshotPolicyExRequest::Tag> DescribeAutoSnapshotPolicyExRequest::getTag()const
{
return tag_;
}
void DescribeAutoSnapshotPolicyExRequest::setTag(const std::vector<Tag>& tag)
{
tag_ = tag;
for(int dep1 = 0; dep1!= tag.size(); dep1++) {
auto tagObj = tag.at(dep1);
std::string tagObjStr = "Tag." + std::to_string(dep1 + 1);
setParameter(tagObjStr + ".Value", tagObj.value);
setParameter(tagObjStr + ".Key", tagObj.key);
}
}
std::string DescribeAutoSnapshotPolicyExRequest::getResourceOwnerAccount()const
{
return resourceOwnerAccount_;