summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/BackupGateway
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/BackupGateway
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/BackupGateway')
-rw-r--r--vendor/aws/aws-sdk-php/src/BackupGateway/BackupGatewayClient.php47
-rw-r--r--vendor/aws/aws-sdk-php/src/BackupGateway/Exception/BackupGatewayException.php9
2 files changed, 56 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/BackupGateway/BackupGatewayClient.php b/vendor/aws/aws-sdk-php/src/BackupGateway/BackupGatewayClient.php
new file mode 100644
index 0000000..459414b
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/BackupGateway/BackupGatewayClient.php
@@ -0,0 +1,47 @@
+<?php
+namespace Aws\BackupGateway;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Backup Gateway** service.
+ * @method \Aws\Result associateGatewayToServer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateGatewayToServerAsync(array $args = [])
+ * @method \Aws\Result createGateway(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createGatewayAsync(array $args = [])
+ * @method \Aws\Result deleteGateway(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteGatewayAsync(array $args = [])
+ * @method \Aws\Result deleteHypervisor(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteHypervisorAsync(array $args = [])
+ * @method \Aws\Result disassociateGatewayFromServer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateGatewayFromServerAsync(array $args = [])
+ * @method \Aws\Result getGateway(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getGatewayAsync(array $args = [])
+ * @method \Aws\Result getVirtualMachine(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getVirtualMachineAsync(array $args = [])
+ * @method \Aws\Result importHypervisorConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise importHypervisorConfigurationAsync(array $args = [])
+ * @method \Aws\Result listGateways(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listGatewaysAsync(array $args = [])
+ * @method \Aws\Result listHypervisors(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listHypervisorsAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result listVirtualMachines(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listVirtualMachinesAsync(array $args = [])
+ * @method \Aws\Result putMaintenanceStartTime(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putMaintenanceStartTimeAsync(array $args = [])
+ * @method \Aws\Result tagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
+ * @method \Aws\Result testHypervisorConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise testHypervisorConfigurationAsync(array $args = [])
+ * @method \Aws\Result untagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
+ * @method \Aws\Result updateGatewayInformation(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateGatewayInformationAsync(array $args = [])
+ * @method \Aws\Result updateGatewaySoftwareNow(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateGatewaySoftwareNowAsync(array $args = [])
+ * @method \Aws\Result updateHypervisor(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateHypervisorAsync(array $args = [])
+ */
+class BackupGatewayClient extends AwsClient {}
diff --git a/vendor/aws/aws-sdk-php/src/BackupGateway/Exception/BackupGatewayException.php b/vendor/aws/aws-sdk-php/src/BackupGateway/Exception/BackupGatewayException.php
new file mode 100644
index 0000000..7799b97
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/BackupGateway/Exception/BackupGatewayException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\BackupGateway\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Backup Gateway** service.
+ */
+class BackupGatewayException extends AwsException {}