summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Pricing
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/Pricing
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/Pricing')
-rw-r--r--vendor/aws/aws-sdk-php/src/Pricing/Exception/PricingException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/Pricing/PricingClient.php15
2 files changed, 24 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/Pricing/Exception/PricingException.php b/vendor/aws/aws-sdk-php/src/Pricing/Exception/PricingException.php
new file mode 100644
index 0000000..0dcf122
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Pricing/Exception/PricingException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\Pricing\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Price List Service** service.
+ */
+class PricingException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/Pricing/PricingClient.php b/vendor/aws/aws-sdk-php/src/Pricing/PricingClient.php
new file mode 100644
index 0000000..a11dc4f
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Pricing/PricingClient.php
@@ -0,0 +1,15 @@
+<?php
+namespace Aws\Pricing;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Price List Service** service.
+ * @method \Aws\Result describeServices(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeServicesAsync(array $args = [])
+ * @method \Aws\Result getAttributeValues(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getAttributeValuesAsync(array $args = [])
+ * @method \Aws\Result getProducts(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getProductsAsync(array $args = [])
+ */
+class PricingClient extends AwsClient {}