/** * 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 Panorama { namespace Model { namespace DeviceStatusMapper { static const int AWAITING_PROVISIONING_HASH = HashingUtils::HashString("AWAITING_PROVISIONING"); static const int PENDING_HASH = HashingUtils::HashString("PENDING"); static const int SUCCEEDED_HASH = HashingUtils::HashString("SUCCEEDED"); static const int FAILED_HASH = HashingUtils::HashString("FAILED"); static const int ERROR__HASH = HashingUtils::HashString("ERROR"); static const int DELETING_HASH = HashingUtils::HashString("DELETING"); DeviceStatus GetDeviceStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == AWAITING_PROVISIONING_HASH) { return DeviceStatus::AWAITING_PROVISIONING; } else if (hashCode == PENDING_HASH) { return DeviceStatus::PENDING; } else if (hashCode == SUCCEEDED_HASH) { return DeviceStatus::SUCCEEDED; } else if (hashCode == FAILED_HASH) { return DeviceStatus::FAILED; } else if (hashCode == ERROR__HASH) { return DeviceStatus::ERROR_; } else if (hashCode == DELETING_HASH) { return DeviceStatus::DELETING; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return DeviceStatus::NOT_SET; } Aws::String GetNameForDeviceStatus(DeviceStatus enumValue) { switch(enumValue) { case DeviceStatus::AWAITING_PROVISIONING: return "AWAITING_PROVISIONING"; case DeviceStatus::PENDING: return "PENDING"; case DeviceStatus::SUCCEEDED: return "SUCCEEDED"; case DeviceStatus::FAILED: return "FAILED"; case DeviceStatus::ERROR_: return "ERROR"; case DeviceStatus::DELETING: return "DELETING"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace DeviceStatusMapper } // namespace Model } // namespace Panorama } // namespace Aws