@aws-sdk/client-managedblockchain 3.278.0 → 3.281.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/README.md +219 -0
  2. package/dist-cjs/endpoint/ruleset.js +3 -3
  3. package/dist-cjs/models/models_0.js +16 -16
  4. package/dist-cjs/protocols/Aws_restJson1.js +5 -0
  5. package/dist-es/endpoint/ruleset.js +3 -3
  6. package/dist-es/models/models_0.js +13 -13
  7. package/dist-es/protocols/Aws_restJson1.js +5 -0
  8. package/dist-types/ManagedBlockchain.d.ts +6 -26
  9. package/dist-types/ManagedBlockchainClient.d.ts +2 -2
  10. package/dist-types/commands/CreateAccessorCommand.d.ts +7 -6
  11. package/dist-types/commands/CreateMemberCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateNetworkCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateNodeCommand.d.ts +6 -0
  14. package/dist-types/commands/CreateProposalCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteAccessorCommand.d.ts +7 -6
  16. package/dist-types/commands/DeleteMemberCommand.d.ts +6 -0
  17. package/dist-types/commands/DeleteNodeCommand.d.ts +6 -0
  18. package/dist-types/commands/GetAccessorCommand.d.ts +7 -6
  19. package/dist-types/commands/GetMemberCommand.d.ts +6 -0
  20. package/dist-types/commands/GetNetworkCommand.d.ts +6 -0
  21. package/dist-types/commands/GetNodeCommand.d.ts +6 -0
  22. package/dist-types/commands/GetProposalCommand.d.ts +6 -0
  23. package/dist-types/commands/ListAccessorsCommand.d.ts +7 -6
  24. package/dist-types/commands/ListInvitationsCommand.d.ts +6 -0
  25. package/dist-types/commands/ListMembersCommand.d.ts +6 -0
  26. package/dist-types/commands/ListNetworksCommand.d.ts +6 -0
  27. package/dist-types/commands/ListNodesCommand.d.ts +6 -0
  28. package/dist-types/commands/ListProposalVotesCommand.d.ts +6 -0
  29. package/dist-types/commands/ListProposalsCommand.d.ts +6 -0
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  31. package/dist-types/commands/RejectInvitationCommand.d.ts +6 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  34. package/dist-types/commands/UpdateMemberCommand.d.ts +6 -0
  35. package/dist-types/commands/UpdateNodeCommand.d.ts +6 -0
  36. package/dist-types/commands/VoteOnProposalCommand.d.ts +6 -0
  37. package/dist-types/models/models_0.d.ts +47 -36
  38. package/dist-types/ts3.4/models/models_0.d.ts +11 -9
  39. package/package.json +6 -6
@@ -3,17 +3,18 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { DeleteAccessorInput, DeleteAccessorOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteAccessorCommand}.
8
+ */
6
9
  export interface DeleteAccessorCommandInput extends DeleteAccessorInput {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteAccessorCommand}.
13
+ */
8
14
  export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __MetadataBearer {
9
15
  }
10
16
  /**
11
- * <important>
12
- * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
13
- * subject to change. We recommend that you use this feature only with
14
- * test scenarios, and not in production environments.</p>
15
- * </important>
16
- * <p>Deletes an accessor that your Amazon Web Services account owns. An accessor object is a container that has the
17
+ * <p>Deletes an accessor that your Amazon Web Services account owns. An accessor object is a container that has the
17
18
  * information required for token based access to your Ethereum nodes including, the
18
19
  * <code>BILLING_TOKEN</code>. After an accessor is deleted, the status of the accessor changes
19
20
  * from <code>AVAILABLE</code> to <code>PENDING_DELETION</code>. An accessor in the
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteMemberCommand}.
8
+ */
6
9
  export interface DeleteMemberCommandInput extends DeleteMemberInput {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteMemberCommand}.
13
+ */
8
14
  export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { DeleteNodeInput, DeleteNodeOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteNodeCommand}.
8
+ */
6
9
  export interface DeleteNodeCommandInput extends DeleteNodeInput {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteNodeCommand}.
