96 lines
1.7 KiB
C++
96 lines
1.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/batch/model/NodePropertiesSummary.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Batch
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
NodePropertiesSummary::NodePropertiesSummary() :
|
|
m_isMainNode(false),
|
|
m_isMainNodeHasBeenSet(false),
|
|
m_numNodes(0),
|
|
m_numNodesHasBeenSet(false),
|
|
m_nodeIndex(0),
|
|
m_nodeIndexHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
NodePropertiesSummary::NodePropertiesSummary(JsonView jsonValue) :
|
|
m_isMainNode(false),
|
|
m_isMainNodeHasBeenSet(false),
|
|
m_numNodes(0),
|
|
m_numNodesHasBeenSet(false),
|
|
m_nodeIndex(0),
|
|
m_nodeIndexHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
NodePropertiesSummary& NodePropertiesSummary::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("isMainNode"))
|
|
{
|
|
m_isMainNode = jsonValue.GetBool("isMainNode");
|
|
|
|
m_isMainNodeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("numNodes"))
|
|
{
|
|
m_numNodes = jsonValue.GetInteger("numNodes");
|
|
|
|
m_numNodesHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("nodeIndex"))
|
|
{
|
|
m_nodeIndex = jsonValue.GetInteger("nodeIndex");
|
|
|
|
m_nodeIndexHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue NodePropertiesSummary::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_isMainNodeHasBeenSet)
|
|
{
|
|
payload.WithBool("isMainNode", m_isMainNode);
|
|
|
|
}
|
|
|
|
if(m_numNodesHasBeenSet)
|
|
{
|
|
payload.WithInteger("numNodes", m_numNodes);
|
|
|
|
}
|
|
|
|
if(m_nodeIndexHasBeenSet)
|
|
{
|
|
payload.WithInteger("nodeIndex", m_nodeIndex);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace Batch
|
|
} // namespace Aws
|