summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ApplicationInsights
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/ApplicationInsights
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ApplicationInsights')
-rw-r--r--vendor/aws/aws-sdk-php/src/ApplicationInsights/ApplicationInsightsClient.php63
-rw-r--r--vendor/aws/aws-sdk-php/src/ApplicationInsights/Exception/ApplicationInsightsException.php9
2 files changed, 72 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationInsights/ApplicationInsightsClient.php b/vendor/aws/aws-sdk-php/src/ApplicationInsights/ApplicationInsightsClient.php
new file mode 100644
index 0000000..e5aea07
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ApplicationInsights/ApplicationInsightsClient.php
@@ -0,0 +1,63 @@
+<?php
+namespace Aws\ApplicationInsights;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon CloudWatch Application Insights** service.
+ * @method \Aws\Result createApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createApplicationAsync(array $args = [])
+ * @method \Aws\Result createComponent(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createComponentAsync(array $args = [])
+ * @method \Aws\Result createLogPattern(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createLogPatternAsync(array $args = [])
+ * @method \Aws\Result deleteApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteApplicationAsync(array $args = [])
+ * @method \Aws\Result deleteComponent(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteComponentAsync(array $args = [])
+ * @method \Aws\Result deleteLogPattern(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteLogPatternAsync(array $args = [])
+ * @method \Aws\Result describeApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeApplicationAsync(array $args = [])
+ * @method \Aws\Result describeComponent(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeComponentAsync(array $args = [])
+ * @method \Aws\Result describeComponentConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeComponentConfigurationAsync(array $args = [])
+ * @method \Aws\Result describeComponentConfigurationRecommendation(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeComponentConfigurationRecommendationAsync(array $args = [])
+ * @method \Aws\Result describeLogPattern(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeLogPatternAsync(array $args = [])
+ * @method \Aws\Result describeObservation(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeObservationAsync(array $args = [])
+ * @method \Aws\Result describeProblem(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeProblemAsync(array $args = [])
+ * @method \Aws\Result describeProblemObservations(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeProblemObservationsAsync(array $args = [])
+ * @method \Aws\Result listApplications(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listApplicationsAsync(array $args = [])
+ * @method \Aws\Result listComponents(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listComponentsAsync(array $args = [])
+ * @method \Aws\Result listConfigurationHistory(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listConfigurationHistoryAsync(array $args = [])
+ * @method \Aws\Result listLogPatternSets(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listLogPatternSetsAsync(array $args = [])
+ * @method \Aws\Result listLogPatterns(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listLogPatternsAsync(array $args = [])
+ * @method \Aws\Result listProblems(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listProblemsAsync(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 = [])
+ * @method \Aws\Result updateApplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateApplicationAsync(array $args = [])
+ * @method \Aws\Result updateComponent(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateComponentAsync(array $args = [])
+ * @method \Aws\Result updateComponentConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateComponentConfigurationAsync(array $args = [])
+ * @method \Aws\Result updateLogPattern(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateLogPatternAsync(array $args = [])
+ */
+class ApplicationInsightsClient extends AwsClient {}
diff --git a/vendor/aws/aws-sdk-php/src/ApplicationInsights/Exception/ApplicationInsightsException.php b/vendor/aws/aws-sdk-php/src/ApplicationInsights/Exception/ApplicationInsightsException.php
new file mode 100644
index 0000000..615f365
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ApplicationInsights/Exception/ApplicationInsightsException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ApplicationInsights\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon CloudWatch Application Insights** service.
+ */
+class ApplicationInsightsException extends AwsException {}