summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/IoT1ClickProjects
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/IoT1ClickProjects
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/IoT1ClickProjects')
-rw-r--r--vendor/aws/aws-sdk-php/src/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/IoT1ClickProjects/IoT1ClickProjectsClient.php41
2 files changed, 50 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php b/vendor/aws/aws-sdk-php/src/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php
new file mode 100644
index 0000000..afe87ae
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\IoT1ClickProjects\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS IoT 1-Click Projects Service** service.
+ */
+class IoT1ClickProjectsException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/IoT1ClickProjects/IoT1ClickProjectsClient.php b/vendor/aws/aws-sdk-php/src/IoT1ClickProjects/IoT1ClickProjectsClient.php
new file mode 100644
index 0000000..448b337
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/IoT1ClickProjects/IoT1ClickProjectsClient.php
@@ -0,0 +1,41 @@
+<?php
+namespace Aws\IoT1ClickProjects;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS IoT 1-Click Projects Service** service.
+ * @method \Aws\Result associateDeviceWithPlacement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateDeviceWithPlacementAsync(array $args = [])
+ * @method \Aws\Result createPlacement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createPlacementAsync(array $args = [])
+ * @method \Aws\Result createProject(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createProjectAsync(array $args = [])
+ * @method \Aws\Result deletePlacement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deletePlacementAsync(array $args = [])
+ * @method \Aws\Result deleteProject(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteProjectAsync(array $args = [])
+ * @method \Aws\Result describePlacement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describePlacementAsync(array $args = [])
+ * @method \Aws\Result describeProject(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeProjectAsync(array $args = [])
+ * @method \Aws\Result disassociateDeviceFromPlacement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateDeviceFromPlacementAsync(array $args = [])
+ * @method \Aws\Result getDevicesInPlacement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getDevicesInPlacementAsync(array $args = [])
+ * @method \Aws\Result listPlacements(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listPlacementsAsync(array $args = [])
+ * @method \Aws\Result listProjects(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listProjectsAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result tagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
+ * @method \Aws\Result untagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
+ * @method \Aws\Result updatePlacement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updatePlacementAsync(array $args = [])
+ * @method \Aws\Result updateProject(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateProjectAsync(array $args = [])
+ */
+class IoT1ClickProjectsClient extends AwsClient {}