124 lines
3.3 KiB
C++
124 lines
3.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/neptune/model/DBInstanceStatusInfo.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 Neptune
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
DBInstanceStatusInfo::DBInstanceStatusInfo() :
|
|
m_statusTypeHasBeenSet(false),
|
|
m_normal(false),
|
|
m_normalHasBeenSet(false),
|
|
m_statusHasBeenSet(false),
|
|
m_messageHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
DBInstanceStatusInfo::DBInstanceStatusInfo(const XmlNode& xmlNode) :
|
|
m_statusTypeHasBeenSet(false),
|
|
m_normal(false),
|
|
m_normalHasBeenSet(false),
|
|
m_statusHasBeenSet(false),
|
|
m_messageHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
DBInstanceStatusInfo& DBInstanceStatusInfo::operator =(const XmlNode& xmlNode)
|
|
{
|
|
XmlNode resultNode = xmlNode;
|
|
|
|
if(!resultNode.IsNull())
|
|
{
|
|
XmlNode statusTypeNode = resultNode.FirstChild("StatusType");
|
|
if(!statusTypeNode.IsNull())
|
|
{
|
|
m_statusType = Aws::Utils::Xml::DecodeEscapedXmlText(statusTypeNode.GetText());
|
|
m_statusTypeHasBeenSet = true;
|
|
}
|
|
XmlNode normalNode = resultNode.FirstChild("Normal");
|
|
if(!normalNode.IsNull())
|
|
{
|
|
m_normal = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(normalNode.GetText()).c_str()).c_str());
|
|
m_normalHasBeenSet = true;
|
|
}
|
|
XmlNode statusNode = resultNode.FirstChild("Status");
|
|
if(!statusNode.IsNull())
|
|
{
|
|
m_status = Aws::Utils::Xml::DecodeEscapedXmlText(statusNode.GetText());
|
|
m_statusHasBeenSet = true;
|
|
}
|
|
XmlNode messageNode = resultNode.FirstChild("Message");
|
|
if(!messageNode.IsNull())
|
|
{
|
|
m_message = Aws::Utils::Xml::DecodeEscapedXmlText(messageNode.GetText());
|
|
m_messageHasBeenSet = true;
|
|
}
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
void DBInstanceStatusInfo::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|
{
|
|
if(m_statusTypeHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".StatusType=" << StringUtils::URLEncode(m_statusType.c_str()) << "&";
|
|
}
|
|
|
|
if(m_normalHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".Normal=" << std::boolalpha << m_normal << "&";
|
|
}
|
|
|
|
if(m_statusHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".Status=" << StringUtils::URLEncode(m_status.c_str()) << "&";
|
|
}
|
|
|
|
if(m_messageHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".Message=" << StringUtils::URLEncode(m_message.c_str()) << "&";
|
|
}
|
|
|
|
}
|
|
|
|
void DBInstanceStatusInfo::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|
{
|
|
if(m_statusTypeHasBeenSet)
|
|
{
|
|
oStream << location << ".StatusType=" << StringUtils::URLEncode(m_statusType.c_str()) << "&";
|
|
}
|
|
if(m_normalHasBeenSet)
|
|
{
|
|
oStream << location << ".Normal=" << std::boolalpha << m_normal << "&";
|
|
}
|
|
if(m_statusHasBeenSet)
|
|
{
|
|
oStream << location << ".Status=" << StringUtils::URLEncode(m_status.c_str()) << "&";
|
|
}
|
|
if(m_messageHasBeenSet)
|
|
{
|
|
oStream << location << ".Message=" << StringUtils::URLEncode(m_message.c_str()) << "&";
|
|
}
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace Neptune
|
|
} // namespace Aws
|