@aws-sdk/client-managedblockchain 3.529.1 → 3.535.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 (67) hide show
  1. package/dist-types/ManagedBlockchain.d.ts +4 -1
  2. package/dist-types/ManagedBlockchainClient.d.ts +1 -1
  3. package/dist-types/commands/CreateAccessorCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateMemberCommand.d.ts +2 -1
  5. package/dist-types/commands/CreateNetworkCommand.d.ts +2 -1
  6. package/dist-types/commands/CreateNodeCommand.d.ts +2 -1
  7. package/dist-types/commands/CreateProposalCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteAccessorCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteMemberCommand.d.ts +2 -1
  10. package/dist-types/commands/DeleteNodeCommand.d.ts +2 -1
  11. package/dist-types/commands/GetAccessorCommand.d.ts +2 -1
  12. package/dist-types/commands/GetMemberCommand.d.ts +2 -1
  13. package/dist-types/commands/GetNetworkCommand.d.ts +2 -1
  14. package/dist-types/commands/GetNodeCommand.d.ts +2 -1
  15. package/dist-types/commands/GetProposalCommand.d.ts +2 -1
  16. package/dist-types/commands/ListAccessorsCommand.d.ts +2 -1
  17. package/dist-types/commands/ListInvitationsCommand.d.ts +2 -1
  18. package/dist-types/commands/ListMembersCommand.d.ts +2 -1
  19. package/dist-types/commands/ListNetworksCommand.d.ts +2 -1
  20. package/dist-types/commands/ListNodesCommand.d.ts +2 -1
  21. package/dist-types/commands/ListProposalVotesCommand.d.ts +2 -1
  22. package/dist-types/commands/ListProposalsCommand.d.ts +2 -1
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  24. package/dist-types/commands/RejectInvitationCommand.d.ts +2 -1
  25. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  26. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/UpdateMemberCommand.d.ts +2 -1
  28. package/dist-types/commands/UpdateNodeCommand.d.ts +2 -1
  29. package/dist-types/commands/VoteOnProposalCommand.d.ts +2 -1
  30. package/dist-types/models/models_0.d.ts +311 -311
  31. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  32. package/dist-types/runtimeConfig.d.ts +2 -2
  33. package/dist-types/runtimeConfig.native.d.ts +2 -2
  34. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  35. package/dist-types/ts3.4/ManagedBlockchain.d.ts +3 -0
  36. package/dist-types/ts3.4/commands/CreateAccessorCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/DeleteAccessorCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/GetAccessorCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +7 -0
  48. package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/ListAccessorsCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +9 -0
  53. package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +9 -0
  54. package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +9 -0
  55. package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +9 -0
  56. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  57. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +9 -0
  58. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  59. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  60. package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +9 -0
  61. package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +9 -0
  62. package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +9 -0
  63. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  64. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  65. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  66. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  67. package/package.json +40 -40
@@ -109,12 +109,14 @@ export interface ManagedBlockchain {
109
109
  /**
110
110
  * @see {@link ListAccessorsCommand}
111
111
  */
112
+ listAccessors(): Promise<ListAccessorsCommandOutput>;
112
113
  listAccessors(args: ListAccessorsCommandInput, options?: __HttpHandlerOptions): Promise<ListAccessorsCommandOutput>;
113
114
  listAccessors(args: ListAccessorsCommandInput, cb: (err: any, data?: ListAccessorsCommandOutput) => void): void;
114
115
  listAccessors(args: ListAccessorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessorsCommandOutput) => void): void;
115
116
  /**
116
117
  * @see {@link ListInvitationsCommand}
117
118
  */
119
+ listInvitations(): Promise<ListInvitationsCommandOutput>;
118
120
  listInvitations(args: ListInvitationsCommandInput, options?: __HttpHandlerOptions): Promise<ListInvitationsCommandOutput>;
