@aws-sdk/client-managedblockchain 3.325.0 → 3.326.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 (28) hide show
  1. package/dist-types/commands/CreateAccessorCommand.d.ts +7 -0
  2. package/dist-types/commands/CreateMemberCommand.d.ts +6 -0
  3. package/dist-types/commands/CreateNetworkCommand.d.ts +7 -0
  4. package/dist-types/commands/CreateNodeCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateProposalCommand.d.ts +6 -0
  6. package/dist-types/commands/DeleteAccessorCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteMemberCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteNodeCommand.d.ts +4 -0
  9. package/dist-types/commands/GetAccessorCommand.d.ts +16 -0
  10. package/dist-types/commands/GetMemberCommand.d.ts +33 -0
  11. package/dist-types/commands/GetNetworkCommand.d.ts +35 -0
  12. package/dist-types/commands/GetNodeCommand.d.ts +44 -0
  13. package/dist-types/commands/GetProposalCommand.d.ts +34 -0
  14. package/dist-types/commands/ListAccessorsCommand.d.ts +15 -0
  15. package/dist-types/commands/ListInvitationsCommand.d.ts +25 -0
  16. package/dist-types/commands/ListMembersCommand.d.ts +17 -0
  17. package/dist-types/commands/ListNetworksCommand.d.ts +18 -0
  18. package/dist-types/commands/ListNodesCommand.d.ts +16 -0
  19. package/dist-types/commands/ListProposalVotesCommand.d.ts +13 -0
  20. package/dist-types/commands/ListProposalsCommand.d.ts +18 -0
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  22. package/dist-types/commands/RejectInvitationCommand.d.ts +4 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  25. package/dist-types/commands/UpdateMemberCommand.d.ts +4 -0
  26. package/dist-types/commands/UpdateNodeCommand.d.ts +4 -0
  27. package/dist-types/commands/VoteOnProposalCommand.d.ts +4 -0
  28. package/package.json +3 -3
@@ -36,6 +36,11 @@ export interface CreateAccessorCommandOutput extends CreateAccessorOutput, __Met
36
36
  * };
37
37
  * const command = new CreateAccessorCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // CreateAccessorOutput
40
+ * // AccessorId: "STRING_VALUE",
41
+ * // BillingToken: "STRING_VALUE",
42
+ * // };
43
+ *
39
44
  * ```
40
45
  *
41
46
  * @param CreateAccessorCommandInput - {@link CreateAccessorCommandInput}
@@ -69,6 +74,8 @@ export interface CreateAccessorCommandOutput extends CreateAccessorOutput, __Met
69
74
  * @throws {@link TooManyTagsException} (client fault)
70
75
  * <p></p>
71
76
  *
77
+ * @throws {@link ManagedBlockchainServiceException}
78
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
72
79
  *
73
80
  */
74
81
  export declare class CreateAccessorCommand extends $Command<CreateAccessorCommandInput, CreateAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -57,6 +57,10 @@ export interface CreateMemberCommandOutput extends CreateMemberOutput, __Metadat
57
57
  * };
58
58
  * const command = new CreateMemberCommand(input);
59
59
  * const response = await client.send(command);
60
+ * // { // CreateMemberOutput
61
+ * // MemberId: "STRING_VALUE",
62
+ * // };
63
+ *
60
64
  * ```
61
65
  *
62
66
  * @param CreateMemberCommandInput - {@link CreateMemberCommandInput}
@@ -96,6 +100,8 @@ export interface CreateMemberCommandOutput extends CreateMemberOutput, __Metadat
96
100
  * @throws {@link TooManyTagsException} (client fault)
97
101
  * <p></p>
98
102
  *
103
+ * @throws {@link ManagedBlockchainServiceException}
104
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
99
105
  *
100
106
  */
101
107
  export declare class CreateMemberCommand extends $Command<CreateMemberCommandInput, CreateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -74,6 +74,11 @@ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __Metad
