/** * 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 Synthetics { namespace Model { namespace CanaryStateMapper { static const int CREATING_HASH = HashingUtils::HashString("CREATING"); static const int READY_HASH = HashingUtils::HashString("READY"); static const int STARTING_HASH = HashingUtils::HashString("STARTING"); static const int RUNNING_HASH = HashingUtils::HashString("RUNNING"); static const int UPDATING_HASH = HashingUtils::HashString("UPDATING"); static const int STOPPING_HASH = HashingUtils::HashString("STOPPING"); static const int STOPPED_HASH = HashingUtils::HashString("STOPPED"); static const int ERROR__HASH = HashingUtils::HashString("ERROR"); static const int DELETING_HASH = HashingUtils::HashString("DELETING"); CanaryState GetCanaryStateForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == CREATING_HASH) { return CanaryState::CREATING; } else if (hashCode == READY_HASH) { return CanaryState::READY; } else if (hashCode == STARTING_HASH) { return CanaryState::STARTING; } else if (hashCode == RUNNING_HASH) { return CanaryState::RUNNING; } else if (hashCode == UPDATING_HASH) { return CanaryState::UPDATING; } else if (hashCode == STOPPING_HASH) { return CanaryState::STOPPING; } else if (hashCode == STOPPED_HASH) { return CanaryState::STOPPED; } else if (hashCode == ERROR__HASH) { return CanaryState::ERROR_; } else if (hashCode == DELETING_HASH) { return CanaryState::DELETING; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return CanaryState::NOT_SET; } Aws::String GetNameForCanaryState(CanaryState enumValue) { switch(enumValue) { case CanaryState::CREATING: return "CREATING"; case CanaryState::READY: return "READY"; case CanaryState::STARTING: return "STARTING"; case CanaryState::RUNNING: return "RUNNING"; case CanaryState::UPDATING: return "UPDATING"; case CanaryState::STOPPING: return "STOPPING"; case CanaryState::STOPPED: return "STOPPED"; case CanaryState::ERROR_: return "ERROR"; case CanaryState::DELETING: return "DELETING"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace CanaryStateMapper } // namespace Model } // namespace Synthetics } // namespace Aws