124 lines
3.2 KiB
C++
124 lines
3.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/fsx/model/CreateFileSystemRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::FSx::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
CreateFileSystemRequest::CreateFileSystemRequest() :
|
|
m_clientRequestToken(Aws::Utils::UUID::RandomUUID()),
|
|
m_clientRequestTokenHasBeenSet(true),
|
|
m_fileSystemType(FileSystemType::NOT_SET),
|
|
m_fileSystemTypeHasBeenSet(false),
|
|
m_storageCapacity(0),
|
|
m_storageCapacityHasBeenSet(false),
|
|
m_storageType(StorageType::NOT_SET),
|
|
m_storageTypeHasBeenSet(false),
|
|
m_subnetIdsHasBeenSet(false),
|
|
m_securityGroupIdsHasBeenSet(false),
|
|
m_tagsHasBeenSet(false),
|
|
m_kmsKeyIdHasBeenSet(false),
|
|
m_windowsConfigurationHasBeenSet(false),
|
|
m_lustreConfigurationHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String CreateFileSystemRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_clientRequestTokenHasBeenSet)
|
|
{
|
|
payload.WithString("ClientRequestToken", m_clientRequestToken);
|
|
|
|
}
|
|
|
|
if(m_fileSystemTypeHasBeenSet)
|
|
{
|
|
payload.WithString("FileSystemType", FileSystemTypeMapper::GetNameForFileSystemType(m_fileSystemType));
|
|
}
|
|
|
|
if(m_storageCapacityHasBeenSet)
|
|
{
|
|
payload.WithInteger("StorageCapacity", m_storageCapacity);
|
|
|
|
}
|
|
|
|
if(m_storageTypeHasBeenSet)
|
|
{
|
|
payload.WithString("StorageType", StorageTypeMapper::GetNameForStorageType(m_storageType));
|
|
}
|
|
|
|
if(m_subnetIdsHasBeenSet)
|
|
{
|
|
Array<JsonValue> subnetIdsJsonList(m_subnetIds.size());
|
|
for(unsigned subnetIdsIndex = 0; subnetIdsIndex < subnetIdsJsonList.GetLength(); ++subnetIdsIndex)
|
|
{
|
|
subnetIdsJsonList[subnetIdsIndex].AsString(m_subnetIds[subnetIdsIndex]);
|
|
}
|
|
payload.WithArray("SubnetIds", std::move(subnetIdsJsonList));
|
|
|
|
}
|
|
|
|
if(m_securityGroupIdsHasBeenSet)
|
|
{
|
|
Array<JsonValue> securityGroupIdsJsonList(m_securityGroupIds.size());
|
|
for(unsigned securityGroupIdsIndex = 0; securityGroupIdsIndex < securityGroupIdsJsonList.GetLength(); ++securityGroupIdsIndex)
|
|
{
|
|
securityGroupIdsJsonList[securityGroupIdsIndex].AsString(m_securityGroupIds[securityGroupIdsIndex]);
|
|
}
|
|
payload.WithArray("SecurityGroupIds", std::move(securityGroupIdsJsonList));
|
|
|
|
}
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
if(m_kmsKeyIdHasBeenSet)
|
|
{
|
|
payload.WithString("KmsKeyId", m_kmsKeyId);
|
|
|
|
}
|
|
|
|
if(m_windowsConfigurationHasBeenSet)
|
|
{
|
|
payload.WithObject("WindowsConfiguration", m_windowsConfiguration.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_lustreConfigurationHasBeenSet)
|
|
{
|
|
payload.WithObject("LustreConfiguration", m_lustreConfiguration.Jsonize());
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection CreateFileSystemRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSSimbaAPIService_v20180301.CreateFileSystem"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|