/** * 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 ElasticBeanstalk { namespace Model { namespace SourceRepositoryMapper { static const int CodeCommit_HASH = HashingUtils::HashString("CodeCommit"); static const int S3_HASH = HashingUtils::HashString("S3"); SourceRepository GetSourceRepositoryForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == CodeCommit_HASH) { return SourceRepository::CodeCommit; } else if (hashCode == S3_HASH) { return SourceRepository::S3; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return SourceRepository::NOT_SET; } Aws::String GetNameForSourceRepository(SourceRepository enumValue) { switch(enumValue) { case SourceRepository::CodeCommit: return "CodeCommit"; case SourceRepository::S3: return "S3"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace SourceRepositoryMapper } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws