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-ds/source/model/TrustDirection.cpp

78 lines
2.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/ds/model/TrustDirection.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 DirectoryService
{
namespace Model
{
namespace TrustDirectionMapper
{
static const int One_Way_Outgoing_HASH = HashingUtils::HashString("One-Way: Outgoing");
static const int One_Way_Incoming_HASH = HashingUtils::HashString("One-Way: Incoming");
static const int Two_Way_HASH = HashingUtils::HashString("Two-Way");
TrustDirection GetTrustDirectionForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == One_Way_Outgoing_HASH)
{
return TrustDirection::One_Way_Outgoing;
}
else if (hashCode == One_Way_Incoming_HASH)
{
return TrustDirection::One_Way_Incoming;
}
else if (hashCode == Two_Way_HASH)
{
return TrustDirection::Two_Way;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<TrustDirection>(hashCode);
}
return TrustDirection::NOT_SET;
}
Aws::String GetNameForTrustDirection(TrustDirection enumValue)
{
switch(enumValue)
{
case TrustDirection::One_Way_Outgoing:
return "One-Way: Outgoing";
case TrustDirection::One_Way_Incoming:
return "One-Way: Incoming";
case TrustDirection::Two_Way:
return "Two-Way";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace TrustDirectionMapper
} // namespace Model
} // namespace DirectoryService
} // namespace Aws