74
74
  * };
75
75
  * const command = new CreateNetworkCommand(input);
76
76
  * const response = await client.send(command);
77
+ * // { // CreateNetworkOutput
78
+ * // NetworkId: "STRING_VALUE",
79
+ * // MemberId: "STRING_VALUE",
80
+ * // };
81
+ *
77
82
  * ```
78
83
  *
79
84
  * @param CreateNetworkCommandInput - {@link CreateNetworkCommandInput}
@@ -107,6 +112,8 @@ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __Metad
107
112
  * @throws {@link TooManyTagsException} (client fault)
108
113
  * <p></p>
109
114
  *
115
+ * @throws {@link ManagedBlockchainServiceException}
116
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
110
117
  *
111
118
  */
112
119
  export declare class CreateNetworkCommand extends $Command<CreateNetworkCommandInput, CreateNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -56,6 +56,10 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea
56
56
  * };
57
57
  * const command = new CreateNodeCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // CreateNodeOutput
60
+ * // NodeId: "STRING_VALUE",
61
+ * // };
62
+ *
59
63
  * ```
60
64
  *
61
65
  * @param CreateNodeCommandInput - {@link CreateNodeCommandInput}
@@ -95,6 +99,8 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea
95
99
  * @throws {@link TooManyTagsException} (client fault)
96
100
  * <p></p>
97
101
  *
102
+ * @throws {@link ManagedBlockchainServiceException}
103
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
98
104
  *
99
105
  */
100
106
  export declare class CreateNodeCommand extends $Command<CreateNodeCommandInput, CreateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -50,6 +50,10 @@ export interface CreateProposalCommandOutput extends CreateProposalOutput, __Met
50
50
  * };
51
51
  * const command = new CreateProposalCommand(input);
52
52
  * const response = await client.send(command);
53
+ * // { // CreateProposalOutput
54
+ * // ProposalId: "STRING_VALUE",
55
+ * // };
56
+ *
53
57
  * ```
54
58
  *
55
59
  * @param CreateProposalCommandInput - {@link CreateProposalCommandInput}
@@ -82,6 +86,8 @@ export interface CreateProposalCommandOutput extends CreateProposalOutput, __Met
82
86
  * @throws {@link TooManyTagsException} (client fault)
83
87
  * <p></p>
84
88
  *
89
+ * @throws {@link ManagedBlockchainServiceException}
90
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
85
91
  *
86
92
  */
87
93
  export declare class CreateProposalCommand extends $Command<CreateProposalCommandInput, CreateProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __Met
37
37
  * };
38
38
  * const command = new DeleteAccessorCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param DeleteAccessorCommandInput - {@link DeleteAccessorCommandInput}
@@ -63,6 +65,8 @@ export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __Met
63
65
  * creating resources that exceed your service limit for this resource type.
64
66
  * Request a limit increase or delete unused resources if possible.</p>
65
67
  *
68
+ * @throws {@link ManagedBlockchainServiceException}
69
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
66
70
  *
67
71
  */
68
72
  export declare class DeleteAccessorCommand extends $Command<DeleteAccessorCommandInput, DeleteAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
33
33
  * };
34
34
  * const command = new DeleteMemberCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteMemberCommandInput - {@link DeleteMemberCommandInput}
@@ -62,6 +64,8 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
62
64
  * creating resources that exceed your service limit for this resource type.
63
65
  * Request a limit increase or delete unused resources if possible.</p>
64
66
  *
67
+ * @throws {@link ManagedBlockchainServiceException}
68
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
65
69
  *
66
70
  */
67
71
  export declare class DeleteMemberCommand extends $Command<DeleteMemberCommandInput, DeleteMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
34
34
  * };
35
35
  * const command = new DeleteNodeCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteNodeCommandInput - {@link DeleteNodeCommandInput}
@@ -63,6 +65,8 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
63
65
  * creating resources that exceed your service limit for this resource type.
64
66
  * Request a limit increase or delete unused resources if possible.</p>
65
67
  *
68
+ * @throws {@link ManagedBlockchainServiceException}
69
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
66
70
  *
67
71
  */
68
72
  export declare class DeleteNodeCommand extends $Command<DeleteNodeCommandInput, DeleteNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -32,6 +32,20 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB
32
32
  * };
33
33
  * const command = new GetAccessorCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetAccessorOutput
36
+ * // Accessor: { // Accessor
37
+ * // Id: "STRING_VALUE",
38
+ * // Type: "BILLING_TOKEN",
39
+ * // BillingToken: "STRING_VALUE",
40
+ * // Status: "AVAILABLE" || "PENDING_DELETION" || "DELETED",
41
+ * // CreationDate: new Date("TIMESTAMP"),
42
+ * // Arn: "STRING_VALUE",
43
+ * // Tags: { // OutputTagMap
44
+ * // "<keys>": "STRING_VALUE",
45
+ * // },
46
+ * // },
47
+ * // };
48
+ *
35
49
  * ```
