175 lines
5.6 KiB
C++
175 lines
5.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/ec2/model/VolumeAttachment.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
|
|
{
|
|
|
|
VolumeAttachment::VolumeAttachment() :
|
|
m_attachTimeHasBeenSet(false),
|
|
m_deviceHasBeenSet(false),
|
|
m_instanceIdHasBeenSet(false),
|
|
m_state(VolumeAttachmentState::NOT_SET),
|
|
m_stateHasBeenSet(false),
|
|
m_volumeIdHasBeenSet(false),
|
|
m_deleteOnTermination(false),
|
|
m_deleteOnTerminationHasBeenSet(false),
|
|
m_responseMetadataHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
VolumeAttachment::VolumeAttachment(const XmlNode& xmlNode) :
|
|
m_attachTimeHasBeenSet(false),
|
|
m_deviceHasBeenSet(false),
|
|
m_instanceIdHasBeenSet(false),
|
|
m_state(VolumeAttachmentState::NOT_SET),
|
|
m_stateHasBeenSet(false),
|
|
m_volumeIdHasBeenSet(false),
|
|
m_deleteOnTermination(false),
|
|
m_deleteOnTerminationHasBeenSet(false),
|
|
m_responseMetadataHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
VolumeAttachment& VolumeAttachment::operator =(const XmlNode& xmlNode)
|
|
{
|
|
XmlNode resultNode = xmlNode;
|
|
|
|
if(!resultNode.IsNull())
|
|
{
|
|
XmlNode attachTimeNode = resultNode.FirstChild("attachTime");
|
|
if(!attachTimeNode.IsNull())
|
|
{
|
|
m_attachTime = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(attachTimeNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
|
|
m_attachTimeHasBeenSet = true;
|
|
}
|
|
XmlNode deviceNode = resultNode.FirstChild("device");
|
|
if(!deviceNode.IsNull())
|
|
{
|
|
m_device = Aws::Utils::Xml::DecodeEscapedXmlText(deviceNode.GetText());
|
|
m_deviceHasBeenSet = true;
|
|
}
|
|
XmlNode instanceIdNode = resultNode.FirstChild("instanceId");
|
|
if(!instanceIdNode.IsNull())
|
|
{
|
|
m_instanceId = Aws::Utils::Xml::DecodeEscapedXmlText(instanceIdNode.GetText());
|
|
m_instanceIdHasBeenSet = true;
|
|
}
|
|
XmlNode stateNode = resultNode.FirstChild("status");
|
|
if(!stateNode.IsNull())
|
|
{
|
|
m_state = VolumeAttachmentStateMapper::GetVolumeAttachmentStateForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(stateNode.GetText()).c_str()).c_str());
|
|
m_stateHasBeenSet = true;
|
|
}
|
|
XmlNode volumeIdNode = resultNode.FirstChild("volumeId");
|
|
if(!volumeIdNode.IsNull())
|
|
{
|
|
m_volumeId = Aws::Utils::Xml::DecodeEscapedXmlText(volumeIdNode.GetText());
|
|
m_volumeIdHasBeenSet = true;
|
|
}
|
|
XmlNode deleteOnTerminationNode = resultNode.FirstChild("deleteOnTermination");
|
|
if(!deleteOnTerminationNode.IsNull())
|
|
{
|
|
m_deleteOnTermination = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(deleteOnTerminationNode.GetText()).c_str()).c_str());
|
|
m_deleteOnTerminationHasBeenSet = true;
|
|
}
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
void VolumeAttachment::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|
{
|
|
if(m_attachTimeHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".AttachTime=" << StringUtils::URLEncode(m_attachTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|
}
|
|
|
|
if(m_deviceHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".Device=" << StringUtils::URLEncode(m_device.c_str()) << "&";
|
|
}
|
|
|
|
if(m_instanceIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".InstanceId=" << StringUtils::URLEncode(m_instanceId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_stateHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".State=" << VolumeAttachmentStateMapper::GetNameForVolumeAttachmentState(m_state) << "&";
|
|
}
|
|
|
|
if(m_volumeIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".VolumeId=" << StringUtils::URLEncode(m_volumeId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_deleteOnTerminationHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".DeleteOnTermination=" << std::boolalpha << m_deleteOnTermination << "&";
|
|
}
|
|
|
|
if(m_responseMetadataHasBeenSet)
|
|
{
|
|
Aws::StringStream responseMetadataLocationAndMemberSs;
|
|
responseMetadataLocationAndMemberSs << location << index << locationValue << ".ResponseMetadata";
|
|
m_responseMetadata.OutputToStream(oStream, responseMetadataLocationAndMemberSs.str().c_str());
|
|
}
|
|
|
|
}
|
|
|
|
void VolumeAttachment::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|
{
|
|
if(m_attachTimeHasBeenSet)
|
|
{
|
|
oStream << location << ".AttachTime=" << StringUtils::URLEncode(m_attachTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
|
|
}
|
|
if(m_deviceHasBeenSet)
|
|
{
|
|
oStream << location << ".Device=" << StringUtils::URLEncode(m_device.c_str()) << "&";
|
|
}
|
|
if(m_instanceIdHasBeenSet)
|
|
{
|
|
oStream << location << ".InstanceId=" << StringUtils::URLEncode(m_instanceId.c_str()) << "&";
|
|
}
|
|
if(m_stateHasBeenSet)
|
|
{
|
|
oStream << location << ".State=" << VolumeAttachmentStateMapper::GetNameForVolumeAttachmentState(m_state) << "&";
|
|
}
|
|
if(m_volumeIdHasBeenSet)
|
|
{
|
|
oStream << location << ".VolumeId=" << StringUtils::URLEncode(m_volumeId.c_str()) << "&";
|
|
}
|
|
if(m_deleteOnTerminationHasBeenSet)
|
|
{
|
|
oStream << location << ".DeleteOnTermination=" << std::boolalpha << m_deleteOnTermination << "&";
|
|
}
|
|
if(m_responseMetadataHasBeenSet)
|
|
{
|
|
Aws::String responseMetadataLocationAndMember(location);
|
|
responseMetadataLocationAndMember += ".ResponseMetadata";
|
|
m_responseMetadata.OutputToStream(oStream, responseMetadataLocationAndMember.c_str());
|
|
}
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|