summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/OpsWorksCM
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/OpsWorksCM
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/OpsWorksCM')
-rw-r--r--vendor/aws/aws-sdk-php/src/OpsWorksCM/Exception/OpsWorksCMException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/OpsWorksCM/OpsWorksCMClient.php47
2 files changed, 56 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/OpsWorksCM/Exception/OpsWorksCMException.php b/vendor/aws/aws-sdk-php/src/OpsWorksCM/Exception/OpsWorksCMException.php
new file mode 100644
index 0000000..56bcc82
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/OpsWorksCM/Exception/OpsWorksCMException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\OpsWorksCM\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS OpsWorks for Chef Automate** service.
+ */
+class OpsWorksCMException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/OpsWorksCM/OpsWorksCMClient.php b/vendor/aws/aws-sdk-php/src/OpsWorksCM/OpsWorksCMClient.php
new file mode 100644
index 0000000..2186075
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/OpsWorksCM/OpsWorksCMClient.php
@@ -0,0 +1,47 @@
+<?php
+namespace Aws\OpsWorksCM;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS OpsWorks for Chef Automate** service.
+ * @method \Aws\Result associateNode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise associateNodeAsync(array $args = [])
+ * @method \Aws\Result createBackup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createBackupAsync(array $args = [])
+ * @method \Aws\Result createServer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createServerAsync(array $args = [])
+ * @method \Aws\Result deleteBackup(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteBackupAsync(array $args = [])
+ * @method \Aws\Result deleteServer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteServerAsync(array $args = [])
+ * @method \Aws\Result describeAccountAttributes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeAccountAttributesAsync(array $args = [])
+ * @method \Aws\Result describeBackups(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBackupsAsync(array $args = [])
+ * @method \Aws\Result describeEvents(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeEventsAsync(array $args = [])
+ * @method \Aws\Result describeNodeAssociationStatus(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeNodeAssociationStatusAsync(array $args = [])
+ * @method \Aws\Result describeServers(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeServersAsync(array $args = [])
+ * @method \Aws\Result disassociateNode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disassociateNodeAsync(array $args = [])
+ * @method \Aws\Result exportServerEngineAttribute(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise exportServerEngineAttributeAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result restoreServer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise restoreServerAsync(array $args = [])
+ * @method \Aws\Result startMaintenance(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startMaintenanceAsync(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 updateServer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateServerAsync(array $args = [])
+ * @method \Aws\Result updateServerEngineAttributes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateServerEngineAttributesAsync(array $args = [])
+ */
+class OpsWorksCMClient extends AwsClient {}