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-apigatewayv2/source/model/LoggingLevel.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/apigatewayv2/model/LoggingLevel.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 ApiGatewayV2
{
namespace Model
{
namespace LoggingLevelMapper
{
static const int ERROR__HASH = HashingUtils::HashString("ERROR");
static const int INFO_HASH = HashingUtils::HashString("INFO");
static const int OFF_HASH = HashingUtils::HashString("OFF");
LoggingLevel GetLoggingLevelForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == ERROR__HASH)
{
return LoggingLevel::ERROR_;
}
else if (hashCode == INFO_HASH)
{
return LoggingLevel::INFO;
}
else if (hashCode == OFF_HASH)
{
return LoggingLevel::OFF;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<LoggingLevel>(hashCode);
}
return LoggingLevel::NOT_SET;
}
Aws::String GetNameForLoggingLevel(LoggingLevel enumValue)
{
switch(enumValue)
{
case LoggingLevel::ERROR_:
return "ERROR";
case LoggingLevel::INFO:
return "INFO";
case LoggingLevel::OFF:
return "OFF";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace LoggingLevelMapper
} // namespace Model
} // namespace ApiGatewayV2
} // namespace Aws