119
121
  listInvitations(args: ListInvitationsCommandInput, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
120
122
  listInvitations(args: ListInvitationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
@@ -127,6 +129,7 @@ export interface ManagedBlockchain {
127
129
  /**
128
130
  * @see {@link ListNetworksCommand}
129
131
  */
132
+ listNetworks(): Promise<ListNetworksCommandOutput>;
130
133
  listNetworks(args: ListNetworksCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworksCommandOutput>;
131
134
  listNetworks(args: ListNetworksCommandInput, cb: (err: any, data?: ListNetworksCommandOutput) => void): void;
132
135
  listNetworks(args: ListNetworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworksCommandOutput) => void): void;
@@ -192,11 +195,11 @@ export interface ManagedBlockchain {
192
195
  voteOnProposal(args: VoteOnProposalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VoteOnProposalCommandOutput) => void): void;
193
196
  }
194
197
  /**
195
- * @public
196
198
  * <p></p>
197
199
  * <p>Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can securely and transparently run transactions and share data without the need for a trusted, central authority.</p>
198
200
  * <p>Managed Blockchain supports the Hyperledger Fabric and Ethereum open-source frameworks. Because of fundamental differences between the frameworks, some API actions or data types may only apply in the context of one framework and not the other. For example, actions related to Hyperledger Fabric network members such as <code>CreateMember</code> and <code>DeleteMember</code> don't apply to Ethereum.</p>
199
201
  * <p>The description for each action indicates the framework or frameworks to which it applies. Data types and properties that apply only in the context of a particular framework are similarly indicated.</p>
202
+ * @public
200
203
  */
201
204
  export declare class ManagedBlockchain extends ManagedBlockchainClient implements ManagedBlockchain {
202
205
  }
@@ -178,11 +178,11 @@ export type ManagedBlockchainClientResolvedConfigType = __SmithyResolvedConfigur
178
178
  export interface ManagedBlockchainClientResolvedConfig extends ManagedBlockchainClientResolvedConfigType {
179
179
  }
180
180
  /**
181
- * @public
182
181
  * <p></p>
183
182
  * <p>Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can securely and transparently run transactions and share data without the need for a trusted, central authority.</p>
184
183
  * <p>Managed Blockchain supports the Hyperledger Fabric and Ethereum open-source frameworks. Because of fundamental differences between the frameworks, some API actions or data types may only apply in the context of one framework and not the other. For example, actions related to Hyperledger Fabric network members such as <code>CreateMember</code> and <code>DeleteMember</code> don't apply to Ethereum.</p>
185
184
  * <p>The description for each action indicates the framework or frameworks to which it applies. Data types and properties that apply only in the context of a particular framework are similarly indicated.</p>
185
+ * @public
186
186
  */
187
187
  export declare class ManagedBlockchainClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ManagedBlockchainClientResolvedConfig> {
188
188
  /**
@@ -22,10 +22,10 @@ export interface CreateAccessorCommandOutput extends CreateAccessorOutput, __Met
22
22
  }
23
23
  declare const CreateAccessorCommand_base: {
24
24
  new (input: CreateAccessorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAccessorCommandInput, CreateAccessorCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateAccessorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAccessorCommandInput, CreateAccessorCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a new accessor for use with Amazon Managed Blockchain service that supports token based access.
30
30
  * The accessor contains information required for token based access.</p>
31
31
  * @example
@@ -86,6 +86,7 @@ declare const CreateAccessorCommand_base: {
86
86
  * @throws {@link ManagedBlockchainServiceException}
87
87
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class CreateAccessorCommand extends CreateAccessorCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface CreateMemberCommandOutput extends CreateMemberOutput, __Metadat
22
22
  }
23
23
  declare const CreateMemberCommand_base: {
24
24
  new (input: CreateMemberCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMemberCommandInput, CreateMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateMemberCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMemberCommandInput, CreateMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a member within a Managed Blockchain network.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -110,6 +110,7 @@ declare const CreateMemberCommand_base: {
110
110
  * @throws {@link ManagedBlockchainServiceException}
111
111
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
112
112
  *
113
+ * @public
113
114
  */
114
115
  export declare class CreateMemberCommand extends CreateMemberCommand_base {
115
116
  }
@@ -22,10 +22,10 @@ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __Metad
22
22
  }
23
23
  declare const CreateNetworkCommand_base: {
24
24
  new (input: CreateNetworkCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNetworkCommandInput, CreateNetworkCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateNetworkCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNetworkCommandInput, CreateNetworkCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a new blockchain network using Amazon Managed Blockchain.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -122,6 +122,7 @@ declare const CreateNetworkCommand_base: {
122
122
  * @throws {@link ManagedBlockchainServiceException}
123
123
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
124
124
  *
125
+ * @public
125
126
  */
126
127
  export declare class CreateNetworkCommand extends CreateNetworkCommand_base {
127
128
  }
@@ -22,10 +22,10 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea
22
22
  }
23
23
  declare const CreateNodeCommand_base: {
24
24
  new (input: CreateNodeCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNodeCommandInput, CreateNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateNodeCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNodeCommandInput, CreateNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a node on the specified blockchain network.</p>
30
30
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
31
31
  * @example
@@ -109,6 +109,7 @@ declare const CreateNodeCommand_base: {
109
109
  * @throws {@link ManagedBlockchainServiceException}
110
110
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
111
111
  *
112
+ * @public
112
113
  */
113
114
  export declare class CreateNodeCommand extends CreateNodeCommand_base {
114
115
  }
@@ -22,10 +22,10 @@ export interface CreateProposalCommandOutput extends CreateProposalOutput, __Met
22
22
  }
23
23
  declare const CreateProposalCommand_base: {
24
24
  new (input: CreateProposalCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProposalCommandInput, CreateProposalCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateProposalCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProposalCommandInput, CreateProposalCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a proposal for a change to the network that other members of the network can vote on, for example, a proposal to add a new member to the network. Any member can create a proposal.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -96,6 +96,7 @@ declare const CreateProposalCommand_base: {
96
96
  * @throws {@link ManagedBlockchainServiceException}
97
97
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
98
98
  *
99
+ * @public
99
100
  */
100
101
  export declare class CreateProposalCommand extends CreateProposalCommand_base {
101
102
  }
@@ -22,10 +22,10 @@ export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __Met
22
22
  }
23
23
  declare const DeleteAccessorCommand_base: {
24
24
  new (input: DeleteAccessorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAccessorCommandInput, DeleteAccessorCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteAccessorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAccessorCommandInput, DeleteAccessorCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes an accessor that your Amazon Web Services account owns. An accessor object is a container that has the
30
30
  * information required for token based access to your Ethereum nodes including, the
31
31
  * <code>BILLING_TOKEN</code>. After an accessor is deleted, the status of the accessor changes
@@ -75,6 +75,7 @@ declare const DeleteAccessorCommand_base: {
75
75
  * @throws {@link ManagedBlockchainServiceException}
76
76
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class DeleteAccessorCommand extends DeleteAccessorCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
22
22
  }
23
23
  declare const DeleteMemberCommand_base: {
24
24
  new (input: DeleteMemberCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMemberCommandInput, DeleteMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteMemberCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMemberCommandInput, DeleteMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a member. Deleting a member removes the member and all associated resources from the network. <code>DeleteMember</code> can only be called for a specified <code>MemberId</code> if the principal performing the action is associated with the Amazon Web Services account that owns the member. In all other cases, the <code>DeleteMember</code> action is carried out as the result of an approved proposal to remove a member. If <code>MemberId</code> is the last member in a network specified by the last Amazon Web Services account, the network is deleted also.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -74,6 +74,7 @@ declare const DeleteMemberCommand_base: {
74
74
  * @throws {@link ManagedBlockchainServiceException}
75
75
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
76
76
  *
77
+ * @public
77
78
  */
78
79
  export declare class DeleteMemberCommand extends DeleteMemberCommand_base {
79
80
  }
@@ -22,10 +22,10 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
22
22
  }
23
23
  declare const DeleteNodeCommand_base: {
24
24
  new (input: DeleteNodeCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteNodeCommandInput, DeleteNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteNodeCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteNodeCommandInput, DeleteNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a node that your Amazon Web Services account owns. All data on the node is lost and cannot be recovered.</p>
30
30
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
31
31
  * @example
@@ -75,6 +75,7 @@ declare const DeleteNodeCommand_base: {
75
75
  * @throws {@link ManagedBlockchainServiceException}
76
76
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class DeleteNodeCommand extends DeleteNodeCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB
22
22
  }
23
23
  declare const GetAccessorCommand_base: {
24
24
  new (input: GetAccessorCommandInput): import("@smithy/smithy-client").CommandImpl<GetAccessorCommandInput, GetAccessorCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetAccessorCommandInput): import("@smithy/smithy-client").CommandImpl<GetAccessorCommandInput, GetAccessorCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns detailed information about an accessor. An accessor object is a container that has the
30
30
  * information required for token based access to your Ethereum nodes.</p>
31
31
  * @example
@@ -83,6 +83,7 @@ declare const GetAccessorCommand_base: {
83
83
  * @throws {@link ManagedBlockchainServiceException}
84
84
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
85
85
  *
86
+ * @public
86
87
  */
87
88
  export declare class GetAccessorCommand extends GetAccessorCommand_base {
88
89
  }
@@ -22,10 +22,10 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
22
22
  }
23
23
  declare const GetMemberCommand_base: {
24
24
  new (input: GetMemberCommandInput): import("@smithy/smithy-client").CommandImpl<GetMemberCommandInput, GetMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetMemberCommandInput): import("@smithy/smithy-client").CommandImpl<GetMemberCommandInput, GetMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns detailed information about a member.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -100,6 +100,7 @@ declare const GetMemberCommand_base: {
100
100
  * @throws {@link ManagedBlockchainServiceException}
101
101
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
102
102
  *
103
+ * @public
103
104
  */
104
105
  export declare class GetMemberCommand extends GetMemberCommand_base {
105
106
  }
@@ -22,10 +22,10 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
22
22
  }
23
23
  declare const GetNetworkCommand_base: {
24
24
  new (input: GetNetworkCommandInput): import("@smithy/smithy-client").CommandImpl<GetNetworkCommandInput, GetNetworkCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetNetworkCommandInput): import("@smithy/smithy-client").CommandImpl<GetNetworkCommandInput, GetNetworkCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns detailed information about a network.</p>
30
30
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
31
31
  * @example
@@ -101,6 +101,7 @@ declare const GetNetworkCommand_base: {
101
101
  * @throws {@link ManagedBlockchainServiceException}
102
102
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
103
103
  *
104
+ * @public
104
105
  */
105
106
  export declare class GetNetworkCommand extends GetNetworkCommand_base {
106
107
  }
@@ -22,10 +22,10 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
22
22
  }
23
23
  declare const GetNodeCommand_base: {
24
24
  new (input: GetNodeCommandInput): import("@smithy/smithy-client").CommandImpl<GetNodeCommandInput, GetNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetNodeCommandInput): import("@smithy/smithy-client").CommandImpl<GetNodeCommandInput, GetNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns detailed information about a node.</p>
30
30
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
31
31
  * @example
@@ -112,6 +112,7 @@ declare const GetNodeCommand_base: {
112
112
  * @throws {@link ManagedBlockchainServiceException}
113
113
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
114
114
  *
115
+ * @public
115
116
  */
116
117
  export declare class GetNodeCommand extends GetNodeCommand_base {
117
118
  }
@@ -22,10 +22,10 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
22
22
  }
23
23
  declare const GetProposalCommand_base: {
24
24
  new (input: GetProposalCommandInput): import("@smithy/smithy-client").CommandImpl<GetProposalCommandInput, GetProposalCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetProposalCommandInput): import("@smithy/smithy-client").CommandImpl<GetProposalCommandInput, GetProposalCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns detailed information about a proposal.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -101,6 +101,7 @@ declare const GetProposalCommand_base: {
101
101
  * @throws {@link ManagedBlockchainServiceException}
102
102
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
103
103
  *
104
+ * @public
104
105
  */
105
106
  export declare class GetProposalCommand extends GetProposalCommand_base {
106
107
  }
@@ -22,10 +22,10 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad
22
22
  }
23
23
  declare const ListAccessorsCommand_base: {
24
24
  new (input: ListAccessorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAccessorsCommandInput, ListAccessorsCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListAccessorsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAccessorsCommandInput, ListAccessorsCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of the accessors and their properties. Accessor objects are containers that have the
30
30
  * information required for token based access to your Ethereum nodes.</p>
31
31
  * @example
@@ -81,6 +81,7 @@ declare const ListAccessorsCommand_base: {
81
81
  * @throws {@link ManagedBlockchainServiceException}
82
82
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
83
83
  *
84
+ * @public
84
85
  */
85
86
  export declare class ListAccessorsCommand extends ListAccessorsCommand_base {
86
87
  }
@@ -22,10 +22,10 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
22
22
  }
23
23
  declare const ListInvitationsCommand_base: {
24
24
  new (input: ListInvitationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListInvitationsCommandInput, ListInvitationsCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListInvitationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListInvitationsCommandInput, ListInvitationsCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of all invitations for the current Amazon Web Services account.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -96,6 +96,7 @@ declare const ListInvitationsCommand_base: {
96
96
  * @throws {@link ManagedBlockchainServiceException}
97
97
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
98
98
  *
99
+ * @public
99
100
  */
100
101
  export declare class ListInvitationsCommand extends ListInvitationsCommand_base {
101
102
  }
@@ -22,10 +22,10 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
22
22
  }
23
23
  declare const ListMembersCommand_base: {
24
24
  new (input: ListMembersCommandInput): import("@smithy/smithy-client").CommandImpl<ListMembersCommandInput, ListMembersCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListMembersCommandInput): import("@smithy/smithy-client").CommandImpl<ListMembersCommandInput, ListMembersCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of the members in a network and properties of their configurations.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -85,6 +85,7 @@ declare const ListMembersCommand_base: {
85
85
  * @throws {@link ManagedBlockchainServiceException}
86
86
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class ListMembersCommand extends ListMembersCommand_base {
90
91
  }
@@ -22,10 +22,10 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
22
22
  }
23
23
  declare const ListNetworksCommand_base: {
24
24
  new (input: ListNetworksCommandInput): import("@smithy/smithy-client").CommandImpl<ListNetworksCommandInput, ListNetworksCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListNetworksCommandInput]): import("@smithy/smithy-client").CommandImpl<ListNetworksCommandInput, ListNetworksCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns information about the networks in which the current Amazon Web Services account participates.</p>
30
30
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
31
31
  * @example
@@ -85,6 +85,7 @@ declare const ListNetworksCommand_base: {
85
85
  * @throws {@link ManagedBlockchainServiceException}
86
86
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class ListNetworksCommand extends ListNetworksCommand_base {
90
91
  }
@@ -22,10 +22,10 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
22
22
  }
23
23
  declare const ListNodesCommand_base: {
24
24
  new (input: ListNodesCommandInput): import("@smithy/smithy-client").CommandImpl<ListNodesCommandInput, ListNodesCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListNodesCommandInput): import("@smithy/smithy-client").CommandImpl<ListNodesCommandInput, ListNodesCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns information about the nodes within a network.</p>
30
30
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
31
31
  * @example
@@ -83,6 +83,7 @@ declare const ListNodesCommand_base: {
83
83
  * @throws {@link ManagedBlockchainServiceException}
84
84
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
85
85
  *
86
+ * @public
86
87
  */
87
88
  export declare class ListNodesCommand extends ListNodesCommand_base {
88
89
  }
@@ -22,10 +22,10 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
22
22
  }
23
23
  declare const ListProposalVotesCommand_base: {
24
24
  new (input: ListProposalVotesCommandInput): import("@smithy/smithy-client").CommandImpl<ListProposalVotesCommandInput, ListProposalVotesCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListProposalVotesCommandInput): import("@smithy/smithy-client").CommandImpl<ListProposalVotesCommandInput, ListProposalVotesCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns the list of votes for a specified proposal, including the value of each vote and the unique identifier of the member that cast the vote.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -79,6 +79,7 @@ declare const ListProposalVotesCommand_base: {
79
79
  * @throws {@link ManagedBlockchainServiceException}
80
80
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
81
81
  *
82
+ * @public
82
83
  */
83
84
  export declare class ListProposalVotesCommand extends ListProposalVotesCommand_base {
84
85
  }
@@ -22,10 +22,10 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
22
22
  }
23
23
  declare const ListProposalsCommand_base: {
24
24
  new (input: ListProposalsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProposalsCommandInput, ListProposalsCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListProposalsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProposalsCommandInput, ListProposalsCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of proposals for the network.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -86,6 +86,7 @@ declare const ListProposalsCommand_base: {
86
86
  * @throws {@link ManagedBlockchainServiceException}
87
87
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class ListProposalsCommand extends ListProposalsCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of tags for the specified resource. Each tag consists of a key and optional value.</p>
30
30
  * <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>
31
31
  * @example
@@ -68,6 +68,7 @@ declare const ListTagsForResourceCommand_base: {
68
68
  * @throws {@link ManagedBlockchainServiceException}
69
69
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
22
22
  }
23
23
  declare const RejectInvitationCommand_base: {
24
24
  new (input: RejectInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<RejectInvitationCommandInput, RejectInvitationCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: RejectInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<RejectInvitationCommandInput, RejectInvitationCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Rejects an invitation to join a network. This action can be called by a principal in an Amazon Web Services account that has received an invitation to create a member and join a network.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -73,6 +73,7 @@ declare const RejectInvitationCommand_base: {
73
73
  * @throws {@link ManagedBlockchainServiceException}
74
74
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class RejectInvitationCommand extends RejectInvitationCommand_base {
78
79
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds or overwrites the specified tags for the specified Amazon Managed Blockchain resource. Each tag consists of a key and optional value.</p>
30
30
  * <p>When you specify a tag key that already exists, the tag value is overwritten with the new value. Use <code>UntagResource</code> to remove tag keys.</p>
31
31
  * <p>A resource can have up to 50 tags. If you try to create more than 50 tags for a resource, your request fails and returns an error.</p>
@@ -72,6 +72,7 @@ declare const TagResourceCommand_base: {
72
72
  * @throws {@link ManagedBlockchainServiceException}
73
73
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class TagResourceCommand extends TagResourceCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes the specified tags from the Amazon Managed Blockchain resource.</p>
30
30
  * <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>
31
31
  * @example
@@ -67,6 +67,7 @@ declare const UntagResourceCommand_base: {
67
67
  * @throws {@link ManagedBlockchainServiceException}
68
68
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
69
69
  *
70
+ * @public
70
71
  */
71
72
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
72
73
  }
@@ -22,10 +22,10 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
22
22
  }
23
23
  declare const UpdateMemberCommand_base: {
24
24
  new (input: UpdateMemberCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMemberCommandInput, UpdateMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateMemberCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMemberCommandInput, UpdateMemberCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a member configuration with new parameters.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -80,6 +80,7 @@ declare const UpdateMemberCommand_base: {
80
80
  * @throws {@link ManagedBlockchainServiceException}
81
81
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
82
82
  *
83
+ * @public
83
84
  */
84
85
  export declare class UpdateMemberCommand extends UpdateMemberCommand_base {
85
86
  }
@@ -22,10 +22,10 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
22
22
  }
23
23
  declare const UpdateNodeCommand_base: {
24
24
  new (input: UpdateNodeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateNodeCommandInput, UpdateNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateNodeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateNodeCommandInput, UpdateNodeCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a node configuration with new parameters.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -86,6 +86,7 @@ declare const UpdateNodeCommand_base: {
86
86
  * @throws {@link ManagedBlockchainServiceException}
87
87
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class UpdateNodeCommand extends UpdateNodeCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
22
22
  }
23
23
  declare const VoteOnProposalCommand_base: {
24
24
  new (input: VoteOnProposalCommandInput): import("@smithy/smithy-client").CommandImpl<VoteOnProposalCommandInput, VoteOnProposalCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: VoteOnProposalCommandInput): import("@smithy/smithy-client").CommandImpl<VoteOnProposalCommandInput, VoteOnProposalCommandOutput, ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Casts a vote for a specified <code>ProposalId</code> on behalf of a member. The member to vote as, specified by <code>VoterMemberId</code>, must be in the same Amazon Web Services account as the principal that calls the action.</p>
30
30
  * <p>Applies only to Hyperledger Fabric.</p>
31
31
  * @example
@@ -76,6 +76,7 @@ declare const VoteOnProposalCommand_base: {
76
76
  * @throws {@link ManagedBlockchainServiceException}
77
77
  * <p>Base exception class for all service exceptions from ManagedBlockchain service.</p>
78
78
  *
79
+ * @public
79
80
  */
80
81
  export declare class VoteOnProposalCommand extends VoteOnProposalCommand_base {
81
82
  }