88 lines
2.3 KiB
C++
88 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/ec2/model/InstanceCreditSpecification.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
|
|
{
|
|
|
|
InstanceCreditSpecification::InstanceCreditSpecification() :
|
|
m_instanceIdHasBeenSet(false),
|
|
m_cpuCreditsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
InstanceCreditSpecification::InstanceCreditSpecification(const XmlNode& xmlNode) :
|
|
m_instanceIdHasBeenSet(false),
|
|
m_cpuCreditsHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
InstanceCreditSpecification& InstanceCreditSpecification::operator =(const XmlNode& xmlNode)
|
|
{
|
|
XmlNode resultNode = xmlNode;
|
|
|
|
if(!resultNode.IsNull())
|
|
{
|
|
XmlNode instanceIdNode = resultNode.FirstChild("instanceId");
|
|
if(!instanceIdNode.IsNull())
|
|
{
|
|
m_instanceId = Aws::Utils::Xml::DecodeEscapedXmlText(instanceIdNode.GetText());
|
|
m_instanceIdHasBeenSet = true;
|
|
}
|
|
XmlNode cpuCreditsNode = resultNode.FirstChild("cpuCredits");
|
|
if(!cpuCreditsNode.IsNull())
|
|
{
|
|
m_cpuCredits = Aws::Utils::Xml::DecodeEscapedXmlText(cpuCreditsNode.GetText());
|
|
m_cpuCreditsHasBeenSet = true;
|
|
}
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
void InstanceCreditSpecification::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|
{
|
|
if(m_instanceIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".InstanceId=" << StringUtils::URLEncode(m_instanceId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_cpuCreditsHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".CpuCredits=" << StringUtils::URLEncode(m_cpuCredits.c_str()) << "&";
|
|
}
|
|
|
|
}
|
|
|
|
void InstanceCreditSpecification::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|
{
|
|
if(m_instanceIdHasBeenSet)
|
|
{
|
|
oStream << location << ".InstanceId=" << StringUtils::URLEncode(m_instanceId.c_str()) << "&";
|
|
}
|
|
if(m_cpuCreditsHasBeenSet)
|
|
{
|
|
oStream << location << ".CpuCredits=" << StringUtils::URLEncode(m_cpuCredits.c_str()) << "&";
|
|
}
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|