13
+ */
8
14
  export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,17 +3,18 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { GetAccessorInput, GetAccessorOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetAccessorCommand}.
8
+ */
6
9
  export interface GetAccessorCommandInput extends GetAccessorInput {
7
10
  }
11
+ /**
12
+ * The output of {@link GetAccessorCommand}.
13
+ */
8
14
  export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataBearer {
9
15
  }
10
16
  /**
11
- * <important>
12
- * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
13
- * subject to change. We recommend that you use this feature only with
14
- * test scenarios, and not in production environments.</p>
15
- * </important>
16
- * <p>Returns detailed information about an accessor. An accessor object is a container that has the
17
+ * <p>Returns detailed information about an accessor. An accessor object is a container that has the
17
18
  * information required for token based access to your Ethereum nodes.</p>
18
19
  * @example
19
20
  * Use a bare-bones client and the command you need to make an API call.
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { GetMemberInput, GetMemberOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetMemberCommand}.
8
+ */
6
9
  export interface GetMemberCommandInput extends GetMemberInput {
7
10
  }
11
+ /**
12
+ * The output of {@link GetMemberCommand}.
13
+ */
8
14
  export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { GetNetworkInput, GetNetworkOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetNetworkCommand}.
8
+ */
6
9
  export interface GetNetworkCommandInput extends GetNetworkInput {
7
10
  }
11
+ /**
12
+ * The output of {@link GetNetworkCommand}.
13
+ */
8
14
  export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { GetNodeInput, GetNodeOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetNodeCommand}.
8
+ */
6
9
  export interface GetNodeCommandInput extends GetNodeInput {
7
10
  }
11
+ /**
12
+ * The output of {@link GetNodeCommand}.
13
+ */
8
14
  export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { GetProposalInput, GetProposalOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetProposalCommand}.
8
+ */
6
9
  export interface GetProposalCommandInput extends GetProposalInput {
7
10
  }
11
+ /**
12
+ * The output of {@link GetProposalCommand}.
13
+ */
8
14
  export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,17 +3,18 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListAccessorsInput, ListAccessorsOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListAccessorsCommand}.
8
+ */
6
9
  export interface ListAccessorsCommandInput extends ListAccessorsInput {
7
10
  }
11
+ /**
12
+ * The output of {@link ListAccessorsCommand}.
13
+ */
8
14
  export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __MetadataBearer {
9
15
  }
10
16
  /**
11
- * <important>
12
- * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
13
- * subject to change. We recommend that you use this feature only with
14
- * test scenarios, and not in production environments.</p>
15
- * </important>
16
- * <p>Returns a list of the accessors and their properties. Accessor objects are containers that have the
17
+ * <p>Returns a list of the accessors and their properties. Accessor objects are containers that have the
17
18
  * information required for token based access to your Ethereum nodes.</p>
18
19
  * @example
19
20
  * Use a bare-bones client and the command you need to make an API call.
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListInvitationsInput, ListInvitationsOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListInvitationsCommand}.
8
+ */
6
9
  export interface ListInvitationsCommandInput extends ListInvitationsInput {
7
10
  }
11
+ /**
12
+ * The output of {@link ListInvitationsCommand}.
13
+ */
8
14
  export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListMembersInput, ListMembersOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListMembersCommand}.
8
+ */
6
9
  export interface ListMembersCommandInput extends ListMembersInput {
7
10
  }
11
+ /**
12
+ * The output of {@link ListMembersCommand}.
13
+ */
8
14
  export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListNetworksInput, ListNetworksOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListNetworksCommand}.
8
+ */
6
9
  export interface ListNetworksCommandInput extends ListNetworksInput {
7
10
  }
11
+ /**
12
+ * The output of {@link ListNetworksCommand}.
13
+ */
8
14
  export interface ListNetworksCommandOutput extends ListNetworksOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListNodesInput, ListNodesOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListNodesCommand}.
8
+ */
6
9
  export interface ListNodesCommandInput extends ListNodesInput {
7
10
  }
