summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ResourceExplorer2
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/ResourceExplorer2
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ResourceExplorer2')
-rw-r--r--vendor/aws/aws-sdk-php/src/ResourceExplorer2/Exception/ResourceExplorer2Exception.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/ResourceExplorer2/ResourceExplorer2Client.php47
2 files changed, 56 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ResourceExplorer2/Exception/ResourceExplorer2Exception.php b/vendor/aws/aws-sdk-php/src/ResourceExplorer2/Exception/ResourceExplorer2Exception.php
new file mode 100644
index 0000000..eb9ea32
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ResourceExplorer2/Exception/ResourceExplorer2Exception.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ResourceExplorer2\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Resource Explorer** service.
+ */
+class ResourceExplorer2Exception extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/ResourceExplorer2/ResourceExplorer2Client.php b/vendor/aws/aws-sdk-php/src/ResourceExplorer2/ResourceExplorer2Client.php
new file mode 100644
index 0000000..e40d4bc
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ResourceExplorer2/ResourceExplorer2Client.php
@@ -0,0 +1,47 @@
+<?php
+namespace Aws\ResourceExplorer2;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Resource Explorer** service.
+ * @method \Aws\Result associateDefaultView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateDefaultViewAsync(array $args = [])
+ * @method \Aws\Result batchGetView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise batchGetViewAsync(array $args = [])
+ * @method \Aws\Result createIndex(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createIndexAsync(array $args = [])
+ * @method \Aws\Result createView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createViewAsync(array $args = [])
+ * @method \Aws\Result deleteIndex(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteIndexAsync(array $args = [])
+ * @method \Aws\Result deleteView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteViewAsync(array $args = [])
+ * @method \Aws\Result disassociateDefaultView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateDefaultViewAsync(array $args = [])
+ * @method \Aws\Result getDefaultView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getDefaultViewAsync(array $args = [])
+ * @method \Aws\Result getIndex(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getIndexAsync(array $args = [])
+ * @method \Aws\Result getView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getViewAsync(array $args = [])
+ * @method \Aws\Result listIndexes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listIndexesAsync(array $args = [])
+ * @method \Aws\Result listSupportedResourceTypes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSupportedResourceTypesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result listViews(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listViewsAsync(array $args = [])
+ * @method \Aws\Result search(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise searchAsync(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 updateIndexType(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateIndexTypeAsync(array $args = [])
+ * @method \Aws\Result updateView(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateViewAsync(array $args = [])
+ */
+class ResourceExplorer2Client extends AwsClient {}