BatchClient.php
58 lines
| 1 | <?php |
| 2 | namespace Aws\Batch; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **AWS Batch** service. |
| 8 | * @method \Aws\Result cancelJob(array $args = []) |
| 9 | * @method \GuzzleHttp\Promise\Promise cancelJobAsync(array $args = []) |
| 10 | * @method \Aws\Result createComputeEnvironment(array $args = []) |
| 11 | * @method \GuzzleHttp\Promise\Promise createComputeEnvironmentAsync(array $args = []) |
| 12 | * @method \Aws\Result createJobQueue(array $args = []) |
| 13 | * @method \GuzzleHttp\Promise\Promise createJobQueueAsync(array $args = []) |
| 14 | * @method \Aws\Result createSchedulingPolicy(array $args = []) |
| 15 | * @method \GuzzleHttp\Promise\Promise createSchedulingPolicyAsync(array $args = []) |
| 16 | * @method \Aws\Result deleteComputeEnvironment(array $args = []) |
| 17 | * @method \GuzzleHttp\Promise\Promise deleteComputeEnvironmentAsync(array $args = []) |
| 18 | * @method \Aws\Result deleteJobQueue(array $args = []) |
| 19 | * @method \GuzzleHttp\Promise\Promise deleteJobQueueAsync(array $args = []) |
| 20 | * @method \Aws\Result deleteSchedulingPolicy(array $args = []) |
| 21 | * @method \GuzzleHttp\Promise\Promise deleteSchedulingPolicyAsync(array $args = []) |
| 22 | * @method \Aws\Result deregisterJobDefinition(array $args = []) |
| 23 | * @method \GuzzleHttp\Promise\Promise deregisterJobDefinitionAsync(array $args = []) |
| 24 | * @method \Aws\Result describeComputeEnvironments(array $args = []) |
| 25 | * @method \GuzzleHttp\Promise\Promise describeComputeEnvironmentsAsync(array $args = []) |
| 26 | * @method \Aws\Result describeJobDefinitions(array $args = []) |
| 27 | * @method \GuzzleHttp\Promise\Promise describeJobDefinitionsAsync(array $args = []) |
| 28 | * @method \Aws\Result describeJobQueues(array $args = []) |
| 29 | * @method \GuzzleHttp\Promise\Promise describeJobQueuesAsync(array $args = []) |
| 30 | * @method \Aws\Result describeJobs(array $args = []) |
| 31 | * @method \GuzzleHttp\Promise\Promise describeJobsAsync(array $args = []) |
| 32 | * @method \Aws\Result describeSchedulingPolicies(array $args = []) |
| 33 | * @method \GuzzleHttp\Promise\Promise describeSchedulingPoliciesAsync(array $args = []) |
| 34 | * @method \Aws\Result listJobs(array $args = []) |
| 35 | * @method \GuzzleHttp\Promise\Promise listJobsAsync(array $args = []) |
| 36 | * @method \Aws\Result listSchedulingPolicies(array $args = []) |
| 37 | * @method \GuzzleHttp\Promise\Promise listSchedulingPoliciesAsync(array $args = []) |
| 38 | * @method \Aws\Result listTagsForResource(array $args = []) |
| 39 | * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) |
| 40 | * @method \Aws\Result registerJobDefinition(array $args = []) |
| 41 | * @method \GuzzleHttp\Promise\Promise registerJobDefinitionAsync(array $args = []) |
| 42 | * @method \Aws\Result submitJob(array $args = []) |
| 43 | * @method \GuzzleHttp\Promise\Promise submitJobAsync(array $args = []) |
| 44 | * @method \Aws\Result tagResource(array $args = []) |
| 45 | * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) |
| 46 | * @method \Aws\Result terminateJob(array $args = []) |
| 47 | * @method \GuzzleHttp\Promise\Promise terminateJobAsync(array $args = []) |
| 48 | * @method \Aws\Result untagResource(array $args = []) |
| 49 | * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) |
| 50 | * @method \Aws\Result updateComputeEnvironment(array $args = []) |
| 51 | * @method \GuzzleHttp\Promise\Promise updateComputeEnvironmentAsync(array $args = []) |
| 52 | * @method \Aws\Result updateJobQueue(array $args = []) |
| 53 | * @method \GuzzleHttp\Promise\Promise updateJobQueueAsync(array $args = []) |
| 54 | * @method \Aws\Result updateSchedulingPolicy(array $args = []) |
| 55 | * @method \GuzzleHttp\Promise\Promise updateSchedulingPolicyAsync(array $args = []) |
| 56 | */ |
| 57 | class BatchClient extends AwsClient {} |
| 58 |