11
+ /**
12
+ * The output of {@link ListNodesCommand}.
13
+ */
8
14
  export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListProposalVotesInput, ListProposalVotesOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListProposalVotesCommand}.
8
+ */
6
9
  export interface ListProposalVotesCommandInput extends ListProposalVotesInput {
7
10
  }
11
+ /**
12
+ * The output of {@link ListProposalVotesCommand}.
13
+ */
8
14
  export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListProposalsInput, ListProposalsOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListProposalsCommand}.
8
+ */
6
9
  export interface ListProposalsCommandInput extends ListProposalsInput {
7
10
  }
11
+ /**
12
+ * The output of {@link ListProposalsCommand}.
13
+ */
8
14
  export interface ListProposalsCommandOutput extends ListProposalsOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListTagsForResourceCommand}.
8
+ */
6
9
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListTagsForResourceCommand}.
13
+ */
8
14
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { RejectInvitationInput, RejectInvitationOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link RejectInvitationCommand}.
8
+ */
6
9
  export interface RejectInvitationCommandInput extends RejectInvitationInput {
7
10
  }
11
+ /**
12
+ * The output of {@link RejectInvitationCommand}.
13
+ */
8
14
  export interface RejectInvitationCommandOutput extends RejectInvitationOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link TagResourceCommand}.
8
+ */
6
9
  export interface TagResourceCommandInput extends TagResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link TagResourceCommand}.
13
+ */
8
14
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link UntagResourceCommand}.
8
+ */
6
9
  export interface UntagResourceCommandInput extends UntagResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link UntagResourceCommand}.
13
+ */
8
14
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { UpdateMemberInput, UpdateMemberOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link UpdateMemberCommand}.
8
+ */
6
9
  export interface UpdateMemberCommandInput extends UpdateMemberInput {
7
10
  }
11
+ /**
12
+ * The output of {@link UpdateMemberCommand}.
13
+ */
8
14
  export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { UpdateNodeInput, UpdateNodeOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link UpdateNodeCommand}.
8
+ */
6
9
  export interface UpdateNodeCommandInput extends UpdateNodeInput {
7
10
  }
11
+ /**
12
+ * The output of {@link UpdateNodeCommand}.
13
+ */
8
14
  export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { VoteOnProposalInput, VoteOnProposalOutput } from "../models/models_0";
6
+ /**
7
+ * The input for {@link VoteOnProposalCommand}.
8
+ */
6
9
  export interface VoteOnProposalCommandInput extends VoteOnProposalInput {
7
10
  }
11
+ /**
12
+ * The output of {@link VoteOnProposalCommand}.
13
+ */
8
14
  export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -21,12 +21,7 @@ export declare enum AccessorType {
21
21
  BILLING_TOKEN = "BILLING_TOKEN"
22
22
  }
23
23
  /**
24
- * <important>
25
- * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
26
- * subject to change. We recommend that you use this feature only with
27
- * test scenarios, and not in production environments.</p>
28
- * </important>
29
- * <p>The properties of the Accessor.</p>
24
+ * <p>The properties of the Accessor.</p>
30
25
  */
31
26
  export interface Accessor {
32
27
  /**
@@ -60,14 +55,14 @@ export interface Accessor {
60
55
  * Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
61
56
  */
62
57
  Arn?: string;
58
+ /**
59
+ * <p>The tags assigned to the Accessor.</p>
60
+ * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
61
+ */
62
+ Tags?: Record<string, string>;
63
63
  }
64
64
  /**
65
- * <important>
66
- * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
67
- * subject to change. We recommend that you use this feature only with
68
- * test scenarios, and not in production environments.</p>
69
- * </important>
70
- * <p>A summary of accessor properties.</p>
65
+ * <p>A summary of accessor properties.</p>
71
66
  */
