summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/SavingsPlans
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/SavingsPlans
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/SavingsPlans')
-rw-r--r--vendor/aws/aws-sdk-php/src/SavingsPlans/Exception/SavingsPlansException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/SavingsPlans/SavingsPlansClient.php27
2 files changed, 36 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/SavingsPlans/Exception/SavingsPlansException.php b/vendor/aws/aws-sdk-php/src/SavingsPlans/Exception/SavingsPlansException.php
new file mode 100644
index 0000000..09ec3d5
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SavingsPlans/Exception/SavingsPlansException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\SavingsPlans\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Savings Plans** service.
+ */
+class SavingsPlansException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/SavingsPlans/SavingsPlansClient.php b/vendor/aws/aws-sdk-php/src/SavingsPlans/SavingsPlansClient.php
new file mode 100644
index 0000000..ba3c304
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SavingsPlans/SavingsPlansClient.php
@@ -0,0 +1,27 @@
+<?php
+namespace Aws\SavingsPlans;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Savings Plans** service.
+ * @method \Aws\Result createSavingsPlan(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createSavingsPlanAsync(array $args = [])
+ * @method \Aws\Result deleteQueuedSavingsPlan(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteQueuedSavingsPlanAsync(array $args = [])
+ * @method \Aws\Result describeSavingsPlanRates(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSavingsPlanRatesAsync(array $args = [])
+ * @method \Aws\Result describeSavingsPlans(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSavingsPlansAsync(array $args = [])
+ * @method \Aws\Result describeSavingsPlansOfferingRates(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSavingsPlansOfferingRatesAsync(array $args = [])
+ * @method \Aws\Result describeSavingsPlansOfferings(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSavingsPlansOfferingsAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(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 SavingsPlansClient extends AwsClient {}