/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::Utils::Xml; using namespace Aws::Utils; namespace Aws { namespace EC2 { namespace Model { PublicIpv4PoolRange::PublicIpv4PoolRange() : m_firstAddressHasBeenSet(false), m_lastAddressHasBeenSet(false), m_addressCount(0), m_addressCountHasBeenSet(false), m_availableAddressCount(0), m_availableAddressCountHasBeenSet(false) { } PublicIpv4PoolRange::PublicIpv4PoolRange(const XmlNode& xmlNode) : m_firstAddressHasBeenSet(false), m_lastAddressHasBeenSet(false), m_addressCount(0), m_addressCountHasBeenSet(false), m_availableAddressCount(0), m_availableAddressCountHasBeenSet(false) { *this = xmlNode; } PublicIpv4PoolRange& PublicIpv4PoolRange::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode firstAddressNode = resultNode.FirstChild("firstAddress"); if(!firstAddressNode.IsNull()) { m_firstAddress = Aws::Utils::Xml::DecodeEscapedXmlText(firstAddressNode.GetText()); m_firstAddressHasBeenSet = true; } XmlNode lastAddressNode = resultNode.FirstChild("lastAddress"); if(!lastAddressNode.IsNull()) { m_lastAddress = Aws::Utils::Xml::DecodeEscapedXmlText(lastAddressNode.GetText()); m_lastAddressHasBeenSet = true; } XmlNode addressCountNode = resultNode.FirstChild("addressCount"); if(!addressCountNode.IsNull()) { m_addressCount = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(addressCountNode.GetText()).c_str()).c_str()); m_addressCountHasBeenSet = true; } XmlNode availableAddressCountNode = resultNode.FirstChild("availableAddressCount"); if(!availableAddressCountNode.IsNull()) { m_availableAddressCount = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(availableAddressCountNode.GetText()).c_str()).c_str()); m_availableAddressCountHasBeenSet = true; } } return *this; } void PublicIpv4PoolRange::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_firstAddressHasBeenSet) { oStream << location << index << locationValue << ".FirstAddress=" << StringUtils::URLEncode(m_firstAddress.c_str()) << "&"; } if(m_lastAddressHasBeenSet) { oStream << location << index << locationValue << ".LastAddress=" << StringUtils::URLEncode(m_lastAddress.c_str()) << "&"; } if(m_addressCountHasBeenSet) { oStream << location << index << locationValue << ".AddressCount=" << m_addressCount << "&"; } if(m_availableAddressCountHasBeenSet) { oStream << location << index << locationValue << ".AvailableAddressCount=" << m_availableAddressCount << "&"; } } void PublicIpv4PoolRange::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_firstAddressHasBeenSet) { oStream << location << ".FirstAddress=" << StringUtils::URLEncode(m_firstAddress.c_str()) << "&"; } if(m_lastAddressHasBeenSet) { oStream << location << ".LastAddress=" << StringUtils::URLEncode(m_lastAddress.c_str()) << "&"; } if(m_addressCountHasBeenSet) { oStream << location << ".AddressCount=" << m_addressCount << "&"; } if(m_availableAddressCountHasBeenSet) { oStream << location << ".AvailableAddressCount=" << m_availableAddressCount << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws