214 lines
6.6 KiB
C++
214 lines
6.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/ec2/model/TransitGateway.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 EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
TransitGateway::TransitGateway() :
|
|
m_transitGatewayIdHasBeenSet(false),
|
|
m_transitGatewayArnHasBeenSet(false),
|
|
m_state(TransitGatewayState::NOT_SET),
|
|
m_stateHasBeenSet(false),
|
|
m_ownerIdHasBeenSet(false),
|
|
m_descriptionHasBeenSet(false),
|
|
m_creationTimeHasBeenSet(false),
|
|
m_optionsHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
TransitGateway::TransitGateway(const XmlNode& xmlNode) :
|
|
m_transitGatewayIdHasBeenSet(false),
|
|
m_transitGatewayArnHasBeenSet(false),
|
|
m_state(TransitGatewayState::NOT_SET),
|
|
m_stateHasBeenSet(false),
|
|
m_ownerIdHasBeenSet(false),
|
|
m_descriptionHasBeenSet(false),
|
|
m_creationTimeHasBeenSet(false),
|
|
m_optionsHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
TransitGateway& TransitGateway::operator =(const XmlNode& xmlNode)
|
|
{
|
|
XmlNode resultNode = xmlNode;
|
|
|
|
if(!resultNode.IsNull())
|
|
{
|
|
XmlNode transitGatewayIdNode = resultNode.FirstChild("transitGatewayId");
|
|
if(!transitGatewayIdNode.IsNull())
|
|
{
|
|
m_transitGatewayId = Aws::Utils::Xml::DecodeEscapedXmlText(transitGatewayIdNode.GetText());
|
|
m_transitGatewayIdHasBeenSet = true;
|
|
}
|
|
XmlNode transitGatewayArnNode = resultNode.FirstChild("transitGatewayArn");
|
|
if(!transitGatewayArnNode.IsNull())
|
|
{
|
|
m_transitGatewayArn = Aws::Utils::Xml::DecodeEscapedXmlText(transitGatewayArnNode.GetText());
|
|
m_transitGatewayArnHasBeenSet = true;
|
|
}
|
|
XmlNode stateNode = resultNode.FirstChild("state");
|
|
if(!stateNode.IsNull())
|
|
{
|
|
m_state = TransitGatewayStateMapper::GetTransitGatewayStateForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(stateNode.GetText()).c_str()).c_str());
|
|
m_stateHasBeenSet = true;
|
|
}
|
|
XmlNode ownerIdNode = resultNode.FirstChild("ownerId");
|
|
if(!ownerIdNode.IsNull())
|
|
{
|
|
m_ownerId = Aws::Utils::Xml::DecodeEscapedXmlText(ownerIdNode.GetText());
|
|
m_ownerIdHasBeenSet = true;
|
|
}
|
|
XmlNode descriptionNode = resultNode.FirstChild("description");
|
|
if(!descriptionNode.IsNull())
|
|
{
|
|
m_description = Aws::Utils::Xml::DecodeEscapedXmlText(descriptionNode.GetText());
|
|
m_descriptionHasBeenSet = true;
|
|
}
|
|
XmlNode creationTimeNode = resultNode.FirstChild("creationTime");
|
|
if(!creationTimeNode.IsNull())
|
|
{
|
|
m_creationTime = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(creationTimeNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
|
|
m_creationTimeHasBeenSet = true;
|
|
}
|
|
XmlNode optionsNode = resultNode.FirstChild("options");
|
|
if(!optionsNode.IsNull())
|
|
{
|
|
m_options = optionsNode;
|
|
m_optionsHasBeenSet = true;
|
|
}
|
|
XmlNode tagsNode = resultNode.FirstChild("tagSet");
|
|
if(!tagsNode.IsNull())
|
|
{
|
|
XmlNode tagsMember = tagsNode.FirstChild("item");
|
|
while(!tagsMember.IsNull())
|
|
{
|
|
m_tags.push_back(tagsMember);
|
|
tagsMember = tagsMember.NextNode("item");
|
|
}
|
|
|
|
m_tagsHasBeenSet = true;
|
|
}
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
void TransitGateway::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|
{
|
|
if(m_transitGatewayIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".TransitGatewayId=" << StringUtils::URLEncode(m_transitGatewayId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_transitGatewayArnHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".TransitGatewayArn=" << StringUtils::URLEncode(m_transitGatewayArn.c_str()) << "&";
|
|
}
|
|
|
|
if(m_stateHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".State=" << TransitGatewayStateMapper::GetNameForTransitGatewayState(m_state) << "&";
|
|
}
|
|
|
|
if(m_ownerIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".OwnerId=" << StringUtils::URLEncode(m_ownerId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_descriptionHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&";
|
|
}
|
|
|
|
if(m_creationTimeHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".CreationTime=" << StringUtils::URLEncode(m_creationTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|
}
|
|
|
|
if(m_optionsHasBeenSet)
|
|
{
|
|
Aws::StringStream optionsLocationAndMemberSs;
|
|
optionsLocationAndMemberSs << location << index << locationValue << ".Options";
|
|
m_options.OutputToStream(oStream, optionsLocationAndMemberSs.str().c_str());
|
|
}
|
|
|
|
if(m_tagsHasBeenSet)
|
|
{
|
|
unsigned tagsIdx = 1;
|
|
for(auto& item : m_tags)
|
|
{
|
|
Aws::StringStream tagsSs;
|
|
tagsSs << location << index << locationValue << ".TagSet." << tagsIdx++;
|
|
item.OutputToStream(oStream, tagsSs.str().c_str());
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
void TransitGateway::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|
{
|
|
if(m_transitGatewayIdHasBeenSet)
|
|
{
|
|
oStream << location << ".TransitGatewayId=" << StringUtils::URLEncode(m_transitGatewayId.c_str()) << "&";
|
|
}
|
|
if(m_transitGatewayArnHasBeenSet)
|
|
{
|
|
oStream << location << ".TransitGatewayArn=" << StringUtils::URLEncode(m_transitGatewayArn.c_str()) << "&";
|
|
}
|
|
if(m_stateHasBeenSet)
|
|
{
|
|
oStream << location << ".State=" << TransitGatewayStateMapper::GetNameForTransitGatewayState(m_state) << "&";
|
|
}
|
|
if(m_ownerIdHasBeenSet)
|
|
{
|
|
oStream << location << ".OwnerId=" << StringUtils::URLEncode(m_ownerId.c_str()) << "&";
|
|
}
|
|
if(m_descriptionHasBeenSet)
|
|
{
|
|
oStream << location << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&";
|
|
}
|
|
if(m_creationTimeHasBeenSet)
|
|
{
|
|
oStream << location << ".CreationTime=" << StringUtils::URLEncode(m_creationTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|
}
|
|
if(m_optionsHasBeenSet)
|
|
{
|
|
Aws::String optionsLocationAndMember(location);
|
|
optionsLocationAndMember += ".Options";
|
|
m_options.OutputToStream(oStream, optionsLocationAndMember.c_str());
|
|
}
|
|
if(m_tagsHasBeenSet)
|
|
{
|
|
unsigned tagsIdx = 1;
|
|
for(auto& item : m_tags)
|
|
{
|
|
Aws::StringStream tagsSs;
|
|
tagsSs << location << ".TagSet." << tagsIdx++;
|
|
item.OutputToStream(oStream, tagsSs.str().c_str());
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|