summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/MigrationHub
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/MigrationHub
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/MigrationHub')
-rw-r--r--vendor/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php43
2 files changed, 52 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php b/vendor/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php
new file mode 100644
index 0000000..4fc3c5d
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\MigrationHub\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Migration Hub** service.
+ */
+class MigrationHubException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php b/vendor/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php
new file mode 100644
index 0000000..4cb89f4
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php
@@ -0,0 +1,43 @@
+<?php
+namespace Aws\MigrationHub;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Migration Hub** service.
+ * @method \Aws\Result associateCreatedArtifact(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateCreatedArtifactAsync(array $args = [])
+ * @method \Aws\Result associateDiscoveredResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateDiscoveredResourceAsync(array $args = [])
+ * @method \Aws\Result createProgressUpdateStream(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createProgressUpdateStreamAsync(array $args = [])
+ * @method \Aws\Result deleteProgressUpdateStream(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteProgressUpdateStreamAsync(array $args = [])
+ * @method \Aws\Result describeApplicationState(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeApplicationStateAsync(array $args = [])
+ * @method \Aws\Result describeMigrationTask(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeMigrationTaskAsync(array $args = [])
+ * @method \Aws\Result disassociateCreatedArtifact(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateCreatedArtifactAsync(array $args = [])
+ * @method \Aws\Result disassociateDiscoveredResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateDiscoveredResourceAsync(array $args = [])
+ * @method \Aws\Result importMigrationTask(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise importMigrationTaskAsync(array $args = [])
+ * @method \Aws\Result listApplicationStates(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listApplicationStatesAsync(array $args = [])
+ * @method \Aws\Result listCreatedArtifacts(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listCreatedArtifactsAsync(array $args = [])
+ * @method \Aws\Result listDiscoveredResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listDiscoveredResourcesAsync(array $args = [])
+ * @method \Aws\Result listMigrationTasks(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listMigrationTasksAsync(array $args = [])
+ * @method \Aws\Result listProgressUpdateStreams(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listProgressUpdateStreamsAsync(array $args = [])
+ * @method \Aws\Result notifyApplicationState(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise notifyApplicationStateAsync(array $args = [])
+ * @method \Aws\Result notifyMigrationTaskState(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise notifyMigrationTaskStateAsync(array $args = [])
+ * @method \Aws\Result putResourceAttributes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putResourceAttributesAsync(array $args = [])
+ */
+class MigrationHubClient extends AwsClient {}