/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include 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::PseudoRandomUUID()), m_clientRequestTokenHasBeenSet(true), m_tagsHasBeenSet(false), m_capacityToRelease(0), m_capacityToReleaseHasBeenSet(false) { } Aws::String CreateDataRepositoryTaskRequest::SerializePayload() const { JsonValue payload; if(m_typeHasBeenSet) { payload.WithString("Type", DataRepositoryTaskTypeMapper::GetNameForDataRepositoryTaskType(m_type)); } if(m_pathsHasBeenSet) { Aws::Utils::Array 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) { Aws::Utils::Array 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)); } if(m_capacityToReleaseHasBeenSet) { payload.WithInt64("CapacityToRelease", m_capacityToRelease); } 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; }