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-ssm/source/model/CommandStatus.cpp

106 lines
3.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/ssm/model/CommandStatus.h>
#include <aws/core/utils/HashingUtils.h>
#include <aws/core/Globals.h>
#include <aws/core/utils/EnumParseOverflowContainer.h>
using namespace Aws::Utils;
namespace Aws
{
namespace SSM
{
namespace Model
{
namespace CommandStatusMapper
{
static const int Pending_HASH = HashingUtils::HashString("Pending");
static const int InProgress_HASH = HashingUtils::HashString("InProgress");
static const int Success_HASH = HashingUtils::HashString("Success");
static const int Cancelled_HASH = HashingUtils::HashString("Cancelled");
static const int Failed_HASH = HashingUtils::HashString("Failed");
static const int TimedOut_HASH = HashingUtils::HashString("TimedOut");
static const int Cancelling_HASH = HashingUtils::HashString("Cancelling");
CommandStatus GetCommandStatusForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == Pending_HASH)
{
return CommandStatus::Pending;
}
else if (hashCode == InProgress_HASH)
{
return CommandStatus::InProgress;
}
else if (hashCode == Success_HASH)
{
return CommandStatus::Success;
}
else if (hashCode == Cancelled_HASH)
{
return CommandStatus::Cancelled;
}
else if (hashCode == Failed_HASH)
{
return CommandStatus::Failed;
}
else if (hashCode == TimedOut_HASH)
{
return CommandStatus::TimedOut;
}
else if (hashCode == Cancelling_HASH)
{
return CommandStatus::Cancelling;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<CommandStatus>(hashCode);
}
return CommandStatus::NOT_SET;
}
Aws::String GetNameForCommandStatus(CommandStatus enumValue)
{
switch(enumValue)
{
case CommandStatus::Pending:
return "Pending";
case CommandStatus::InProgress:
return "InProgress";
case CommandStatus::Success:
return "Success";
case CommandStatus::Cancelled:
return "Cancelled";
case CommandStatus::Failed:
return "Failed";
case CommandStatus::TimedOut:
return "TimedOut";
case CommandStatus::Cancelling:
return "Cancelling";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace CommandStatusMapper
} // namespace Model
} // namespace SSM
} // namespace Aws