34 lines
745 B
C
34 lines
745 B
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/es/ElasticsearchService_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ElasticsearchService
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
enum class UpgradeStatus
|
|||
|
|
{
|
|||
|
|
NOT_SET,
|
|||
|
|
IN_PROGRESS,
|
|||
|
|
SUCCEEDED,
|
|||
|
|
SUCCEEDED_WITH_ISSUES,
|
|||
|
|
FAILED
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
namespace UpgradeStatusMapper
|
|||
|
|
{
|
|||
|
|
AWS_ELASTICSEARCHSERVICE_API UpgradeStatus GetUpgradeStatusForName(const Aws::String& name);
|
|||
|
|
|
|||
|
|
AWS_ELASTICSEARCHSERVICE_API Aws::String GetNameForUpgradeStatus(UpgradeStatus value);
|
|||
|
|
} // namespace UpgradeStatusMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ElasticsearchService
|
|||
|
|
} // namespace Aws
|