/** * 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 EKS { namespace Model { namespace IpFamilyMapper { static const int ipv4_HASH = HashingUtils::HashString("ipv4"); static const int ipv6_HASH = HashingUtils::HashString("ipv6"); IpFamily GetIpFamilyForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == ipv4_HASH) { return IpFamily::ipv4; } else if (hashCode == ipv6_HASH) { return IpFamily::ipv6; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return IpFamily::NOT_SET; } Aws::String GetNameForIpFamily(IpFamily enumValue) { switch(enumValue) { case IpFamily::ipv4: return "ipv4"; case IpFamily::ipv6: return "ipv6"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace IpFamilyMapper } // namespace Model } // namespace EKS } // namespace Aws