/** * 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 { VgwTelemetry::VgwTelemetry() : m_acceptedRouteCount(0), m_acceptedRouteCountHasBeenSet(false), m_lastStatusChangeHasBeenSet(false), m_outsideIpAddressHasBeenSet(false), m_status(TelemetryStatus::NOT_SET), m_statusHasBeenSet(false), m_statusMessageHasBeenSet(false), m_certificateArnHasBeenSet(false) { } VgwTelemetry::VgwTelemetry(const XmlNode& xmlNode) : m_acceptedRouteCount(0), m_acceptedRouteCountHasBeenSet(false), m_lastStatusChangeHasBeenSet(false), m_outsideIpAddressHasBeenSet(false), m_status(TelemetryStatus::NOT_SET), m_statusHasBeenSet(false), m_statusMessageHasBeenSet(false), m_certificateArnHasBeenSet(false) { *this = xmlNode; } VgwTelemetry& VgwTelemetry::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode acceptedRouteCountNode = resultNode.FirstChild("acceptedRouteCount"); if(!acceptedRouteCountNode.IsNull()) { m_acceptedRouteCount = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(acceptedRouteCountNode.GetText()).c_str()).c_str()); m_acceptedRouteCountHasBeenSet = true; } XmlNode lastStatusChangeNode = resultNode.FirstChild("lastStatusChange"); if(!lastStatusChangeNode.IsNull()) { m_lastStatusChange = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(lastStatusChangeNode.GetText()).c_str()).c_str(), Aws::Utils::DateFormat::ISO_8601); m_lastStatusChangeHasBeenSet = true; } XmlNode outsideIpAddressNode = resultNode.FirstChild("outsideIpAddress"); if(!outsideIpAddressNode.IsNull()) { m_outsideIpAddress = Aws::Utils::Xml::DecodeEscapedXmlText(outsideIpAddressNode.GetText()); m_outsideIpAddressHasBeenSet = true; } XmlNode statusNode = resultNode.FirstChild("status"); if(!statusNode.IsNull()) { m_status = TelemetryStatusMapper::GetTelemetryStatusForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(statusNode.GetText()).c_str()).c_str()); m_statusHasBeenSet = true; } XmlNode statusMessageNode = resultNode.FirstChild("statusMessage"); if(!statusMessageNode.IsNull()) { m_statusMessage = Aws::Utils::Xml::DecodeEscapedXmlText(statusMessageNode.GetText()); m_statusMessageHasBeenSet = true; } XmlNode certificateArnNode = resultNode.FirstChild("certificateArn"); if(!certificateArnNode.IsNull()) { m_certificateArn = Aws::Utils::Xml::DecodeEscapedXmlText(certificateArnNode.GetText()); m_certificateArnHasBeenSet = true; } } return *this; } void VgwTelemetry::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_acceptedRouteCountHasBeenSet) { oStream << location << index << locationValue << ".AcceptedRouteCount=" << m_acceptedRouteCount << "&"; } if(m_lastStatusChangeHasBeenSet) { oStream << location << index << locationValue << ".LastStatusChange=" << StringUtils::URLEncode(m_lastStatusChange.ToGmtString(Aws::Utils::DateFormat::ISO_8601).c_str()) << "&"; } if(m_outsideIpAddressHasBeenSet) { oStream << location << index << locationValue << ".OutsideIpAddress=" << StringUtils::URLEncode(m_outsideIpAddress.c_str()) << "&"; } if(m_statusHasBeenSet) { oStream << location << index << locationValue << ".Status=" << TelemetryStatusMapper::GetNameForTelemetryStatus(m_status) << "&"; } if(m_statusMessageHasBeenSet) { oStream << location << index << locationValue << ".StatusMessage=" << StringUtils::URLEncode(m_statusMessage.c_str()) << "&"; } if(m_certificateArnHasBeenSet) { oStream << location << index << locationValue << ".CertificateArn=" << StringUtils::URLEncode(m_certificateArn.c_str()) << "&"; } } void VgwTelemetry::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_acceptedRouteCountHasBeenSet) { oStream << location << ".AcceptedRouteCount=" << m_acceptedRouteCount << "&"; } if(m_lastStatusChangeHasBeenSet) { oStream << location << ".LastStatusChange=" << StringUtils::URLEncode(m_lastStatusChange.ToGmtString(Aws::Utils::DateFormat::ISO_8601).c_str()) << "&"; } if(m_outsideIpAddressHasBeenSet) { oStream << location << ".OutsideIpAddress=" << StringUtils::URLEncode(m_outsideIpAddress.c_str()) << "&"; } if(m_statusHasBeenSet) { oStream << location << ".Status=" << TelemetryStatusMapper::GetNameForTelemetryStatus(m_status) << "&"; } if(m_statusMessageHasBeenSet) { oStream << location << ".StatusMessage=" << StringUtils::URLEncode(m_statusMessage.c_str()) << "&"; } if(m_certificateArnHasBeenSet) { oStream << location << ".CertificateArn=" << StringUtils::URLEncode(m_certificateArn.c_str()) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws