feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,104 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/redshift/model/ClusterParameterStatus.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
{
ClusterParameterStatus::ClusterParameterStatus() :
m_parameterNameHasBeenSet(false),
m_parameterApplyStatusHasBeenSet(false),
m_parameterApplyErrorDescriptionHasBeenSet(false)
{
}
ClusterParameterStatus::ClusterParameterStatus(const XmlNode& xmlNode) :
m_parameterNameHasBeenSet(false),
m_parameterApplyStatusHasBeenSet(false),
m_parameterApplyErrorDescriptionHasBeenSet(false)
{
*this = xmlNode;
}
ClusterParameterStatus& ClusterParameterStatus::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode parameterNameNode = resultNode.FirstChild("ParameterName");
if(!parameterNameNode.IsNull())
{
m_parameterName = Aws::Utils::Xml::DecodeEscapedXmlText(parameterNameNode.GetText());
m_parameterNameHasBeenSet = true;
}
XmlNode parameterApplyStatusNode = resultNode.FirstChild("ParameterApplyStatus");
if(!parameterApplyStatusNode.IsNull())
{
m_parameterApplyStatus = Aws::Utils::Xml::DecodeEscapedXmlText(parameterApplyStatusNode.GetText());
m_parameterApplyStatusHasBeenSet = true;
}
XmlNode parameterApplyErrorDescriptionNode = resultNode.FirstChild("ParameterApplyErrorDescription");
if(!parameterApplyErrorDescriptionNode.IsNull())
{
m_parameterApplyErrorDescription = Aws::Utils::Xml::DecodeEscapedXmlText(parameterApplyErrorDescriptionNode.GetText());
m_parameterApplyErrorDescriptionHasBeenSet = true;
}
}
return *this;
}
void ClusterParameterStatus::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_parameterNameHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterName=" << StringUtils::URLEncode(m_parameterName.c_str()) << "&";
}
if(m_parameterApplyStatusHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterApplyStatus=" << StringUtils::URLEncode(m_parameterApplyStatus.c_str()) << "&";
}
if(m_parameterApplyErrorDescriptionHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterApplyErrorDescription=" << StringUtils::URLEncode(m_parameterApplyErrorDescription.c_str()) << "&";
}
}
void ClusterParameterStatus::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_parameterNameHasBeenSet)
{
oStream << location << ".ParameterName=" << StringUtils::URLEncode(m_parameterName.c_str()) << "&";
}
if(m_parameterApplyStatusHasBeenSet)
{
oStream << location << ".ParameterApplyStatus=" << StringUtils::URLEncode(m_parameterApplyStatus.c_str()) << "&";
}
if(m_parameterApplyErrorDescriptionHasBeenSet)
{
oStream << location << ".ParameterApplyErrorDescription=" << StringUtils::URLEncode(m_parameterApplyErrorDescription.c_str()) << "&";
}
}
} // namespace Model
} // namespace Redshift
} // namespace Aws