/** * 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 Lightsail { namespace Model { namespace PortStateMapper { static const int open_HASH = HashingUtils::HashString("open"); static const int closed_HASH = HashingUtils::HashString("closed"); PortState GetPortStateForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == open_HASH) { return PortState::open; } else if (hashCode == closed_HASH) { return PortState::closed; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return PortState::NOT_SET; } Aws::String GetNameForPortState(PortState enumValue) { switch(enumValue) { case PortState::open: return "open"; case PortState::closed: return "closed"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace PortStateMapper } // namespace Model } // namespace Lightsail } // namespace Aws