72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/rds/model/DescribeOptionGroupsRequest.h>
|
|
#include <aws/core/utils/StringUtils.h>
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|
|
|
using namespace Aws::RDS::Model;
|
|
using namespace Aws::Utils;
|
|
|
|
DescribeOptionGroupsRequest::DescribeOptionGroupsRequest() :
|
|
m_optionGroupNameHasBeenSet(false),
|
|
m_filtersHasBeenSet(false),
|
|
m_markerHasBeenSet(false),
|
|
m_maxRecords(0),
|
|
m_maxRecordsHasBeenSet(false),
|
|
m_engineNameHasBeenSet(false),
|
|
m_majorEngineVersionHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String DescribeOptionGroupsRequest::SerializePayload() const
|
|
{
|
|
Aws::StringStream ss;
|
|
ss << "Action=DescribeOptionGroups&";
|
|
if(m_optionGroupNameHasBeenSet)
|
|
{
|
|
ss << "OptionGroupName=" << StringUtils::URLEncode(m_optionGroupName.c_str()) << "&";
|
|
}
|
|
|
|
if(m_filtersHasBeenSet)
|
|
{
|
|
unsigned filtersCount = 1;
|
|
for(auto& item : m_filters)
|
|
{
|
|
item.OutputToStream(ss, "Filters.member.", filtersCount, "");
|
|
filtersCount++;
|
|
}
|
|
}
|
|
|
|
if(m_markerHasBeenSet)
|
|
{
|
|
ss << "Marker=" << StringUtils::URLEncode(m_marker.c_str()) << "&";
|
|
}
|
|
|
|
if(m_maxRecordsHasBeenSet)
|
|
{
|
|
ss << "MaxRecords=" << m_maxRecords << "&";
|
|
}
|
|
|
|
if(m_engineNameHasBeenSet)
|
|
{
|
|
ss << "EngineName=" << StringUtils::URLEncode(m_engineName.c_str()) << "&";
|
|
}
|
|
|
|
if(m_majorEngineVersionHasBeenSet)
|
|
{
|
|
ss << "MajorEngineVersion=" << StringUtils::URLEncode(m_majorEngineVersion.c_str()) << "&";
|
|
}
|
|
|
|
ss << "Version=2014-10-31";
|
|
return ss.str();
|
|
}
|
|
|
|
|
|
void DescribeOptionGroupsRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
|
|
{
|
|
uri.SetQueryString(SerializePayload());
|
|
}
|