summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/PrometheusService
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/PrometheusService
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/PrometheusService')
-rw-r--r--vendor/aws/aws-sdk-php/src/PrometheusService/Exception/PrometheusServiceException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/PrometheusService/PrometheusServiceClient.php51
2 files changed, 60 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/PrometheusService/Exception/PrometheusServiceException.php b/vendor/aws/aws-sdk-php/src/PrometheusService/Exception/PrometheusServiceException.php
new file mode 100644
index 0000000..0df4862
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PrometheusService/Exception/PrometheusServiceException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\PrometheusService\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Prometheus Service** service.
+ */
+class PrometheusServiceException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/PrometheusService/PrometheusServiceClient.php b/vendor/aws/aws-sdk-php/src/PrometheusService/PrometheusServiceClient.php
new file mode 100644
index 0000000..8c728f7
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PrometheusService/PrometheusServiceClient.php
@@ -0,0 +1,51 @@
+<?php
+namespace Aws\PrometheusService;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Prometheus Service** service.
+ * @method \Aws\Result createAlertManagerDefinition(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createAlertManagerDefinitionAsync(array $args = [])
+ * @method \Aws\Result createLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result createRuleGroupsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createRuleGroupsNamespaceAsync(array $args = [])
+ * @method \Aws\Result createWorkspace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createWorkspaceAsync(array $args = [])
+ * @method \Aws\Result deleteAlertManagerDefinition(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteAlertManagerDefinitionAsync(array $args = [])
+ * @method \Aws\Result deleteLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result deleteRuleGroupsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteRuleGroupsNamespaceAsync(array $args = [])
+ * @method \Aws\Result deleteWorkspace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteWorkspaceAsync(array $args = [])
+ * @method \Aws\Result describeAlertManagerDefinition(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeAlertManagerDefinitionAsync(array $args = [])
+ * @method \Aws\Result describeLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result describeRuleGroupsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeRuleGroupsNamespaceAsync(array $args = [])
+ * @method \Aws\Result describeWorkspace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeWorkspaceAsync(array $args = [])
+ * @method \Aws\Result listRuleGroupsNamespaces(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listRuleGroupsNamespacesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result listWorkspaces(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listWorkspacesAsync(array $args = [])
+ * @method \Aws\Result putAlertManagerDefinition(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putAlertManagerDefinitionAsync(array $args = [])
+ * @method \Aws\Result putRuleGroupsNamespace(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putRuleGroupsNamespaceAsync(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 updateLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result updateWorkspaceAlias(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateWorkspaceAliasAsync(array $args = [])
+ */
+class PrometheusServiceClient extends AwsClient {}