123 lines
4.1 KiB
C++
123 lines
4.1 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/redshift/model/ClusterParameterGroupStatus.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 Redshift
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
ClusterParameterGroupStatus::ClusterParameterGroupStatus() :
|
|||
|
|
m_parameterGroupNameHasBeenSet(false),
|
|||
|
|
m_parameterApplyStatusHasBeenSet(false),
|
|||
|
|
m_clusterParameterStatusListHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
ClusterParameterGroupStatus::ClusterParameterGroupStatus(const XmlNode& xmlNode) :
|
|||
|
|
m_parameterGroupNameHasBeenSet(false),
|
|||
|
|
m_parameterApplyStatusHasBeenSet(false),
|
|||
|
|
m_clusterParameterStatusListHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = xmlNode;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
ClusterParameterGroupStatus& ClusterParameterGroupStatus::operator =(const XmlNode& xmlNode)
|
|||
|
|
{
|
|||
|
|
XmlNode resultNode = xmlNode;
|
|||
|
|
|
|||
|
|
if(!resultNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode parameterGroupNameNode = resultNode.FirstChild("ParameterGroupName");
|
|||
|
|
if(!parameterGroupNameNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_parameterGroupName = Aws::Utils::Xml::DecodeEscapedXmlText(parameterGroupNameNode.GetText());
|
|||
|
|
m_parameterGroupNameHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode parameterApplyStatusNode = resultNode.FirstChild("ParameterApplyStatus");
|
|||
|
|
if(!parameterApplyStatusNode.IsNull())
|
|||
|
|
{
|
|||
|
|
m_parameterApplyStatus = Aws::Utils::Xml::DecodeEscapedXmlText(parameterApplyStatusNode.GetText());
|
|||
|
|
m_parameterApplyStatusHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
XmlNode clusterParameterStatusListNode = resultNode.FirstChild("ClusterParameterStatusList");
|
|||
|
|
if(!clusterParameterStatusListNode.IsNull())
|
|||
|
|
{
|
|||
|
|
XmlNode clusterParameterStatusListMember = clusterParameterStatusListNode.FirstChild("member");
|
|||
|
|
while(!clusterParameterStatusListMember.IsNull())
|
|||
|
|
{
|
|||
|
|
m_clusterParameterStatusList.push_back(clusterParameterStatusListMember);
|
|||
|
|
clusterParameterStatusListMember = clusterParameterStatusListMember.NextNode("member");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
m_clusterParameterStatusListHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void ClusterParameterGroupStatus::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|||
|
|
{
|
|||
|
|
if(m_parameterGroupNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".ParameterGroupName=" << StringUtils::URLEncode(m_parameterGroupName.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_parameterApplyStatusHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << index << locationValue << ".ParameterApplyStatus=" << StringUtils::URLEncode(m_parameterApplyStatus.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_clusterParameterStatusListHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned clusterParameterStatusListIdx = 1;
|
|||
|
|
for(auto& item : m_clusterParameterStatusList)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream clusterParameterStatusListSs;
|
|||
|
|
clusterParameterStatusListSs << location << index << locationValue << ".ClusterParameterStatusList.member." << clusterParameterStatusListIdx++;
|
|||
|
|
item.OutputToStream(oStream, clusterParameterStatusListSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void ClusterParameterGroupStatus::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|||
|
|
{
|
|||
|
|
if(m_parameterGroupNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".ParameterGroupName=" << StringUtils::URLEncode(m_parameterGroupName.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_parameterApplyStatusHasBeenSet)
|
|||
|
|
{
|
|||
|
|
oStream << location << ".ParameterApplyStatus=" << StringUtils::URLEncode(m_parameterApplyStatus.c_str()) << "&";
|
|||
|
|
}
|
|||
|
|
if(m_clusterParameterStatusListHasBeenSet)
|
|||
|
|
{
|
|||
|
|
unsigned clusterParameterStatusListIdx = 1;
|
|||
|
|
for(auto& item : m_clusterParameterStatusList)
|
|||
|
|
{
|
|||
|
|
Aws::StringStream clusterParameterStatusListSs;
|
|||
|
|
clusterParameterStatusListSs << location << ".ClusterParameterStatusList.member." << clusterParameterStatusListIdx++;
|
|||
|
|
item.OutputToStream(oStream, clusterParameterStatusListSs.str().c_str());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Redshift
|
|||
|
|
} // namespace Aws
|