113 lines
3.6 KiB
C++
113 lines
3.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/sms/model/ReplicationJobState.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 SMS
|
|
{
|
|
namespace Model
|
|
{
|
|
namespace ReplicationJobStateMapper
|
|
{
|
|
|
|
static const int PENDING_HASH = HashingUtils::HashString("PENDING");
|
|
static const int ACTIVE_HASH = HashingUtils::HashString("ACTIVE");
|
|
static const int FAILED_HASH = HashingUtils::HashString("FAILED");
|
|
static const int DELETING_HASH = HashingUtils::HashString("DELETING");
|
|
static const int DELETED_HASH = HashingUtils::HashString("DELETED");
|
|
static const int COMPLETED_HASH = HashingUtils::HashString("COMPLETED");
|
|
static const int PAUSED_ON_FAILURE_HASH = HashingUtils::HashString("PAUSED_ON_FAILURE");
|
|
static const int FAILING_HASH = HashingUtils::HashString("FAILING");
|
|
|
|
|
|
ReplicationJobState GetReplicationJobStateForName(const Aws::String& name)
|
|
{
|
|
int hashCode = HashingUtils::HashString(name.c_str());
|
|
if (hashCode == PENDING_HASH)
|
|
{
|
|
return ReplicationJobState::PENDING;
|
|
}
|
|
else if (hashCode == ACTIVE_HASH)
|
|
{
|
|
return ReplicationJobState::ACTIVE;
|
|
}
|
|
else if (hashCode == FAILED_HASH)
|
|
{
|
|
return ReplicationJobState::FAILED;
|
|
}
|
|
else if (hashCode == DELETING_HASH)
|
|
{
|
|
return ReplicationJobState::DELETING;
|
|
}
|
|
else if (hashCode == DELETED_HASH)
|
|
{
|
|
return ReplicationJobState::DELETED;
|
|
}
|
|
else if (hashCode == COMPLETED_HASH)
|
|
{
|
|
return ReplicationJobState::COMPLETED;
|
|
}
|
|
else if (hashCode == PAUSED_ON_FAILURE_HASH)
|
|
{
|
|
return ReplicationJobState::PAUSED_ON_FAILURE;
|
|
}
|
|
else if (hashCode == FAILING_HASH)
|
|
{
|
|
return ReplicationJobState::FAILING;
|
|
}
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
overflowContainer->StoreOverflow(hashCode, name);
|
|
return static_cast<ReplicationJobState>(hashCode);
|
|
}
|
|
|
|
return ReplicationJobState::NOT_SET;
|
|
}
|
|
|
|
Aws::String GetNameForReplicationJobState(ReplicationJobState enumValue)
|
|
{
|
|
switch(enumValue)
|
|
{
|
|
case ReplicationJobState::PENDING:
|
|
return "PENDING";
|
|
case ReplicationJobState::ACTIVE:
|
|
return "ACTIVE";
|
|
case ReplicationJobState::FAILED:
|
|
return "FAILED";
|
|
case ReplicationJobState::DELETING:
|
|
return "DELETING";
|
|
case ReplicationJobState::DELETED:
|
|
return "DELETED";
|
|
case ReplicationJobState::COMPLETED:
|
|
return "COMPLETED";
|
|
case ReplicationJobState::PAUSED_ON_FAILURE:
|
|
return "PAUSED_ON_FAILURE";
|
|
case ReplicationJobState::FAILING:
|
|
return "FAILING";
|
|
default:
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|
if(overflowContainer)
|
|
{
|
|
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
|
|
}
|
|
|
|
return {};
|
|
}
|
|
}
|
|
|
|
} // namespace ReplicationJobStateMapper
|
|
} // namespace Model
|
|
} // namespace SMS
|
|
} // namespace Aws
|