summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ResourceGroups
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/ResourceGroups
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ResourceGroups')
-rw-r--r--vendor/aws/aws-sdk-php/src/ResourceGroups/Exception/ResourceGroupsException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/ResourceGroups/ResourceGroupsClient.php41
2 files changed, 50 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ResourceGroups/Exception/ResourceGroupsException.php b/vendor/aws/aws-sdk-php/src/ResourceGroups/Exception/ResourceGroupsException.php
new file mode 100644
index 0000000..66b8115
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ResourceGroups/Exception/ResourceGroupsException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ResourceGroups\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Resource Groups** service.
+ */
+class ResourceGroupsException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/ResourceGroups/ResourceGroupsClient.php b/vendor/aws/aws-sdk-php/src/ResourceGroups/ResourceGroupsClient.php
new file mode 100644
index 0000000..97aba31
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ResourceGroups/ResourceGroupsClient.php
@@ -0,0 +1,41 @@
+<?php
+namespace Aws\ResourceGroups;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Resource Groups** service.
+ * @method \Aws\Result createGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createGroupAsync(array $args = [])
+ * @method \Aws\Result deleteGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteGroupAsync(array $args = [])
+ * @method \Aws\Result getGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getGroupAsync(array $args = [])
+ * @method \Aws\Result getGroupConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getGroupConfigurationAsync(array $args = [])
+ * @method \Aws\Result getGroupQuery(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getGroupQueryAsync(array $args = [])
+ * @method \Aws\Result getTags(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getTagsAsync(array $args = [])
+ * @method \Aws\Result groupResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise groupResourcesAsync(array $args = [])
+ * @method \Aws\Result listGroupResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listGroupResourcesAsync(array $args = [])
+ * @method \Aws\Result listGroups(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listGroupsAsync(array $args = [])
+ * @method \Aws\Result putGroupConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putGroupConfigurationAsync(array $args = [])
+ * @method \Aws\Result searchResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise searchResourcesAsync(array $args = [])
+ * @method \Aws\Result tag(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise tagAsync(array $args = [])
+ * @method \Aws\Result ungroupResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise ungroupResourcesAsync(array $args = [])
+ * @method \Aws\Result untag(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise untagAsync(array $args = [])
+ * @method \Aws\Result updateGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateGroupAsync(array $args = [])
+ * @method \Aws\Result updateGroupQuery(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateGroupQueryAsync(array $args = [])
+ */
+class ResourceGroupsClient extends AwsClient {}