35 lines
708 B
C++
35 lines
708 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/application-insights/ApplicationInsights_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ApplicationInsights
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class Tier
|
|
{
|
|
NOT_SET,
|
|
DEFAULT,
|
|
DOT_NET_CORE,
|
|
DOT_NET_WORKER,
|
|
DOT_NET_WEB,
|
|
SQL_SERVER
|
|
};
|
|
|
|
namespace TierMapper
|
|
{
|
|
AWS_APPLICATIONINSIGHTS_API Tier GetTierForName(const Aws::String& name);
|
|
|
|
AWS_APPLICATIONINSIGHTS_API Aws::String GetNameForTier(Tier value);
|
|
} // namespace TierMapper
|
|
} // namespace Model
|
|
} // namespace ApplicationInsights
|
|
} // namespace Aws
|