summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Budgets
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/Budgets
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/Budgets')
-rw-r--r--vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php55
-rw-r--r--vendor/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php9
2 files changed, 64 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php b/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php
new file mode 100644
index 0000000..03af3a7
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Budgets/BudgetsClient.php
@@ -0,0 +1,55 @@
+<?php
+namespace Aws\Budgets;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Budgets** service.
+ * @method \Aws\Result createBudget(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createBudgetAsync(array $args = [])
+ * @method \Aws\Result createBudgetAction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createBudgetActionAsync(array $args = [])
+ * @method \Aws\Result createNotification(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createNotificationAsync(array $args = [])
+ * @method \Aws\Result createSubscriber(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createSubscriberAsync(array $args = [])
+ * @method \Aws\Result deleteBudget(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteBudgetAsync(array $args = [])
+ * @method \Aws\Result deleteBudgetAction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteBudgetActionAsync(array $args = [])
+ * @method \Aws\Result deleteNotification(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteNotificationAsync(array $args = [])
+ * @method \Aws\Result deleteSubscriber(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteSubscriberAsync(array $args = [])
+ * @method \Aws\Result describeBudget(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetAsync(array $args = [])
+ * @method \Aws\Result describeBudgetAction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetActionAsync(array $args = [])
+ * @method \Aws\Result describeBudgetActionHistories(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetActionHistoriesAsync(array $args = [])
+ * @method \Aws\Result describeBudgetActionsForAccount(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetActionsForAccountAsync(array $args = [])
+ * @method \Aws\Result describeBudgetActionsForBudget(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetActionsForBudgetAsync(array $args = [])
+ * @method \Aws\Result describeBudgetNotificationsForAccount(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetNotificationsForAccountAsync(array $args = [])
+ * @method \Aws\Result describeBudgetPerformanceHistory(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetPerformanceHistoryAsync(array $args = [])
+ * @method \Aws\Result describeBudgets(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBudgetsAsync(array $args = [])
+ * @method \Aws\Result describeNotificationsForBudget(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeNotificationsForBudgetAsync(array $args = [])
+ * @method \Aws\Result describeSubscribersForNotification(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSubscribersForNotificationAsync(array $args = [])
+ * @method \Aws\Result executeBudgetAction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise executeBudgetActionAsync(array $args = [])
+ * @method \Aws\Result updateBudget(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateBudgetAsync(array $args = [])
+ * @method \Aws\Result updateBudgetAction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateBudgetActionAsync(array $args = [])
+ * @method \Aws\Result updateNotification(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateNotificationAsync(array $args = [])
+ * @method \Aws\Result updateSubscriber(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateSubscriberAsync(array $args = [])
+ */
+class BudgetsClient extends AwsClient {}
diff --git a/vendor/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php b/vendor/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php
new file mode 100644
index 0000000..f6f5f45
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Budgets/Exception/BudgetsException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\Budgets\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Budgets** service.
+ */
+class BudgetsException extends AwsException {}