136 lines
2.9 KiB
C++
136 lines
2.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/datapipeline/model/PipelineDescription.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace DataPipeline
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
PipelineDescription::PipelineDescription() :
|
|
m_pipelineIdHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_fieldsHasBeenSet(false),
|
|
m_descriptionHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
PipelineDescription::PipelineDescription(JsonView jsonValue) :
|
|
m_pipelineIdHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_fieldsHasBeenSet(false),
|
|
m_descriptionHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
PipelineDescription& PipelineDescription::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("pipelineId"))
|
|
{
|
|
m_pipelineId = jsonValue.GetString("pipelineId");
|
|
|
|
m_pipelineIdHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("name"))
|
|
{
|
|
m_name = jsonValue.GetString("name");
|
|
|
|
m_nameHasBeenSet = 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;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("description"))
|
|
{
|
|
m_description = jsonValue.GetString("description");
|
|
|
|
m_descriptionHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("tags"))
|
|
{
|
|
Array<JsonView> tagsJsonList = jsonValue.GetArray("tags");
|
|
for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex)
|
|
{
|
|
m_tags.push_back(tagsJsonList[tagsIndex].AsObject());
|
|
}
|
|
m_tagsHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue PipelineDescription::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_pipelineIdHasBeenSet)
|
|
{
|
|
payload.WithString("pipelineId", m_pipelineId);
|
|
|
|
}
|
|
|
|
if(m_nameHasBeenSet)
|
|
{
|
|
payload.WithString("name", m_name);
|
|
|
|
}
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
if(m_descriptionHasBeenSet)
|
|
{
|
|
payload.WithString("description", m_description);
|
|
|
|
}
|
|
|
|
if(m_tagsHasBeenSet)
|
|
{
|
|
Array<JsonValue> tagsJsonList(m_tags.size());
|
|
for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex)
|
|
{
|
|
tagsJsonList[tagsIndex].AsObject(m_tags[tagsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("tags", std::move(tagsJsonList));
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace DataPipeline
|
|
} // namespace Aws
|