84 lines
2.1 KiB
C++
84 lines
2.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/gamelift/model/UpdateFleetAttributesRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::GameLift::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
UpdateFleetAttributesRequest::UpdateFleetAttributesRequest() :
|
|
m_fleetIdHasBeenSet(false),
|
|
m_nameHasBeenSet(false),
|
|
m_descriptionHasBeenSet(false),
|
|
m_newGameSessionProtectionPolicy(ProtectionPolicy::NOT_SET),
|
|
m_newGameSessionProtectionPolicyHasBeenSet(false),
|
|
m_resourceCreationLimitPolicyHasBeenSet(false),
|
|
m_metricGroupsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String UpdateFleetAttributesRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_fleetIdHasBeenSet)
|
|
{
|
|
payload.WithString("FleetId", m_fleetId);
|
|
|
|
}
|
|
|
|
if(m_nameHasBeenSet)
|
|
{
|
|
payload.WithString("Name", m_name);
|
|
|
|
}
|
|
|
|
if(m_descriptionHasBeenSet)
|
|
{
|
|
payload.WithString("Description", m_description);
|
|
|
|
}
|
|
|
|
if(m_newGameSessionProtectionPolicyHasBeenSet)
|
|
{
|
|
payload.WithString("NewGameSessionProtectionPolicy", ProtectionPolicyMapper::GetNameForProtectionPolicy(m_newGameSessionProtectionPolicy));
|
|
}
|
|
|
|
if(m_resourceCreationLimitPolicyHasBeenSet)
|
|
{
|
|
payload.WithObject("ResourceCreationLimitPolicy", m_resourceCreationLimitPolicy.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_metricGroupsHasBeenSet)
|
|
{
|
|
Array<JsonValue> metricGroupsJsonList(m_metricGroups.size());
|
|
for(unsigned metricGroupsIndex = 0; metricGroupsIndex < metricGroupsJsonList.GetLength(); ++metricGroupsIndex)
|
|
{
|
|
metricGroupsJsonList[metricGroupsIndex].AsString(m_metricGroups[metricGroupsIndex]);
|
|
}
|
|
payload.WithArray("MetricGroups", std::move(metricGroupsJsonList));
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection UpdateFleetAttributesRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "GameLift.UpdateFleetAttributes"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|