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,89 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/wafv2/model/RuleAction.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace WAFV2
{
namespace Model
{
RuleAction::RuleAction() :
m_blockHasBeenSet(false),
m_allowHasBeenSet(false),
m_countHasBeenSet(false)
{
}
RuleAction::RuleAction(JsonView jsonValue) :
m_blockHasBeenSet(false),
m_allowHasBeenSet(false),
m_countHasBeenSet(false)
{
*this = jsonValue;
}
RuleAction& RuleAction::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Block"))
{
m_block = jsonValue.GetObject("Block");
m_blockHasBeenSet = true;
}
if(jsonValue.ValueExists("Allow"))
{
m_allow = jsonValue.GetObject("Allow");
m_allowHasBeenSet = true;
}
if(jsonValue.ValueExists("Count"))
{
m_count = jsonValue.GetObject("Count");
m_countHasBeenSet = true;
}
return *this;
}
JsonValue RuleAction::Jsonize() const
{
JsonValue payload;
if(m_blockHasBeenSet)
{
payload.WithObject("Block", m_block.Jsonize());
}
if(m_allowHasBeenSet)
{
payload.WithObject("Allow", m_allow.Jsonize());
}
if(m_countHasBeenSet)
{
payload.WithObject("Count", m_count.Jsonize());
}
return payload;
}
} // namespace Model
} // namespace WAFV2
} // namespace Aws