36
50
  *
37
51
  * @param GetAccessorCommandInput - {@link GetAccessorCommandInput}
@@ -58,6 +72,8 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB
58
72
  * creating resources that exceed your service limit for this resource type.
59
73
  * Request a limit increase or delete unused resources if possible.</p>
60
74
  *
75
+ * @throws {@link ManagedBlockchainServiceException}
76
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
61
77
  *
62
78
  */
63
79
  export declare class GetAccessorCommand extends $Command<GetAccessorCommandInput, GetAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -33,6 +33,37 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
33
33
  * };
34
34
  * const command = new GetMemberCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // GetMemberOutput
37
+ * // Member: { // Member
38
+ * // NetworkId: "STRING_VALUE",
39
+ * // Id: "STRING_VALUE",
40
+ * // Name: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // FrameworkAttributes: { // MemberFrameworkAttributes
43
+ * // Fabric: { // MemberFabricAttributes
44
+ * // AdminUsername: "STRING_VALUE",
45
+ * // CaEndpoint: "STRING_VALUE",
46
+ * // },
47
+ * // },
48
+ * // LogPublishingConfiguration: { // MemberLogPublishingConfiguration
49
+ * // Fabric: { // MemberFabricLogPublishingConfiguration
50
+ * // CaLogs: { // LogConfigurations
51
+ * // Cloudwatch: { // LogConfiguration
52
+ * // Enabled: true || false,
53
+ * // },
54
+ * // },
55
+ * // },
56
+ * // },
57
+ * // Status: "CREATING" || "AVAILABLE" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETED" || "INACCESSIBLE_ENCRYPTION_KEY",
58
+ * // CreationDate: new Date("TIMESTAMP"),
59
+ * // Tags: { // OutputTagMap
60
+ * // "<keys>": "STRING_VALUE",
61
+ * // },
62
+ * // Arn: "STRING_VALUE",
63
+ * // KmsKeyArn: "STRING_VALUE",
64
+ * // },
65
+ * // };
66
+ *
36
67
  * ```
37
68
  *
38
69
  * @param GetMemberCommandInput - {@link GetMemberCommandInput}
@@ -59,6 +90,8 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
59
90
  * creating resources that exceed your service limit for this resource type.
60
91
  * Request a limit increase or delete unused resources if possible.</p>
61
92
  *
93
+ * @throws {@link ManagedBlockchainServiceException}
94
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
62
95
  *
63
96
  */
64
97
  export declare class GetMemberCommand extends $Command<GetMemberCommandInput, GetMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -32,6 +32,39 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
32
32
  * };
33
33
  * const command = new GetNetworkCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetNetworkOutput
36
+ * // Network: { // Network
37
+ * // Id: "STRING_VALUE",
38
+ * // Name: "STRING_VALUE",
39
+ * // Description: "STRING_VALUE",
40
+ * // Framework: "HYPERLEDGER_FABRIC" || "ETHEREUM",
41
+ * // FrameworkVersion: "STRING_VALUE",
42
+ * // FrameworkAttributes: { // NetworkFrameworkAttributes
43
+ * // Fabric: { // NetworkFabricAttributes
44
+ * // OrderingServiceEndpoint: "STRING_VALUE",
45
+ * // Edition: "STARTER" || "STANDARD",
46
+ * // },
47
+ * // Ethereum: { // NetworkEthereumAttributes
48
+ * // ChainId: "STRING_VALUE",
49
+ * // },
50
+ * // },
51
+ * // VpcEndpointServiceName: "STRING_VALUE",
52
+ * // VotingPolicy: { // VotingPolicy
53
+ * // ApprovalThresholdPolicy: { // ApprovalThresholdPolicy
54
+ * // ThresholdPercentage: Number("int"),
55
+ * // ProposalDurationInHours: Number("int"),
56
+ * // ThresholdComparator: "GREATER_THAN" || "GREATER_THAN_OR_EQUAL_TO",
57
+ * // },
58
+ * // },
59
+ * // Status: "CREATING" || "AVAILABLE" || "CREATE_FAILED" || "DELETING" || "DELETED",
60
+ * // CreationDate: new Date("TIMESTAMP"),
61
+ * // Tags: { // OutputTagMap
62
+ * // "<keys>": "STRING_VALUE",
63
+ * // },
64
+ * // Arn: "STRING_VALUE",
65
+ * // },
66
+ * // };
67
+ *
35
68
  * ```