72
67
  export interface AccessorSummary {
73
68
  /**
@@ -134,6 +129,14 @@ export interface CreateAccessorInput {
134
129
  * </note>
135
130
  */
136
131
  AccessorType: AccessorType | string | undefined;
132
+ /**
133
+ * <p>Tags to assign to the Accessor.</p>
134
+ * <p> Each tag consists of a key and an optional value. You can specify
135
+ * multiple key-value pairs in a single request with an overall maximum of 50 tags
136
+ * allowed per resource.</p>
137
+ * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
138
+ */
139
+ Tags?: Record<string, string>;
137
140
  }
138
141
  export interface CreateAccessorOutput {
139
142
  /**
@@ -209,6 +212,22 @@ export declare class ThrottlingException extends __BaseException {
209
212
  */
210
213
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
211
214
  }
215
+ /**
216
+ * <p></p>
217
+ */
218
+ export declare class TooManyTagsException extends __BaseException {
219
+ readonly name: "TooManyTagsException";
220
+ readonly $fault: "client";
221
+ Message?: string;
222
+ /**
223
+ * <p></p>
224
+ */
225
+ ResourceName?: string;
226
+ /**
227
+ * @internal
228
+ */
229
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
230
+ }
212
231
  /**
213
232
  * <p>Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.</p>
214
233
  */
@@ -289,8 +308,9 @@ export interface MemberConfiguration {
289
308
  */
290
309
  LogPublishingConfiguration?: MemberLogPublishingConfiguration;
291
310
  /**
292
- * <p>Tags assigned to the member. Tags consist of a key and optional value. For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
311
+ * <p>Tags assigned to the member. Tags consist of a key and optional value. </p>
293
312
  * <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
313
+ * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
294
314
  */
295
315
  Tags?: Record<string, string>;
296
316
  /**
@@ -364,22 +384,6 @@ export declare class ResourceNotReadyException extends __BaseException {
364
384
  */
365
385
  constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
366
386
  }
