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-kinesis/source/model/MetricsName.cpp

113 lines
3.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/kinesis/model/MetricsName.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 Kinesis
{
namespace Model
{
namespace MetricsNameMapper
{
static const int IncomingBytes_HASH = HashingUtils::HashString("IncomingBytes");
static const int IncomingRecords_HASH = HashingUtils::HashString("IncomingRecords");
static const int OutgoingBytes_HASH = HashingUtils::HashString("OutgoingBytes");
static const int OutgoingRecords_HASH = HashingUtils::HashString("OutgoingRecords");
static const int WriteProvisionedThroughputExceeded_HASH = HashingUtils::HashString("WriteProvisionedThroughputExceeded");
static const int ReadProvisionedThroughputExceeded_HASH = HashingUtils::HashString("ReadProvisionedThroughputExceeded");
static const int IteratorAgeMilliseconds_HASH = HashingUtils::HashString("IteratorAgeMilliseconds");
static const int ALL_HASH = HashingUtils::HashString("ALL");
MetricsName GetMetricsNameForName(const Aws::String& name)
{
int hashCode = HashingUtils::HashString(name.c_str());
if (hashCode == IncomingBytes_HASH)
{
return MetricsName::IncomingBytes;
}
else if (hashCode == IncomingRecords_HASH)
{
return MetricsName::IncomingRecords;
}
else if (hashCode == OutgoingBytes_HASH)
{
return MetricsName::OutgoingBytes;
}
else if (hashCode == OutgoingRecords_HASH)
{
return MetricsName::OutgoingRecords;
}
else if (hashCode == WriteProvisionedThroughputExceeded_HASH)
{
return MetricsName::WriteProvisionedThroughputExceeded;
}
else if (hashCode == ReadProvisionedThroughputExceeded_HASH)
{
return MetricsName::ReadProvisionedThroughputExceeded;
}
else if (hashCode == IteratorAgeMilliseconds_HASH)
{
return MetricsName::IteratorAgeMilliseconds;
}
else if (hashCode == ALL_HASH)
{
return MetricsName::ALL;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
overflowContainer->StoreOverflow(hashCode, name);
return static_cast<MetricsName>(hashCode);
}
return MetricsName::NOT_SET;
}
Aws::String GetNameForMetricsName(MetricsName enumValue)
{
switch(enumValue)
{
case MetricsName::IncomingBytes:
return "IncomingBytes";
case MetricsName::IncomingRecords:
return "IncomingRecords";
case MetricsName::OutgoingBytes:
return "OutgoingBytes";
case MetricsName::OutgoingRecords:
return "OutgoingRecords";
case MetricsName::WriteProvisionedThroughputExceeded:
return "WriteProvisionedThroughputExceeded";
case MetricsName::ReadProvisionedThroughputExceeded:
return "ReadProvisionedThroughputExceeded";
case MetricsName::IteratorAgeMilliseconds:
return "IteratorAgeMilliseconds";
case MetricsName::ALL:
return "ALL";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
}
return {};
}
}
} // namespace MetricsNameMapper
} // namespace Model
} // namespace Kinesis
} // namespace Aws