126 lines
2.5 KiB
C++
126 lines
2.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/storagegateway/model/AutomaticTapeCreationRule.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace StorageGateway
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
AutomaticTapeCreationRule::AutomaticTapeCreationRule() :
|
|
m_tapeBarcodePrefixHasBeenSet(false),
|
|
m_poolIdHasBeenSet(false),
|
|
m_tapeSizeInBytes(0),
|
|
m_tapeSizeInBytesHasBeenSet(false),
|
|
m_minimumNumTapes(0),
|
|
m_minimumNumTapesHasBeenSet(false),
|
|
m_worm(false),
|
|
m_wormHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
AutomaticTapeCreationRule::AutomaticTapeCreationRule(JsonView jsonValue) :
|
|
m_tapeBarcodePrefixHasBeenSet(false),
|
|
m_poolIdHasBeenSet(false),
|
|
m_tapeSizeInBytes(0),
|
|
m_tapeSizeInBytesHasBeenSet(false),
|
|
m_minimumNumTapes(0),
|
|
m_minimumNumTapesHasBeenSet(false),
|
|
m_worm(false),
|
|
m_wormHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
AutomaticTapeCreationRule& AutomaticTapeCreationRule::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("TapeBarcodePrefix"))
|
|
{
|
|
m_tapeBarcodePrefix = jsonValue.GetString("TapeBarcodePrefix");
|
|
|
|
m_tapeBarcodePrefixHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("PoolId"))
|
|
{
|
|
m_poolId = jsonValue.GetString("PoolId");
|
|
|
|
m_poolIdHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("TapeSizeInBytes"))
|
|
{
|
|
m_tapeSizeInBytes = jsonValue.GetInt64("TapeSizeInBytes");
|
|
|
|
m_tapeSizeInBytesHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("MinimumNumTapes"))
|
|
{
|
|
m_minimumNumTapes = jsonValue.GetInteger("MinimumNumTapes");
|
|
|
|
m_minimumNumTapesHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Worm"))
|
|
{
|
|
m_worm = jsonValue.GetBool("Worm");
|
|
|
|
m_wormHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue AutomaticTapeCreationRule::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_tapeBarcodePrefixHasBeenSet)
|
|
{
|
|
payload.WithString("TapeBarcodePrefix", m_tapeBarcodePrefix);
|
|
|
|
}
|
|
|
|
if(m_poolIdHasBeenSet)
|
|
{
|
|
payload.WithString("PoolId", m_poolId);
|
|
|
|
}
|
|
|
|
if(m_tapeSizeInBytesHasBeenSet)
|
|
{
|
|
payload.WithInt64("TapeSizeInBytes", m_tapeSizeInBytes);
|
|
|
|
}
|
|
|
|
if(m_minimumNumTapesHasBeenSet)
|
|
{
|
|
payload.WithInteger("MinimumNumTapes", m_minimumNumTapes);
|
|
|
|
}
|
|
|
|
if(m_wormHasBeenSet)
|
|
{
|
|
payload.WithBool("Worm", m_worm);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace StorageGateway
|
|
} // namespace Aws
|