103 lines
2.0 KiB
C++
103 lines
2.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/synthetics/model/RuntimeVersion.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Synthetics
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
RuntimeVersion::RuntimeVersion() :
|
|
m_versionNameHasBeenSet(false),
|
|
m_descriptionHasBeenSet(false),
|
|
m_releaseDateHasBeenSet(false),
|
|
m_deprecationDateHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
RuntimeVersion::RuntimeVersion(JsonView jsonValue) :
|
|
m_versionNameHasBeenSet(false),
|
|
m_descriptionHasBeenSet(false),
|
|
m_releaseDateHasBeenSet(false),
|
|
m_deprecationDateHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
RuntimeVersion& RuntimeVersion::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("VersionName"))
|
|
{
|
|
m_versionName = jsonValue.GetString("VersionName");
|
|
|
|
m_versionNameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Description"))
|
|
{
|
|
m_description = jsonValue.GetString("Description");
|
|
|
|
m_descriptionHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("ReleaseDate"))
|
|
{
|
|
m_releaseDate = jsonValue.GetDouble("ReleaseDate");
|
|
|
|
m_releaseDateHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("DeprecationDate"))
|
|
{
|
|
m_deprecationDate = jsonValue.GetDouble("DeprecationDate");
|
|
|
|
m_deprecationDateHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue RuntimeVersion::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_versionNameHasBeenSet)
|
|
{
|
|
payload.WithString("VersionName", m_versionName);
|
|
|
|
}
|
|
|
|
if(m_descriptionHasBeenSet)
|
|
{
|
|
payload.WithString("Description", m_description);
|
|
|
|
}
|
|
|
|
if(m_releaseDateHasBeenSet)
|
|
{
|
|
payload.WithDouble("ReleaseDate", m_releaseDate.SecondsWithMSPrecision());
|
|
}
|
|
|
|
if(m_deprecationDateHasBeenSet)
|
|
{
|
|
payload.WithDouble("DeprecationDate", m_deprecationDate.SecondsWithMSPrecision());
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace Synthetics
|
|
} // namespace Aws
|