/usr/share/php/Aws/Efs/EfsClient.php is in php-aws-sdk 3.15.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <?php
namespace Aws\Efs;
use Aws\AwsClient;
/**
* This client is used to interact with **Amazon EFS**.
*
* @method \Aws\Result createFileSystem(array $args = [])
* @method \GuzzleHttp\Promise\Promise createFileSystemAsync(array $args = [])
* @method \Aws\Result createMountTarget(array $args = [])
* @method \GuzzleHttp\Promise\Promise createMountTargetAsync(array $args = [])
* @method \Aws\Result createTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise createTagsAsync(array $args = [])
* @method \Aws\Result deleteFileSystem(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteFileSystemAsync(array $args = [])
* @method \Aws\Result deleteMountTarget(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteMountTargetAsync(array $args = [])
* @method \Aws\Result deleteTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteTagsAsync(array $args = [])
* @method \Aws\Result describeFileSystems(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeFileSystemsAsync(array $args = [])
* @method \Aws\Result describeMountTargetSecurityGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeMountTargetSecurityGroupsAsync(array $args = [])
* @method \Aws\Result describeMountTargets(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeMountTargetsAsync(array $args = [])
* @method \Aws\Result describeTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeTagsAsync(array $args = [])
* @method \Aws\Result modifyMountTargetSecurityGroups(array $args = [])
* @method \GuzzleHttp\Promise\Promise modifyMountTargetSecurityGroupsAsync(array $args = [])
*/
class EfsClient extends AwsClient {}
|