146 lines
3.1 KiB
C++
146 lines
3.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/waf/model/ActivatedRule.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace WAF
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
ActivatedRule::ActivatedRule() :
|
|
m_priority(0),
|
|
m_priorityHasBeenSet(false),
|
|
m_ruleIdHasBeenSet(false),
|
|
m_actionHasBeenSet(false),
|
|
m_overrideActionHasBeenSet(false),
|
|
m_type(WafRuleType::NOT_SET),
|
|
m_typeHasBeenSet(false),
|
|
m_excludedRulesHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
ActivatedRule::ActivatedRule(JsonView jsonValue) :
|
|
m_priority(0),
|
|
m_priorityHasBeenSet(false),
|
|
m_ruleIdHasBeenSet(false),
|
|
m_actionHasBeenSet(false),
|
|
m_overrideActionHasBeenSet(false),
|
|
m_type(WafRuleType::NOT_SET),
|
|
m_typeHasBeenSet(false),
|
|
m_excludedRulesHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
ActivatedRule& ActivatedRule::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("Priority"))
|
|
{
|
|
m_priority = jsonValue.GetInteger("Priority");
|
|
|
|
m_priorityHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("RuleId"))
|
|
{
|
|
m_ruleId = jsonValue.GetString("RuleId");
|
|
|
|
m_ruleIdHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Action"))
|
|
{
|
|
m_action = jsonValue.GetObject("Action");
|
|
|
|
m_actionHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("OverrideAction"))
|
|
{
|
|
m_overrideAction = jsonValue.GetObject("OverrideAction");
|
|
|
|
m_overrideActionHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Type"))
|
|
{
|
|
m_type = WafRuleTypeMapper::GetWafRuleTypeForName(jsonValue.GetString("Type"));
|
|
|
|
m_typeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("ExcludedRules"))
|
|
{
|
|
Array<JsonView> excludedRulesJsonList = jsonValue.GetArray("ExcludedRules");
|
|
for(unsigned excludedRulesIndex = 0; excludedRulesIndex < excludedRulesJsonList.GetLength(); ++excludedRulesIndex)
|
|
{
|
|
m_excludedRules.push_back(excludedRulesJsonList[excludedRulesIndex].AsObject());
|
|
}
|
|
m_excludedRulesHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue ActivatedRule::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_priorityHasBeenSet)
|
|
{
|
|
payload.WithInteger("Priority", m_priority);
|
|
|
|
}
|
|
|
|
if(m_ruleIdHasBeenSet)
|
|
{
|
|
payload.WithString("RuleId", m_ruleId);
|
|
|
|
}
|
|
|
|
if(m_actionHasBeenSet)
|
|
{
|
|
payload.WithObject("Action", m_action.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_overrideActionHasBeenSet)
|
|
{
|
|
payload.WithObject("OverrideAction", m_overrideAction.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_typeHasBeenSet)
|
|
{
|
|
payload.WithString("Type", WafRuleTypeMapper::GetNameForWafRuleType(m_type));
|
|
}
|
|
|
|
if(m_excludedRulesHasBeenSet)
|
|
{
|
|
Array<JsonValue> excludedRulesJsonList(m_excludedRules.size());
|
|
for(unsigned excludedRulesIndex = 0; excludedRulesIndex < excludedRulesJsonList.GetLength(); ++excludedRulesIndex)
|
|
{
|
|
excludedRulesJsonList[excludedRulesIndex].AsObject(m_excludedRules[excludedRulesIndex].Jsonize());
|
|
}
|
|
payload.WithArray("ExcludedRules", std::move(excludedRulesJsonList));
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace WAF
|
|
} // namespace Aws
|