/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include 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(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(enumValue)); } return {}; } } } // namespace CommandStatusMapper } // namespace Model } // namespace SSM } // namespace Aws