99 lines
2.1 KiB
C++
99 lines
2.1 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/eks/model/Issue.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace EKS
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
Issue::Issue() :
|
|||
|
|
m_code(NodegroupIssueCode::NOT_SET),
|
|||
|
|
m_codeHasBeenSet(false),
|
|||
|
|
m_messageHasBeenSet(false),
|
|||
|
|
m_resourceIdsHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Issue::Issue(JsonView jsonValue) :
|
|||
|
|
m_code(NodegroupIssueCode::NOT_SET),
|
|||
|
|
m_codeHasBeenSet(false),
|
|||
|
|
m_messageHasBeenSet(false),
|
|||
|
|
m_resourceIdsHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Issue& Issue::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("code"))
|
|||
|
|
{
|
|||
|
|
m_code = NodegroupIssueCodeMapper::GetNodegroupIssueCodeForName(jsonValue.GetString("code"));
|
|||
|
|
|
|||
|
|
m_codeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("message"))
|
|||
|
|
{
|
|||
|
|
m_message = jsonValue.GetString("message");
|
|||
|
|
|
|||
|
|
m_messageHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("resourceIds"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> resourceIdsJsonList = jsonValue.GetArray("resourceIds");
|
|||
|
|
for(unsigned resourceIdsIndex = 0; resourceIdsIndex < resourceIdsJsonList.GetLength(); ++resourceIdsIndex)
|
|||
|
|
{
|
|||
|
|
m_resourceIds.push_back(resourceIdsJsonList[resourceIdsIndex].AsString());
|
|||
|
|
}
|
|||
|
|
m_resourceIdsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue Issue::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_codeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("code", NodegroupIssueCodeMapper::GetNameForNodegroupIssueCode(m_code));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_messageHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("message", m_message);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_resourceIdsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> resourceIdsJsonList(m_resourceIds.size());
|
|||
|
|
for(unsigned resourceIdsIndex = 0; resourceIdsIndex < resourceIdsJsonList.GetLength(); ++resourceIdsIndex)
|
|||
|
|
{
|
|||
|
|
resourceIdsJsonList[resourceIdsIndex].AsString(m_resourceIds[resourceIdsIndex]);
|
|||
|
|
}
|
|||
|
|
payload.WithArray("resourceIds", std::move(resourceIdsJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace EKS
|
|||
|
|
} // namespace Aws
|