This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-imagebuilder/source/model/Ownership.cpp

78 lines
2.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/imagebuilder/model/Ownership.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 imagebuilder
{
namespace Model
{
namespace OwnershipMapper
{
static const int Self_HASH = HashingUtils::HashString("Self");
static const int Shared_HASH = HashingUtils::HashString("Shared");
static const int Amazon_HASH = HashingUtils::HashString("Amazon");
Ownership GetOwnershipForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == Self_HASH)
{
return Ownership::Self;
}
else if (hashCode == Shared_HASH)
{
return Ownership::Shared;
}
else if (hashCode == Amazon_HASH)
{
return Ownership::Amazon;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<Ownership>(hashCode);
}
return Ownership::NOT_SET;
}
Aws::String GetNameForOwnership(Ownership enumValue)
{
switch(enumValue)
{
case Ownership::Self:
return "Self";
case Ownership::Shared:
return "Shared";
case Ownership::Amazon:
return "Amazon";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace OwnershipMapper
} // namespace Model
} // namespace imagebuilder
} // namespace Aws