/** * 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 DeviceFarm { namespace Model { namespace InstanceStatusMapper { static const int IN_USE_HASH = HashingUtils::HashString("IN_USE"); static const int PREPARING_HASH = HashingUtils::HashString("PREPARING"); static const int AVAILABLE_HASH = HashingUtils::HashString("AVAILABLE"); static const int NOT_AVAILABLE_HASH = HashingUtils::HashString("NOT_AVAILABLE"); InstanceStatus GetInstanceStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == IN_USE_HASH) { return InstanceStatus::IN_USE; } else if (hashCode == PREPARING_HASH) { return InstanceStatus::PREPARING; } else if (hashCode == AVAILABLE_HASH) { return InstanceStatus::AVAILABLE; } else if (hashCode == NOT_AVAILABLE_HASH) { return InstanceStatus::NOT_AVAILABLE; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return InstanceStatus::NOT_SET; } Aws::String GetNameForInstanceStatus(InstanceStatus enumValue) { switch(enumValue) { case InstanceStatus::IN_USE: return "IN_USE"; case InstanceStatus::PREPARING: return "PREPARING"; case InstanceStatus::AVAILABLE: return "AVAILABLE"; case InstanceStatus::NOT_AVAILABLE: return "NOT_AVAILABLE"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace InstanceStatusMapper } // namespace Model } // namespace DeviceFarm } // namespace Aws