Group, Plugin support tag authentication.

This commit is contained in:
sdk-team
2019-08-08 11:58:23 +08:00
parent 14b6a27113
commit 1f20945851
24 changed files with 278 additions and 1 deletions

View File

@@ -86,6 +86,17 @@ void DescribeAppAttributesRequest::setTag(const std::vector<Tag>& tag)
}
}
bool DescribeAppAttributesRequest::getEnableTagAuth()const
{
return enableTagAuth_;
}
void DescribeAppAttributesRequest::setEnableTagAuth(bool enableTagAuth)
{
enableTagAuth_ = enableTagAuth;
setCoreParameter("EnableTagAuth", enableTagAuth ? "true" : "false");
}
int DescribeAppAttributesRequest::getPageNumber()const
{
return pageNumber_;