32 lines
678 B
C
32 lines
678 B
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/greengrass/Greengrass_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Greengrass
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
enum class SoftwareToUpdate
|
|||
|
|
{
|
|||
|
|
NOT_SET,
|
|||
|
|
core,
|
|||
|
|
ota_agent
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
namespace SoftwareToUpdateMapper
|
|||
|
|
{
|
|||
|
|
AWS_GREENGRASS_API SoftwareToUpdate GetSoftwareToUpdateForName(const Aws::String& name);
|
|||
|
|
|
|||
|
|
AWS_GREENGRASS_API Aws::String GetNameForSoftwareToUpdate(SoftwareToUpdate value);
|
|||
|
|
} // namespace SoftwareToUpdateMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Greengrass
|
|||
|
|
} // namespace Aws
|