summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/AutoScalingPlans
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/AutoScalingPlans
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/AutoScalingPlans')
-rw-r--r--vendor/aws/aws-sdk-php/src/AutoScalingPlans/AutoScalingPlansClient.php21
-rw-r--r--vendor/aws/aws-sdk-php/src/AutoScalingPlans/Exception/AutoScalingPlansException.php9
2 files changed, 30 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/AutoScalingPlans/AutoScalingPlansClient.php b/vendor/aws/aws-sdk-php/src/AutoScalingPlans/AutoScalingPlansClient.php
new file mode 100644
index 0000000..8431cd3
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/AutoScalingPlans/AutoScalingPlansClient.php
@@ -0,0 +1,21 @@
+<?php
+namespace Aws\AutoScalingPlans;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Auto Scaling Plans** service.
+ * @method \Aws\Result createScalingPlan(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createScalingPlanAsync(array $args = [])
+ * @method \Aws\Result deleteScalingPlan(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteScalingPlanAsync(array $args = [])
+ * @method \Aws\Result describeScalingPlanResources(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeScalingPlanResourcesAsync(array $args = [])
+ * @method \Aws\Result describeScalingPlans(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeScalingPlansAsync(array $args = [])
+ * @method \Aws\Result getScalingPlanResourceForecastData(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getScalingPlanResourceForecastDataAsync(array $args = [])
+ * @method \Aws\Result updateScalingPlan(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateScalingPlanAsync(array $args = [])
+ */
+class AutoScalingPlansClient extends AwsClient {}
diff --git a/vendor/aws/aws-sdk-php/src/AutoScalingPlans/Exception/AutoScalingPlansException.php b/vendor/aws/aws-sdk-php/src/AutoScalingPlans/Exception/AutoScalingPlansException.php
new file mode 100644
index 0000000..831e505
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/AutoScalingPlans/Exception/AutoScalingPlansException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\AutoScalingPlans\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Auto Scaling Plans** service.
+ */
+class AutoScalingPlansException extends AwsException {}