90 lines
2.1 KiB
C++
90 lines
2.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/fsx/model/CreateDataRepositoryTaskRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::FSx::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
CreateDataRepositoryTaskRequest::CreateDataRepositoryTaskRequest() :
|
|
m_type(DataRepositoryTaskType::NOT_SET),
|
|
m_typeHasBeenSet(false),
|
|
m_pathsHasBeenSet(false),
|
|
m_fileSystemIdHasBeenSet(false),
|
|
m_reportHasBeenSet(false),
|
|
m_clientRequestToken(Aws::Utils::UUID::RandomUUID()),
|
|
m_clientRequestTokenHasBeenSet(true),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String CreateDataRepositoryTaskRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_typeHasBeenSet)
|
|
{
|
|
payload.WithString("Type", DataRepositoryTaskTypeMapper::GetNameForDataRepositoryTaskType(m_type));
|
|
}
|
|
|
|
if(m_pathsHasBeenSet)
|
|
{
|
|
Array<JsonValue> pathsJsonList(m_paths.size());
|
|
for(unsigned pathsIndex = 0; pathsIndex < pathsJsonList.GetLength(); ++pathsIndex)
|
|
{
|
|
pathsJsonList[pathsIndex].AsString(m_paths[pathsIndex]);
|
|
}
|
|
payload.WithArray("Paths", std::move(pathsJsonList));
|
|
|
|
}
|
|
|
|
if(m_fileSystemIdHasBeenSet)
|
|
{
|
|
payload.WithString("FileSystemId", m_fileSystemId);
|
|
|
|
}
|
|
|
|
if(m_reportHasBeenSet)
|
|
{
|
|
payload.WithObject("Report", m_report.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_clientRequestTokenHasBeenSet)
|
|
{
|
|
payload.WithString("ClientRequestToken", m_clientRequestToken);
|
|
|
|
}
|
|
|
|
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.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection CreateDataRepositoryTaskRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSSimbaAPIService_v20180301.CreateDataRepositoryTask"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|