36
69
  *
37
70
  * @param GetNetworkCommandInput - {@link GetNetworkCommandInput}
@@ -58,6 +91,8 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
58
91
  * creating resources that exceed your service limit for this resource type.
59
92
  * Request a limit increase or delete unused resources if possible.</p>
60
93
  *
94
+ * @throws {@link ManagedBlockchainServiceException}
95
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
61
96
  *
62
97
  */
63
98
  export declare class GetNetworkCommand extends $Command<GetNetworkCommandInput, GetNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -34,6 +34,48 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
34
34
  * };
35
35
  * const command = new GetNodeCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // GetNodeOutput
38
+ * // Node: { // Node
39
+ * // NetworkId: "STRING_VALUE",
40
+ * // MemberId: "STRING_VALUE",
41
+ * // Id: "STRING_VALUE",
42
+ * // InstanceType: "STRING_VALUE",
43
+ * // AvailabilityZone: "STRING_VALUE",
44
+ * // FrameworkAttributes: { // NodeFrameworkAttributes
45
+ * // Fabric: { // NodeFabricAttributes
46
+ * // PeerEndpoint: "STRING_VALUE",
47
+ * // PeerEventEndpoint: "STRING_VALUE",
48
+ * // },
49
+ * // Ethereum: { // NodeEthereumAttributes
50
+ * // HttpEndpoint: "STRING_VALUE",
51
+ * // WebSocketEndpoint: "STRING_VALUE",
52
+ * // },
53
+ * // },
54
+ * // LogPublishingConfiguration: { // NodeLogPublishingConfiguration
55
+ * // Fabric: { // NodeFabricLogPublishingConfiguration
56
+ * // ChaincodeLogs: { // LogConfigurations
57
+ * // Cloudwatch: { // LogConfiguration
58
+ * // Enabled: true || false,
59
+ * // },
60
+ * // },
61
+ * // PeerLogs: {
62
+ * // Cloudwatch: {
63
+ * // Enabled: true || false,
64
+ * // },
65
+ * // },
66
+ * // },
67
+ * // },
68
+ * // StateDB: "LevelDB" || "CouchDB",
69
+ * // Status: "CREATING" || "AVAILABLE" || "UNHEALTHY" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETED" || "FAILED" || "INACCESSIBLE_ENCRYPTION_KEY",
70
+ * // CreationDate: new Date("TIMESTAMP"),
71
+ * // Tags: { // OutputTagMap
72
+ * // "<keys>": "STRING_VALUE",
73
+ * // },
74
+ * // Arn: "STRING_VALUE",
75
+ * // KmsKeyArn: "STRING_VALUE",
76
+ * // },
77
+ * // };
78
+ *
37
79
  * ```
38
80
  *
39
81
  * @param GetNodeCommandInput - {@link GetNodeCommandInput}
@@ -60,6 +102,8 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
60
102
  * creating resources that exceed your service limit for this resource type.
61
103
  * Request a limit increase or delete unused resources if possible.</p>
62
104
  *
105
+ * @throws {@link ManagedBlockchainServiceException}
106
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
63
107
  *
64
108
  */
65
109
  export declare class GetNodeCommand extends $Command<GetNodeCommandInput, GetNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -33,6 +33,38 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
33
33
  * };
34
34
  * const command = new GetProposalCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // GetProposalOutput
37
+ * // Proposal: { // Proposal
38
+ * // ProposalId: "STRING_VALUE",
39
+ * // NetworkId: "STRING_VALUE",
40
+ * // Description: "STRING_VALUE",
41
+ * // Actions: { // ProposalActions
42
+ * // Invitations: [ // InviteActionList
43
+ * // { // InviteAction
44
+ * // Principal: "STRING_VALUE", // required
45
+ * // },
46
+ * // ],
47
+ * // Removals: [ // RemoveActionList
48
+ * // { // RemoveAction
49
+ * // MemberId: "STRING_VALUE", // required
50
+ * // },
51
+ * // ],
52
+ * // },
53
+ * // ProposedByMemberId: "STRING_VALUE",
54
+ * // ProposedByMemberName: "STRING_VALUE",
55
+ * // Status: "IN_PROGRESS" || "APPROVED" || "REJECTED" || "EXPIRED" || "ACTION_FAILED",
56
+ * // CreationDate: new Date("TIMESTAMP"),
57
+ * // ExpirationDate: new Date("TIMESTAMP"),
58
+ * // YesVoteCount: Number("int"),
59
+ * // NoVoteCount: Number("int"),
60
+ * // OutstandingVoteCount: Number("int"),
61
+ * // Tags: { // OutputTagMap
62
+ * // "<keys>": "STRING_VALUE",
63
+ * // },
64
+ * // Arn: "STRING_VALUE",
65
+ * // },
66
+ * // };
67
+ *
36
68
  * ```
