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-cloudformation/source/model/Stack.cpp

526 lines
18 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/cloudformation/model/Stack.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 CloudFormation
{
namespace Model
{
Stack::Stack() :
m_stackIdHasBeenSet(false),
m_stackNameHasBeenSet(false),
m_changeSetIdHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_parametersHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_deletionTimeHasBeenSet(false),
m_lastUpdatedTimeHasBeenSet(false),
m_rollbackConfigurationHasBeenSet(false),
m_stackStatus(StackStatus::NOT_SET),
m_stackStatusHasBeenSet(false),
m_stackStatusReasonHasBeenSet(false),
m_disableRollback(false),
m_disableRollbackHasBeenSet(false),
m_notificationARNsHasBeenSet(false),
m_timeoutInMinutes(0),
m_timeoutInMinutesHasBeenSet(false),
m_capabilitiesHasBeenSet(false),
m_outputsHasBeenSet(false),
m_roleARNHasBeenSet(false),
m_tagsHasBeenSet(false),
m_enableTerminationProtection(false),
m_enableTerminationProtectionHasBeenSet(false),
m_parentIdHasBeenSet(false),
m_rootIdHasBeenSet(false),
m_driftInformationHasBeenSet(false)
{
}
Stack::Stack(const XmlNode& xmlNode) :
m_stackIdHasBeenSet(false),
m_stackNameHasBeenSet(false),
m_changeSetIdHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_parametersHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_deletionTimeHasBeenSet(false),
m_lastUpdatedTimeHasBeenSet(false),
m_rollbackConfigurationHasBeenSet(false),
m_stackStatus(StackStatus::NOT_SET),
m_stackStatusHasBeenSet(false),
m_stackStatusReasonHasBeenSet(false),
m_disableRollback(false),
m_disableRollbackHasBeenSet(false),
m_notificationARNsHasBeenSet(false),
m_timeoutInMinutes(0),
m_timeoutInMinutesHasBeenSet(false),
m_capabilitiesHasBeenSet(false),
m_outputsHasBeenSet(false),
m_roleARNHasBeenSet(false),
m_tagsHasBeenSet(false),
m_enableTerminationProtection(false),
m_enableTerminationProtectionHasBeenSet(false),
m_parentIdHasBeenSet(false),
m_rootIdHasBeenSet(false),
m_driftInformationHasBeenSet(false)
{
*this = xmlNode;
}
Stack& Stack::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode stackIdNode = resultNode.FirstChild("StackId");
if(!stackIdNode.IsNull())
{
m_stackId = Aws::Utils::Xml::DecodeEscapedXmlText(stackIdNode.GetText());
m_stackIdHasBeenSet = true;
}
XmlNode stackNameNode = resultNode.FirstChild("StackName");
if(!stackNameNode.IsNull())
{
m_stackName = Aws::Utils::Xml::DecodeEscapedXmlText(stackNameNode.GetText());
m_stackNameHasBeenSet = true;
}
XmlNode changeSetIdNode = resultNode.FirstChild("ChangeSetId");
if(!changeSetIdNode.IsNull())
{
m_changeSetId = Aws::Utils::Xml::DecodeEscapedXmlText(changeSetIdNode.GetText());
m_changeSetIdHasBeenSet = true;
}
XmlNode descriptionNode = resultNode.FirstChild("Description");
if(!descriptionNode.IsNull())
{
m_description = Aws::Utils::Xml::DecodeEscapedXmlText(descriptionNode.GetText());
m_descriptionHasBeenSet = true;
}
XmlNode parametersNode = resultNode.FirstChild("Parameters");
if(!parametersNode.IsNull())
{
XmlNode parametersMember = parametersNode.FirstChild("member");
while(!parametersMember.IsNull())
{
m_parameters.push_back(parametersMember);
parametersMember = parametersMember.NextNode("member");
}
m_parametersHasBeenSet = true;
}
XmlNode creationTimeNode = resultNode.FirstChild("CreationTime");
if(!creationTimeNode.IsNull())
{
m_creationTime = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(creationTimeNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
m_creationTimeHasBeenSet = true;
}
XmlNode deletionTimeNode = resultNode.FirstChild("DeletionTime");
if(!deletionTimeNode.IsNull())
{
m_deletionTime = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(deletionTimeNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
m_deletionTimeHasBeenSet = true;
}
XmlNode lastUpdatedTimeNode = resultNode.FirstChild("LastUpdatedTime");
if(!lastUpdatedTimeNode.IsNull())
{
m_lastUpdatedTime = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(lastUpdatedTimeNode.GetText()).c_str()).c_str(), DateFormat::ISO_8601);
m_lastUpdatedTimeHasBeenSet = true;
}
XmlNode rollbackConfigurationNode = resultNode.FirstChild("RollbackConfiguration");
if(!rollbackConfigurationNode.IsNull())
{
m_rollbackConfiguration = rollbackConfigurationNode;
m_rollbackConfigurationHasBeenSet = true;
}
XmlNode stackStatusNode = resultNode.FirstChild("StackStatus");
if(!stackStatusNode.IsNull())
{
m_stackStatus = StackStatusMapper::GetStackStatusForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(stackStatusNode.GetText()).c_str()).c_str());
m_stackStatusHasBeenSet = true;
}
XmlNode stackStatusReasonNode = resultNode.FirstChild("StackStatusReason");
if(!stackStatusReasonNode.IsNull())
{
m_stackStatusReason = Aws::Utils::Xml::DecodeEscapedXmlText(stackStatusReasonNode.GetText());
m_stackStatusReasonHasBeenSet = true;
}
XmlNode disableRollbackNode = resultNode.FirstChild("DisableRollback");
if(!disableRollbackNode.IsNull())
{
m_disableRollback = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(disableRollbackNode.GetText()).c_str()).c_str());
m_disableRollbackHasBeenSet = true;
}
XmlNode notificationARNsNode = resultNode.FirstChild("NotificationARNs");
if(!notificationARNsNode.IsNull())
{
XmlNode notificationARNsMember = notificationARNsNode.FirstChild("member");
while(!notificationARNsMember.IsNull())
{
m_notificationARNs.push_back(notificationARNsMember.GetText());
notificationARNsMember = notificationARNsMember.NextNode("member");
}
m_notificationARNsHasBeenSet = true;
}
XmlNode timeoutInMinutesNode = resultNode.FirstChild("TimeoutInMinutes");
if(!timeoutInMinutesNode.IsNull())
{
m_timeoutInMinutes = StringUtils::ConvertToInt32(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(timeoutInMinutesNode.GetText()).c_str()).c_str());
m_timeoutInMinutesHasBeenSet = true;
}
XmlNode capabilitiesNode = resultNode.FirstChild("Capabilities");
if(!capabilitiesNode.IsNull())
{
XmlNode capabilitiesMember = capabilitiesNode.FirstChild("member");
while(!capabilitiesMember.IsNull())
{
m_capabilities.push_back(CapabilityMapper::GetCapabilityForName(StringUtils::Trim(capabilitiesMember.GetText().c_str())));
capabilitiesMember = capabilitiesMember.NextNode("member");
}
m_capabilitiesHasBeenSet = true;
}
XmlNode outputsNode = resultNode.FirstChild("Outputs");
if(!outputsNode.IsNull())
{
XmlNode outputsMember = outputsNode.FirstChild("member");
while(!outputsMember.IsNull())
{
m_outputs.push_back(outputsMember);
outputsMember = outputsMember.NextNode("member");
}
m_outputsHasBeenSet = true;
}
XmlNode roleARNNode = resultNode.FirstChild("RoleARN");
if(!roleARNNode.IsNull())
{
m_roleARN = Aws::Utils::Xml::DecodeEscapedXmlText(roleARNNode.GetText());
m_roleARNHasBeenSet = true;
}
XmlNode tagsNode = resultNode.FirstChild("Tags");
if(!tagsNode.IsNull())
{
XmlNode tagsMember = tagsNode.FirstChild("member");
while(!tagsMember.IsNull())
{
m_tags.push_back(tagsMember);
tagsMember = tagsMember.NextNode("member");
}
m_tagsHasBeenSet = true;
}
XmlNode enableTerminationProtectionNode = resultNode.FirstChild("EnableTerminationProtection");
if(!enableTerminationProtectionNode.IsNull())
{
m_enableTerminationProtection = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(enableTerminationProtectionNode.GetText()).c_str()).c_str());
m_enableTerminationProtectionHasBeenSet = true;
}
XmlNode parentIdNode = resultNode.FirstChild("ParentId");
if(!parentIdNode.IsNull())
{
m_parentId = Aws::Utils::Xml::DecodeEscapedXmlText(parentIdNode.GetText());
m_parentIdHasBeenSet = true;
}
XmlNode rootIdNode = resultNode.FirstChild("RootId");
if(!rootIdNode.IsNull())
{
m_rootId = Aws::Utils::Xml::DecodeEscapedXmlText(rootIdNode.GetText());
m_rootIdHasBeenSet = true;
}
XmlNode driftInformationNode = resultNode.FirstChild("DriftInformation");
if(!driftInformationNode.IsNull())
{
m_driftInformation = driftInformationNode;
m_driftInformationHasBeenSet = true;
}
}
return *this;
}
void Stack::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_stackIdHasBeenSet)
{
oStream << location << index << locationValue << ".StackId=" << StringUtils::URLEncode(m_stackId.c_str()) << "&";
}
if(m_stackNameHasBeenSet)
{
oStream << location << index << locationValue << ".StackName=" << StringUtils::URLEncode(m_stackName.c_str()) << "&";
}
if(m_changeSetIdHasBeenSet)
{
oStream << location << index << locationValue << ".ChangeSetId=" << StringUtils::URLEncode(m_changeSetId.c_str()) << "&";
}
if(m_descriptionHasBeenSet)
{
oStream << location << index << locationValue << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&";
}
if(m_parametersHasBeenSet)
{
unsigned parametersIdx = 1;
for(auto& item : m_parameters)
{
Aws::StringStream parametersSs;
parametersSs << location << index << locationValue << ".Parameters.member." << parametersIdx++;
item.OutputToStream(oStream, parametersSs.str().c_str());
}
}
if(m_creationTimeHasBeenSet)
{
oStream << location << index << locationValue << ".CreationTime=" << StringUtils::URLEncode(m_creationTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_deletionTimeHasBeenSet)
{
oStream << location << index << locationValue << ".DeletionTime=" << StringUtils::URLEncode(m_deletionTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_lastUpdatedTimeHasBeenSet)
{
oStream << location << index << locationValue << ".LastUpdatedTime=" << StringUtils::URLEncode(m_lastUpdatedTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_rollbackConfigurationHasBeenSet)
{
Aws::StringStream rollbackConfigurationLocationAndMemberSs;
rollbackConfigurationLocationAndMemberSs << location << index << locationValue << ".RollbackConfiguration";
m_rollbackConfiguration.OutputToStream(oStream, rollbackConfigurationLocationAndMemberSs.str().c_str());
}
if(m_stackStatusHasBeenSet)
{
oStream << location << index << locationValue << ".StackStatus=" << StackStatusMapper::GetNameForStackStatus(m_stackStatus) << "&";
}
if(m_stackStatusReasonHasBeenSet)
{
oStream << location << index << locationValue << ".StackStatusReason=" << StringUtils::URLEncode(m_stackStatusReason.c_str()) << "&";
}
if(m_disableRollbackHasBeenSet)
{
oStream << location << index << locationValue << ".DisableRollback=" << std::boolalpha << m_disableRollback << "&";
}
if(m_notificationARNsHasBeenSet)
{
unsigned notificationARNsIdx = 1;
for(auto& item : m_notificationARNs)
{
oStream << location << index << locationValue << ".NotificationARNs.member." << notificationARNsIdx++ << "=" << StringUtils::URLEncode(item.c_str()) << "&";
}
}
if(m_timeoutInMinutesHasBeenSet)
{
oStream << location << index << locationValue << ".TimeoutInMinutes=" << m_timeoutInMinutes << "&";
}
if(m_capabilitiesHasBeenSet)
{
unsigned capabilitiesIdx = 1;
for(auto& item : m_capabilities)
{
oStream << location << index << locationValue << ".Capabilities.member." << capabilitiesIdx++ << "=" << CapabilityMapper::GetNameForCapability(item) << "&";
}
}
if(m_outputsHasBeenSet)
{
unsigned outputsIdx = 1;
for(auto& item : m_outputs)
{
Aws::StringStream outputsSs;
outputsSs << location << index << locationValue << ".Outputs.member." << outputsIdx++;
item.OutputToStream(oStream, outputsSs.str().c_str());
}
}
if(m_roleARNHasBeenSet)
{
oStream << location << index << locationValue << ".RoleARN=" << StringUtils::URLEncode(m_roleARN.c_str()) << "&";
}
if(m_tagsHasBeenSet)
{
unsigned tagsIdx = 1;
for(auto& item : m_tags)
{
Aws::StringStream tagsSs;
tagsSs << location << index << locationValue << ".Tags.member." << tagsIdx++;
item.OutputToStream(oStream, tagsSs.str().c_str());
}
}
if(m_enableTerminationProtectionHasBeenSet)
{
oStream << location << index << locationValue << ".EnableTerminationProtection=" << std::boolalpha << m_enableTerminationProtection << "&";
}
if(m_parentIdHasBeenSet)
{
oStream << location << index << locationValue << ".ParentId=" << StringUtils::URLEncode(m_parentId.c_str()) << "&";
}
if(m_rootIdHasBeenSet)
{
oStream << location << index << locationValue << ".RootId=" << StringUtils::URLEncode(m_rootId.c_str()) << "&";
}
if(m_driftInformationHasBeenSet)
{
Aws::StringStream driftInformationLocationAndMemberSs;
driftInformationLocationAndMemberSs << location << index << locationValue << ".DriftInformation";
m_driftInformation.OutputToStream(oStream, driftInformationLocationAndMemberSs.str().c_str());
}
}
void Stack::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_stackIdHasBeenSet)
{
oStream << location << ".StackId=" << StringUtils::URLEncode(m_stackId.c_str()) << "&";
}
if(m_stackNameHasBeenSet)
{
oStream << location << ".StackName=" << StringUtils::URLEncode(m_stackName.c_str()) << "&";
}
if(m_changeSetIdHasBeenSet)
{
oStream << location << ".ChangeSetId=" << StringUtils::URLEncode(m_changeSetId.c_str()) << "&";
}
if(m_descriptionHasBeenSet)
{
oStream << location << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&";
}
if(m_parametersHasBeenSet)
{
unsigned parametersIdx = 1;
for(auto& item : m_parameters)
{
Aws::StringStream parametersSs;
parametersSs << location << ".Parameters.member." << parametersIdx++;
item.OutputToStream(oStream, parametersSs.str().c_str());
}
}
if(m_creationTimeHasBeenSet)
{
oStream << location << ".CreationTime=" << StringUtils::URLEncode(m_creationTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_deletionTimeHasBeenSet)
{
oStream << location << ".DeletionTime=" << StringUtils::URLEncode(m_deletionTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_lastUpdatedTimeHasBeenSet)
{
oStream << location << ".LastUpdatedTime=" << StringUtils::URLEncode(m_lastUpdatedTime.ToGmtString(DateFormat::ISO_8601).c_str()) << "&";
}
if(m_rollbackConfigurationHasBeenSet)
{
Aws::String rollbackConfigurationLocationAndMember(location);
rollbackConfigurationLocationAndMember += ".RollbackConfiguration";
m_rollbackConfiguration.OutputToStream(oStream, rollbackConfigurationLocationAndMember.c_str());
}
if(m_stackStatusHasBeenSet)
{
oStream << location << ".StackStatus=" << StackStatusMapper::GetNameForStackStatus(m_stackStatus) << "&";
}
if(m_stackStatusReasonHasBeenSet)
{
oStream << location << ".StackStatusReason=" << StringUtils::URLEncode(m_stackStatusReason.c_str()) << "&";
}
if(m_disableRollbackHasBeenSet)
{
oStream << location << ".DisableRollback=" << std::boolalpha << m_disableRollback << "&";
}
if(m_notificationARNsHasBeenSet)
{
unsigned notificationARNsIdx = 1;
for(auto& item : m_notificationARNs)
{
oStream << location << ".NotificationARNs.member." << notificationARNsIdx++ << "=" << StringUtils::URLEncode(item.c_str()) << "&";
}
}
if(m_timeoutInMinutesHasBeenSet)
{
oStream << location << ".TimeoutInMinutes=" << m_timeoutInMinutes << "&";
}
if(m_capabilitiesHasBeenSet)
{
unsigned capabilitiesIdx = 1;
for(auto& item : m_capabilities)
{
oStream << location << ".Capabilities.member." << capabilitiesIdx++ << "=" << CapabilityMapper::GetNameForCapability(item) << "&";
}
}
if(m_outputsHasBeenSet)
{
unsigned outputsIdx = 1;
for(auto& item : m_outputs)
{
Aws::StringStream outputsSs;
outputsSs << location << ".Outputs.member." << outputsIdx++;
item.OutputToStream(oStream, outputsSs.str().c_str());
}
}
if(m_roleARNHasBeenSet)
{
oStream << location << ".RoleARN=" << StringUtils::URLEncode(m_roleARN.c_str()) << "&";
}
if(m_tagsHasBeenSet)
{
unsigned tagsIdx = 1;
for(auto& item : m_tags)
{
Aws::StringStream tagsSs;
tagsSs << location << ".Tags.member." << tagsIdx++;
item.OutputToStream(oStream, tagsSs.str().c_str());
}
}
if(m_enableTerminationProtectionHasBeenSet)
{
oStream << location << ".EnableTerminationProtection=" << std::boolalpha << m_enableTerminationProtection << "&";
}
if(m_parentIdHasBeenSet)
{
oStream << location << ".ParentId=" << StringUtils::URLEncode(m_parentId.c_str()) << "&";
}
if(m_rootIdHasBeenSet)
{
oStream << location << ".RootId=" << StringUtils::URLEncode(m_rootId.c_str()) << "&";
}
if(m_driftInformationHasBeenSet)
{
Aws::String driftInformationLocationAndMember(location);
driftInformationLocationAndMember += ".DriftInformation";
m_driftInformation.OutputToStream(oStream, driftInformationLocationAndMember.c_str());
}
}
} // namespace Model
} // namespace CloudFormation
} // namespace Aws