296 lines
9.2 KiB
C++
296 lines
9.2 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/iam/model/UserDetail.h>
|
|||
|
|
#include <aws/core/utils/xml/XmlSerializer.h>
|
|||
|
|
#include <aws/core/utils/StringUtils.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Xml;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace IAM
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
UserDetail::UserDetail() :
|
|||
|
|
m_pathHasBeenSet(false),
|
|||
|
|
m_userNameHasBeenSet(false),
|
|||
|
|
m_userIdHasBeenSet(false),
|
|||
|
|
m_arnHasBeenSet(false),
|
|||
|
|
m_createDateHasBeenSet(false),
|
|||
|
|
m_userPolicyListHasBeenSet(false),
|
|||
|
|
m_groupListHasBeenSet(false),
|
|||
|
|
m_attachedManagedPoliciesHasBeenSet(false),
|
|||
|
|
m_permissionsBoundaryHasBeenSet(false),
|
|||
|
|
m_tagsHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
UserDetail::UserDetail(const XmlNode& xmlNode) :
|
|||
|
|
m_pathHasBeenSet(false),
|
|||
|
|
m_userNameHasBeenSet(false),
|
|||
|
|
m_userIdHasBeenSet(false),
|
|||
|
|
m_arnHasBeenSet(false),
|
|||
|
|
m_createDateHasBeenSet(false),
|
|||
|
|
m_userPolicyListHasBeenSet(false),
|
|||
|
|
m_groupListHasBeenSet(false),
|
|||
|
|
m_attachedManagedPoliciesHasBeenSet(false),
|
|||
|
|
m_permissionsBoundaryHasBeenSet(false),
|
|||
|
|
m_tagsHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = xmlNode;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
UserDetail& UserDetail::operator =(const XmlNode& xmlNode)
|
|||
|
|
{
|
|||
|
|
XmlNode resultNode = xmlNode;
|
|||
|
|
|
|||
|
|
if(!resultNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode pathNode = resultNode.FirstChild("Path");
|
|||
|
|
if(!pathNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_path = Aws::Utils::Xml::DecodeEscapedXmlText(pathNode.GetText());
|
|||
|
|
m_pathHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode userNameNode = resultNode.FirstChild("UserName");
|
|||
|
|
if(!userNameNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_userName = Aws::Utils::Xml::DecodeEscapedXmlText(userNameNode.GetText());
|
|||
|
|
m_userNameHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode userIdNode = resultNode.FirstChild("UserId");
|
|||
|
|
if(!userIdNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_userId = Aws::Utils::Xml::DecodeEscapedXmlText(userIdNode.GetText());
|
|||
|
|
m_userIdHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode arnNode = resultNode.FirstChild("Arn");
|
|||
|
|
if(!arnNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_arn = Aws::Utils::Xml::DecodeEscapedXmlText(arnNode.GetText());
|
|||
|
|
m_arnHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode createDateNode = resultNode.FirstChild("CreateDate");
|
|||
|
|
if(!createDateNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_createDate = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(createDateNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
|
|||
|
|
m_createDateHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode userPolicyListNode = resultNode.FirstChild("UserPolicyList");
|
|||
|
|
if(!userPolicyListNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode userPolicyListMember = userPolicyListNode.FirstChild("member");
|
|||
|
|
while(!userPolicyListMember.IsNull())
|
|||
|
|
{
|
|||
|
|
m_userPolicyList.push_back(userPolicyListMember);
|
|||
|
|
userPolicyListMember = userPolicyListMember.NextNode("member");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
m_userPolicyListHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode groupListNode = resultNode.FirstChild("GroupList");
|
|||
|
|
if(!groupListNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode groupListMember = groupListNode.FirstChild("member");
|
|||
|
|
while(!groupListMember.IsNull())
|
|||
|
|
{
|
|||
|
|
m_groupList.push_back(groupListMember.GetText());
|
|||
|
|
groupListMember = groupListMember.NextNode("member");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
m_groupListHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode attachedManagedPoliciesNode = resultNode.FirstChild("AttachedManagedPolicies");
|
|||
|
|
if(!attachedManagedPoliciesNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode attachedManagedPoliciesMember = attachedManagedPoliciesNode.FirstChild("member");
|
|||
|
|
while(!attachedManagedPoliciesMember.IsNull())
|
|||
|
|
{
|
|||
|
|
m_attachedManagedPolicies.push_back(attachedManagedPoliciesMember);
|
|||
|
|
attachedManagedPoliciesMember = attachedManagedPoliciesMember.NextNode("member");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
m_attachedManagedPoliciesHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode permissionsBoundaryNode = resultNode.FirstChild("PermissionsBoundary");
|
|||
|
|
if(!permissionsBoundaryNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_permissionsBoundary = permissionsBoundaryNode;
|
|||
|
|
m_permissionsBoundaryHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode tagsNode = resultNode.FirstChild("Tags");
|
|||
|
|
if(!tagsNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode tagsMember = tagsNode.FirstChild("member");
|
|||
|
|
while(!tagsMember.IsNull())
|
|||
|
|
{
|
|||
|
|
m_tags.push_back(tagsMember);
|
|||
|
|
tagsMember = tagsMember.NextNode("member");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
m_tagsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void UserDetail::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|||
|
|
{
|
|||
|
|
if(m_pathHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".Path=" << StringUtils::URLEncode(m_path.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_userNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".UserName=" << StringUtils::URLEncode(m_userName.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_userIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".UserId=" << StringUtils::URLEncode(m_userId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_arnHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".Arn=" << StringUtils::URLEncode(m_arn.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_createDateHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".CreateDate=" << StringUtils::URLEncode(m_createDate.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_userPolicyListHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned userPolicyListIdx = 1;
|
|||
|
|
for(auto& item : m_userPolicyList)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream userPolicyListSs;
|
|||
|
|
userPolicyListSs << location << index << locationValue << ".UserPolicyList.member." << userPolicyListIdx++;
|
|||
|
|
item.OutputToStream(oStream, userPolicyListSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_groupListHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned groupListIdx = 1;
|
|||
|
|
for(auto& item : m_groupList)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".GroupList.member." << groupListIdx++ << "=" << StringUtils::URLEncode(item.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_attachedManagedPoliciesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned attachedManagedPoliciesIdx = 1;
|
|||
|
|
for(auto& item : m_attachedManagedPolicies)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream attachedManagedPoliciesSs;
|
|||
|
|
attachedManagedPoliciesSs << location << index << locationValue << ".AttachedManagedPolicies.member." << attachedManagedPoliciesIdx++;
|
|||
|
|
item.OutputToStream(oStream, attachedManagedPoliciesSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_permissionsBoundaryHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream permissionsBoundaryLocationAndMemberSs;
|
|||
|
|
permissionsBoundaryLocationAndMemberSs << location << index << locationValue << ".PermissionsBoundary";
|
|||
|
|
m_permissionsBoundary.OutputToStream(oStream, permissionsBoundaryLocationAndMemberSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_tagsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned tagsIdx = 1;
|
|||
|
|
for(auto& item : m_tags)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream tagsSs;
|
|||
|
|
tagsSs << location << index << locationValue << ".Tags.member." << tagsIdx++;
|
|||
|
|
item.OutputToStream(oStream, tagsSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void UserDetail::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|||
|
|
{
|
|||
|
|
if(m_pathHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".Path=" << StringUtils::URLEncode(m_path.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_userNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".UserName=" << StringUtils::URLEncode(m_userName.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_userIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".UserId=" << StringUtils::URLEncode(m_userId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_arnHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".Arn=" << StringUtils::URLEncode(m_arn.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_createDateHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".CreateDate=" << StringUtils::URLEncode(m_createDate.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_userPolicyListHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned userPolicyListIdx = 1;
|
|||
|
|
for(auto& item : m_userPolicyList)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream userPolicyListSs;
|
|||
|
|
userPolicyListSs << location << ".UserPolicyList.member." << userPolicyListIdx++;
|
|||
|
|
item.OutputToStream(oStream, userPolicyListSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
if(m_groupListHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned groupListIdx = 1;
|
|||
|
|
for(auto& item : m_groupList)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".GroupList.member." << groupListIdx++ << "=" << StringUtils::URLEncode(item.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
if(m_attachedManagedPoliciesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned attachedManagedPoliciesIdx = 1;
|
|||
|
|
for(auto& item : m_attachedManagedPolicies)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream attachedManagedPoliciesSs;
|
|||
|
|
attachedManagedPoliciesSs << location << ".AttachedManagedPolicies.member." << attachedManagedPoliciesIdx++;
|
|||
|
|
item.OutputToStream(oStream, attachedManagedPoliciesSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
if(m_permissionsBoundaryHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Aws::String permissionsBoundaryLocationAndMember(location);
|
|||
|
|
permissionsBoundaryLocationAndMember += ".PermissionsBoundary";
|
|||
|
|
m_permissionsBoundary.OutputToStream(oStream, permissionsBoundaryLocationAndMember.c_str());
|
|||
|
|
}
|
|||
|
|
if(m_tagsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned tagsIdx = 1;
|
|||
|
|
for(auto& item : m_tags)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream tagsSs;
|
|||
|
|
tagsSs << location << ".Tags.member." << tagsIdx++;
|
|||
|
|
item.OutputToStream(oStream, tagsSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace IAM
|
|||
|
|
} // namespace Aws
|