/usr/share/php/Aws/ElasticBeanstalk/ElasticBeanstalkClient.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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | <?php
namespace Aws\ElasticBeanstalk;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS Elastic Beanstalk** service.
*
* @method \Aws\Result abortEnvironmentUpdate(array $args = [])
* @method \GuzzleHttp\Promise\Promise abortEnvironmentUpdateAsync(array $args = [])
* @method \Aws\Result checkDNSAvailability(array $args = [])
* @method \GuzzleHttp\Promise\Promise checkDNSAvailabilityAsync(array $args = [])
* @method \Aws\Result composeEnvironments(array $args = [])
* @method \GuzzleHttp\Promise\Promise composeEnvironmentsAsync(array $args = [])
* @method \Aws\Result createApplication(array $args = [])
* @method \GuzzleHttp\Promise\Promise createApplicationAsync(array $args = [])
* @method \Aws\Result createApplicationVersion(array $args = [])
* @method \GuzzleHttp\Promise\Promise createApplicationVersionAsync(array $args = [])
* @method \Aws\Result createConfigurationTemplate(array $args = [])
* @method \GuzzleHttp\Promise\Promise createConfigurationTemplateAsync(array $args = [])
* @method \Aws\Result createEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise createEnvironmentAsync(array $args = [])
* @method \Aws\Result createStorageLocation(array $args = [])
* @method \GuzzleHttp\Promise\Promise createStorageLocationAsync(array $args = [])
* @method \Aws\Result deleteApplication(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteApplicationAsync(array $args = [])
* @method \Aws\Result deleteApplicationVersion(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteApplicationVersionAsync(array $args = [])
* @method \Aws\Result deleteConfigurationTemplate(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteConfigurationTemplateAsync(array $args = [])
* @method \Aws\Result deleteEnvironmentConfiguration(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteEnvironmentConfigurationAsync(array $args = [])
* @method \Aws\Result describeApplicationVersions(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeApplicationVersionsAsync(array $args = [])
* @method \Aws\Result describeApplications(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeApplicationsAsync(array $args = [])
* @method \Aws\Result describeConfigurationOptions(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeConfigurationOptionsAsync(array $args = [])
* @method \Aws\Result describeConfigurationSettings(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeConfigurationSettingsAsync(array $args = [])
* @method \Aws\Result describeEnvironmentHealth(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeEnvironmentHealthAsync(array $args = [])
* @method \Aws\Result describeEnvironmentResources(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeEnvironmentResourcesAsync(array $args = [])
* @method \Aws\Result describeEnvironments(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeEnvironmentsAsync(array $args = [])
* @method \Aws\Result describeEvents(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeEventsAsync(array $args = [])
* @method \Aws\Result describeInstancesHealth(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeInstancesHealthAsync(array $args = [])
* @method \Aws\Result listAvailableSolutionStacks(array $args = [])
* @method \GuzzleHttp\Promise\Promise listAvailableSolutionStacksAsync(array $args = [])
* @method \Aws\Result rebuildEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise rebuildEnvironmentAsync(array $args = [])
* @method \Aws\Result requestEnvironmentInfo(array $args = [])
* @method \GuzzleHttp\Promise\Promise requestEnvironmentInfoAsync(array $args = [])
* @method \Aws\Result restartAppServer(array $args = [])
* @method \GuzzleHttp\Promise\Promise restartAppServerAsync(array $args = [])
* @method \Aws\Result retrieveEnvironmentInfo(array $args = [])
* @method \GuzzleHttp\Promise\Promise retrieveEnvironmentInfoAsync(array $args = [])
* @method \Aws\Result swapEnvironmentCNAMEs(array $args = [])
* @method \GuzzleHttp\Promise\Promise swapEnvironmentCNAMEsAsync(array $args = [])
* @method \Aws\Result terminateEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise terminateEnvironmentAsync(array $args = [])
* @method \Aws\Result updateApplication(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateApplicationAsync(array $args = [])
* @method \Aws\Result updateApplicationVersion(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateApplicationVersionAsync(array $args = [])
* @method \Aws\Result updateConfigurationTemplate(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateConfigurationTemplateAsync(array $args = [])
* @method \Aws\Result updateEnvironment(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateEnvironmentAsync(array $args = [])
* @method \Aws\Result validateConfigurationSettings(array $args = [])
* @method \GuzzleHttp\Promise\Promise validateConfigurationSettingsAsync(array $args = [])
*/
class ElasticBeanstalkClient extends AwsClient {}
|