This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ec2/source/model/HostOffering.cpp

179 lines
5.7 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/ec2/model/HostOffering.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
{
HostOffering::HostOffering() :
m_currencyCode(CurrencyCodeValues::NOT_SET),
m_currencyCodeHasBeenSet(false),
m_duration(0),
m_durationHasBeenSet(false),
m_hourlyPriceHasBeenSet(false),
m_instanceFamilyHasBeenSet(false),
m_offeringIdHasBeenSet(false),
m_paymentOption(PaymentOption::NOT_SET),
m_paymentOptionHasBeenSet(false),
m_upfrontPriceHasBeenSet(false)
{
}
HostOffering::HostOffering(const XmlNode& xmlNode) :
m_currencyCode(CurrencyCodeValues::NOT_SET),
m_currencyCodeHasBeenSet(false),
m_duration(0),
m_durationHasBeenSet(false),
m_hourlyPriceHasBeenSet(false),
m_instanceFamilyHasBeenSet(false),
m_offeringIdHasBeenSet(false),
m_paymentOption(PaymentOption::NOT_SET),
m_paymentOptionHasBeenSet(false),
m_upfrontPriceHasBeenSet(false)
{
*this = xmlNode;
}
HostOffering& HostOffering::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode currencyCodeNode = resultNode.FirstChild("currencyCode");
if(!currencyCodeNode.IsNull())
{
m_currencyCode = CurrencyCodeValuesMapper::GetCurrencyCodeValuesForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(currencyCodeNode.GetText()).c_str()).c_str());
m_currencyCodeHasBeenSet = true;
}
XmlNode durationNode = resultNode.FirstChild("duration");
if(!durationNode.IsNull())
{
m_duration = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(durationNode.GetText()).c_str()).c_str());
m_durationHasBeenSet = true;
}
XmlNode hourlyPriceNode = resultNode.FirstChild("hourlyPrice");
if(!hourlyPriceNode.IsNull())
{
m_hourlyPrice = Aws::Utils::Xml::DecodeEscapedXmlText(hourlyPriceNode.GetText());
m_hourlyPriceHasBeenSet = true;
}
XmlNode instanceFamilyNode = resultNode.FirstChild("instanceFamily");
if(!instanceFamilyNode.IsNull())
{
m_instanceFamily = Aws::Utils::Xml::DecodeEscapedXmlText(instanceFamilyNode.GetText());
m_instanceFamilyHasBeenSet = true;
}
XmlNode offeringIdNode = resultNode.FirstChild("offeringId");
if(!offeringIdNode.IsNull())
{
m_offeringId = Aws::Utils::Xml::DecodeEscapedXmlText(offeringIdNode.GetText());
m_offeringIdHasBeenSet = true;
}
XmlNode paymentOptionNode = resultNode.FirstChild("paymentOption");
if(!paymentOptionNode.IsNull())
{
m_paymentOption = PaymentOptionMapper::GetPaymentOptionForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(paymentOptionNode.GetText()).c_str()).c_str());
m_paymentOptionHasBeenSet = true;
}
XmlNode upfrontPriceNode = resultNode.FirstChild("upfrontPrice");
if(!upfrontPriceNode.IsNull())
{
m_upfrontPrice = Aws::Utils::Xml::DecodeEscapedXmlText(upfrontPriceNode.GetText());
m_upfrontPriceHasBeenSet = true;
}
}
return *this;
}
void HostOffering::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_currencyCodeHasBeenSet)
{
oStream << location << index << locationValue << ".CurrencyCode=" << CurrencyCodeValuesMapper::GetNameForCurrencyCodeValues(m_currencyCode) << "&";
}
if(m_durationHasBeenSet)
{
oStream << location << index << locationValue << ".Duration=" << m_duration << "&";
}
if(m_hourlyPriceHasBeenSet)
{
oStream << location << index << locationValue << ".HourlyPrice=" << StringUtils::URLEncode(m_hourlyPrice.c_str()) << "&";
}
if(m_instanceFamilyHasBeenSet)
{
oStream << location << index << locationValue << ".InstanceFamily=" << StringUtils::URLEncode(m_instanceFamily.c_str()) << "&";
}
if(m_offeringIdHasBeenSet)
{
oStream << location << index << locationValue << ".OfferingId=" << StringUtils::URLEncode(m_offeringId.c_str()) << "&";
}
if(m_paymentOptionHasBeenSet)
{
oStream << location << index << locationValue << ".PaymentOption=" << PaymentOptionMapper::GetNameForPaymentOption(m_paymentOption) << "&";
}
if(m_upfrontPriceHasBeenSet)
{
oStream << location << index << locationValue << ".UpfrontPrice=" << StringUtils::URLEncode(m_upfrontPrice.c_str()) << "&";
}
}
void HostOffering::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_currencyCodeHasBeenSet)
{
oStream << location << ".CurrencyCode=" << CurrencyCodeValuesMapper::GetNameForCurrencyCodeValues(m_currencyCode) << "&";
}
if(m_durationHasBeenSet)
{
oStream << location << ".Duration=" << m_duration << "&";
}
if(m_hourlyPriceHasBeenSet)
{
oStream << location << ".HourlyPrice=" << StringUtils::URLEncode(m_hourlyPrice.c_str()) << "&";
}
if(m_instanceFamilyHasBeenSet)
{
oStream << location << ".InstanceFamily=" << StringUtils::URLEncode(m_instanceFamily.c_str()) << "&";
}
if(m_offeringIdHasBeenSet)
{
oStream << location << ".OfferingId=" << StringUtils::URLEncode(m_offeringId.c_str()) << "&";
}
if(m_paymentOptionHasBeenSet)
{
oStream << location << ".PaymentOption=" << PaymentOptionMapper::GetNameForPaymentOption(m_paymentOption) << "&";
}
if(m_upfrontPriceHasBeenSet)
{
oStream << location << ".UpfrontPrice=" << StringUtils::URLEncode(m_upfrontPrice.c_str()) << "&";
}
}
} // namespace Model
} // namespace EC2
} // namespace Aws