EfsClient.php
73 lines
| 1 | <?php |
| 2 | namespace Aws\Efs; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with **Amazon EFS**. |
| 8 | * |
| 9 | * @method \Aws\Result createAccessPoint(array $args = []) |
| 10 | * @method \GuzzleHttp\Promise\Promise createAccessPointAsync(array $args = []) |
| 11 | * @method \Aws\Result createFileSystem(array $args = []) |
| 12 | * @method \GuzzleHttp\Promise\Promise createFileSystemAsync(array $args = []) |
| 13 | * @method \Aws\Result createMountTarget(array $args = []) |
| 14 | * @method \GuzzleHttp\Promise\Promise createMountTargetAsync(array $args = []) |
| 15 | * @method \Aws\Result createReplicationConfiguration(array $args = []) |
| 16 | * @method \GuzzleHttp\Promise\Promise createReplicationConfigurationAsync(array $args = []) |
| 17 | * @method \Aws\Result createTags(array $args = []) |
| 18 | * @method \GuzzleHttp\Promise\Promise createTagsAsync(array $args = []) |
| 19 | * @method \Aws\Result deleteAccessPoint(array $args = []) |
| 20 | * @method \GuzzleHttp\Promise\Promise deleteAccessPointAsync(array $args = []) |
| 21 | * @method \Aws\Result deleteFileSystem(array $args = []) |
| 22 | * @method \GuzzleHttp\Promise\Promise deleteFileSystemAsync(array $args = []) |
| 23 | * @method \Aws\Result deleteFileSystemPolicy(array $args = []) |
| 24 | * @method \GuzzleHttp\Promise\Promise deleteFileSystemPolicyAsync(array $args = []) |
| 25 | * @method \Aws\Result deleteMountTarget(array $args = []) |
| 26 | * @method \GuzzleHttp\Promise\Promise deleteMountTargetAsync(array $args = []) |
| 27 | * @method \Aws\Result deleteReplicationConfiguration(array $args = []) |
| 28 | * @method \GuzzleHttp\Promise\Promise deleteReplicationConfigurationAsync(array $args = []) |
| 29 | * @method \Aws\Result deleteTags(array $args = []) |
| 30 | * @method \GuzzleHttp\Promise\Promise deleteTagsAsync(array $args = []) |
| 31 | * @method \Aws\Result describeAccessPoints(array $args = []) |
| 32 | * @method \GuzzleHttp\Promise\Promise describeAccessPointsAsync(array $args = []) |
| 33 | * @method \Aws\Result describeAccountPreferences(array $args = []) |
| 34 | * @method \GuzzleHttp\Promise\Promise describeAccountPreferencesAsync(array $args = []) |
| 35 | * @method \Aws\Result describeBackupPolicy(array $args = []) |
| 36 | * @method \GuzzleHttp\Promise\Promise describeBackupPolicyAsync(array $args = []) |
| 37 | * @method \Aws\Result describeFileSystemPolicy(array $args = []) |
| 38 | * @method \GuzzleHttp\Promise\Promise describeFileSystemPolicyAsync(array $args = []) |
| 39 | * @method \Aws\Result describeFileSystems(array $args = []) |
| 40 | * @method \GuzzleHttp\Promise\Promise describeFileSystemsAsync(array $args = []) |
| 41 | * @method \Aws\Result describeLifecycleConfiguration(array $args = []) |
| 42 | * @method \GuzzleHttp\Promise\Promise describeLifecycleConfigurationAsync(array $args = []) |
| 43 | * @method \Aws\Result describeMountTargetSecurityGroups(array $args = []) |
| 44 | * @method \GuzzleHttp\Promise\Promise describeMountTargetSecurityGroupsAsync(array $args = []) |
| 45 | * @method \Aws\Result describeMountTargets(array $args = []) |
| 46 | * @method \GuzzleHttp\Promise\Promise describeMountTargetsAsync(array $args = []) |
| 47 | * @method \Aws\Result describeReplicationConfigurations(array $args = []) |
| 48 | * @method \GuzzleHttp\Promise\Promise describeReplicationConfigurationsAsync(array $args = []) |
| 49 | * @method \Aws\Result describeTags(array $args = []) |
| 50 | * @method \GuzzleHttp\Promise\Promise describeTagsAsync(array $args = []) |
| 51 | * @method \Aws\Result listTagsForResource(array $args = []) |
| 52 | * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) |
| 53 | * @method \Aws\Result modifyMountTargetSecurityGroups(array $args = []) |
| 54 | * @method \GuzzleHttp\Promise\Promise modifyMountTargetSecurityGroupsAsync(array $args = []) |
| 55 | * @method \Aws\Result putAccountPreferences(array $args = []) |
| 56 | * @method \GuzzleHttp\Promise\Promise putAccountPreferencesAsync(array $args = []) |
| 57 | * @method \Aws\Result putBackupPolicy(array $args = []) |
| 58 | * @method \GuzzleHttp\Promise\Promise putBackupPolicyAsync(array $args = []) |
| 59 | * @method \Aws\Result putFileSystemPolicy(array $args = []) |
| 60 | * @method \GuzzleHttp\Promise\Promise putFileSystemPolicyAsync(array $args = []) |
| 61 | * @method \Aws\Result putLifecycleConfiguration(array $args = []) |
| 62 | * @method \GuzzleHttp\Promise\Promise putLifecycleConfigurationAsync(array $args = []) |
| 63 | * @method \Aws\Result tagResource(array $args = []) |
| 64 | * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) |
| 65 | * @method \Aws\Result untagResource(array $args = []) |
| 66 | * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) |
| 67 | * @method \Aws\Result updateFileSystem(array $args = []) |
| 68 | * @method \GuzzleHttp\Promise\Promise updateFileSystemAsync(array $args = []) |
| 69 | * @method \Aws\Result updateFileSystemProtection(array $args = []) |
| 70 | * @method \GuzzleHttp\Promise\Promise updateFileSystemProtectionAsync(array $args = []) |
| 71 | */ |
| 72 | class EfsClient extends AwsClient {} |
| 73 |