112 lines
2.4 KiB
C++
112 lines
2.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/kafka/model/CreateClusterRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Kafka::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
CreateClusterRequest::CreateClusterRequest() :
|
|
m_brokerNodeGroupInfoHasBeenSet(false),
|
|
m_clientAuthenticationHasBeenSet(false),
|
|
m_clusterNameHasBeenSet(false),
|
|
m_configurationInfoHasBeenSet(false),
|
|
m_encryptionInfoHasBeenSet(false),
|
|
m_enhancedMonitoring(EnhancedMonitoring::NOT_SET),
|
|
m_enhancedMonitoringHasBeenSet(false),
|
|
m_openMonitoringHasBeenSet(false),
|
|
m_kafkaVersionHasBeenSet(false),
|
|
m_loggingInfoHasBeenSet(false),
|
|
m_numberOfBrokerNodes(0),
|
|
m_numberOfBrokerNodesHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String CreateClusterRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_brokerNodeGroupInfoHasBeenSet)
|
|
{
|
|
payload.WithObject("brokerNodeGroupInfo", m_brokerNodeGroupInfo.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_clientAuthenticationHasBeenSet)
|
|
{
|
|
payload.WithObject("clientAuthentication", m_clientAuthentication.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_clusterNameHasBeenSet)
|
|
{
|
|
payload.WithString("clusterName", m_clusterName);
|
|
|
|
}
|
|
|
|
if(m_configurationInfoHasBeenSet)
|
|
{
|
|
payload.WithObject("configurationInfo", m_configurationInfo.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_encryptionInfoHasBeenSet)
|
|
{
|
|
payload.WithObject("encryptionInfo", m_encryptionInfo.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_enhancedMonitoringHasBeenSet)
|
|
{
|
|
payload.WithString("enhancedMonitoring", EnhancedMonitoringMapper::GetNameForEnhancedMonitoring(m_enhancedMonitoring));
|
|
}
|
|
|
|
if(m_openMonitoringHasBeenSet)
|
|
{
|
|
payload.WithObject("openMonitoring", m_openMonitoring.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_kafkaVersionHasBeenSet)
|
|
{
|
|
payload.WithString("kafkaVersion", m_kafkaVersion);
|
|
|
|
}
|
|
|
|
if(m_loggingInfoHasBeenSet)
|
|
{
|
|
payload.WithObject("loggingInfo", m_loggingInfo.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_numberOfBrokerNodesHasBeenSet)
|
|
{
|
|
payload.WithInteger("numberOfBrokerNodes", m_numberOfBrokerNodes);
|
|
|
|
}
|
|
|
|
if(m_tagsHasBeenSet)
|
|
{
|
|
JsonValue tagsJsonMap;
|
|
for(auto& tagsItem : m_tags)
|
|
{
|
|
tagsJsonMap.WithString(tagsItem.first, tagsItem.second);
|
|
}
|
|
payload.WithObject("tags", std::move(tagsJsonMap));
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
|
|
|
|
|