BackupStorageClient.php
28 lines
| 1 | <?php |
| 2 | namespace Aws\BackupStorage; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **AWS Backup Storage** service. |
| 8 | * @method \Aws\Result deleteObject(array $args = []) |
| 9 | * @method \GuzzleHttp\Promise\Promise deleteObjectAsync(array $args = []) |
| 10 | * @method \Aws\Result getChunk(array $args = []) |
| 11 | * @method \GuzzleHttp\Promise\Promise getChunkAsync(array $args = []) |
| 12 | * @method \Aws\Result getObjectMetadata(array $args = []) |
| 13 | * @method \GuzzleHttp\Promise\Promise getObjectMetadataAsync(array $args = []) |
| 14 | * @method \Aws\Result listChunks(array $args = []) |
| 15 | * @method \GuzzleHttp\Promise\Promise listChunksAsync(array $args = []) |
| 16 | * @method \Aws\Result listObjects(array $args = []) |
| 17 | * @method \GuzzleHttp\Promise\Promise listObjectsAsync(array $args = []) |
| 18 | * @method \Aws\Result notifyObjectComplete(array $args = []) |
| 19 | * @method \GuzzleHttp\Promise\Promise notifyObjectCompleteAsync(array $args = []) |
| 20 | * @method \Aws\Result putChunk(array $args = []) |
| 21 | * @method \GuzzleHttp\Promise\Promise putChunkAsync(array $args = []) |
| 22 | * @method \Aws\Result putObject(array $args = []) |
| 23 | * @method \GuzzleHttp\Promise\Promise putObjectAsync(array $args = []) |
| 24 | * @method \Aws\Result startObject(array $args = []) |
| 25 | * @method \GuzzleHttp\Promise\Promise startObjectAsync(array $args = []) |
| 26 | */ |
| 27 | class BackupStorageClient extends AwsClient {} |
| 28 |