summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/PI
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/PI
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/PI')
-rw-r--r--vendor/aws/aws-sdk-php/src/PI/Exception/PIException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/PI/PIClient.php21
2 files changed, 30 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/PI/Exception/PIException.php b/vendor/aws/aws-sdk-php/src/PI/Exception/PIException.php
new file mode 100644
index 0000000..2a565c9
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PI/Exception/PIException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\PI\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Performance Insights** service.
+ */
+class PIException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/PI/PIClient.php b/vendor/aws/aws-sdk-php/src/PI/PIClient.php
new file mode 100644
index 0000000..9f6fe95
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PI/PIClient.php
@@ -0,0 +1,21 @@
+<?php
+namespace Aws\PI;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Performance Insights** service.
+ * @method \Aws\Result describeDimensionKeys(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeDimensionKeysAsync(array $args = [])
+ * @method \Aws\Result getDimensionKeyDetails(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getDimensionKeyDetailsAsync(array $args = [])
+ * @method \Aws\Result getResourceMetadata(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getResourceMetadataAsync(array $args = [])
+ * @method \Aws\Result getResourceMetrics(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getResourceMetricsAsync(array $args = [])
+ * @method \Aws\Result listAvailableResourceDimensions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAvailableResourceDimensionsAsync(array $args = [])
+ * @method \Aws\Result listAvailableResourceMetrics(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAvailableResourceMetricsAsync(array $args = [])
+ */
+class PIClient extends AwsClient {}