212 lines
6.3 KiB
C++
212 lines
6.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/iam/model/User.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
|
|
{
|
|
|
|
User::User() :
|
|
m_pathHasBeenSet(false),
|
|
m_userNameHasBeenSet(false),
|
|
m_userIdHasBeenSet(false),
|
|
m_arnHasBeenSet(false),
|
|
m_createDateHasBeenSet(false),
|
|
m_passwordLastUsedHasBeenSet(false),
|
|
m_permissionsBoundaryHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
User::User(const XmlNode& xmlNode) :
|
|
m_pathHasBeenSet(false),
|
|
m_userNameHasBeenSet(false),
|
|
m_userIdHasBeenSet(false),
|
|
m_arnHasBeenSet(false),
|
|
m_createDateHasBeenSet(false),
|
|
m_passwordLastUsedHasBeenSet(false),
|
|
m_permissionsBoundaryHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
User& User::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 passwordLastUsedNode = resultNode.FirstChild("PasswordLastUsed");
|
|
if(!passwordLastUsedNode.IsNull())
|
|
{
|
|
m_passwordLastUsed = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(passwordLastUsedNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
|
|
m_passwordLastUsedHasBeenSet = 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 User::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_passwordLastUsedHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".PasswordLastUsed=" << StringUtils::URLEncode(m_passwordLastUsed.ToGmtString(DateFormat::ISO_8601).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 User::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_passwordLastUsedHasBeenSet)
|
|
{
|
|
oStream << location << ".PasswordLastUsed=" << StringUtils::URLEncode(m_passwordLastUsed.ToGmtString(DateFormat::ISO_8601).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
|