/** * 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 SubnetCidrBlockStateCodeMapper { static const int associating_HASH = HashingUtils::HashString("associating"); static const int associated_HASH = HashingUtils::HashString("associated"); static const int disassociating_HASH = HashingUtils::HashString("disassociating"); static const int disassociated_HASH = HashingUtils::HashString("disassociated"); static const int failing_HASH = HashingUtils::HashString("failing"); static const int failed_HASH = HashingUtils::HashString("failed"); SubnetCidrBlockStateCode GetSubnetCidrBlockStateCodeForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == associating_HASH) { return SubnetCidrBlockStateCode::associating; } else if (hashCode == associated_HASH) { return SubnetCidrBlockStateCode::associated; } else if (hashCode == disassociating_HASH) { return SubnetCidrBlockStateCode::disassociating; } else if (hashCode == disassociated_HASH) { return SubnetCidrBlockStateCode::disassociated; } else if (hashCode == failing_HASH) { return SubnetCidrBlockStateCode::failing; } else if (hashCode == failed_HASH) { return SubnetCidrBlockStateCode::failed; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return SubnetCidrBlockStateCode::NOT_SET; } Aws::String GetNameForSubnetCidrBlockStateCode(SubnetCidrBlockStateCode enumValue) { switch(enumValue) { case SubnetCidrBlockStateCode::associating: return "associating"; case SubnetCidrBlockStateCode::associated: return "associated"; case SubnetCidrBlockStateCode::disassociating: return "disassociating"; case SubnetCidrBlockStateCode::disassociated: return "disassociated"; case SubnetCidrBlockStateCode::failing: return "failing"; case SubnetCidrBlockStateCode::failed: return "failed"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace SubnetCidrBlockStateCodeMapper } // namespace Model } // namespace EC2 } // namespace Aws