/** * 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 SageMaker { namespace Model { namespace HubContentStatusMapper { static const int Available_HASH = HashingUtils::HashString("Available"); static const int Importing_HASH = HashingUtils::HashString("Importing"); static const int Deleting_HASH = HashingUtils::HashString("Deleting"); static const int ImportFailed_HASH = HashingUtils::HashString("ImportFailed"); static const int DeleteFailed_HASH = HashingUtils::HashString("DeleteFailed"); HubContentStatus GetHubContentStatusForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == Available_HASH) { return HubContentStatus::Available; } else if (hashCode == Importing_HASH) { return HubContentStatus::Importing; } else if (hashCode == Deleting_HASH) { return HubContentStatus::Deleting; } else if (hashCode == ImportFailed_HASH) { return HubContentStatus::ImportFailed; } else if (hashCode == DeleteFailed_HASH) { return HubContentStatus::DeleteFailed; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return HubContentStatus::NOT_SET; } Aws::String GetNameForHubContentStatus(HubContentStatus enumValue) { switch(enumValue) { case HubContentStatus::Available: return "Available"; case HubContentStatus::Importing: return "Importing"; case HubContentStatus::Deleting: return "Deleting"; case HubContentStatus::ImportFailed: return "ImportFailed"; case HubContentStatus::DeleteFailed: return "DeleteFailed"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace HubContentStatusMapper } // namespace Model } // namespace SageMaker } // namespace Aws