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/UpdateStackSetRequest.cpp

163 lines
4.1 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/cloudformation/model/UpdateStackSetRequest.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
using namespace Aws::CloudFormation::Model;
using namespace Aws::Utils;
UpdateStackSetRequest::UpdateStackSetRequest() :
m_stackSetNameHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_templateBodyHasBeenSet(false),
m_templateURLHasBeenSet(false),
m_usePreviousTemplate(false),
m_usePreviousTemplateHasBeenSet(false),
m_parametersHasBeenSet(false),
m_capabilitiesHasBeenSet(false),
m_tagsHasBeenSet(false),
m_operationPreferencesHasBeenSet(false),
m_administrationRoleARNHasBeenSet(false),
m_executionRoleNameHasBeenSet(false),
m_deploymentTargetsHasBeenSet(false),
m_permissionModel(PermissionModels::NOT_SET),
m_permissionModelHasBeenSet(false),
m_autoDeploymentHasBeenSet(false),
m_operationId(Aws::Utils::UUID::RandomUUID()),
m_operationIdHasBeenSet(true),
m_accountsHasBeenSet(false),
m_regionsHasBeenSet(false)
{
}
Aws::String UpdateStackSetRequest::SerializePayload() const
{
Aws::StringStream ss;
ss << "Action=UpdateStackSet&";
if(m_stackSetNameHasBeenSet)
{
ss << "StackSetName=" << StringUtils::URLEncode(m_stackSetName.c_str()) << "&";
}
if(m_descriptionHasBeenSet)
{
ss << "Description=" << StringUtils::URLEncode(m_description.c_str()) << "&";
}
if(m_templateBodyHasBeenSet)
{
ss << "TemplateBody=" << StringUtils::URLEncode(m_templateBody.c_str()) << "&";
}
if(m_templateURLHasBeenSet)
{
ss << "TemplateURL=" << StringUtils::URLEncode(m_templateURL.c_str()) << "&";
}
if(m_usePreviousTemplateHasBeenSet)
{
ss << "UsePreviousTemplate=" << std::boolalpha << m_usePreviousTemplate << "&";
}
if(m_parametersHasBeenSet)
{
unsigned parametersCount = 1;
for(auto& item : m_parameters)
{
item.OutputToStream(ss, "Parameters.member.", parametersCount, "");
parametersCount++;
}
}
if(m_capabilitiesHasBeenSet)
{
unsigned capabilitiesCount = 1;
for(auto& item : m_capabilities)
{
ss << "Capabilities.member." << capabilitiesCount << "="
<< StringUtils::URLEncode(CapabilityMapper::GetNameForCapability(item).c_str()) << "&";
capabilitiesCount++;
}
}
if(m_tagsHasBeenSet)
{
unsigned tagsCount = 1;
for(auto& item : m_tags)
{
item.OutputToStream(ss, "Tags.member.", tagsCount, "");
tagsCount++;
}
}
if(m_operationPreferencesHasBeenSet)
{
m_operationPreferences.OutputToStream(ss, "OperationPreferences");
}
if(m_administrationRoleARNHasBeenSet)
{
ss << "AdministrationRoleARN=" << StringUtils::URLEncode(m_administrationRoleARN.c_str()) << "&";
}
if(m_executionRoleNameHasBeenSet)
{
ss << "ExecutionRoleName=" << StringUtils::URLEncode(m_executionRoleName.c_str()) << "&";
}
if(m_deploymentTargetsHasBeenSet)
{
m_deploymentTargets.OutputToStream(ss, "DeploymentTargets");
}
if(m_permissionModelHasBeenSet)
{
ss << "PermissionModel=" << PermissionModelsMapper::GetNameForPermissionModels(m_permissionModel) << "&";
}
if(m_autoDeploymentHasBeenSet)
{
m_autoDeployment.OutputToStream(ss, "AutoDeployment");
}
if(m_operationIdHasBeenSet)
{
ss << "OperationId=" << StringUtils::URLEncode(m_operationId.c_str()) << "&";
}
if(m_accountsHasBeenSet)
{
unsigned accountsCount = 1;
for(auto& item : m_accounts)
{
ss << "Accounts.member." << accountsCount << "="
<< StringUtils::URLEncode(item.c_str()) << "&";
accountsCount++;
}
}
if(m_regionsHasBeenSet)
{
unsigned regionsCount = 1;
for(auto& item : m_regions)
{
ss << "Regions.member." << regionsCount << "="
<< StringUtils::URLEncode(item.c_str()) << "&";
regionsCount++;
}
}
ss << "Version=2010-05-15";
return ss.str();
}
void UpdateStackSetRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
{
uri.SetQueryString(SerializePayload());
}