summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/AppRegistry
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/AppRegistry
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/AppRegistry')
-rw-r--r--vendor/aws/aws-sdk-php/src/AppRegistry/AppRegistryClient.php57
-rw-r--r--vendor/aws/aws-sdk-php/src/AppRegistry/Exception/AppRegistryException.php9
2 files changed, 66 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/AppRegistry/AppRegistryClient.php b/vendor/aws/aws-sdk-php/src/AppRegistry/AppRegistryClient.php
new file mode 100644
index 0000000..e2348ab
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/AppRegistry/AppRegistryClient.php
@@ -0,0 +1,57 @@
+<?php
+namespace Aws\AppRegistry;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Service Catalog App Registry** service.
+ * @method \Aws\Result associateAttributeGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateAttributeGroupAsync(array $args = [])
+ * @method \Aws\Result associateResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateResourceAsync(array $args = [])
+ * @method \Aws\Result createApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createApplicationAsync(array $args = [])
+ * @method \Aws\Result createAttributeGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createAttributeGroupAsync(array $args = [])
+ * @method \Aws\Result deleteApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteApplicationAsync(array $args = [])
+ * @method \Aws\Result deleteAttributeGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteAttributeGroupAsync(array $args = [])
+ * @method \Aws\Result disassociateAttributeGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateAttributeGroupAsync(array $args = [])
+ * @method \Aws\Result disassociateResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateResourceAsync(array $args = [])
+ * @method \Aws\Result getApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getApplicationAsync(array $args = [])
+ * @method \Aws\Result getAssociatedResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getAssociatedResourceAsync(array $args = [])
+ * @method \Aws\Result getAttributeGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getAttributeGroupAsync(array $args = [])
+ * @method \Aws\Result getConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getConfigurationAsync(array $args = [])
+ * @method \Aws\Result listApplications(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listApplicationsAsync(array $args = [])
+ * @method \Aws\Result listAssociatedAttributeGroups(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAssociatedAttributeGroupsAsync(array $args = [])
+ * @method \Aws\Result listAssociatedResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAssociatedResourcesAsync(array $args = [])
+ * @method \Aws\Result listAttributeGroups(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAttributeGroupsAsync(array $args = [])
+ * @method \Aws\Result listAttributeGroupsForApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAttributeGroupsForApplicationAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result putConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putConfigurationAsync(array $args = [])
+ * @method \Aws\Result syncResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise syncResourceAsync(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 updateApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateApplicationAsync(array $args = [])
+ * @method \Aws\Result updateAttributeGroup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateAttributeGroupAsync(array $args = [])
+ */
+class AppRegistryClient extends AwsClient {}
diff --git a/vendor/aws/aws-sdk-php/src/AppRegistry/Exception/AppRegistryException.php b/vendor/aws/aws-sdk-php/src/AppRegistry/Exception/AppRegistryException.php
new file mode 100644
index 0000000..695a5b2
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/AppRegistry/Exception/AppRegistryException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\AppRegistry\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Service Catalog App Registry** service.
+ */
+class AppRegistryException extends AwsException {}