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-elasticbeanstalk/source/model/EnvironmentResourceDescription.cpp

316 lines
9.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/elasticbeanstalk/model/EnvironmentResourceDescription.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 ElasticBeanstalk
{
namespace Model
{
EnvironmentResourceDescription::EnvironmentResourceDescription() :
m_environmentNameHasBeenSet(false),
m_autoScalingGroupsHasBeenSet(false),
m_instancesHasBeenSet(false),
m_launchConfigurationsHasBeenSet(false),
m_launchTemplatesHasBeenSet(false),
m_loadBalancersHasBeenSet(false),
m_triggersHasBeenSet(false),
m_queuesHasBeenSet(false)
{
}
EnvironmentResourceDescription::EnvironmentResourceDescription(const XmlNode& xmlNode) :
m_environmentNameHasBeenSet(false),
m_autoScalingGroupsHasBeenSet(false),
m_instancesHasBeenSet(false),
m_launchConfigurationsHasBeenSet(false),
m_launchTemplatesHasBeenSet(false),
m_loadBalancersHasBeenSet(false),
m_triggersHasBeenSet(false),
m_queuesHasBeenSet(false)
{
*this = xmlNode;
}
EnvironmentResourceDescription& EnvironmentResourceDescription::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode environmentNameNode = resultNode.FirstChild("EnvironmentName");
if(!environmentNameNode.IsNull())
{
m_environmentName = Aws::Utils::Xml::DecodeEscapedXmlText(environmentNameNode.GetText());
m_environmentNameHasBeenSet = true;
}
XmlNode autoScalingGroupsNode = resultNode.FirstChild("AutoScalingGroups");
if(!autoScalingGroupsNode.IsNull())
{
XmlNode autoScalingGroupsMember = autoScalingGroupsNode.FirstChild("member");
while(!autoScalingGroupsMember.IsNull())
{
m_autoScalingGroups.push_back(autoScalingGroupsMember);
autoScalingGroupsMember = autoScalingGroupsMember.NextNode("member");
}
m_autoScalingGroupsHasBeenSet = true;
}
XmlNode instancesNode = resultNode.FirstChild("Instances");
if(!instancesNode.IsNull())
{
XmlNode instancesMember = instancesNode.FirstChild("member");
while(!instancesMember.IsNull())
{
m_instances.push_back(instancesMember);
instancesMember = instancesMember.NextNode("member");
}
m_instancesHasBeenSet = true;
}
XmlNode launchConfigurationsNode = resultNode.FirstChild("LaunchConfigurations");
if(!launchConfigurationsNode.IsNull())
{
XmlNode launchConfigurationsMember = launchConfigurationsNode.FirstChild("member");
while(!launchConfigurationsMember.IsNull())
{
m_launchConfigurations.push_back(launchConfigurationsMember);
launchConfigurationsMember = launchConfigurationsMember.NextNode("member");
}
m_launchConfigurationsHasBeenSet = true;
}
XmlNode launchTemplatesNode = resultNode.FirstChild("LaunchTemplates");
if(!launchTemplatesNode.IsNull())
{
XmlNode launchTemplatesMember = launchTemplatesNode.FirstChild("member");
while(!launchTemplatesMember.IsNull())
{
m_launchTemplates.push_back(launchTemplatesMember);
launchTemplatesMember = launchTemplatesMember.NextNode("member");
}
m_launchTemplatesHasBeenSet = true;
}
XmlNode loadBalancersNode = resultNode.FirstChild("LoadBalancers");
if(!loadBalancersNode.IsNull())
{
XmlNode loadBalancersMember = loadBalancersNode.FirstChild("member");
while(!loadBalancersMember.IsNull())
{
m_loadBalancers.push_back(loadBalancersMember);
loadBalancersMember = loadBalancersMember.NextNode("member");
}
m_loadBalancersHasBeenSet = true;
}
XmlNode triggersNode = resultNode.FirstChild("Triggers");
if(!triggersNode.IsNull())
{
XmlNode triggersMember = triggersNode.FirstChild("member");
while(!triggersMember.IsNull())
{
m_triggers.push_back(triggersMember);
triggersMember = triggersMember.NextNode("member");
}
m_triggersHasBeenSet = true;
}
XmlNode queuesNode = resultNode.FirstChild("Queues");
if(!queuesNode.IsNull())
{
XmlNode queuesMember = queuesNode.FirstChild("member");
while(!queuesMember.IsNull())
{
m_queues.push_back(queuesMember);
queuesMember = queuesMember.NextNode("member");
}
m_queuesHasBeenSet = true;
}
}
return *this;
}
void EnvironmentResourceDescription::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_environmentNameHasBeenSet)
{
oStream << location << index << locationValue << ".EnvironmentName=" << StringUtils::URLEncode(m_environmentName.c_str()) << "&";
}
if(m_autoScalingGroupsHasBeenSet)
{
unsigned autoScalingGroupsIdx = 1;
for(auto& item : m_autoScalingGroups)
{
Aws::StringStream autoScalingGroupsSs;
autoScalingGroupsSs << location << index << locationValue << ".AutoScalingGroups.member." << autoScalingGroupsIdx++;
item.OutputToStream(oStream, autoScalingGroupsSs.str().c_str());
}
}
if(m_instancesHasBeenSet)
{
unsigned instancesIdx = 1;
for(auto& item : m_instances)
{
Aws::StringStream instancesSs;
instancesSs << location << index << locationValue << ".Instances.member." << instancesIdx++;
item.OutputToStream(oStream, instancesSs.str().c_str());
}
}
if(m_launchConfigurationsHasBeenSet)
{
unsigned launchConfigurationsIdx = 1;
for(auto& item : m_launchConfigurations)
{
Aws::StringStream launchConfigurationsSs;
launchConfigurationsSs << location << index << locationValue << ".LaunchConfigurations.member." << launchConfigurationsIdx++;
item.OutputToStream(oStream, launchConfigurationsSs.str().c_str());
}
}
if(m_launchTemplatesHasBeenSet)
{
unsigned launchTemplatesIdx = 1;
for(auto& item : m_launchTemplates)
{
Aws::StringStream launchTemplatesSs;
launchTemplatesSs << location << index << locationValue << ".LaunchTemplates.member." << launchTemplatesIdx++;
item.OutputToStream(oStream, launchTemplatesSs.str().c_str());
}
}
if(m_loadBalancersHasBeenSet)
{
unsigned loadBalancersIdx = 1;
for(auto& item : m_loadBalancers)
{
Aws::StringStream loadBalancersSs;
loadBalancersSs << location << index << locationValue << ".LoadBalancers.member." << loadBalancersIdx++;
item.OutputToStream(oStream, loadBalancersSs.str().c_str());
}
}
if(m_triggersHasBeenSet)
{
unsigned triggersIdx = 1;
for(auto& item : m_triggers)
{
Aws::StringStream triggersSs;
triggersSs << location << index << locationValue << ".Triggers.member." << triggersIdx++;
item.OutputToStream(oStream, triggersSs.str().c_str());
}
}
if(m_queuesHasBeenSet)
{
unsigned queuesIdx = 1;
for(auto& item : m_queues)
{
Aws::StringStream queuesSs;
queuesSs << location << index << locationValue << ".Queues.member." << queuesIdx++;
item.OutputToStream(oStream, queuesSs.str().c_str());
}
}
}
void EnvironmentResourceDescription::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_environmentNameHasBeenSet)
{
oStream << location << ".EnvironmentName=" << StringUtils::URLEncode(m_environmentName.c_str()) << "&";
}
if(m_autoScalingGroupsHasBeenSet)
{
unsigned autoScalingGroupsIdx = 1;
for(auto& item : m_autoScalingGroups)
{
Aws::StringStream autoScalingGroupsSs;
autoScalingGroupsSs << location << ".AutoScalingGroups.member." << autoScalingGroupsIdx++;
item.OutputToStream(oStream, autoScalingGroupsSs.str().c_str());
}
}
if(m_instancesHasBeenSet)
{
unsigned instancesIdx = 1;
for(auto& item : m_instances)
{
Aws::StringStream instancesSs;
instancesSs << location << ".Instances.member." << instancesIdx++;
item.OutputToStream(oStream, instancesSs.str().c_str());
}
}
if(m_launchConfigurationsHasBeenSet)
{
unsigned launchConfigurationsIdx = 1;
for(auto& item : m_launchConfigurations)
{
Aws::StringStream launchConfigurationsSs;
launchConfigurationsSs << location << ".LaunchConfigurations.member." << launchConfigurationsIdx++;
item.OutputToStream(oStream, launchConfigurationsSs.str().c_str());
}
}
if(m_launchTemplatesHasBeenSet)
{
unsigned launchTemplatesIdx = 1;
for(auto& item : m_launchTemplates)
{
Aws::StringStream launchTemplatesSs;
launchTemplatesSs << location << ".LaunchTemplates.member." << launchTemplatesIdx++;
item.OutputToStream(oStream, launchTemplatesSs.str().c_str());
}
}
if(m_loadBalancersHasBeenSet)
{
unsigned loadBalancersIdx = 1;
for(auto& item : m_loadBalancers)
{
Aws::StringStream loadBalancersSs;
loadBalancersSs << location << ".LoadBalancers.member." << loadBalancersIdx++;
item.OutputToStream(oStream, loadBalancersSs.str().c_str());
}
}
if(m_triggersHasBeenSet)
{
unsigned triggersIdx = 1;
for(auto& item : m_triggers)
{
Aws::StringStream triggersSs;
triggersSs << location << ".Triggers.member." << triggersIdx++;
item.OutputToStream(oStream, triggersSs.str().c_str());
}
}
if(m_queuesHasBeenSet)
{
unsigned queuesIdx = 1;
for(auto& item : m_queues)
{
Aws::StringStream queuesSs;
queuesSs << location << ".Queues.member." << queuesIdx++;
item.OutputToStream(oStream, queuesSs.str().c_str());
}
}
}
} // namespace Model
} // namespace ElasticBeanstalk
} // namespace Aws