37
69
  *
38
70
  * @param GetProposalCommandInput - {@link GetProposalCommandInput}
@@ -59,6 +91,8 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
59
91
  * creating resources that exceed your service limit for this resource type.
60
92
  * Request a limit increase or delete unused resources if possible.</p>
61
93
  *
94
+ * @throws {@link ManagedBlockchainServiceException}
95
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
62
96
  *
63
97
  */
64
98
  export declare class GetProposalCommand extends $Command<GetProposalCommandInput, GetProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -33,6 +33,19 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad
33
33
  * };
34
34
  * const command = new ListAccessorsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListAccessorsOutput
37
+ * // Accessors: [ // AccessorSummaryList
38
+ * // { // AccessorSummary
39
+ * // Id: "STRING_VALUE",
40
+ * // Type: "BILLING_TOKEN",
41
+ * // Status: "AVAILABLE" || "PENDING_DELETION" || "DELETED",
42
+ * // CreationDate: new Date("TIMESTAMP"),
43
+ * // Arn: "STRING_VALUE",
44
+ * // },
45
+ * // ],
46
+ * // NextToken: "STRING_VALUE",
47
+ * // };
48
+ *
36
49
  * ```
37
50
  *
38
51
  * @param ListAccessorsCommandInput - {@link ListAccessorsCommandInput}
@@ -56,6 +69,8 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad
56
69
  * creating resources that exceed your service limit for this resource type.
57
70
  * Request a limit increase or delete unused resources if possible.</p>
58
71
  *
72
+ * @throws {@link ManagedBlockchainServiceException}
73
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
59
74
  *
60
75
  */
61
76
  export declare class ListAccessorsCommand extends $Command<ListAccessorsCommandInput, ListAccessorsCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -33,6 +33,29 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
33
33
  * };
34
34
  * const command = new ListInvitationsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListInvitationsOutput
37
+ * // Invitations: [ // InvitationList
38
+ * // { // Invitation
39
+ * // InvitationId: "STRING_VALUE",
40
+ * // CreationDate: new Date("TIMESTAMP"),
41
+ * // ExpirationDate: new Date("TIMESTAMP"),
42
+ * // Status: "PENDING" || "ACCEPTED" || "ACCEPTING" || "REJECTED" || "EXPIRED",
43
+ * // NetworkSummary: { // NetworkSummary
44
+ * // Id: "STRING_VALUE",
45
+ * // Name: "STRING_VALUE",
46
+ * // Description: "STRING_VALUE",
47
+ * // Framework: "HYPERLEDGER_FABRIC" || "ETHEREUM",
48
+ * // FrameworkVersion: "STRING_VALUE",
49
+ * // Status: "CREATING" || "AVAILABLE" || "CREATE_FAILED" || "DELETING" || "DELETED",
50
+ * // CreationDate: new Date("TIMESTAMP"),
51
+ * // Arn: "STRING_VALUE",
52
+ * // },
53
+ * // Arn: "STRING_VALUE",
54
+ * // },
55
+ * // ],
56
+ * // NextToken: "STRING_VALUE",
57
+ * // };
58
+ *
36
59
  * ```