367
- /**
368
- * <p></p>
369
- */
370
- export declare class TooManyTagsException extends __BaseException {
371
- readonly name: "TooManyTagsException";
372
- readonly $fault: "client";
373
- Message?: string;
374
- /**
375
- * <p></p>
376
- */
377
- ResourceName?: string;
378
- /**
379
- * @internal
380
- */
381
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
382
- }
383
387
  export declare enum Framework {
384
388
  ETHEREUM = "ETHEREUM",
385
389
  HYPERLEDGER_FABRIC = "HYPERLEDGER_FABRIC"
@@ -464,8 +468,10 @@ export interface CreateNetworkInput {
464
468
  */
465
469
  MemberConfiguration: MemberConfiguration | undefined;
466
470
  /**
467
- * <p>Tags to assign to the network. Each tag consists of a key and optional value.</p>
468
- * <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
471
+ * <p>Tags to assign to the network.</p>
472
+ * <p> Each tag consists of a key and an optional value. You can specify
473
+ * multiple key-value pairs in a single request with an overall maximum of 50 tags
474
+ * allowed per resource.</p>
469
475
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
470
476
  */
471
477
  Tags?: Record<string, string>;
@@ -571,8 +577,10 @@ export interface CreateNodeInput {
571
577
  */
572
578
  NodeConfiguration: NodeConfiguration | undefined;
573
579
  /**
574
- * <p>Tags to assign to the node. Each tag consists of a key and optional value.</p>
575
- * <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource.</p>
580
+ * <p>Tags to assign to the node.</p>
581
+ * <p> Each tag consists of a key and an optional value. You can specify
582
+ * multiple key-value pairs in a single request with an overall maximum of 50 tags
583
+ * allowed per resource.</p>
576
584
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
577
585
  */
578
586
  Tags?: Record<string, string>;
@@ -648,8 +656,10 @@ export interface CreateProposalInput {
648
656
  */
649
657
  Description?: string;
650
658
  /**
651
- * <p>Tags to assign to the proposal. Each tag consists of a key and optional value.</p>
652
- * <p>When specifying tags during creation, you can specify multiple key-value pairs in a single request, with an overall maximum of 50 tags added to each resource. If the proposal is for a network invitation, the invitation inherits the tags added to the proposal.</p>
659
+ * <p>Tags to assign to the proposal.</p>
660
+ * <p> Each tag consists of a key and an optional value. You can specify
661
+ * multiple key-value pairs in a single request with an overall maximum of 50 tags
662
+ * allowed per resource.</p>
653
663
  * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
654
664
  */
655
665
  Tags?: Record<string, string>;
@@ -844,7 +854,8 @@ export interface Member {
844
854
  */
845
855
  CreationDate?: Date;
846
856
  /**
847
- * <p>Tags assigned to the member. Tags consist of a key and optional value. For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
857
+ * <p>Tags assigned to the member. Tags consist of a key and optional value.</p>
858
+ * <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
848
859
  */
849
860
  Tags?: Record<string, string>;
850
861
  /**
@@ -23,6 +23,7 @@ export interface Accessor {
23
23
  Status?: AccessorStatus | string;
24
24
  CreationDate?: Date;
25
25
  Arn?: string;
26
+ Tags?: Record<string, string>;
26
27
  }
27
28
  export interface AccessorSummary {
28
29
  Id?: string;
@@ -43,6 +44,7 @@ export interface ApprovalThresholdPolicy {
43
44
  export interface CreateAccessorInput {
44
45
  ClientRequestToken?: string;
45
46
  AccessorType: AccessorType | string | undefined;
47
+ Tags?: Record<string, string>;
46
48
  }
47
49
  export interface CreateAccessorOutput {
48
50
  AccessorId?: string;
@@ -86,6 +88,15 @@ export declare class ThrottlingException extends __BaseException {
86
88
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
87
89
  );
88
90
  }
91
+ export declare class TooManyTagsException extends __BaseException {
92
+ readonly name: "TooManyTagsException";
93
+ readonly $fault: "client";
94
+ Message?: string;
95
+ ResourceName?: string;
96
+ constructor(
97
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
98
+ );
99
+ }
89
100
  export interface MemberFabricConfiguration {
90
101
  AdminUsername: string | undefined;
91
102
  AdminPassword: string | undefined;
@@ -139,15 +150,6 @@ export declare class ResourceNotReadyException extends __BaseException {
139
150
  opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
140
151
  );
141
152
  }
142
- export declare class TooManyTagsException extends __BaseException {
143
- readonly name: "TooManyTagsException";
144
- readonly $fault: "client";
145
- Message?: string;
146
- ResourceName?: string;
147
- constructor(
148
- opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
149
- );
150
- }
151
153
  export declare enum Framework {
152
154
  ETHEREUM = "ETHEREUM",
153
155
  HYPERLEDGER_FABRIC = "HYPERLEDGER_FABRIC",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-managedblockchain",
3
3
  "description": "AWS SDK for JavaScript Managedblockchain Client for Node.js, Browser and React Native",
4
- "version": "3.278.0",
4
+ "version": "3.281.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.278.0",
23
+ "@aws-sdk/client-sts": "3.281.0",
24
24
  "@aws-sdk/config-resolver": "3.272.0",
25
- "@aws-sdk/credential-provider-node": "3.278.0",
25
+ "@aws-sdk/credential-provider-node": "3.281.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.272.0",
27
27
  "@aws-sdk/hash-node": "3.272.0",
28
28
  "@aws-sdk/invalid-dependency": "3.272.0",
@@ -39,14 +39,14 @@
39
39
  "@aws-sdk/node-config-provider": "3.272.0",
40
40
  "@aws-sdk/node-http-handler": "3.272.0",
41
41
  "@aws-sdk/protocol-http": "3.272.0",
42
- "@aws-sdk/smithy-client": "3.272.0",
42
+ "@aws-sdk/smithy-client": "3.279.0",
43
43
  "@aws-sdk/types": "3.272.0",
44
44
  "@aws-sdk/url-parser": "3.272.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.272.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.272.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.279.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.279.0",
50
50
  "@aws-sdk/util-endpoints": "3.272.0",
51
51
  "@aws-sdk/util-retry": "3.272.0",
52
52
  "@aws-sdk/util-user-agent-browser": "3.272.0",