92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/route53domains/model/OperationStatus.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 Route53Domains
|
|
{
|
|
namespace Model
|
|
{
|
|
namespace OperationStatusMapper
|
|
{
|
|
|
|
static const int SUBMITTED_HASH = HashingUtils::HashString("SUBMITTED");
|
|
static const int IN_PROGRESS_HASH = HashingUtils::HashString("IN_PROGRESS");
|
|
static const int ERROR__HASH = HashingUtils::HashString("ERROR");
|
|
static const int SUCCESSFUL_HASH = HashingUtils::HashString("SUCCESSFUL");
|
|
static const int FAILED_HASH = HashingUtils::HashString("FAILED");
|
|
|
|
|
|
OperationStatus GetOperationStatusForName(const Aws::String& name)
|
|
{
|
|
int hashCode = HashingUtils::HashString(name.c_str());
|
|
if (hashCode == SUBMITTED_HASH)
|
|
{
|
|
return OperationStatus::SUBMITTED;
|
|
}
|
|
else if (hashCode == IN_PROGRESS_HASH)
|
|
{
|
|
return OperationStatus::IN_PROGRESS;
|
|
}
|
|
else if (hashCode == ERROR__HASH)
|
|
{
|
|
return OperationStatus::ERROR_;
|
|
}
|
|
else if (hashCode == SUCCESSFUL_HASH)
|
|
{
|
|
return OperationStatus::SUCCESSFUL;
|
|
}
|
|
else if (hashCode == FAILED_HASH)
|
|
{
|
|
return OperationStatus::FAILED;
|
|
}
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
overflowContainer->StoreOverflow(hashCode, name);
|
|
return static_cast<OperationStatus>(hashCode);
|
|
}
|
|
|
|
return OperationStatus::NOT_SET;
|
|
}
|
|
|
|
Aws::String GetNameForOperationStatus(OperationStatus enumValue)
|
|
{
|
|
switch(enumValue)
|
|
{
|
|
case OperationStatus::SUBMITTED:
|
|
return "SUBMITTED";
|
|
case OperationStatus::IN_PROGRESS:
|
|
return "IN_PROGRESS";
|
|
case OperationStatus::ERROR_:
|
|
return "ERROR";
|
|
case OperationStatus::SUCCESSFUL:
|
|
return "SUCCESSFUL";
|
|
case OperationStatus::FAILED:
|
|
return "FAILED";
|
|
default:
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
|
|
}
|
|
|
|
return {};
|
|
}
|
|
}
|
|
|
|
} // namespace OperationStatusMapper
|
|
} // namespace Model
|
|
} // namespace Route53Domains
|
|
} // namespace Aws
|