37
60
  *
38
61
  * @param ListInvitationsCommandInput - {@link ListInvitationsCommandInput}
@@ -63,6 +86,8 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
63
86
  * creating resources that exceed your service limit for this resource type.
64
87
  * Request a limit increase or delete unused resources if possible.</p>
65
88
  *
89
+ * @throws {@link ManagedBlockchainServiceException}
90
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
66
91
  *
67
92
  */
68
93
  export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -37,6 +37,21 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
37
37
  * };
38
38
  * const command = new ListMembersCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListMembersOutput
41
+ * // Members: [ // MemberSummaryList
42
+ * // { // MemberSummary
43
+ * // Id: "STRING_VALUE",
44
+ * // Name: "STRING_VALUE",
45
+ * // Description: "STRING_VALUE",
46
+ * // Status: "CREATING" || "AVAILABLE" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETED" || "INACCESSIBLE_ENCRYPTION_KEY",
47
+ * // CreationDate: new Date("TIMESTAMP"),
48
+ * // IsOwned: true || false,
49
+ * // Arn: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
40
55
  * ```
41
56
  *
42
57
  * @param ListMembersCommandInput - {@link ListMembersCommandInput}
@@ -60,6 +75,8 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
60
75
  * creating resources that exceed your service limit for this resource type.
61
76
  * Request a limit increase or delete unused resources if possible.</p>
62
77
  *
78
+ * @throws {@link ManagedBlockchainServiceException}
79
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
63
80
  *
64
81
  */
65
82
  export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -36,6 +36,22 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
36
36
  * };
37
37
  * const command = new ListNetworksCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListNetworksOutput
40
+ * // Networks: [ // NetworkSummaryList
41
+ * // { // NetworkSummary
42
+ * // Id: "STRING_VALUE",
43
+ * // Name: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // Framework: "HYPERLEDGER_FABRIC" || "ETHEREUM",
46
+ * // FrameworkVersion: "STRING_VALUE",
47
+ * // Status: "CREATING" || "AVAILABLE" || "CREATE_FAILED" || "DELETING" || "DELETED",
48
+ * // CreationDate: new Date("TIMESTAMP"),
49
+ * // Arn: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
39
55
  * ```
