summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ManagedBlockchain
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/ManagedBlockchain
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ManagedBlockchain')
-rw-r--r--vendor/aws/aws-sdk-php/src/ManagedBlockchain/Exception/ManagedBlockchainException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/ManagedBlockchain/ManagedBlockchainClient.php63
2 files changed, 72 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ManagedBlockchain/Exception/ManagedBlockchainException.php b/vendor/aws/aws-sdk-php/src/ManagedBlockchain/Exception/ManagedBlockchainException.php
new file mode 100644
index 0000000..7e40c45
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ManagedBlockchain/Exception/ManagedBlockchainException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ManagedBlockchain\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Managed Blockchain** service.
+ */
+class ManagedBlockchainException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/ManagedBlockchain/ManagedBlockchainClient.php b/vendor/aws/aws-sdk-php/src/ManagedBlockchain/ManagedBlockchainClient.php
new file mode 100644
index 0000000..b17314b
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ManagedBlockchain/ManagedBlockchainClient.php
@@ -0,0 +1,63 @@
+<?php
+namespace Aws\ManagedBlockchain;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Managed Blockchain** service.
+ * @method \Aws\Result createAccessor(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createAccessorAsync(array $args = [])
+ * @method \Aws\Result createMember(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createMemberAsync(array $args = [])
+ * @method \Aws\Result createNetwork(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createNetworkAsync(array $args = [])
+ * @method \Aws\Result createNode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createNodeAsync(array $args = [])
+ * @method \Aws\Result createProposal(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createProposalAsync(array $args = [])
+ * @method \Aws\Result deleteAccessor(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteAccessorAsync(array $args = [])
+ * @method \Aws\Result deleteMember(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteMemberAsync(array $args = [])
+ * @method \Aws\Result deleteNode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteNodeAsync(array $args = [])
+ * @method \Aws\Result getAccessor(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getAccessorAsync(array $args = [])
+ * @method \Aws\Result getMember(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getMemberAsync(array $args = [])
+ * @method \Aws\Result getNetwork(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getNetworkAsync(array $args = [])
+ * @method \Aws\Result getNode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getNodeAsync(array $args = [])
+ * @method \Aws\Result getProposal(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getProposalAsync(array $args = [])
+ * @method \Aws\Result listAccessors(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAccessorsAsync(array $args = [])
+ * @method \Aws\Result listInvitations(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listInvitationsAsync(array $args = [])
+ * @method \Aws\Result listMembers(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listMembersAsync(array $args = [])
+ * @method \Aws\Result listNetworks(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listNetworksAsync(array $args = [])
+ * @method \Aws\Result listNodes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listNodesAsync(array $args = [])
+ * @method \Aws\Result listProposalVotes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listProposalVotesAsync(array $args = [])
+ * @method \Aws\Result listProposals(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listProposalsAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result rejectInvitation(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise rejectInvitationAsync(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 updateMember(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateMemberAsync(array $args = [])
+ * @method \Aws\Result updateNode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateNodeAsync(array $args = [])
+ * @method \Aws\Result voteOnProposal(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise voteOnProposalAsync(array $args = [])
+ */
+class ManagedBlockchainClient extends AwsClient {}