This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-gamelift/source/model/FleetAttributes.cpp

417 lines
11 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/gamelift/model/FleetAttributes.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace GameLift
{
namespace Model
{
FleetAttributes::FleetAttributes() :
m_fleetIdHasBeenSet(false),
m_fleetArnHasBeenSet(false),
m_fleetType(FleetType::NOT_SET),
m_fleetTypeHasBeenSet(false),
m_instanceType(EC2InstanceType::NOT_SET),
m_instanceTypeHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_nameHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_terminationTimeHasBeenSet(false),
m_status(FleetStatus::NOT_SET),
m_statusHasBeenSet(false),
m_buildIdHasBeenSet(false),
m_buildArnHasBeenSet(false),
m_scriptIdHasBeenSet(false),
m_scriptArnHasBeenSet(false),
m_serverLaunchPathHasBeenSet(false),
m_serverLaunchParametersHasBeenSet(false),
m_logPathsHasBeenSet(false),
m_newGameSessionProtectionPolicy(ProtectionPolicy::NOT_SET),
m_newGameSessionProtectionPolicyHasBeenSet(false),
m_operatingSystem(OperatingSystem::NOT_SET),
m_operatingSystemHasBeenSet(false),
m_resourceCreationLimitPolicyHasBeenSet(false),
m_metricGroupsHasBeenSet(false),
m_stoppedActionsHasBeenSet(false),
m_instanceRoleArnHasBeenSet(false),
m_certificateConfigurationHasBeenSet(false)
{
}
FleetAttributes::FleetAttributes(JsonView jsonValue) :
m_fleetIdHasBeenSet(false),
m_fleetArnHasBeenSet(false),
m_fleetType(FleetType::NOT_SET),
m_fleetTypeHasBeenSet(false),
m_instanceType(EC2InstanceType::NOT_SET),
m_instanceTypeHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_nameHasBeenSet(false),
m_creationTimeHasBeenSet(false),
m_terminationTimeHasBeenSet(false),
m_status(FleetStatus::NOT_SET),
m_statusHasBeenSet(false),
m_buildIdHasBeenSet(false),
m_buildArnHasBeenSet(false),
m_scriptIdHasBeenSet(false),
m_scriptArnHasBeenSet(false),
m_serverLaunchPathHasBeenSet(false),
m_serverLaunchParametersHasBeenSet(false),
m_logPathsHasBeenSet(false),
m_newGameSessionProtectionPolicy(ProtectionPolicy::NOT_SET),
m_newGameSessionProtectionPolicyHasBeenSet(false),
m_operatingSystem(OperatingSystem::NOT_SET),
m_operatingSystemHasBeenSet(false),
m_resourceCreationLimitPolicyHasBeenSet(false),
m_metricGroupsHasBeenSet(false),
m_stoppedActionsHasBeenSet(false),
m_instanceRoleArnHasBeenSet(false),
m_certificateConfigurationHasBeenSet(false)
{
*this = jsonValue;
}
FleetAttributes& FleetAttributes::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("FleetId"))
{
m_fleetId = jsonValue.GetString("FleetId");
m_fleetIdHasBeenSet = true;
}
if(jsonValue.ValueExists("FleetArn"))
{
m_fleetArn = jsonValue.GetString("FleetArn");
m_fleetArnHasBeenSet = true;
}
if(jsonValue.ValueExists("FleetType"))
{
m_fleetType = FleetTypeMapper::GetFleetTypeForName(jsonValue.GetString("FleetType"));
m_fleetTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("InstanceType"))
{
m_instanceType = EC2InstanceTypeMapper::GetEC2InstanceTypeForName(jsonValue.GetString("InstanceType"));
m_instanceTypeHasBeenSet = true;
}
if(jsonValue.ValueExists("Description"))
{
m_description = jsonValue.GetString("Description");
m_descriptionHasBeenSet = true;
}
if(jsonValue.ValueExists("Name"))
{
m_name = jsonValue.GetString("Name");
m_nameHasBeenSet = true;
}
if(jsonValue.ValueExists("CreationTime"))
{
m_creationTime = jsonValue.GetDouble("CreationTime");
m_creationTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("TerminationTime"))
{
m_terminationTime = jsonValue.GetDouble("TerminationTime");
m_terminationTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("Status"))
{
m_status = FleetStatusMapper::GetFleetStatusForName(jsonValue.GetString("Status"));
m_statusHasBeenSet = true;
}
if(jsonValue.ValueExists("BuildId"))
{
m_buildId = jsonValue.GetString("BuildId");
m_buildIdHasBeenSet = true;
}
if(jsonValue.ValueExists("BuildArn"))
{
m_buildArn = jsonValue.GetString("BuildArn");
m_buildArnHasBeenSet = true;
}
if(jsonValue.ValueExists("ScriptId"))
{
m_scriptId = jsonValue.GetString("ScriptId");
m_scriptIdHasBeenSet = true;
}
if(jsonValue.ValueExists("ScriptArn"))
{
m_scriptArn = jsonValue.GetString("ScriptArn");
m_scriptArnHasBeenSet = true;
}
if(jsonValue.ValueExists("ServerLaunchPath"))
{
m_serverLaunchPath = jsonValue.GetString("ServerLaunchPath");
m_serverLaunchPathHasBeenSet = true;
}
if(jsonValue.ValueExists("ServerLaunchParameters"))
{
m_serverLaunchParameters = jsonValue.GetString("ServerLaunchParameters");
m_serverLaunchParametersHasBeenSet = true;
}
if(jsonValue.ValueExists("LogPaths"))
{
Array<JsonView> logPathsJsonList = jsonValue.GetArray("LogPaths");
for(unsigned logPathsIndex = 0; logPathsIndex < logPathsJsonList.GetLength(); ++logPathsIndex)
{
m_logPaths.push_back(logPathsJsonList[logPathsIndex].AsString());
}
m_logPathsHasBeenSet = true;
}
if(jsonValue.ValueExists("NewGameSessionProtectionPolicy"))
{
m_newGameSessionProtectionPolicy = ProtectionPolicyMapper::GetProtectionPolicyForName(jsonValue.GetString("NewGameSessionProtectionPolicy"));
m_newGameSessionProtectionPolicyHasBeenSet = true;
}
if(jsonValue.ValueExists("OperatingSystem"))
{
m_operatingSystem = OperatingSystemMapper::GetOperatingSystemForName(jsonValue.GetString("OperatingSystem"));
m_operatingSystemHasBeenSet = true;
}
if(jsonValue.ValueExists("ResourceCreationLimitPolicy"))
{
m_resourceCreationLimitPolicy = jsonValue.GetObject("ResourceCreationLimitPolicy");
m_resourceCreationLimitPolicyHasBeenSet = true;
}
if(jsonValue.ValueExists("MetricGroups"))
{
Array<JsonView> metricGroupsJsonList = jsonValue.GetArray("MetricGroups");
for(unsigned metricGroupsIndex = 0; metricGroupsIndex < metricGroupsJsonList.GetLength(); ++metricGroupsIndex)
{
m_metricGroups.push_back(metricGroupsJsonList[metricGroupsIndex].AsString());
}
m_metricGroupsHasBeenSet = true;
}
if(jsonValue.ValueExists("StoppedActions"))
{
Array<JsonView> stoppedActionsJsonList = jsonValue.GetArray("StoppedActions");
for(unsigned stoppedActionsIndex = 0; stoppedActionsIndex < stoppedActionsJsonList.GetLength(); ++stoppedActionsIndex)
{
m_stoppedActions.push_back(FleetActionMapper::GetFleetActionForName(stoppedActionsJsonList[stoppedActionsIndex].AsString()));
}
m_stoppedActionsHasBeenSet = true;
}
if(jsonValue.ValueExists("InstanceRoleArn"))
{
m_instanceRoleArn = jsonValue.GetString("InstanceRoleArn");
m_instanceRoleArnHasBeenSet = true;
}
if(jsonValue.ValueExists("CertificateConfiguration"))
{
m_certificateConfiguration = jsonValue.GetObject("CertificateConfiguration");
m_certificateConfigurationHasBeenSet = true;
}
return *this;
}
JsonValue FleetAttributes::Jsonize() const
{
JsonValue payload;
if(m_fleetIdHasBeenSet)
{
payload.WithString("FleetId", m_fleetId);
}
if(m_fleetArnHasBeenSet)
{
payload.WithString("FleetArn", m_fleetArn);
}
if(m_fleetTypeHasBeenSet)
{
payload.WithString("FleetType", FleetTypeMapper::GetNameForFleetType(m_fleetType));
}
if(m_instanceTypeHasBeenSet)
{
payload.WithString("InstanceType", EC2InstanceTypeMapper::GetNameForEC2InstanceType(m_instanceType));
}
if(m_descriptionHasBeenSet)
{
payload.WithString("Description", m_description);
}
if(m_nameHasBeenSet)
{
payload.WithString("Name", m_name);
}
if(m_creationTimeHasBeenSet)
{
payload.WithDouble("CreationTime", m_creationTime.SecondsWithMSPrecision());
}
if(m_terminationTimeHasBeenSet)
{
payload.WithDouble("TerminationTime", m_terminationTime.SecondsWithMSPrecision());
}
if(m_statusHasBeenSet)
{
payload.WithString("Status", FleetStatusMapper::GetNameForFleetStatus(m_status));
}
if(m_buildIdHasBeenSet)
{
payload.WithString("BuildId", m_buildId);
}
if(m_buildArnHasBeenSet)
{
payload.WithString("BuildArn", m_buildArn);
}
if(m_scriptIdHasBeenSet)
{
payload.WithString("ScriptId", m_scriptId);
}
if(m_scriptArnHasBeenSet)
{
payload.WithString("ScriptArn", m_scriptArn);
}
if(m_serverLaunchPathHasBeenSet)
{
payload.WithString("ServerLaunchPath", m_serverLaunchPath);
}
if(m_serverLaunchParametersHasBeenSet)
{
payload.WithString("ServerLaunchParameters", m_serverLaunchParameters);
}
if(m_logPathsHasBeenSet)
{
Array<JsonValue> logPathsJsonList(m_logPaths.size());
for(unsigned logPathsIndex = 0; logPathsIndex < logPathsJsonList.GetLength(); ++logPathsIndex)
{
logPathsJsonList[logPathsIndex].AsString(m_logPaths[logPathsIndex]);
}
payload.WithArray("LogPaths", std::move(logPathsJsonList));
}
if(m_newGameSessionProtectionPolicyHasBeenSet)
{
payload.WithString("NewGameSessionProtectionPolicy", ProtectionPolicyMapper::GetNameForProtectionPolicy(m_newGameSessionProtectionPolicy));
}
if(m_operatingSystemHasBeenSet)
{
payload.WithString("OperatingSystem", OperatingSystemMapper::GetNameForOperatingSystem(m_operatingSystem));
}
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));
}
if(m_stoppedActionsHasBeenSet)
{
Array<JsonValue> stoppedActionsJsonList(m_stoppedActions.size());
for(unsigned stoppedActionsIndex = 0; stoppedActionsIndex < stoppedActionsJsonList.GetLength(); ++stoppedActionsIndex)
{
stoppedActionsJsonList[stoppedActionsIndex].AsString(FleetActionMapper::GetNameForFleetAction(m_stoppedActions[stoppedActionsIndex]));
}
payload.WithArray("StoppedActions", std::move(stoppedActionsJsonList));
}
if(m_instanceRoleArnHasBeenSet)
{
payload.WithString("InstanceRoleArn", m_instanceRoleArn);
}
if(m_certificateConfigurationHasBeenSet)
{
payload.WithObject("CertificateConfiguration", m_certificateConfiguration.Jsonize());
}
return payload;
}
} // namespace Model
} // namespace GameLift
} // namespace Aws