40
56
  *
41
57
  * @param ListNetworksCommandInput - {@link ListNetworksCommandInput}
@@ -59,6 +75,8 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
59
75
  * creating resources that exceed your service limit for this resource type.
60
76
  * Request a limit increase or delete unused resources if possible.</p>
61
77
  *
78
+ * @throws {@link ManagedBlockchainServiceException}
79
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
62
80
  *
63
81
  */
64
82
  export declare class ListNetworksCommand extends $Command<ListNetworksCommandInput, ListNetworksCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
36
36
  * };
37
37
  * const command = new ListNodesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListNodesOutput
40
+ * // Nodes: [ // NodeSummaryList
41
+ * // { // NodeSummary
42
+ * // Id: "STRING_VALUE",
43
+ * // Status: "CREATING" || "AVAILABLE" || "UNHEALTHY" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETED" || "FAILED" || "INACCESSIBLE_ENCRYPTION_KEY",
44
+ * // CreationDate: new Date("TIMESTAMP"),
45
+ * // AvailabilityZone: "STRING_VALUE",
46
+ * // InstanceType: "STRING_VALUE",
47
+ * // Arn: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param ListNodesCommandInput - {@link ListNodesCommandInput}
@@ -59,6 +73,8 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
59
73
  * creating resources that exceed your service limit for this resource type.
60
74
  * Request a limit increase or delete unused resources if possible.</p>
61
75
  *
76
+ * @throws {@link ManagedBlockchainServiceException}
77
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
62
78
  *
63
79
  */
64
80
  export declare class ListNodesCommand extends $Command<ListNodesCommandInput, ListNodesCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -35,6 +35,17 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
35
35
  * };
36
36
  * const command = new ListProposalVotesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListProposalVotesOutput
39
+ * // ProposalVotes: [ // ProposalVoteList
40
+ * // { // VoteSummary
41
+ * // Vote: "YES" || "NO",
42
+ * // MemberName: "STRING_VALUE",
43
+ * // MemberId: "STRING_VALUE",
44
+ * // },
45
+ * // ],
46
+ * // NextToken: "STRING_VALUE",
47
+ * // };
48
+ *
38
49
  * ```
39
50
  *
40
51
  * @param ListProposalVotesCommandInput - {@link ListProposalVotesCommandInput}
@@ -58,6 +69,8 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
58
69
  * creating resources that exceed your service limit for this resource type.
59
70
  * Request a limit increase or delete unused resources if possible.</p>
60
71
  *
72
+ * @throws {@link ManagedBlockchainServiceException}
73
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
61
74
  *
62
75
  */
63
76
  export declare class ListProposalVotesCommand extends $Command<ListProposalVotesCommandInput, ListProposalVotesCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -34,6 +34,22 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
34
34
  * };
35
35
  * const command = new ListProposalsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListProposalsOutput
38
+ * // Proposals: [ // ProposalSummaryList
39
+ * // { // ProposalSummary
40
+ * // ProposalId: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // ProposedByMemberId: "STRING_VALUE",
43
+ * // ProposedByMemberName: "STRING_VALUE",
44
+ * // Status: "IN_PROGRESS" || "APPROVED" || "REJECTED" || "EXPIRED" || "ACTION_FAILED",
45
+ * // CreationDate: new Date("TIMESTAMP"),
46
+ * // ExpirationDate: new Date("TIMESTAMP"),
47
+ * // Arn: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
37
53
  * ```
38
54
  *
39
55
  * @param ListProposalsCommandInput - {@link ListProposalsCommandInput}
@@ -60,6 +76,8 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
60
76
  * creating resources that exceed your service limit for this resource type.
61
77
  * Request a limit increase or delete unused resources if possible.</p>
62
78
  *
79
+ * @throws {@link ManagedBlockchainServiceException}
80
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
63
81
  *
64
82
  */
