summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ServiceQuotas
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/ServiceQuotas
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ServiceQuotas')
-rw-r--r--vendor/aws/aws-sdk-php/src/ServiceQuotas/Exception/ServiceQuotasException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/ServiceQuotas/ServiceQuotasClient.php47
2 files changed, 56 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ServiceQuotas/Exception/ServiceQuotasException.php b/vendor/aws/aws-sdk-php/src/ServiceQuotas/Exception/ServiceQuotasException.php
new file mode 100644
index 0000000..831f2b4
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ServiceQuotas/Exception/ServiceQuotasException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ServiceQuotas\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Service Quotas** service.
+ */
+class ServiceQuotasException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/ServiceQuotas/ServiceQuotasClient.php b/vendor/aws/aws-sdk-php/src/ServiceQuotas/ServiceQuotasClient.php
new file mode 100644
index 0000000..c445da7
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ServiceQuotas/ServiceQuotasClient.php
@@ -0,0 +1,47 @@
+<?php
+namespace Aws\ServiceQuotas;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Service Quotas** service.
+ * @method \Aws\Result associateServiceQuotaTemplate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateServiceQuotaTemplateAsync(array $args = [])
+ * @method \Aws\Result deleteServiceQuotaIncreaseRequestFromTemplate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteServiceQuotaIncreaseRequestFromTemplateAsync(array $args = [])
+ * @method \Aws\Result disassociateServiceQuotaTemplate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateServiceQuotaTemplateAsync(array $args = [])
+ * @method \Aws\Result getAWSDefaultServiceQuota(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getAWSDefaultServiceQuotaAsync(array $args = [])
+ * @method \Aws\Result getAssociationForServiceQuotaTemplate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getAssociationForServiceQuotaTemplateAsync(array $args = [])
+ * @method \Aws\Result getRequestedServiceQuotaChange(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getRequestedServiceQuotaChangeAsync(array $args = [])
+ * @method \Aws\Result getServiceQuota(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getServiceQuotaAsync(array $args = [])
+ * @method \Aws\Result getServiceQuotaIncreaseRequestFromTemplate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getServiceQuotaIncreaseRequestFromTemplateAsync(array $args = [])
+ * @method \Aws\Result listAWSDefaultServiceQuotas(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAWSDefaultServiceQuotasAsync(array $args = [])
+ * @method \Aws\Result listRequestedServiceQuotaChangeHistory(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listRequestedServiceQuotaChangeHistoryAsync(array $args = [])
+ * @method \Aws\Result listRequestedServiceQuotaChangeHistoryByQuota(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listRequestedServiceQuotaChangeHistoryByQuotaAsync(array $args = [])
+ * @method \Aws\Result listServiceQuotaIncreaseRequestsInTemplate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listServiceQuotaIncreaseRequestsInTemplateAsync(array $args = [])
+ * @method \Aws\Result listServiceQuotas(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listServiceQuotasAsync(array $args = [])
+ * @method \Aws\Result listServices(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listServicesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result putServiceQuotaIncreaseRequestIntoTemplate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putServiceQuotaIncreaseRequestIntoTemplateAsync(array $args = [])
+ * @method \Aws\Result requestServiceQuotaIncrease(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise requestServiceQuotaIncreaseAsync(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 ServiceQuotasClient extends AwsClient {}