summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/QLDB
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/QLDB
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/QLDB')
-rw-r--r--vendor/aws/aws-sdk-php/src/QLDB/Exception/QLDBException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/QLDB/QLDBClient.php49
2 files changed, 58 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/QLDB/Exception/QLDBException.php b/vendor/aws/aws-sdk-php/src/QLDB/Exception/QLDBException.php
new file mode 100644
index 0000000..a836944
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/QLDB/Exception/QLDBException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\QLDB\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon QLDB** service.
+ */
+class QLDBException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/QLDB/QLDBClient.php b/vendor/aws/aws-sdk-php/src/QLDB/QLDBClient.php
new file mode 100644
index 0000000..123b140
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/QLDB/QLDBClient.php
@@ -0,0 +1,49 @@
+<?php
+namespace Aws\QLDB;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon QLDB** service.
+ * @method \Aws\Result cancelJournalKinesisStream(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise cancelJournalKinesisStreamAsync(array $args = [])
+ * @method \Aws\Result createLedger(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createLedgerAsync(array $args = [])
+ * @method \Aws\Result deleteLedger(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteLedgerAsync(array $args = [])
+ * @method \Aws\Result describeJournalKinesisStream(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeJournalKinesisStreamAsync(array $args = [])
+ * @method \Aws\Result describeJournalS3Export(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeJournalS3ExportAsync(array $args = [])
+ * @method \Aws\Result describeLedger(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeLedgerAsync(array $args = [])
+ * @method \Aws\Result exportJournalToS3(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise exportJournalToS3Async(array $args = [])
+ * @method \Aws\Result getBlock(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getBlockAsync(array $args = [])
+ * @method \Aws\Result getDigest(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getDigestAsync(array $args = [])
+ * @method \Aws\Result getRevision(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getRevisionAsync(array $args = [])
+ * @method \Aws\Result listJournalKinesisStreamsForLedger(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listJournalKinesisStreamsForLedgerAsync(array $args = [])
+ * @method \Aws\Result listJournalS3Exports(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listJournalS3ExportsAsync(array $args = [])
+ * @method \Aws\Result listJournalS3ExportsForLedger(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listJournalS3ExportsForLedgerAsync(array $args = [])
+ * @method \Aws\Result listLedgers(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listLedgersAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result streamJournalToKinesis(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise streamJournalToKinesisAsync(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 updateLedger(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateLedgerAsync(array $args = [])
+ * @method \Aws\Result updateLedgerPermissionsMode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateLedgerPermissionsModeAsync(array $args = [])
+ */
+class QLDBClient extends AwsClient {}