summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/SnowDeviceManagement
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/SnowDeviceManagement
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/SnowDeviceManagement')
-rw-r--r--vendor/aws/aws-sdk-php/src/SnowDeviceManagement/Exception/SnowDeviceManagementException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/SnowDeviceManagement/SnowDeviceManagementClient.php35
2 files changed, 44 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/Exception/SnowDeviceManagementException.php b/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/Exception/SnowDeviceManagementException.php
new file mode 100644
index 0000000..e92ac91
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/Exception/SnowDeviceManagementException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\SnowDeviceManagement\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Snow Device Management** service.
+ */
+class SnowDeviceManagementException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/SnowDeviceManagementClient.php b/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/SnowDeviceManagementClient.php
new file mode 100644
index 0000000..bc6d97e
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SnowDeviceManagement/SnowDeviceManagementClient.php
@@ -0,0 +1,35 @@
+<?php
+namespace Aws\SnowDeviceManagement;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Snow Device Management** service.
+ * @method \Aws\Result cancelTask(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise cancelTaskAsync(array $args = [])
+ * @method \Aws\Result createTask(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createTaskAsync(array $args = [])
+ * @method \Aws\Result describeDevice(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeDeviceAsync(array $args = [])
+ * @method \Aws\Result describeDeviceEc2Instances(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeDeviceEc2InstancesAsync(array $args = [])
+ * @method \Aws\Result describeExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeExecutionAsync(array $args = [])
+ * @method \Aws\Result describeTask(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeTaskAsync(array $args = [])
+ * @method \Aws\Result listDeviceResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listDeviceResourcesAsync(array $args = [])
+ * @method \Aws\Result listDevices(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listDevicesAsync(array $args = [])
+ * @method \Aws\Result listExecutions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listExecutionsAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result listTasks(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTasksAsync(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 = [])
+ */
+class SnowDeviceManagementClient extends AwsClient {}