/** * 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 { PtrUpdateStatus::PtrUpdateStatus() : m_valueHasBeenSet(false), m_statusHasBeenSet(false), m_reasonHasBeenSet(false) { } PtrUpdateStatus::PtrUpdateStatus(const XmlNode& xmlNode) : m_valueHasBeenSet(false), m_statusHasBeenSet(false), m_reasonHasBeenSet(false) { *this = xmlNode; } PtrUpdateStatus& PtrUpdateStatus::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode valueNode = resultNode.FirstChild("value"); if(!valueNode.IsNull()) { m_value = Aws::Utils::Xml::DecodeEscapedXmlText(valueNode.GetText()); m_valueHasBeenSet = true; } XmlNode statusNode = resultNode.FirstChild("status"); if(!statusNode.IsNull()) { m_status = Aws::Utils::Xml::DecodeEscapedXmlText(statusNode.GetText()); m_statusHasBeenSet = true; } XmlNode reasonNode = resultNode.FirstChild("reason"); if(!reasonNode.IsNull()) { m_reason = Aws::Utils::Xml::DecodeEscapedXmlText(reasonNode.GetText()); m_reasonHasBeenSet = true; } } return *this; } void PtrUpdateStatus::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_valueHasBeenSet) { oStream << location << index << locationValue << ".Value=" << StringUtils::URLEncode(m_value.c_str()) << "&"; } if(m_statusHasBeenSet) { oStream << location << index << locationValue << ".Status=" << StringUtils::URLEncode(m_status.c_str()) << "&"; } if(m_reasonHasBeenSet) { oStream << location << index << locationValue << ".Reason=" << StringUtils::URLEncode(m_reason.c_str()) << "&"; } } void PtrUpdateStatus::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_valueHasBeenSet) { oStream << location << ".Value=" << StringUtils::URLEncode(m_value.c_str()) << "&"; } if(m_statusHasBeenSet) { oStream << location << ".Status=" << StringUtils::URLEncode(m_status.c_str()) << "&"; } if(m_reasonHasBeenSet) { oStream << location << ".Reason=" << StringUtils::URLEncode(m_reason.c_str()) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws