/** * 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 { SpotPlacement::SpotPlacement() : m_availabilityZoneHasBeenSet(false), m_groupNameHasBeenSet(false), m_tenancy(Tenancy::NOT_SET), m_tenancyHasBeenSet(false) { } SpotPlacement::SpotPlacement(const XmlNode& xmlNode) : m_availabilityZoneHasBeenSet(false), m_groupNameHasBeenSet(false), m_tenancy(Tenancy::NOT_SET), m_tenancyHasBeenSet(false) { *this = xmlNode; } SpotPlacement& SpotPlacement::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode availabilityZoneNode = resultNode.FirstChild("availabilityZone"); if(!availabilityZoneNode.IsNull()) { m_availabilityZone = Aws::Utils::Xml::DecodeEscapedXmlText(availabilityZoneNode.GetText()); m_availabilityZoneHasBeenSet = true; } XmlNode groupNameNode = resultNode.FirstChild("groupName"); if(!groupNameNode.IsNull()) { m_groupName = Aws::Utils::Xml::DecodeEscapedXmlText(groupNameNode.GetText()); m_groupNameHasBeenSet = true; } XmlNode tenancyNode = resultNode.FirstChild("tenancy"); if(!tenancyNode.IsNull()) { m_tenancy = TenancyMapper::GetTenancyForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(tenancyNode.GetText()).c_str()).c_str()); m_tenancyHasBeenSet = true; } } return *this; } void SpotPlacement::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_availabilityZoneHasBeenSet) { oStream << location << index << locationValue << ".AvailabilityZone=" << StringUtils::URLEncode(m_availabilityZone.c_str()) << "&"; } if(m_groupNameHasBeenSet) { oStream << location << index << locationValue << ".GroupName=" << StringUtils::URLEncode(m_groupName.c_str()) << "&"; } if(m_tenancyHasBeenSet) { oStream << location << index << locationValue << ".Tenancy=" << TenancyMapper::GetNameForTenancy(m_tenancy) << "&"; } } void SpotPlacement::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_availabilityZoneHasBeenSet) { oStream << location << ".AvailabilityZone=" << StringUtils::URLEncode(m_availabilityZone.c_str()) << "&"; } if(m_groupNameHasBeenSet) { oStream << location << ".GroupName=" << StringUtils::URLEncode(m_groupName.c_str()) << "&"; } if(m_tenancyHasBeenSet) { oStream << location << ".Tenancy=" << TenancyMapper::GetNameForTenancy(m_tenancy) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws