summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Batch
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
committerAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
commit0c8af4992cb0f7589dcafaad65ada12753c64594 (patch)
tree18e83d068c3e7dd2499331de977782b382279396 /vendor/aws/aws-sdk-php/src/Batch
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/Batch')
-rw-r--r--vendor/aws/aws-sdk-php/src/Batch/BatchClient.php57
-rw-r--r--vendor/aws/aws-sdk-php/src/Batch/Exception/BatchException.php9
2 files changed, 66 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/Batch/BatchClient.php b/vendor/aws/aws-sdk-php/src/Batch/BatchClient.php
new file mode 100644
index 0000000..0b91009
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Batch/BatchClient.php
@@ -0,0 +1,57 @@
+<?php
+namespace Aws\Batch;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Batch** service.
+ * @method \Aws\Result cancelJob(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise cancelJobAsync(array $args = [])
+ * @method \Aws\Result createComputeEnvironment(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createComputeEnvironmentAsync(array $args = [])
+ * @method \Aws\Result createJobQueue(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createJobQueueAsync(array $args = [])
+ * @method \Aws\Result createSchedulingPolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createSchedulingPolicyAsync(array $args = [])
+ * @method \Aws\Result deleteComputeEnvironment(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteComputeEnvironmentAsync(array $args = [])
+ * @method \Aws\Result deleteJobQueue(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteJobQueueAsync(array $args = [])
+ * @method \Aws\Result deleteSchedulingPolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteSchedulingPolicyAsync(array $args = [])
+ * @method \Aws\Result deregisterJobDefinition(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deregisterJobDefinitionAsync(array $args = [])
+ * @method \Aws\Result describeComputeEnvironments(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeComputeEnvironmentsAsync(array $args = [])
+ * @method \Aws\Result describeJobDefinitions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeJobDefinitionsAsync(array $args = [])
+ * @method \Aws\Result describeJobQueues(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeJobQueuesAsync(array $args = [])
+ * @method \Aws\Result describeJobs(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeJobsAsync(array $args = [])
+ * @method \Aws\Result describeSchedulingPolicies(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSchedulingPoliciesAsync(array $args = [])
+ * @method \Aws\Result listJobs(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listJobsAsync(array $args = [])
+ * @method \Aws\Result listSchedulingPolicies(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSchedulingPoliciesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result registerJobDefinition(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise registerJobDefinitionAsync(array $args = [])
+ * @method \Aws\Result submitJob(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise submitJobAsync(array $args = [])
+ * @method \Aws\Result tagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
+ * @method \Aws\Result terminateJob(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise terminateJobAsync(array $args = [])
+ * @method \Aws\Result untagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
+ * @method \Aws\Result updateComputeEnvironment(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateComputeEnvironmentAsync(array $args = [])
+ * @method \Aws\Result updateJobQueue(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateJobQueueAsync(array $args = [])
+ * @method \Aws\Result updateSchedulingPolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateSchedulingPolicyAsync(array $args = [])
+ */
+class BatchClient extends AwsClient {}
diff --git a/vendor/aws/aws-sdk-php/src/Batch/Exception/BatchException.php b/vendor/aws/aws-sdk-php/src/Batch/Exception/BatchException.php
new file mode 100644
index 0000000..badca34
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Batch/Exception/BatchException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\Batch\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Batch** service.
+ */
+class BatchException extends AwsException {}