99 lines
2.2 KiB
C++
99 lines
2.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/networkmanager/model/ValidationException.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace NetworkManager
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
ValidationException::ValidationException() :
|
|
m_messageHasBeenSet(false),
|
|
m_reason(ValidationExceptionReason::NOT_SET),
|
|
m_reasonHasBeenSet(false),
|
|
m_fieldsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
ValidationException::ValidationException(JsonView jsonValue) :
|
|
m_messageHasBeenSet(false),
|
|
m_reason(ValidationExceptionReason::NOT_SET),
|
|
m_reasonHasBeenSet(false),
|
|
m_fieldsHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
ValidationException& ValidationException::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("Message"))
|
|
{
|
|
m_message = jsonValue.GetString("Message");
|
|
|
|
m_messageHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Reason"))
|
|
{
|
|
m_reason = ValidationExceptionReasonMapper::GetValidationExceptionReasonForName(jsonValue.GetString("Reason"));
|
|
|
|
m_reasonHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Fields"))
|
|
{
|
|
Array<JsonView> fieldsJsonList = jsonValue.GetArray("Fields");
|
|
for(unsigned fieldsIndex = 0; fieldsIndex < fieldsJsonList.GetLength(); ++fieldsIndex)
|
|
{
|
|
m_fields.push_back(fieldsJsonList[fieldsIndex].AsObject());
|
|
}
|
|
m_fieldsHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue ValidationException::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_messageHasBeenSet)
|
|
{
|
|
payload.WithString("Message", m_message);
|
|
|
|
}
|
|
|
|
if(m_reasonHasBeenSet)
|
|
{
|
|
payload.WithString("Reason", ValidationExceptionReasonMapper::GetNameForValidationExceptionReason(m_reason));
|
|
}
|
|
|
|
if(m_fieldsHasBeenSet)
|
|
{
|
|
Array<JsonValue> fieldsJsonList(m_fields.size());
|
|
for(unsigned fieldsIndex = 0; fieldsIndex < fieldsJsonList.GetLength(); ++fieldsIndex)
|
|
{
|
|
fieldsJsonList[fieldsIndex].AsObject(m_fields[fieldsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("Fields", std::move(fieldsJsonList));
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace NetworkManager
|
|
} // namespace Aws
|