summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane
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/IoTJobsDataPlane
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/IoTJobsDataPlane')
-rw-r--r--vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/IoTJobsDataPlaneClient.php17
2 files changed, 26 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php b/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php
new file mode 100644
index 0000000..08e13df
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\IoTJobsDataPlane\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS IoT Jobs Data Plane** service.
+ */
+class IoTJobsDataPlaneException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/IoTJobsDataPlaneClient.php b/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/IoTJobsDataPlaneClient.php
new file mode 100644
index 0000000..037d0ef
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/IoTJobsDataPlane/IoTJobsDataPlaneClient.php
@@ -0,0 +1,17 @@
+<?php
+namespace Aws\IoTJobsDataPlane;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS IoT Jobs Data Plane** service.
+ * @method \Aws\Result describeJobExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeJobExecutionAsync(array $args = [])
+ * @method \Aws\Result getPendingJobExecutions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getPendingJobExecutionsAsync(array $args = [])
+ * @method \Aws\Result startNextPendingJobExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startNextPendingJobExecutionAsync(array $args = [])
+ * @method \Aws\Result updateJobExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateJobExecutionAsync(array $args = [])
+ */
+class IoTJobsDataPlaneClient extends AwsClient {}