@aws-sdk/client-managedblockchain 3.50.0 → 3.53.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 (57) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ManagedBlockchainServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +144 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +296 -1064
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ManagedBlockchainServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +132 -1
  9. package/dist-es/protocols/Aws_restJson1.js +587 -1167
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ManagedBlockchainServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +72 -31
  13. package/dist-types/ts3.4/ManagedBlockchain.d.ts +120 -0
  14. package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +96 -0
  15. package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  39. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  40. package/dist-types/ts3.4/index.d.ts +6 -0
  41. package/dist-types/ts3.4/models/ManagedBlockchainServiceException.d.ts +6 -0
  42. package/dist-types/ts3.4/models/index.d.ts +1 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +1152 -0
  44. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  45. package/dist-types/ts3.4/pagination/ListInvitationsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +4 -0
  47. package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/ListNodesPaginator.d.ts +4 -0
  49. package/dist-types/ts3.4/pagination/ListProposalVotesPaginator.d.ts +4 -0
  50. package/dist-types/ts3.4/pagination/ListProposalsPaginator.d.ts +4 -0
  51. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  52. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +71 -0
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  56. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  57. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./ManagedBlockchainClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ManagedBlockchainServiceException } from "./models/ManagedBlockchainServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ManagedBlockchain service.
4
+ */
5
+ export declare class ManagedBlockchainServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,11 +1,16 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
2
3
  /**
3
4
  * <p>You do not have sufficient access to perform this action.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
8
9
  Message?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
14
  }
10
15
  export declare enum ThresholdComparator {
11
16
  GREATER_THAN = "GREATER_THAN",
@@ -221,72 +226,104 @@ export declare namespace CreateMemberOutput {
221
226
  /**
222
227
  * <p>The request processing has failed because of an unknown error, exception or failure.</p>
223
228
  */
