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,121 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/rds/model/EC2SecurityGroup.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 RDS
{
namespace Model
{
EC2SecurityGroup::EC2SecurityGroup() :
m_statusHasBeenSet(false),
m_eC2SecurityGroupNameHasBeenSet(false),
m_eC2SecurityGroupIdHasBeenSet(false),
m_eC2SecurityGroupOwnerIdHasBeenSet(false)
{
}
EC2SecurityGroup::EC2SecurityGroup(const XmlNode& xmlNode) :
m_statusHasBeenSet(false),
m_eC2SecurityGroupNameHasBeenSet(false),
m_eC2SecurityGroupIdHasBeenSet(false),
m_eC2SecurityGroupOwnerIdHasBeenSet(false)
{
*this = xmlNode;
}
EC2SecurityGroup& EC2SecurityGroup::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode statusNode = resultNode.FirstChild("Status");
if(!statusNode.IsNull())
{
m_status = Aws::Utils::Xml::DecodeEscapedXmlText(statusNode.GetText());
m_statusHasBeenSet = true;
}
XmlNode eC2SecurityGroupNameNode = resultNode.FirstChild("EC2SecurityGroupName");
if(!eC2SecurityGroupNameNode.IsNull())
{
m_eC2SecurityGroupName = Aws::Utils::Xml::DecodeEscapedXmlText(eC2SecurityGroupNameNode.GetText());
m_eC2SecurityGroupNameHasBeenSet = true;
}
XmlNode eC2SecurityGroupIdNode = resultNode.FirstChild("EC2SecurityGroupId");
if(!eC2SecurityGroupIdNode.IsNull())
{
m_eC2SecurityGroupId = Aws::Utils::Xml::DecodeEscapedXmlText(eC2SecurityGroupIdNode.GetText());
m_eC2SecurityGroupIdHasBeenSet = true;
}
XmlNode eC2SecurityGroupOwnerIdNode = resultNode.FirstChild("EC2SecurityGroupOwnerId");
if(!eC2SecurityGroupOwnerIdNode.IsNull())
{
m_eC2SecurityGroupOwnerId = Aws::Utils::Xml::DecodeEscapedXmlText(eC2SecurityGroupOwnerIdNode.GetText());
m_eC2SecurityGroupOwnerIdHasBeenSet = true;
}
}
return *this;
}
void EC2SecurityGroup::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_statusHasBeenSet)
{
oStream << location << index << locationValue << ".Status=" << StringUtils::URLEncode(m_status.c_str()) << "&";
}
if(m_eC2SecurityGroupNameHasBeenSet)
{
oStream << location << index << locationValue << ".EC2SecurityGroupName=" << StringUtils::URLEncode(m_eC2SecurityGroupName.c_str()) << "&";
}
if(m_eC2SecurityGroupIdHasBeenSet)
{
oStream << location << index << locationValue << ".EC2SecurityGroupId=" << StringUtils::URLEncode(m_eC2SecurityGroupId.c_str()) << "&";
}
if(m_eC2SecurityGroupOwnerIdHasBeenSet)
{
oStream << location << index << locationValue << ".EC2SecurityGroupOwnerId=" << StringUtils::URLEncode(m_eC2SecurityGroupOwnerId.c_str()) << "&";
}
}
void EC2SecurityGroup::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_statusHasBeenSet)
{
oStream << location << ".Status=" << StringUtils::URLEncode(m_status.c_str()) << "&";
}
if(m_eC2SecurityGroupNameHasBeenSet)
{
oStream << location << ".EC2SecurityGroupName=" << StringUtils::URLEncode(m_eC2SecurityGroupName.c_str()) << "&";
}
if(m_eC2SecurityGroupIdHasBeenSet)
{
oStream << location << ".EC2SecurityGroupId=" << StringUtils::URLEncode(m_eC2SecurityGroupId.c_str()) << "&";
}
if(m_eC2SecurityGroupOwnerIdHasBeenSet)
{
oStream << location << ".EC2SecurityGroupOwnerId=" << StringUtils::URLEncode(m_eC2SecurityGroupOwnerId.c_str()) << "&";
}
}
} // namespace Model
} // namespace RDS
} // namespace Aws