354 lines
12 KiB
C++
354 lines
12 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/rds/model/ReservedDBInstance.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 RDS
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
ReservedDBInstance::ReservedDBInstance() :
|
|
m_reservedDBInstanceIdHasBeenSet(false),
|
|
m_reservedDBInstancesOfferingIdHasBeenSet(false),
|
|
m_dBInstanceClassHasBeenSet(false),
|
|
m_startTimeHasBeenSet(false),
|
|
m_duration(0),
|
|
m_durationHasBeenSet(false),
|
|
m_fixedPrice(0.0),
|
|
m_fixedPriceHasBeenSet(false),
|
|
m_usagePrice(0.0),
|
|
m_usagePriceHasBeenSet(false),
|
|
m_currencyCodeHasBeenSet(false),
|
|
m_dBInstanceCount(0),
|
|
m_dBInstanceCountHasBeenSet(false),
|
|
m_productDescriptionHasBeenSet(false),
|
|
m_offeringTypeHasBeenSet(false),
|
|
m_multiAZ(false),
|
|
m_multiAZHasBeenSet(false),
|
|
m_stateHasBeenSet(false),
|
|
m_recurringChargesHasBeenSet(false),
|
|
m_reservedDBInstanceArnHasBeenSet(false),
|
|
m_leaseIdHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
ReservedDBInstance::ReservedDBInstance(const XmlNode& xmlNode) :
|
|
m_reservedDBInstanceIdHasBeenSet(false),
|
|
m_reservedDBInstancesOfferingIdHasBeenSet(false),
|
|
m_dBInstanceClassHasBeenSet(false),
|
|
m_startTimeHasBeenSet(false),
|
|
m_duration(0),
|
|
m_durationHasBeenSet(false),
|
|
m_fixedPrice(0.0),
|
|
m_fixedPriceHasBeenSet(false),
|
|
m_usagePrice(0.0),
|
|
m_usagePriceHasBeenSet(false),
|
|
m_currencyCodeHasBeenSet(false),
|
|
m_dBInstanceCount(0),
|
|
m_dBInstanceCountHasBeenSet(false),
|
|
m_productDescriptionHasBeenSet(false),
|
|
m_offeringTypeHasBeenSet(false),
|
|
m_multiAZ(false),
|
|
m_multiAZHasBeenSet(false),
|
|
m_stateHasBeenSet(false),
|
|
m_recurringChargesHasBeenSet(false),
|
|
m_reservedDBInstanceArnHasBeenSet(false),
|
|
m_leaseIdHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
ReservedDBInstance& ReservedDBInstance::operator =(const XmlNode& xmlNode)
|
|
{
|
|
XmlNode resultNode = xmlNode;
|
|
|
|
if(!resultNode.IsNull())
|
|
{
|
|
XmlNode reservedDBInstanceIdNode = resultNode.FirstChild("ReservedDBInstanceId");
|
|
if(!reservedDBInstanceIdNode.IsNull())
|
|
{
|
|
m_reservedDBInstanceId = Aws::Utils::Xml::DecodeEscapedXmlText(reservedDBInstanceIdNode.GetText());
|
|
m_reservedDBInstanceIdHasBeenSet = true;
|
|
}
|
|
XmlNode reservedDBInstancesOfferingIdNode = resultNode.FirstChild("ReservedDBInstancesOfferingId");
|
|
if(!reservedDBInstancesOfferingIdNode.IsNull())
|
|
{
|
|
m_reservedDBInstancesOfferingId = Aws::Utils::Xml::DecodeEscapedXmlText(reservedDBInstancesOfferingIdNode.GetText());
|
|
m_reservedDBInstancesOfferingIdHasBeenSet = true;
|
|
}
|
|
XmlNode dBInstanceClassNode = resultNode.FirstChild("DBInstanceClass");
|
|
if(!dBInstanceClassNode.IsNull())
|
|
{
|
|
m_dBInstanceClass = Aws::Utils::Xml::DecodeEscapedXmlText(dBInstanceClassNode.GetText());
|
|
m_dBInstanceClassHasBeenSet = true;
|
|
}
|
|
XmlNode startTimeNode = resultNode.FirstChild("StartTime");
|
|
if(!startTimeNode.IsNull())
|
|
{
|
|
m_startTime = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(startTimeNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
|
|
m_startTimeHasBeenSet = 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 fixedPriceNode = resultNode.FirstChild("FixedPrice");
|
|
if(!fixedPriceNode.IsNull())
|
|
{
|
|
m_fixedPrice = StringUtils::ConvertToDouble(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(fixedPriceNode.GetText()).c_str()).c_str());
|
|
m_fixedPriceHasBeenSet = true;
|
|
}
|
|
XmlNode usagePriceNode = resultNode.FirstChild("UsagePrice");
|
|
if(!usagePriceNode.IsNull())
|
|
{
|
|
m_usagePrice = StringUtils::ConvertToDouble(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(usagePriceNode.GetText()).c_str()).c_str());
|
|
m_usagePriceHasBeenSet = true;
|
|
}
|
|
XmlNode currencyCodeNode = resultNode.FirstChild("CurrencyCode");
|
|
if(!currencyCodeNode.IsNull())
|
|
{
|
|
m_currencyCode = Aws::Utils::Xml::DecodeEscapedXmlText(currencyCodeNode.GetText());
|
|
m_currencyCodeHasBeenSet = true;
|
|
}
|
|
XmlNode dBInstanceCountNode = resultNode.FirstChild("DBInstanceCount");
|
|
if(!dBInstanceCountNode.IsNull())
|
|
{
|
|
m_dBInstanceCount = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(dBInstanceCountNode.GetText()).c_str()).c_str());
|
|
m_dBInstanceCountHasBeenSet = true;
|
|
}
|
|
XmlNode productDescriptionNode = resultNode.FirstChild("ProductDescription");
|
|
if(!productDescriptionNode.IsNull())
|
|
{
|
|
m_productDescription = Aws::Utils::Xml::DecodeEscapedXmlText(productDescriptionNode.GetText());
|
|
m_productDescriptionHasBeenSet = true;
|
|
}
|
|
XmlNode offeringTypeNode = resultNode.FirstChild("OfferingType");
|
|
if(!offeringTypeNode.IsNull())
|
|
{
|
|
m_offeringType = Aws::Utils::Xml::DecodeEscapedXmlText(offeringTypeNode.GetText());
|
|
m_offeringTypeHasBeenSet = true;
|
|
}
|
|
XmlNode multiAZNode = resultNode.FirstChild("MultiAZ");
|
|
if(!multiAZNode.IsNull())
|
|
{
|
|
m_multiAZ = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(multiAZNode.GetText()).c_str()).c_str());
|
|
m_multiAZHasBeenSet = true;
|
|
}
|
|
XmlNode stateNode = resultNode.FirstChild("State");
|
|
if(!stateNode.IsNull())
|
|
{
|
|
m_state = Aws::Utils::Xml::DecodeEscapedXmlText(stateNode.GetText());
|
|
m_stateHasBeenSet = true;
|
|
}
|
|
XmlNode recurringChargesNode = resultNode.FirstChild("RecurringCharges");
|
|
if(!recurringChargesNode.IsNull())
|
|
{
|
|
XmlNode recurringChargesMember = recurringChargesNode.FirstChild("RecurringCharge");
|
|
while(!recurringChargesMember.IsNull())
|
|
{
|
|
m_recurringCharges.push_back(recurringChargesMember);
|
|
recurringChargesMember = recurringChargesMember.NextNode("RecurringCharge");
|
|
}
|
|
|
|
m_recurringChargesHasBeenSet = true;
|
|
}
|
|
XmlNode reservedDBInstanceArnNode = resultNode.FirstChild("ReservedDBInstanceArn");
|
|
if(!reservedDBInstanceArnNode.IsNull())
|
|
{
|
|
m_reservedDBInstanceArn = Aws::Utils::Xml::DecodeEscapedXmlText(reservedDBInstanceArnNode.GetText());
|
|
m_reservedDBInstanceArnHasBeenSet = true;
|
|
}
|
|
XmlNode leaseIdNode = resultNode.FirstChild("LeaseId");
|
|
if(!leaseIdNode.IsNull())
|
|
{
|
|
m_leaseId = Aws::Utils::Xml::DecodeEscapedXmlText(leaseIdNode.GetText());
|
|
m_leaseIdHasBeenSet = true;
|
|
}
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
void ReservedDBInstance::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|
{
|
|
if(m_reservedDBInstanceIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".ReservedDBInstanceId=" << StringUtils::URLEncode(m_reservedDBInstanceId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_reservedDBInstancesOfferingIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".ReservedDBInstancesOfferingId=" << StringUtils::URLEncode(m_reservedDBInstancesOfferingId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_dBInstanceClassHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".DBInstanceClass=" << StringUtils::URLEncode(m_dBInstanceClass.c_str()) << "&";
|
|
}
|
|
|
|
if(m_startTimeHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".StartTime=" << StringUtils::URLEncode(m_startTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|
}
|
|
|
|
if(m_durationHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".Duration=" << m_duration << "&";
|
|
}
|
|
|
|
if(m_fixedPriceHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".FixedPrice=" << StringUtils::URLEncode(m_fixedPrice) << "&";
|
|
}
|
|
|
|
if(m_usagePriceHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".UsagePrice=" << StringUtils::URLEncode(m_usagePrice) << "&";
|
|
}
|
|
|
|
if(m_currencyCodeHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".CurrencyCode=" << StringUtils::URLEncode(m_currencyCode.c_str()) << "&";
|
|
}
|
|
|
|
if(m_dBInstanceCountHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".DBInstanceCount=" << m_dBInstanceCount << "&";
|
|
}
|
|
|
|
if(m_productDescriptionHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".ProductDescription=" << StringUtils::URLEncode(m_productDescription.c_str()) << "&";
|
|
}
|
|
|
|
if(m_offeringTypeHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".OfferingType=" << StringUtils::URLEncode(m_offeringType.c_str()) << "&";
|
|
}
|
|
|
|
if(m_multiAZHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".MultiAZ=" << std::boolalpha << m_multiAZ << "&";
|
|
}
|
|
|
|
if(m_stateHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".State=" << StringUtils::URLEncode(m_state.c_str()) << "&";
|
|
}
|
|
|
|
if(m_recurringChargesHasBeenSet)
|
|
{
|
|
unsigned recurringChargesIdx = 1;
|
|
for(auto& item : m_recurringCharges)
|
|
{
|
|
Aws::StringStream recurringChargesSs;
|
|
recurringChargesSs << location << index << locationValue << ".RecurringCharge." << recurringChargesIdx++;
|
|
item.OutputToStream(oStream, recurringChargesSs.str().c_str());
|
|
}
|
|
}
|
|
|
|
if(m_reservedDBInstanceArnHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".ReservedDBInstanceArn=" << StringUtils::URLEncode(m_reservedDBInstanceArn.c_str()) << "&";
|
|
}
|
|
|
|
if(m_leaseIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".LeaseId=" << StringUtils::URLEncode(m_leaseId.c_str()) << "&";
|
|
}
|
|
|
|
}
|
|
|
|
void ReservedDBInstance::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|
{
|
|
if(m_reservedDBInstanceIdHasBeenSet)
|
|
{
|
|
oStream << location << ".ReservedDBInstanceId=" << StringUtils::URLEncode(m_reservedDBInstanceId.c_str()) << "&";
|
|
}
|
|
if(m_reservedDBInstancesOfferingIdHasBeenSet)
|
|
{
|
|
oStream << location << ".ReservedDBInstancesOfferingId=" << StringUtils::URLEncode(m_reservedDBInstancesOfferingId.c_str()) << "&";
|
|
}
|
|
if(m_dBInstanceClassHasBeenSet)
|
|
{
|
|
oStream << location << ".DBInstanceClass=" << StringUtils::URLEncode(m_dBInstanceClass.c_str()) << "&";
|
|
}
|
|
if(m_startTimeHasBeenSet)
|
|
{
|
|
oStream << location << ".StartTime=" << StringUtils::URLEncode(m_startTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|
}
|
|
if(m_durationHasBeenSet)
|
|
{
|
|
oStream << location << ".Duration=" << m_duration << "&";
|
|
}
|
|
if(m_fixedPriceHasBeenSet)
|
|
{
|
|
oStream << location << ".FixedPrice=" << StringUtils::URLEncode(m_fixedPrice) << "&";
|
|
}
|
|
if(m_usagePriceHasBeenSet)
|
|
{
|
|
oStream << location << ".UsagePrice=" << StringUtils::URLEncode(m_usagePrice) << "&";
|
|
}
|
|
if(m_currencyCodeHasBeenSet)
|
|
{
|
|
oStream << location << ".CurrencyCode=" << StringUtils::URLEncode(m_currencyCode.c_str()) << "&";
|
|
}
|
|
if(m_dBInstanceCountHasBeenSet)
|
|
{
|
|
oStream << location << ".DBInstanceCount=" << m_dBInstanceCount << "&";
|
|
}
|
|
if(m_productDescriptionHasBeenSet)
|
|
{
|
|
oStream << location << ".ProductDescription=" << StringUtils::URLEncode(m_productDescription.c_str()) << "&";
|
|
}
|
|
if(m_offeringTypeHasBeenSet)
|
|
{
|
|
oStream << location << ".OfferingType=" << StringUtils::URLEncode(m_offeringType.c_str()) << "&";
|
|
}
|
|
if(m_multiAZHasBeenSet)
|
|
{
|
|
oStream << location << ".MultiAZ=" << std::boolalpha << m_multiAZ << "&";
|
|
}
|
|
if(m_stateHasBeenSet)
|
|
{
|
|
oStream << location << ".State=" << StringUtils::URLEncode(m_state.c_str()) << "&";
|
|
}
|
|
if(m_recurringChargesHasBeenSet)
|
|
{
|
|
unsigned recurringChargesIdx = 1;
|
|
for(auto& item : m_recurringCharges)
|
|
{
|
|
Aws::StringStream recurringChargesSs;
|
|
recurringChargesSs << location << ".RecurringCharge." << recurringChargesIdx++;
|
|
item.OutputToStream(oStream, recurringChargesSs.str().c_str());
|
|
}
|
|
}
|
|
if(m_reservedDBInstanceArnHasBeenSet)
|
|
{
|
|
oStream << location << ".ReservedDBInstanceArn=" << StringUtils::URLEncode(m_reservedDBInstanceArn.c_str()) << "&";
|
|
}
|
|
if(m_leaseIdHasBeenSet)
|
|
{
|
|
oStream << location << ".LeaseId=" << StringUtils::URLEncode(m_leaseId.c_str()) << "&";
|
|
}
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace RDS
|
|
} // namespace Aws
|