224
- export interface InternalServiceErrorException extends __SmithyException, $MetadataBearer {
225
- name: "InternalServiceErrorException";
226
- $fault: "server";
229
+ export declare class InternalServiceErrorException extends __BaseException {
230
+ readonly name: "InternalServiceErrorException";
231
+ readonly $fault: "server";
232
+ /**
233
+ * @internal
234
+ */
235
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
227
236
  }
228
237
  /**
229
238
  * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
230
239
  */
231
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
232
- name: "InvalidRequestException";
233
- $fault: "client";
240
+ export declare class InvalidRequestException extends __BaseException {
241
+ readonly name: "InvalidRequestException";
242
+ readonly $fault: "client";
234
243
  Message?: string;
244
+ /**
245
+ * @internal
246
+ */
247
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
235
248
  }
236
249
  /**
237
250
  * <p>A resource request is issued for a resource that already exists.</p>
238
251
  */
239
- export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
240
- name: "ResourceAlreadyExistsException";
241
- $fault: "client";
252
+ export declare class ResourceAlreadyExistsException extends __BaseException {
253
+ readonly name: "ResourceAlreadyExistsException";
254
+ readonly $fault: "client";
242
255
  Message?: string;
256
+ /**
257
+ * @internal
258
+ */
259
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
243
260
  }
244
261
  /**
245
262
  * <p>The maximum number of resources of that type already exist. Ensure the resources requested are within the boundaries of the service edition and your account limits.</p>
246
263
  */
247
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
248
- name: "ResourceLimitExceededException";
249
- $fault: "client";
264
+ export declare class ResourceLimitExceededException extends __BaseException {
265
+ readonly name: "ResourceLimitExceededException";
266
+ readonly $fault: "client";
250
267
  Message?: string;
268
+ /**
269
+ * @internal
270
+ */
271
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
251
272
  }
252
273
  /**
253
274
  * <p>A requested resource does not exist. It may have been deleted or referenced inaccurately.</p>
254
275
  */
255
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
256
- name: "ResourceNotFoundException";
257
- $fault: "client";
276
+ export declare class ResourceNotFoundException extends __BaseException {
277
+ readonly name: "ResourceNotFoundException";
278
+ readonly $fault: "client";
258
279
  Message?: string;
259
280
  /**
260
281
  * <p>A requested resource does not exist. It may have been deleted or referenced inaccurately.</p>
261
282
  */
262
283
  ResourceName?: string;
284
+ /**
285
+ * @internal
286
+ */
287
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
263
288
  }
264
289
  /**
265
290
  * <p>The requested resource exists but is not in a status that can complete the operation.</p>
266
291
  */
267
- export interface ResourceNotReadyException extends __SmithyException, $MetadataBearer {
268
- name: "ResourceNotReadyException";
269
- $fault: "client";
292
+ export declare class ResourceNotReadyException extends __BaseException {
293
+ readonly name: "ResourceNotReadyException";
294
+ readonly $fault: "client";
270
295
  Message?: string;
296
+ /**
297
+ * @internal
298
+ */
299
+ constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
271
300
  }
272
301
  /**
273
302
  * <p>The request or operation could not be performed because a service is throttling requests. The most common source of throttling errors is launching EC2 instances such that your service limit for EC2 instances is exceeded. Request a limit increase or delete unused resources if possible.</p>
274
303
  */
275
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
276
- name: "ThrottlingException";
277
- $fault: "client";
304
+ export declare class ThrottlingException extends __BaseException {
305
+ readonly name: "ThrottlingException";
306
+ readonly $fault: "client";
307
+ /**
308
+ * @internal
309
+ */
310
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
278
311
  }
279
312
  /**
280
313
  * <p></p>
281
314
  */
282
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
283
- name: "TooManyTagsException";
284
- $fault: "client";
315
+ export declare class TooManyTagsException extends __BaseException {
316
+ readonly name: "TooManyTagsException";
317
+ readonly $fault: "client";
285
318
  Message?: string;
286
319
  /**
287
320
  * <p></p>
288
321
  */
289
322
  ResourceName?: string;
323
+ /**
324
+ * @internal
325
+ */
326
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
290
327
  }
291
328
  export declare enum Framework {
292
329
  ETHEREUM = "ETHEREUM",
@@ -1396,10 +1433,14 @@ export declare namespace GetProposalOutput {
1396
1433
  /**
1397
1434
  * <p></p>
1398
1435
  */
1399
- export interface IllegalActionException extends __SmithyException, $MetadataBearer {
1400
- name: "IllegalActionException";
1401
- $fault: "client";
1436
+ export declare class IllegalActionException extends __BaseException {
1437
+ readonly name: "IllegalActionException";
1438
+ readonly $fault: "client";
1402
1439
  Message?: string;
1440
+ /**
1441
+ * @internal
1442
+ */
1443
+ constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
1403
1444
  }
1404
1445
  /**
1405
1446
  * <p>A summary of network configuration properties.</p>
@@ -0,0 +1,120 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateMemberCommandInput, CreateMemberCommandOutput } from "./commands/CreateMemberCommand";
3
+ import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "./commands/CreateNetworkCommand";
4
+ import { CreateNodeCommandInput, CreateNodeCommandOutput } from "./commands/CreateNodeCommand";
5
+ import { CreateProposalCommandInput, CreateProposalCommandOutput } from "./commands/CreateProposalCommand";
6
+ import { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "./commands/DeleteMemberCommand";
7
+ import { DeleteNodeCommandInput, DeleteNodeCommandOutput } from "./commands/DeleteNodeCommand";
8
+ import { GetMemberCommandInput, GetMemberCommandOutput } from "./commands/GetMemberCommand";
9
+ import { GetNetworkCommandInput, GetNetworkCommandOutput } from "./commands/GetNetworkCommand";
10
+ import { GetNodeCommandInput, GetNodeCommandOutput } from "./commands/GetNodeCommand";
11
+ import { GetProposalCommandInput, GetProposalCommandOutput } from "./commands/GetProposalCommand";
12
+ import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
13
+ import { ListMembersCommandInput, ListMembersCommandOutput } from "./commands/ListMembersCommand";
14
+ import { ListNetworksCommandInput, ListNetworksCommandOutput } from "./commands/ListNetworksCommand";
15
+ import { ListNodesCommandInput, ListNodesCommandOutput } from "./commands/ListNodesCommand";
16
+ import { ListProposalsCommandInput, ListProposalsCommandOutput } from "./commands/ListProposalsCommand";
17
+ import { ListProposalVotesCommandInput, ListProposalVotesCommandOutput } from "./commands/ListProposalVotesCommand";
18
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
19
+ import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "./commands/RejectInvitationCommand";
20
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
22
+ import { UpdateMemberCommandInput, UpdateMemberCommandOutput } from "./commands/UpdateMemberCommand";
23
+ import { UpdateNodeCommandInput, UpdateNodeCommandOutput } from "./commands/UpdateNodeCommand";
24
+ import { VoteOnProposalCommandInput, VoteOnProposalCommandOutput } from "./commands/VoteOnProposalCommand";
25
+ import { ManagedBlockchainClient } from "./ManagedBlockchainClient";
26
+
27
+ export declare class ManagedBlockchain extends ManagedBlockchainClient {
28
+
29
+ createMember(args: CreateMemberCommandInput, options?: __HttpHandlerOptions): Promise<CreateMemberCommandOutput>;
30
+ createMember(args: CreateMemberCommandInput, cb: (err: any, data?: CreateMemberCommandOutput) => void): void;
31
+ createMember(args: CreateMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMemberCommandOutput) => void): void;
32
+
33
+ createNetwork(args: CreateNetworkCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkCommandOutput>;
34
+ createNetwork(args: CreateNetworkCommandInput, cb: (err: any, data?: CreateNetworkCommandOutput) => void): void;
35
+ createNetwork(args: CreateNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkCommandOutput) => void): void;
36
+
37
+ createNode(args: CreateNodeCommandInput, options?: __HttpHandlerOptions): Promise<CreateNodeCommandOutput>;
38
+ createNode(args: CreateNodeCommandInput, cb: (err: any, data?: CreateNodeCommandOutput) => void): void;
39
+ createNode(args: CreateNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNodeCommandOutput) => void): void;
40
+
41
+ createProposal(args: CreateProposalCommandInput, options?: __HttpHandlerOptions): Promise<CreateProposalCommandOutput>;
42
+ createProposal(args: CreateProposalCommandInput, cb: (err: any, data?: CreateProposalCommandOutput) => void): void;
43
+ createProposal(args: CreateProposalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProposalCommandOutput) => void): void;
44
+
45
+ deleteMember(args: DeleteMemberCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMemberCommandOutput>;
46
+ deleteMember(args: DeleteMemberCommandInput, cb: (err: any, data?: DeleteMemberCommandOutput) => void): void;
47
+ deleteMember(args: DeleteMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMemberCommandOutput) => void): void;
48
+
49
+ deleteNode(args: DeleteNodeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNodeCommandOutput>;
50
+ deleteNode(args: DeleteNodeCommandInput, cb: (err: any, data?: DeleteNodeCommandOutput) => void): void;
51
+ deleteNode(args: DeleteNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNodeCommandOutput) => void): void;
52
+
53
+ getMember(args: GetMemberCommandInput, options?: __HttpHandlerOptions): Promise<GetMemberCommandOutput>;
54
+ getMember(args: GetMemberCommandInput, cb: (err: any, data?: GetMemberCommandOutput) => void): void;
55
+ getMember(args: GetMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMemberCommandOutput) => void): void;
56
+
57
+ getNetwork(args: GetNetworkCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkCommandOutput>;
58
+ getNetwork(args: GetNetworkCommandInput, cb: (err: any, data?: GetNetworkCommandOutput) => void): void;
59
+ getNetwork(args: GetNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkCommandOutput) => void): void;
60
+
61
+ getNode(args: GetNodeCommandInput, options?: __HttpHandlerOptions): Promise<GetNodeCommandOutput>;
62
+ getNode(args: GetNodeCommandInput, cb: (err: any, data?: GetNodeCommandOutput) => void): void;
63
+ getNode(args: GetNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNodeCommandOutput) => void): void;
64
+
65
+ getProposal(args: GetProposalCommandInput, options?: __HttpHandlerOptions): Promise<GetProposalCommandOutput>;
66
+ getProposal(args: GetProposalCommandInput, cb: (err: any, data?: GetProposalCommandOutput) => void): void;
67
+ getProposal(args: GetProposalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProposalCommandOutput) => void): void;
68
+
69
+ listInvitations(args: ListInvitationsCommandInput, options?: __HttpHandlerOptions): Promise<ListInvitationsCommandOutput>;
70
+ listInvitations(args: ListInvitationsCommandInput, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
71
+ listInvitations(args: ListInvitationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
72
+
73
+ listMembers(args: ListMembersCommandInput, options?: __HttpHandlerOptions): Promise<ListMembersCommandOutput>;
74
+ listMembers(args: ListMembersCommandInput, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
75
+ listMembers(args: ListMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
76
+
77
+ listNetworks(args: ListNetworksCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworksCommandOutput>;
78
+ listNetworks(args: ListNetworksCommandInput, cb: (err: any, data?: ListNetworksCommandOutput) => void): void;
79
+ listNetworks(args: ListNetworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworksCommandOutput) => void): void;
80
+
81
+ listNodes(args: ListNodesCommandInput, options?: __HttpHandlerOptions): Promise<ListNodesCommandOutput>;
82
+ listNodes(args: ListNodesCommandInput, cb: (err: any, data?: ListNodesCommandOutput) => void): void;
83
+ listNodes(args: ListNodesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNodesCommandOutput) => void): void;
84
+
85
+ listProposals(args: ListProposalsCommandInput, options?: __HttpHandlerOptions): Promise<ListProposalsCommandOutput>;
86
+ listProposals(args: ListProposalsCommandInput, cb: (err: any, data?: ListProposalsCommandOutput) => void): void;
87
+ listProposals(args: ListProposalsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProposalsCommandOutput) => void): void;
88
+
89
+ listProposalVotes(args: ListProposalVotesCommandInput, options?: __HttpHandlerOptions): Promise<ListProposalVotesCommandOutput>;
90
+ listProposalVotes(args: ListProposalVotesCommandInput, cb: (err: any, data?: ListProposalVotesCommandOutput) => void): void;
91
+ listProposalVotes(args: ListProposalVotesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProposalVotesCommandOutput) => void): void;
92
+
93
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
94
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
95
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
96
+
97
+ rejectInvitation(args: RejectInvitationCommandInput, options?: __HttpHandlerOptions): Promise<RejectInvitationCommandOutput>;
98
+ rejectInvitation(args: RejectInvitationCommandInput, cb: (err: any, data?: RejectInvitationCommandOutput) => void): void;
99
+ rejectInvitation(args: RejectInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectInvitationCommandOutput) => void): void;
100
+
101
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
102
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
103
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
104
+
105
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
106
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
107
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
108
+
109
+ updateMember(args: UpdateMemberCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMemberCommandOutput>;
110
+ updateMember(args: UpdateMemberCommandInput, cb: (err: any, data?: UpdateMemberCommandOutput) => void): void;
111
+ updateMember(args: UpdateMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMemberCommandOutput) => void): void;
112
+
113
+ updateNode(args: UpdateNodeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNodeCommandOutput>;
114
+ updateNode(args: UpdateNodeCommandInput, cb: (err: any, data?: UpdateNodeCommandOutput) => void): void;
115
+ updateNode(args: UpdateNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNodeCommandOutput) => void): void;
116
+
117
+ voteOnProposal(args: VoteOnProposalCommandInput, options?: __HttpHandlerOptions): Promise<VoteOnProposalCommandOutput>;
118
+ voteOnProposal(args: VoteOnProposalCommandInput, cb: (err: any, data?: VoteOnProposalCommandOutput) => void): void;
119
+ voteOnProposal(args: VoteOnProposalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VoteOnProposalCommandOutput) => void): void;
120
+ }
@@ -0,0 +1,96 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateMemberCommandInput, CreateMemberCommandOutput } from "./commands/CreateMemberCommand";
10
+ import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "./commands/CreateNetworkCommand";
11
+ import { CreateNodeCommandInput, CreateNodeCommandOutput } from "./commands/CreateNodeCommand";
12
+ import { CreateProposalCommandInput, CreateProposalCommandOutput } from "./commands/CreateProposalCommand";
13
+ import { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "./commands/DeleteMemberCommand";
14
+ import { DeleteNodeCommandInput, DeleteNodeCommandOutput } from "./commands/DeleteNodeCommand";
15
+ import { GetMemberCommandInput, GetMemberCommandOutput } from "./commands/GetMemberCommand";
16
+ import { GetNetworkCommandInput, GetNetworkCommandOutput } from "./commands/GetNetworkCommand";
17
+ import { GetNodeCommandInput, GetNodeCommandOutput } from "./commands/GetNodeCommand";
18
+ import { GetProposalCommandInput, GetProposalCommandOutput } from "./commands/GetProposalCommand";
19
+ import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
20
+ import { ListMembersCommandInput, ListMembersCommandOutput } from "./commands/ListMembersCommand";
21
+ import { ListNetworksCommandInput, ListNetworksCommandOutput } from "./commands/ListNetworksCommand";
22
+ import { ListNodesCommandInput, ListNodesCommandOutput } from "./commands/ListNodesCommand";
23
+ import { ListProposalsCommandInput, ListProposalsCommandOutput } from "./commands/ListProposalsCommand";
24
+ import { ListProposalVotesCommandInput, ListProposalVotesCommandOutput } from "./commands/ListProposalVotesCommand";
25
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
26
+ import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "./commands/RejectInvitationCommand";
27
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
28
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
29
+ import { UpdateMemberCommandInput, UpdateMemberCommandOutput } from "./commands/UpdateMemberCommand";
30
+ import { UpdateNodeCommandInput, UpdateNodeCommandOutput } from "./commands/UpdateNodeCommand";
31
+ import { VoteOnProposalCommandInput, VoteOnProposalCommandOutput } from "./commands/VoteOnProposalCommand";
32
+ export declare type ServiceInputTypes = CreateMemberCommandInput | CreateNetworkCommandInput | CreateNodeCommandInput | CreateProposalCommandInput | DeleteMemberCommandInput | DeleteNodeCommandInput | GetMemberCommandInput | GetNetworkCommandInput | GetNodeCommandInput | GetProposalCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListNetworksCommandInput | ListNodesCommandInput | ListProposalVotesCommandInput | ListProposalsCommandInput | ListTagsForResourceCommandInput | RejectInvitationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateMemberCommandInput | UpdateNodeCommandInput | VoteOnProposalCommandInput;
33
+ export declare type ServiceOutputTypes = CreateMemberCommandOutput | CreateNetworkCommandOutput | CreateNodeCommandOutput | CreateProposalCommandOutput | DeleteMemberCommandOutput | DeleteNodeCommandOutput | GetMemberCommandOutput | GetNetworkCommandOutput | GetNodeCommandOutput | GetProposalCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListNetworksCommandOutput | ListNodesCommandOutput | ListProposalVotesCommandOutput | ListProposalsCommandOutput | ListTagsForResourceCommandOutput | RejectInvitationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateMemberCommandOutput | UpdateNodeCommandOutput | VoteOnProposalCommandOutput;
34
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
35
+
36
+ requestHandler?: __HttpHandler;
37
+
38
+ sha256?: __HashConstructor;
39
+
40
+ urlParser?: __UrlParser;
41
+
42
+ bodyLengthChecker?: (body: any) => number | undefined;
43
+
44
+ streamCollector?: __StreamCollector;
45
+
46
+ base64Decoder?: __Decoder;
47
+
48
+ base64Encoder?: __Encoder;
49
+
50
+ utf8Decoder?: __Decoder;
51
+
52
+ utf8Encoder?: __Encoder;
53
+
54
+ runtime?: string;
55
+
56
+ disableHostPrefix?: boolean;
57
+
58
+ maxAttempts?: number | __Provider<number>;
59
+
60
+ retryMode?: string | __Provider<string>;
61
+
62
+ logger?: __Logger;
63
+
64
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
65
+
66
+ useFipsEndpoint?: boolean | __Provider<boolean>;
67
+
68
+ serviceId?: string;
69
+
70
+ region?: string | __Provider<string>;
71
+
72
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
73
+
74
+ regionInfoProvider?: RegionInfoProvider;
75
+
76
+ defaultUserAgentProvider?: Provider<__UserAgent>;
77
+
78
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
79
+ }
80
+ declare type ManagedBlockchainClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
81
+
82
+ export interface ManagedBlockchainClientConfig extends ManagedBlockchainClientConfigType {
83
+ }
84
+ declare type ManagedBlockchainClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
85
+
86
+ export interface ManagedBlockchainClientResolvedConfig extends ManagedBlockchainClientResolvedConfigType {
87
+ }
88
+
89
+ export declare class ManagedBlockchainClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ManagedBlockchainClientResolvedConfig> {
90
+
91
+ readonly config: ManagedBlockchainClientResolvedConfig;
92
+ constructor(configuration: ManagedBlockchainClientConfig);
93
+
94
+ destroy(): void;
95
+ }
96
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { CreateMemberInput, CreateMemberOutput } from "../models/models_0";
5
+ export interface CreateMemberCommandInput extends CreateMemberInput {
6
+ }
7
+ export interface CreateMemberCommandOutput extends CreateMemberOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateMemberCommand extends $Command<CreateMemberCommandInput, CreateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: CreateMemberCommandInput;
12
+ constructor(input: CreateMemberCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMemberCommandInput, CreateMemberCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { CreateNetworkInput, CreateNetworkOutput } from "../models/models_0";
5
+ export interface CreateNetworkCommandInput extends CreateNetworkInput {
6
+ }
7
+ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateNetworkCommand extends $Command<CreateNetworkCommandInput, CreateNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: CreateNetworkCommandInput;
12
+ constructor(input: CreateNetworkCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNetworkCommandInput, CreateNetworkCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { CreateNodeInput, CreateNodeOutput } from "../models/models_0";
5
+ export interface CreateNodeCommandInput extends CreateNodeInput {
6
+ }
7
+ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateNodeCommand extends $Command<CreateNodeCommandInput, CreateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: CreateNodeCommandInput;
12
+ constructor(input: CreateNodeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNodeCommandInput, CreateNodeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { CreateProposalInput, CreateProposalOutput } from "../models/models_0";
5
+ export interface CreateProposalCommandInput extends CreateProposalInput {
6
+ }
7
+ export interface CreateProposalCommandOutput extends CreateProposalOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateProposalCommand extends $Command<CreateProposalCommandInput, CreateProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: CreateProposalCommandInput;
12
+ constructor(input: CreateProposalCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProposalCommandInput, CreateProposalCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0";
5
+ export interface DeleteMemberCommandInput extends DeleteMemberInput {
6
+ }
7
+ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteMemberCommand extends $Command<DeleteMemberCommandInput, DeleteMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: DeleteMemberCommandInput;
12
+ constructor(input: DeleteMemberCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMemberCommandInput, DeleteMemberCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { DeleteNodeInput, DeleteNodeOutput } from "../models/models_0";
5
+ export interface DeleteNodeCommandInput extends DeleteNodeInput {
6
+ }
7
+ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteNodeCommand extends $Command<DeleteNodeCommandInput, DeleteNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: DeleteNodeCommandInput;
12
+ constructor(input: DeleteNodeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNodeCommandInput, DeleteNodeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { GetMemberInput, GetMemberOutput } from "../models/models_0";
5
+ export interface GetMemberCommandInput extends GetMemberInput {
6
+ }
7
+ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetMemberCommand extends $Command<GetMemberCommandInput, GetMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: GetMemberCommandInput;
12
+ constructor(input: GetMemberCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMemberCommandInput, GetMemberCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { GetNetworkInput, GetNetworkOutput } from "../models/models_0";
5
+ export interface GetNetworkCommandInput extends GetNetworkInput {
6
+ }
7
+ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetNetworkCommand extends $Command<GetNetworkCommandInput, GetNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: GetNetworkCommandInput;
12
+ constructor(input: GetNetworkCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNetworkCommandInput, GetNetworkCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { GetNodeInput, GetNodeOutput } from "../models/models_0";
5
+ export interface GetNodeCommandInput extends GetNodeInput {
6
+ }
7
+ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetNodeCommand extends $Command<GetNodeCommandInput, GetNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: GetNodeCommandInput;
12
+ constructor(input: GetNodeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNodeCommandInput, GetNodeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { GetProposalInput, GetProposalOutput } from "../models/models_0";
5
+ export interface GetProposalCommandInput extends GetProposalInput {
6
+ }
7
+ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetProposalCommand extends $Command<GetProposalCommandInput, GetProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: GetProposalCommandInput;
12
+ constructor(input: GetProposalCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProposalCommandInput, GetProposalCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { ListInvitationsInput, ListInvitationsOutput } from "../models/models_0";
5
+ export interface ListInvitationsCommandInput extends ListInvitationsInput {
6
+ }
7
+ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: ListInvitationsCommandInput;
12
+ constructor(input: ListInvitationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInvitationsCommandInput, ListInvitationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
+ import { ListMembersInput, ListMembersOutput } from "../models/models_0";
5
+ export interface ListMembersCommandInput extends ListMembersInput {
6
+ }
7
+ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
+ readonly input: ListMembersCommandInput;
12
+ constructor(input: ListMembersCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }