/** * 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 EC2 { namespace Model { namespace InstanceStateNameMapper { static const int pending_HASH = HashingUtils::HashString("pending"); static const int running_HASH = HashingUtils::HashString("running"); static const int shutting_down_HASH = HashingUtils::HashString("shutting-down"); static const int terminated_HASH = HashingUtils::HashString("terminated"); static const int stopping_HASH = HashingUtils::HashString("stopping"); static const int stopped_HASH = HashingUtils::HashString("stopped"); InstanceStateName GetInstanceStateNameForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == pending_HASH) { return InstanceStateName::pending; } else if (hashCode == running_HASH) { return InstanceStateName::running; } else if (hashCode == shutting_down_HASH) { return InstanceStateName::shutting_down; } else if (hashCode == terminated_HASH) { return InstanceStateName::terminated; } else if (hashCode == stopping_HASH) { return InstanceStateName::stopping; } else if (hashCode == stopped_HASH) { return InstanceStateName::stopped; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return InstanceStateName::NOT_SET; } Aws::String GetNameForInstanceStateName(InstanceStateName enumValue) { switch(enumValue) { case InstanceStateName::pending: return "pending"; case InstanceStateName::running: return "running"; case InstanceStateName::shutting_down: return "shutting-down"; case InstanceStateName::terminated: return "terminated"; case InstanceStateName::stopping: return "stopping"; case InstanceStateName::stopped: return "stopped"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace InstanceStateNameMapper } // namespace Model } // namespace EC2 } // namespace Aws