143 lines
4.5 KiB
C++
143 lines
4.5 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/ec2/model/VpcIpv6CidrBlockAssociation.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
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
VpcIpv6CidrBlockAssociation::VpcIpv6CidrBlockAssociation() :
|
|||
|
|
m_associationIdHasBeenSet(false),
|
|||
|
|
m_ipv6CidrBlockHasBeenSet(false),
|
|||
|
|
m_ipv6CidrBlockStateHasBeenSet(false),
|
|||
|
|
m_networkBorderGroupHasBeenSet(false),
|
|||
|
|
m_ipv6PoolHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
VpcIpv6CidrBlockAssociation::VpcIpv6CidrBlockAssociation(const XmlNode& xmlNode) :
|
|||
|
|
m_associationIdHasBeenSet(false),
|
|||
|
|
m_ipv6CidrBlockHasBeenSet(false),
|
|||
|
|
m_ipv6CidrBlockStateHasBeenSet(false),
|
|||
|
|
m_networkBorderGroupHasBeenSet(false),
|
|||
|
|
m_ipv6PoolHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = xmlNode;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
VpcIpv6CidrBlockAssociation& VpcIpv6CidrBlockAssociation::operator =(const XmlNode& xmlNode)
|
|||
|
|
{
|
|||
|
|
XmlNode resultNode = xmlNode;
|
|||
|
|
|
|||
|
|
if(!resultNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode associationIdNode = resultNode.FirstChild("associationId");
|
|||
|
|
if(!associationIdNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_associationId = Aws::Utils::Xml::DecodeEscapedXmlText(associationIdNode.GetText());
|
|||
|
|
m_associationIdHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode ipv6CidrBlockNode = resultNode.FirstChild("ipv6CidrBlock");
|
|||
|
|
if(!ipv6CidrBlockNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_ipv6CidrBlock = Aws::Utils::Xml::DecodeEscapedXmlText(ipv6CidrBlockNode.GetText());
|
|||
|
|
m_ipv6CidrBlockHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode ipv6CidrBlockStateNode = resultNode.FirstChild("ipv6CidrBlockState");
|
|||
|
|
if(!ipv6CidrBlockStateNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_ipv6CidrBlockState = ipv6CidrBlockStateNode;
|
|||
|
|
m_ipv6CidrBlockStateHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode networkBorderGroupNode = resultNode.FirstChild("networkBorderGroup");
|
|||
|
|
if(!networkBorderGroupNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_networkBorderGroup = Aws::Utils::Xml::DecodeEscapedXmlText(networkBorderGroupNode.GetText());
|
|||
|
|
m_networkBorderGroupHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode ipv6PoolNode = resultNode.FirstChild("ipv6Pool");
|
|||
|
|
if(!ipv6PoolNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_ipv6Pool = Aws::Utils::Xml::DecodeEscapedXmlText(ipv6PoolNode.GetText());
|
|||
|
|
m_ipv6PoolHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void VpcIpv6CidrBlockAssociation::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|||
|
|
{
|
|||
|
|
if(m_associationIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".AssociationId=" << StringUtils::URLEncode(m_associationId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_ipv6CidrBlockHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".Ipv6CidrBlock=" << StringUtils::URLEncode(m_ipv6CidrBlock.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_ipv6CidrBlockStateHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream ipv6CidrBlockStateLocationAndMemberSs;
|
|||
|
|
ipv6CidrBlockStateLocationAndMemberSs << location << index << locationValue << ".Ipv6CidrBlockState";
|
|||
|
|
m_ipv6CidrBlockState.OutputToStream(oStream, ipv6CidrBlockStateLocationAndMemberSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_networkBorderGroupHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".NetworkBorderGroup=" << StringUtils::URLEncode(m_networkBorderGroup.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_ipv6PoolHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".Ipv6Pool=" << StringUtils::URLEncode(m_ipv6Pool.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void VpcIpv6CidrBlockAssociation::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|||
|
|
{
|
|||
|
|
if(m_associationIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".AssociationId=" << StringUtils::URLEncode(m_associationId.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_ipv6CidrBlockHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".Ipv6CidrBlock=" << StringUtils::URLEncode(m_ipv6CidrBlock.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_ipv6CidrBlockStateHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Aws::String ipv6CidrBlockStateLocationAndMember(location);
|
|||
|
|
ipv6CidrBlockStateLocationAndMember += ".Ipv6CidrBlockState";
|
|||
|
|
m_ipv6CidrBlockState.OutputToStream(oStream, ipv6CidrBlockStateLocationAndMember.c_str());
|
|||
|
|
}
|
|||
|
|
if(m_networkBorderGroupHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".NetworkBorderGroup=" << StringUtils::URLEncode(m_networkBorderGroup.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_ipv6PoolHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".Ipv6Pool=" << StringUtils::URLEncode(m_ipv6Pool.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace EC2
|
|||
|
|
} // namespace Aws
|