71 lines
1.9 KiB
C++
71 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/neptune/model/ApplyMethod.h>
|
|
#include <aws/core/utils/HashingUtils.h>
|
|
#include <aws/core/Globals.h>
|
|
#include <aws/core/utils/EnumParseOverflowContainer.h>
|
|
|
|
using namespace Aws::Utils;
|
|
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Neptune
|
|
{
|
|
namespace Model
|
|
{
|
|
namespace ApplyMethodMapper
|
|
{
|
|
|
|
static const int immediate_HASH = HashingUtils::HashString("immediate");
|
|
static const int pending_reboot_HASH = HashingUtils::HashString("pending-reboot");
|
|
|
|
|
|
ApplyMethod GetApplyMethodForName(const Aws::String& name)
|
|
{
|
|
int hashCode = HashingUtils::HashString(name.c_str());
|
|
if (hashCode == immediate_HASH)
|
|
{
|
|
return ApplyMethod::immediate;
|
|
}
|
|
else if (hashCode == pending_reboot_HASH)
|
|
{
|
|
return ApplyMethod::pending_reboot;
|
|
}
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
overflowContainer->StoreOverflow(hashCode, name);
|
|
return static_cast<ApplyMethod>(hashCode);
|
|
}
|
|
|
|
return ApplyMethod::NOT_SET;
|
|
}
|
|
|
|
Aws::String GetNameForApplyMethod(ApplyMethod enumValue)
|
|
{
|
|
switch(enumValue)
|
|
{
|
|
case ApplyMethod::immediate:
|
|
return "immediate";
|
|
case ApplyMethod::pending_reboot:
|
|
return "pending-reboot";
|
|
default:
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
|
|
}
|
|
|
|
return {};
|
|
}
|
|
}
|
|
|
|
} // namespace ApplyMethodMapper
|
|
} // namespace Model
|
|
} // namespace Neptune
|
|
} // namespace Aws
|