/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once /* Generic header includes */ #include #include #include #include #include #include #include #include #include /* End of generic header includes */ /* Service model headers required in BackupStorageClient header */ #include #include #include #include #include #include #include #include #include /* End of service model headers required in BackupStorageClient header */ namespace Aws { namespace Http { class HttpClient; class HttpClientFactory; } // namespace Http namespace Utils { template< typename R, typename E> class Outcome; namespace Threading { class Executor; } // namespace Threading } // namespace Utils namespace Auth { class AWSCredentials; class AWSCredentialsProvider; } // namespace Auth namespace Client { class RetryStrategy; } // namespace Client namespace BackupStorage { using BackupStorageClientConfiguration = Aws::Client::GenericClientConfiguration; using BackupStorageEndpointProviderBase = Aws::BackupStorage::Endpoint::BackupStorageEndpointProviderBase; using BackupStorageEndpointProvider = Aws::BackupStorage::Endpoint::BackupStorageEndpointProvider; namespace Model { /* Service model forward declarations required in BackupStorageClient header */ class DeleteObjectRequest; class GetChunkRequest; class GetObjectMetadataRequest; class ListChunksRequest; class ListObjectsRequest; class NotifyObjectCompleteRequest; class PutChunkRequest; class PutObjectRequest; class StartObjectRequest; /* End of service model forward declarations required in BackupStorageClient header */ /* Service model Outcome class definitions */ typedef Aws::Utils::Outcome DeleteObjectOutcome; typedef Aws::Utils::Outcome GetChunkOutcome; typedef Aws::Utils::Outcome GetObjectMetadataOutcome; typedef Aws::Utils::Outcome ListChunksOutcome; typedef Aws::Utils::Outcome ListObjectsOutcome; typedef Aws::Utils::Outcome NotifyObjectCompleteOutcome; typedef Aws::Utils::Outcome PutChunkOutcome; typedef Aws::Utils::Outcome PutObjectOutcome; typedef Aws::Utils::Outcome StartObjectOutcome; /* End of service model Outcome class definitions */ /* Service model Outcome callable definitions */ typedef std::future DeleteObjectOutcomeCallable; typedef std::future GetChunkOutcomeCallable; typedef std::future GetObjectMetadataOutcomeCallable; typedef std::future ListChunksOutcomeCallable; typedef std::future ListObjectsOutcomeCallable; typedef std::future NotifyObjectCompleteOutcomeCallable; typedef std::future PutChunkOutcomeCallable; typedef std::future PutObjectOutcomeCallable; typedef std::future StartObjectOutcomeCallable; /* End of service model Outcome callable definitions */ } // namespace Model class BackupStorageClient; /* Service model async handlers definitions */ typedef std::function&) > DeleteObjectResponseReceivedHandler; typedef std::function&) > GetChunkResponseReceivedHandler; typedef std::function&) > GetObjectMetadataResponseReceivedHandler; typedef std::function&) > ListChunksResponseReceivedHandler; typedef std::function&) > ListObjectsResponseReceivedHandler; typedef std::function&) > NotifyObjectCompleteResponseReceivedHandler; typedef std::function&) > PutChunkResponseReceivedHandler; typedef std::function&) > PutObjectResponseReceivedHandler; typedef std::function&) > StartObjectResponseReceivedHandler; /* End of service model async handlers definitions */ } // namespace BackupStorage } // namespace Aws