65
83
  export declare class ListProposalsCommand extends $Command<ListProposalsCommandInput, ListProposalsCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -32,6 +32,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
32
32
  * };
33
33
  * const command = new ListTagsForResourceCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListTagsForResourceResponse
36
+ * // Tags: { // OutputTagMap
37
+ * // "<keys>": "STRING_VALUE",
38
+ * // },
39
+ * // };
40
+ *
35
41
  * ```
36
42
  *
37
43
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -52,6 +58,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
52
58
  * @throws {@link ResourceNotReadyException} (client fault)
53
59
  * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
54
60
  *
61
+ * @throws {@link ManagedBlockchainServiceException}
62
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
55
63
  *
56
64
  */
57
65
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
32
32
  * };
33
33
  * const command = new RejectInvitationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param RejectInvitationCommandInput - {@link RejectInvitationCommandInput}
@@ -61,6 +63,8 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
61
63
  * creating resources that exceed your service limit for this resource type.
62
64
  * Request a limit increase or delete unused resources if possible.</p>
63
65
  *
66
+ * @throws {@link ManagedBlockchainServiceException}
67
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
64
68
  *
65
69
  */
66
70
  export declare class RejectInvitationCommand extends $Command<RejectInvitationCommandInput, RejectInvitationCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
37
37
  * };
38
38
  * const command = new TagResourceCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -60,6 +62,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
60
62
  * @throws {@link TooManyTagsException} (client fault)
61
63
  * <p></p>
62
64
  *
65
+ * @throws {@link ManagedBlockchainServiceException}
66
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
63
67
  *
64
68
  */
65
69
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
35
35
  * };
36
36
  * const command = new UntagResourceCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -55,6 +57,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
55
57
  * @throws {@link ResourceNotReadyException} (client fault)
56
58
  * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
57
59
  *
60
+ * @throws {@link ManagedBlockchainServiceException}
61
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
58
62
  *
59
63
  */
60
64
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -42,6 +42,8 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
42
42
  * };
43
43
  * const command = new UpdateMemberCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // {};
46
+ *
45
47
  * ```
46
48
  *
47
49
  * @param UpdateMemberCommandInput - {@link UpdateMemberCommandInput}
@@ -68,6 +70,8 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
68
70
  * creating resources that exceed your service limit for this resource type.
69
71
  * Request a limit increase or delete unused resources if possible.</p>
70
72
  *
73
+ * @throws {@link ManagedBlockchainServiceException}
74
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
71
75
  *
72
76
  */
73
77
  export declare class UpdateMemberCommand extends $Command<UpdateMemberCommandInput, UpdateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -48,6 +48,8 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
48
48
  * };
49
49
  * const command = new UpdateNodeCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // {};
52
+ *
51
53
  * ```
52
54
  *
53
55
  * @param UpdateNodeCommandInput - {@link UpdateNodeCommandInput}
@@ -74,6 +76,8 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
74
76
  * creating resources that exceed your service limit for this resource type.
75
77
  * Request a limit increase or delete unused resources if possible.</p>
76
78
  *
79
+ * @throws {@link ManagedBlockchainServiceException}
80
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
77
81
  *
78
82
  */
79
83
  export declare class UpdateNodeCommand extends $Command<UpdateNodeCommandInput, UpdateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
35
35
  * };
36
36
  * const command = new VoteOnProposalCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param VoteOnProposalCommandInput - {@link VoteOnProposalCommandInput}
@@ -64,6 +66,8 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
64
66
  * creating resources that exceed your service limit for this resource type.
65
67
  * Request a limit increase or delete unused resources if possible.</p>
66
68
  *
69
+ * @throws {@link ManagedBlockchainServiceException}
70
+ * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
67
71
  *
68
72
  */
69
73
  export declare class VoteOnProposalCommand extends $Command<VoteOnProposalCommandInput, VoteOnProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
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.325.0",
4
+ "version": "3.326.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",