@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
@@ -0,0 +1,1152 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
+ }
11
+ export declare enum ThresholdComparator {
12
+ GREATER_THAN = "GREATER_THAN",
13
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO"
14
+ }
15
+
16
+ export interface ApprovalThresholdPolicy {
17
+
18
+ ThresholdPercentage?: number;
19
+
20
+ ProposalDurationInHours?: number;
21
+
22
+ ThresholdComparator?: ThresholdComparator | string;
23
+ }
24
+ export declare namespace ApprovalThresholdPolicy {
25
+
26
+ const filterSensitiveLog: (obj: ApprovalThresholdPolicy) => any;
27
+ }
28
+
29
+ export interface MemberFabricConfiguration {
30
+
31
+ AdminUsername: string | undefined;
32
+
33
+ AdminPassword: string | undefined;
34
+ }
35
+ export declare namespace MemberFabricConfiguration {
36
+
37
+ const filterSensitiveLog: (obj: MemberFabricConfiguration) => any;
38
+ }
39
+
40
+ export interface MemberFrameworkConfiguration {
41
+
42
+ Fabric?: MemberFabricConfiguration;
43
+ }
44
+ export declare namespace MemberFrameworkConfiguration {
45
+
46
+ const filterSensitiveLog: (obj: MemberFrameworkConfiguration) => any;
47
+ }
48
+
49
+ export interface LogConfiguration {
50
+
51
+ Enabled?: boolean;
52
+ }
53
+ export declare namespace LogConfiguration {
54
+
55
+ const filterSensitiveLog: (obj: LogConfiguration) => any;
56
+ }
57
+
58
+ export interface LogConfigurations {
59
+
60
+ Cloudwatch?: LogConfiguration;
61
+ }
62
+ export declare namespace LogConfigurations {
63
+
64
+ const filterSensitiveLog: (obj: LogConfigurations) => any;
65
+ }
66
+
67
+ export interface MemberFabricLogPublishingConfiguration {
68
+
69
+ CaLogs?: LogConfigurations;
70
+ }
71
+ export declare namespace MemberFabricLogPublishingConfiguration {
72
+
73
+ const filterSensitiveLog: (obj: MemberFabricLogPublishingConfiguration) => any;
74
+ }
75
+
76
+ export interface MemberLogPublishingConfiguration {
77
+
78
+ Fabric?: MemberFabricLogPublishingConfiguration;
79
+ }
80
+ export declare namespace MemberLogPublishingConfiguration {
81
+
82
+ const filterSensitiveLog: (obj: MemberLogPublishingConfiguration) => any;
83
+ }
84
+
85
+ export interface MemberConfiguration {
86
+
87
+ Name: string | undefined;
88
+
89
+ Description?: string;
90
+
91
+ FrameworkConfiguration: MemberFrameworkConfiguration | undefined;
92
+
93
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration;
94
+
95
+ Tags?: {
96
+ [key: string]: string;
97
+ };
98
+
99
+ KmsKeyArn?: string;
100
+ }
101
+ export declare namespace MemberConfiguration {
102
+
103
+ const filterSensitiveLog: (obj: MemberConfiguration) => any;
104
+ }
105
+ export interface CreateMemberInput {
106
+
107
+ ClientRequestToken?: string;
108
+
109
+ InvitationId: string | undefined;
110
+
111
+ NetworkId: string | undefined;
112
+
113
+ MemberConfiguration: MemberConfiguration | undefined;
114
+ }
115
+ export declare namespace CreateMemberInput {
116
+
117
+ const filterSensitiveLog: (obj: CreateMemberInput) => any;
118
+ }
119
+ export interface CreateMemberOutput {
120
+
121
+ MemberId?: string;
122
+ }
123
+ export declare namespace CreateMemberOutput {
124
+
125
+ const filterSensitiveLog: (obj: CreateMemberOutput) => any;
126
+ }
127
+
128
+ export declare class InternalServiceErrorException extends __BaseException {
129
+ readonly name: "InternalServiceErrorException";
130
+ readonly $fault: "server";
131
+
132
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
133
+ }
134
+
135
+ export declare class InvalidRequestException extends __BaseException {
136
+ readonly name: "InvalidRequestException";
137
+ readonly $fault: "client";
138
+ Message?: string;
139
+
140
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
141
+ }
142
+
143
+ export declare class ResourceAlreadyExistsException extends __BaseException {
144
+ readonly name: "ResourceAlreadyExistsException";
145
+ readonly $fault: "client";
146
+ Message?: string;
147
+
148
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
149
+ }
150
+
151
+ export declare class ResourceLimitExceededException extends __BaseException {
152
+ readonly name: "ResourceLimitExceededException";
153
+ readonly $fault: "client";
154
+ Message?: string;
155
+
156
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
157
+ }
158
+
159
+ export declare class ResourceNotFoundException extends __BaseException {
160
+ readonly name: "ResourceNotFoundException";
161
+ readonly $fault: "client";
162
+ Message?: string;
163
+
164
+ ResourceName?: string;
165
+
166
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
167
+ }
168
+
169
+ export declare class ResourceNotReadyException extends __BaseException {
170
+ readonly name: "ResourceNotReadyException";
171
+ readonly $fault: "client";
172
+ Message?: string;
173
+
174
+ constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
175
+ }
176
+
177
+ export declare class ThrottlingException extends __BaseException {
178
+ readonly name: "ThrottlingException";
179
+ readonly $fault: "client";
180
+
181
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
182
+ }
183
+
184
+ export declare class TooManyTagsException extends __BaseException {
185
+ readonly name: "TooManyTagsException";
186
+ readonly $fault: "client";
187
+ Message?: string;
188
+
189
+ ResourceName?: string;
190
+
191
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
192
+ }
193
+ export declare enum Framework {
194
+ ETHEREUM = "ETHEREUM",
195
+ HYPERLEDGER_FABRIC = "HYPERLEDGER_FABRIC"
196
+ }
197
+ export declare enum Edition {
198
+ STANDARD = "STANDARD",
199
+ STARTER = "STARTER"
200
+ }
201
+
202
+ export interface NetworkFabricConfiguration {
203
+
204
+ Edition: Edition | string | undefined;
205
+ }
206
+ export declare namespace NetworkFabricConfiguration {
207
+
208
+ const filterSensitiveLog: (obj: NetworkFabricConfiguration) => any;
209
+ }
210
+
211
+ export interface NetworkFrameworkConfiguration {
212
+
213
+ Fabric?: NetworkFabricConfiguration;
214
+ }
215
+ export declare namespace NetworkFrameworkConfiguration {
216
+
217
+ const filterSensitiveLog: (obj: NetworkFrameworkConfiguration) => any;
218
+ }
219
+
220
+ export interface VotingPolicy {
221
+
222
+ ApprovalThresholdPolicy?: ApprovalThresholdPolicy;
223
+ }
224
+ export declare namespace VotingPolicy {
225
+
226
+ const filterSensitiveLog: (obj: VotingPolicy) => any;
227
+ }
228
+ export interface CreateNetworkInput {
229
+
230
+ ClientRequestToken?: string;
231
+
232
+ Name: string | undefined;
233
+
234
+ Description?: string;
235
+
236
+ Framework: Framework | string | undefined;
237
+
238
+ FrameworkVersion: string | undefined;
239
+
240
+ FrameworkConfiguration?: NetworkFrameworkConfiguration;
241
+
242
+ VotingPolicy: VotingPolicy | undefined;
243
+
244
+ MemberConfiguration: MemberConfiguration | undefined;
245
+
246
+ Tags?: {
247
+ [key: string]: string;
248
+ };
249
+ }
250
+ export declare namespace CreateNetworkInput {
251
+
252
+ const filterSensitiveLog: (obj: CreateNetworkInput) => any;
253
+ }
254
+ export interface CreateNetworkOutput {
255
+
256
+ NetworkId?: string;
257
+
258
+ MemberId?: string;
259
+ }
260
+ export declare namespace CreateNetworkOutput {
261
+
262
+ const filterSensitiveLog: (obj: CreateNetworkOutput) => any;
263
+ }
264
+
265
+ export interface NodeFabricLogPublishingConfiguration {
266
+
267
+ ChaincodeLogs?: LogConfigurations;
268
+
269
+ PeerLogs?: LogConfigurations;
270
+ }
271
+ export declare namespace NodeFabricLogPublishingConfiguration {
272
+
273
+ const filterSensitiveLog: (obj: NodeFabricLogPublishingConfiguration) => any;
274
+ }
275
+
276
+ export interface NodeLogPublishingConfiguration {
277
+
278
+ Fabric?: NodeFabricLogPublishingConfiguration;
279
+ }
280
+ export declare namespace NodeLogPublishingConfiguration {
281
+
282
+ const filterSensitiveLog: (obj: NodeLogPublishingConfiguration) => any;
283
+ }
284
+ export declare enum StateDBType {
285
+ CouchDB = "CouchDB",
286
+ LevelDB = "LevelDB"
287
+ }
288
+
289
+ export interface NodeConfiguration {
290
+
291
+ InstanceType: string | undefined;
292
+
293
+ AvailabilityZone?: string;
294
+
295
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration;
296
+
297
+ StateDB?: StateDBType | string;
298
+ }
299
+ export declare namespace NodeConfiguration {
300
+
301
+ const filterSensitiveLog: (obj: NodeConfiguration) => any;
302
+ }
303
+ export interface CreateNodeInput {
304
+
305
+ ClientRequestToken?: string;
306
+
307
+ NetworkId: string | undefined;
308
+
309
+ MemberId?: string;
310
+
311
+ NodeConfiguration: NodeConfiguration | undefined;
312
+
313
+ Tags?: {
314
+ [key: string]: string;
315
+ };
316
+ }
317
+ export declare namespace CreateNodeInput {
318
+
319
+ const filterSensitiveLog: (obj: CreateNodeInput) => any;
320
+ }
321
+ export interface CreateNodeOutput {
322
+
323
+ NodeId?: string;
324
+ }
325
+ export declare namespace CreateNodeOutput {
326
+
327
+ const filterSensitiveLog: (obj: CreateNodeOutput) => any;
328
+ }
329
+
330
+ export interface InviteAction {
331
+
332
+ Principal: string | undefined;
333
+ }
334
+ export declare namespace InviteAction {
335
+
336
+ const filterSensitiveLog: (obj: InviteAction) => any;
337
+ }
338
+
339
+ export interface RemoveAction {
340
+
341
+ MemberId: string | undefined;
342
+ }
343
+ export declare namespace RemoveAction {
344
+
345
+ const filterSensitiveLog: (obj: RemoveAction) => any;
346
+ }
347
+
348
+ export interface ProposalActions {
349
+
350
+ Invitations?: InviteAction[];
351
+
352
+ Removals?: RemoveAction[];
353
+ }
354
+ export declare namespace ProposalActions {
355
+
356
+ const filterSensitiveLog: (obj: ProposalActions) => any;
357
+ }
358
+ export interface CreateProposalInput {
359
+
360
+ ClientRequestToken?: string;
361
+
362
+ NetworkId: string | undefined;
363
+
364
+ MemberId: string | undefined;
365
+
366
+ Actions: ProposalActions | undefined;
367
+
368
+ Description?: string;
369
+
370
+ Tags?: {
371
+ [key: string]: string;
372
+ };
373
+ }
374
+ export declare namespace CreateProposalInput {
375
+
376
+ const filterSensitiveLog: (obj: CreateProposalInput) => any;
377
+ }
378
+ export interface CreateProposalOutput {
379
+
380
+ ProposalId?: string;
381
+ }
382
+ export declare namespace CreateProposalOutput {
383
+
384
+ const filterSensitiveLog: (obj: CreateProposalOutput) => any;
385
+ }
386
+ export interface DeleteMemberInput {
387
+
388
+ NetworkId: string | undefined;
389
+
390
+ MemberId: string | undefined;
391
+ }
392
+ export declare namespace DeleteMemberInput {
393
+
394
+ const filterSensitiveLog: (obj: DeleteMemberInput) => any;
395
+ }
396
+ export interface DeleteMemberOutput {
397
+ }
398
+ export declare namespace DeleteMemberOutput {
399
+
400
+ const filterSensitiveLog: (obj: DeleteMemberOutput) => any;
401
+ }
402
+ export interface DeleteNodeInput {
403
+
404
+ NetworkId: string | undefined;
405
+
406
+ MemberId?: string;
407
+
408
+ NodeId: string | undefined;
409
+ }
410
+ export declare namespace DeleteNodeInput {
411
+
412
+ const filterSensitiveLog: (obj: DeleteNodeInput) => any;
413
+ }
414
+ export interface DeleteNodeOutput {
415
+ }
416
+ export declare namespace DeleteNodeOutput {
417
+
418
+ const filterSensitiveLog: (obj: DeleteNodeOutput) => any;
419
+ }
420
+ export interface GetMemberInput {
421
+
422
+ NetworkId: string | undefined;
423
+
424
+ MemberId: string | undefined;
425
+ }
426
+ export declare namespace GetMemberInput {
427
+
428
+ const filterSensitiveLog: (obj: GetMemberInput) => any;
429
+ }
430
+
431
+ export interface MemberFabricAttributes {
432
+
433
+ AdminUsername?: string;
434
+
435
+ CaEndpoint?: string;
436
+ }
437
+ export declare namespace MemberFabricAttributes {
438
+
439
+ const filterSensitiveLog: (obj: MemberFabricAttributes) => any;
440
+ }
441
+
442
+ export interface MemberFrameworkAttributes {
443
+
444
+ Fabric?: MemberFabricAttributes;
445
+ }
446
+ export declare namespace MemberFrameworkAttributes {
447
+
448
+ const filterSensitiveLog: (obj: MemberFrameworkAttributes) => any;
449
+ }
450
+ export declare enum MemberStatus {
451
+ AVAILABLE = "AVAILABLE",
452
+ CREATE_FAILED = "CREATE_FAILED",
453
+ CREATING = "CREATING",
454
+ DELETED = "DELETED",
455
+ DELETING = "DELETING",
456
+ INACCESSIBLE_ENCRYPTION_KEY = "INACCESSIBLE_ENCRYPTION_KEY",
457
+ UPDATING = "UPDATING"
458
+ }
459
+
460
+ export interface Member {
461
+
462
+ NetworkId?: string;
463
+
464
+ Id?: string;
465
+
466
+ Name?: string;
467
+
468
+ Description?: string;
469
+
470
+ FrameworkAttributes?: MemberFrameworkAttributes;
471
+
472
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration;
473
+
474
+ Status?: MemberStatus | string;
475
+
476
+ CreationDate?: Date;
477
+
478
+ Tags?: {
479
+ [key: string]: string;
480
+ };
481
+
482
+ Arn?: string;
483
+
484
+ KmsKeyArn?: string;
485
+ }
486
+ export declare namespace Member {
487
+
488
+ const filterSensitiveLog: (obj: Member) => any;
489
+ }
490
+ export interface GetMemberOutput {
491
+
492
+ Member?: Member;
493
+ }
494
+ export declare namespace GetMemberOutput {
495
+
496
+ const filterSensitiveLog: (obj: GetMemberOutput) => any;
497
+ }
498
+ export interface GetNetworkInput {
499
+
500
+ NetworkId: string | undefined;
501
+ }
502
+ export declare namespace GetNetworkInput {
503
+
504
+ const filterSensitiveLog: (obj: GetNetworkInput) => any;
505
+ }
506
+
507
+ export interface NetworkEthereumAttributes {
508
+
509
+ ChainId?: string;
510
+ }
511
+ export declare namespace NetworkEthereumAttributes {
512
+
513
+ const filterSensitiveLog: (obj: NetworkEthereumAttributes) => any;
514
+ }
515
+
516
+ export interface NetworkFabricAttributes {
517
+
518
+ OrderingServiceEndpoint?: string;
519
+
520
+ Edition?: Edition | string;
521
+ }
522
+ export declare namespace NetworkFabricAttributes {
523
+
524
+ const filterSensitiveLog: (obj: NetworkFabricAttributes) => any;
525
+ }
526
+
527
+ export interface NetworkFrameworkAttributes {
528
+
529
+ Fabric?: NetworkFabricAttributes;
530
+
531
+ Ethereum?: NetworkEthereumAttributes;
532
+ }
533
+ export declare namespace NetworkFrameworkAttributes {
534
+
535
+ const filterSensitiveLog: (obj: NetworkFrameworkAttributes) => any;
536
+ }
537
+ export declare enum NetworkStatus {
538
+ AVAILABLE = "AVAILABLE",
539
+ CREATE_FAILED = "CREATE_FAILED",
540
+ CREATING = "CREATING",
541
+ DELETED = "DELETED",
542
+ DELETING = "DELETING"
543
+ }
544
+
545
+ export interface Network {
546
+
547
+ Id?: string;
548
+
549
+ Name?: string;
550
+
551
+ Description?: string;
552
+
553
+ Framework?: Framework | string;
554
+
555
+ FrameworkVersion?: string;
556
+
557
+ FrameworkAttributes?: NetworkFrameworkAttributes;
558
+
559
+ VpcEndpointServiceName?: string;
560
+
561
+ VotingPolicy?: VotingPolicy;
562
+
563
+ Status?: NetworkStatus | string;
564
+
565
+ CreationDate?: Date;
566
+
567
+ Tags?: {
568
+ [key: string]: string;
569
+ };
570
+
571
+ Arn?: string;
572
+ }
573
+ export declare namespace Network {
574
+
575
+ const filterSensitiveLog: (obj: Network) => any;
576
+ }
577
+ export interface GetNetworkOutput {
578
+
579
+ Network?: Network;
580
+ }
581
+ export declare namespace GetNetworkOutput {
582
+
583
+ const filterSensitiveLog: (obj: GetNetworkOutput) => any;
584
+ }
585
+ export interface GetNodeInput {
586
+
587
+ NetworkId: string | undefined;
588
+
589
+ MemberId?: string;
590
+
591
+ NodeId: string | undefined;
592
+ }
593
+ export declare namespace GetNodeInput {
594
+
595
+ const filterSensitiveLog: (obj: GetNodeInput) => any;
596
+ }
597
+
598
+ export interface NodeEthereumAttributes {
599
+
600
+ HttpEndpoint?: string;
601
+
602
+ WebSocketEndpoint?: string;
603
+ }
604
+ export declare namespace NodeEthereumAttributes {
605
+
606
+ const filterSensitiveLog: (obj: NodeEthereumAttributes) => any;
607
+ }
608
+
609
+ export interface NodeFabricAttributes {
610
+
611
+ PeerEndpoint?: string;
612
+
613
+ PeerEventEndpoint?: string;
614
+ }
615
+ export declare namespace NodeFabricAttributes {
616
+
617
+ const filterSensitiveLog: (obj: NodeFabricAttributes) => any;
618
+ }
619
+
620
+ export interface NodeFrameworkAttributes {
621
+
622
+ Fabric?: NodeFabricAttributes;
623
+
624
+ Ethereum?: NodeEthereumAttributes;
625
+ }
626
+ export declare namespace NodeFrameworkAttributes {
627
+
628
+ const filterSensitiveLog: (obj: NodeFrameworkAttributes) => any;
629
+ }
630
+ export declare enum NodeStatus {
631
+ AVAILABLE = "AVAILABLE",
632
+ CREATE_FAILED = "CREATE_FAILED",
633
+ CREATING = "CREATING",
634
+ DELETED = "DELETED",
635
+ DELETING = "DELETING",
636
+ FAILED = "FAILED",
637
+ INACCESSIBLE_ENCRYPTION_KEY = "INACCESSIBLE_ENCRYPTION_KEY",
638
+ UNHEALTHY = "UNHEALTHY",
639
+ UPDATING = "UPDATING"
640
+ }
641
+
642
+ export interface Node {
643
+
644
+ NetworkId?: string;
645
+
646
+ MemberId?: string;
647
+
648
+ Id?: string;
649
+
650
+ InstanceType?: string;
651
+
652
+ AvailabilityZone?: string;
653
+
654
+ FrameworkAttributes?: NodeFrameworkAttributes;
655
+
656
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration;
657
+
658
+ StateDB?: StateDBType | string;
659
+
660
+ Status?: NodeStatus | string;
661
+
662
+ CreationDate?: Date;
663
+
664
+ Tags?: {
665
+ [key: string]: string;
666
+ };
667
+
668
+ Arn?: string;
669
+
670
+ KmsKeyArn?: string;
671
+ }
672
+ export declare namespace Node {
673
+
674
+ const filterSensitiveLog: (obj: Node) => any;
675
+ }
676
+ export interface GetNodeOutput {
677
+
678
+ Node?: Node;
679
+ }
680
+ export declare namespace GetNodeOutput {
681
+
682
+ const filterSensitiveLog: (obj: GetNodeOutput) => any;
683
+ }
684
+ export interface GetProposalInput {
685
+
686
+ NetworkId: string | undefined;
687
+
688
+ ProposalId: string | undefined;
689
+ }
690
+ export declare namespace GetProposalInput {
691
+
692
+ const filterSensitiveLog: (obj: GetProposalInput) => any;
693
+ }
694
+ export declare enum ProposalStatus {
695
+ ACTION_FAILED = "ACTION_FAILED",
696
+ APPROVED = "APPROVED",
697
+ EXPIRED = "EXPIRED",
698
+ IN_PROGRESS = "IN_PROGRESS",
699
+ REJECTED = "REJECTED"
700
+ }
701
+
702
+ export interface Proposal {
703
+
704
+ ProposalId?: string;
705
+
706
+ NetworkId?: string;
707
+
708
+ Description?: string;
709
+
710
+ Actions?: ProposalActions;
711
+
712
+ ProposedByMemberId?: string;
713
+
714
+ ProposedByMemberName?: string;
715
+
716
+ Status?: ProposalStatus | string;
717
+
718
+ CreationDate?: Date;
719
+
720
+ ExpirationDate?: Date;
721
+
722
+ YesVoteCount?: number;
723
+
724
+ NoVoteCount?: number;
725
+
726
+ OutstandingVoteCount?: number;
727
+
728
+ Tags?: {
729
+ [key: string]: string;
730
+ };
731
+
732
+ Arn?: string;
733
+ }
734
+ export declare namespace Proposal {
735
+
736
+ const filterSensitiveLog: (obj: Proposal) => any;
737
+ }
738
+ export interface GetProposalOutput {
739
+
740
+ Proposal?: Proposal;
741
+ }
742
+ export declare namespace GetProposalOutput {
743
+
744
+ const filterSensitiveLog: (obj: GetProposalOutput) => any;
745
+ }
746
+
747
+ export declare class IllegalActionException extends __BaseException {
748
+ readonly name: "IllegalActionException";
749
+ readonly $fault: "client";
750
+ Message?: string;
751
+
752
+ constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
753
+ }
754
+
755
+ export interface NetworkSummary {
756
+
757
+ Id?: string;
758
+
759
+ Name?: string;
760
+
761
+ Description?: string;
762
+
763
+ Framework?: Framework | string;
764
+
765
+ FrameworkVersion?: string;
766
+
767
+ Status?: NetworkStatus | string;
768
+
769
+ CreationDate?: Date;
770
+
771
+ Arn?: string;
772
+ }
773
+ export declare namespace NetworkSummary {
774
+
775
+ const filterSensitiveLog: (obj: NetworkSummary) => any;
776
+ }
777
+ export declare enum InvitationStatus {
778
+ ACCEPTED = "ACCEPTED",
779
+ ACCEPTING = "ACCEPTING",
780
+ EXPIRED = "EXPIRED",
781
+ PENDING = "PENDING",
782
+ REJECTED = "REJECTED"
783
+ }
784
+
785
+ export interface Invitation {
786
+
787
+ InvitationId?: string;
788
+
789
+ CreationDate?: Date;
790
+
791
+ ExpirationDate?: Date;
792
+
793
+ Status?: InvitationStatus | string;
794
+
795
+ NetworkSummary?: NetworkSummary;
796
+
797
+ Arn?: string;
798
+ }
799
+ export declare namespace Invitation {
800
+
801
+ const filterSensitiveLog: (obj: Invitation) => any;
802
+ }
803
+ export interface ListInvitationsInput {
804
+
805
+ MaxResults?: number;
806
+
807
+ NextToken?: string;
808
+ }
809
+ export declare namespace ListInvitationsInput {
810
+
811
+ const filterSensitiveLog: (obj: ListInvitationsInput) => any;
812
+ }
813
+ export interface ListInvitationsOutput {
814
+
815
+ Invitations?: Invitation[];
816
+
817
+ NextToken?: string;
818
+ }
819
+ export declare namespace ListInvitationsOutput {
820
+
821
+ const filterSensitiveLog: (obj: ListInvitationsOutput) => any;
822
+ }
823
+ export interface ListMembersInput {
824
+
825
+ NetworkId: string | undefined;
826
+
827
+ Name?: string;
828
+
829
+ Status?: MemberStatus | string;
830
+
831
+ IsOwned?: boolean;
832
+
833
+ MaxResults?: number;
834
+
835
+ NextToken?: string;
836
+ }
837
+ export declare namespace ListMembersInput {
838
+
839
+ const filterSensitiveLog: (obj: ListMembersInput) => any;
840
+ }
841
+
842
+ export interface MemberSummary {
843
+
844
+ Id?: string;
845
+
846
+ Name?: string;
847
+
848
+ Description?: string;
849
+
850
+ Status?: MemberStatus | string;
851
+
852
+ CreationDate?: Date;
853
+
854
+ IsOwned?: boolean;
855
+
856
+ Arn?: string;
857
+ }
858
+ export declare namespace MemberSummary {
859
+
860
+ const filterSensitiveLog: (obj: MemberSummary) => any;
861
+ }
862
+ export interface ListMembersOutput {
863
+
864
+ Members?: MemberSummary[];
865
+
866
+ NextToken?: string;
867
+ }
868
+ export declare namespace ListMembersOutput {
869
+
870
+ const filterSensitiveLog: (obj: ListMembersOutput) => any;
871
+ }
872
+ export interface ListNetworksInput {
873
+
874
+ Name?: string;
875
+
876
+ Framework?: Framework | string;
877
+
878
+ Status?: NetworkStatus | string;
879
+
880
+ MaxResults?: number;
881
+
882
+ NextToken?: string;
883
+ }
884
+ export declare namespace ListNetworksInput {
885
+
886
+ const filterSensitiveLog: (obj: ListNetworksInput) => any;
887
+ }
888
+ export interface ListNetworksOutput {
889
+
890
+ Networks?: NetworkSummary[];
891
+
892
+ NextToken?: string;
893
+ }
894
+ export declare namespace ListNetworksOutput {
895
+
896
+ const filterSensitiveLog: (obj: ListNetworksOutput) => any;
897
+ }
898
+ export interface ListNodesInput {
899
+
900
+ NetworkId: string | undefined;
901
+
902
+ MemberId?: string;
903
+
904
+ Status?: NodeStatus | string;
905
+
906
+ MaxResults?: number;
907
+
908
+ NextToken?: string;
909
+ }
910
+ export declare namespace ListNodesInput {
911
+
912
+ const filterSensitiveLog: (obj: ListNodesInput) => any;
913
+ }
914
+
915
+ export interface NodeSummary {
916
+
917
+ Id?: string;
918
+
919
+ Status?: NodeStatus | string;
920
+
921
+ CreationDate?: Date;
922
+
923
+ AvailabilityZone?: string;
924
+
925
+ InstanceType?: string;
926
+
927
+ Arn?: string;
928
+ }
929
+ export declare namespace NodeSummary {
930
+
931
+ const filterSensitiveLog: (obj: NodeSummary) => any;
932
+ }
933
+ export interface ListNodesOutput {
934
+
935
+ Nodes?: NodeSummary[];
936
+
937
+ NextToken?: string;
938
+ }
939
+ export declare namespace ListNodesOutput {
940
+
941
+ const filterSensitiveLog: (obj: ListNodesOutput) => any;
942
+ }
943
+ export interface ListProposalsInput {
944
+
945
+ NetworkId: string | undefined;
946
+
947
+ MaxResults?: number;
948
+
949
+ NextToken?: string;
950
+ }
951
+ export declare namespace ListProposalsInput {
952
+
953
+ const filterSensitiveLog: (obj: ListProposalsInput) => any;
954
+ }
955
+
956
+ export interface ProposalSummary {
957
+
958
+ ProposalId?: string;
959
+
960
+ Description?: string;
961
+
962
+ ProposedByMemberId?: string;
963
+
964
+ ProposedByMemberName?: string;
965
+
966
+ Status?: ProposalStatus | string;
967
+
968
+ CreationDate?: Date;
969
+
970
+ ExpirationDate?: Date;
971
+
972
+ Arn?: string;
973
+ }
974
+ export declare namespace ProposalSummary {
975
+
976
+ const filterSensitiveLog: (obj: ProposalSummary) => any;
977
+ }
978
+ export interface ListProposalsOutput {
979
+
980
+ Proposals?: ProposalSummary[];
981
+
982
+ NextToken?: string;
983
+ }
984
+ export declare namespace ListProposalsOutput {
985
+
986
+ const filterSensitiveLog: (obj: ListProposalsOutput) => any;
987
+ }
988
+ export interface ListProposalVotesInput {
989
+
990
+ NetworkId: string | undefined;
991
+
992
+ ProposalId: string | undefined;
993
+
994
+ MaxResults?: number;
995
+
996
+ NextToken?: string;
997
+ }
998
+ export declare namespace ListProposalVotesInput {
999
+
1000
+ const filterSensitiveLog: (obj: ListProposalVotesInput) => any;
1001
+ }
1002
+ export declare enum VoteValue {
1003
+ NO = "NO",
1004
+ YES = "YES"
1005
+ }
1006
+
1007
+ export interface VoteSummary {
1008
+
1009
+ Vote?: VoteValue | string;
1010
+
1011
+ MemberName?: string;
1012
+
1013
+ MemberId?: string;
1014
+ }
1015
+ export declare namespace VoteSummary {
1016
+
1017
+ const filterSensitiveLog: (obj: VoteSummary) => any;
1018
+ }
1019
+ export interface ListProposalVotesOutput {
1020
+
1021
+ ProposalVotes?: VoteSummary[];
1022
+
1023
+ NextToken?: string;
1024
+ }
1025
+ export declare namespace ListProposalVotesOutput {
1026
+
1027
+ const filterSensitiveLog: (obj: ListProposalVotesOutput) => any;
1028
+ }
1029
+ export interface ListTagsForResourceRequest {
1030
+
1031
+ ResourceArn: string | undefined;
1032
+ }
1033
+ export declare namespace ListTagsForResourceRequest {
1034
+
1035
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1036
+ }
1037
+ export interface ListTagsForResourceResponse {
1038
+
1039
+ Tags?: {
1040
+ [key: string]: string;
1041
+ };
1042
+ }
1043
+ export declare namespace ListTagsForResourceResponse {
1044
+
1045
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1046
+ }
1047
+ export interface RejectInvitationInput {
1048
+
1049
+ InvitationId: string | undefined;
1050
+ }
1051
+ export declare namespace RejectInvitationInput {
1052
+
1053
+ const filterSensitiveLog: (obj: RejectInvitationInput) => any;
1054
+ }
1055
+ export interface RejectInvitationOutput {
1056
+ }
1057
+ export declare namespace RejectInvitationOutput {
1058
+
1059
+ const filterSensitiveLog: (obj: RejectInvitationOutput) => any;
1060
+ }
1061
+ export interface TagResourceRequest {
1062
+
1063
+ ResourceArn: string | undefined;
1064
+
1065
+ Tags: {
1066
+ [key: string]: string;
1067
+ } | undefined;
1068
+ }
1069
+ export declare namespace TagResourceRequest {
1070
+
1071
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
1072
+ }
1073
+ export interface TagResourceResponse {
1074
+ }
1075
+ export declare namespace TagResourceResponse {
1076
+
1077
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
1078
+ }
1079
+ export interface UntagResourceRequest {
1080
+
1081
+ ResourceArn: string | undefined;
1082
+
1083
+ TagKeys: string[] | undefined;
1084
+ }
1085
+ export declare namespace UntagResourceRequest {
1086
+
1087
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1088
+ }
1089
+ export interface UntagResourceResponse {
1090
+ }
1091
+ export declare namespace UntagResourceResponse {
1092
+
1093
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1094
+ }
1095
+ export interface UpdateMemberInput {
1096
+
1097
+ NetworkId: string | undefined;
1098
+
1099
+ MemberId: string | undefined;
1100
+
1101
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration;
1102
+ }
1103
+ export declare namespace UpdateMemberInput {
1104
+
1105
+ const filterSensitiveLog: (obj: UpdateMemberInput) => any;
1106
+ }
1107
+ export interface UpdateMemberOutput {
1108
+ }
1109
+ export declare namespace UpdateMemberOutput {
1110
+
1111
+ const filterSensitiveLog: (obj: UpdateMemberOutput) => any;
1112
+ }
1113
+ export interface UpdateNodeInput {
1114
+
1115
+ NetworkId: string | undefined;
1116
+
1117
+ MemberId?: string;
1118
+
1119
+ NodeId: string | undefined;
1120
+
1121
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration;
1122
+ }
1123
+ export declare namespace UpdateNodeInput {
1124
+
1125
+ const filterSensitiveLog: (obj: UpdateNodeInput) => any;
1126
+ }
1127
+ export interface UpdateNodeOutput {
1128
+ }
1129
+ export declare namespace UpdateNodeOutput {
1130
+
1131
+ const filterSensitiveLog: (obj: UpdateNodeOutput) => any;
1132
+ }
1133
+ export interface VoteOnProposalInput {
1134
+
1135
+ NetworkId: string | undefined;
1136
+
1137
+ ProposalId: string | undefined;
1138
+
1139
+ VoterMemberId: string | undefined;
1140
+
1141
+ Vote: VoteValue | string | undefined;
1142
+ }
1143
+ export declare namespace VoteOnProposalInput {
1144
+
1145
+ const filterSensitiveLog: (obj: VoteOnProposalInput) => any;
1146
+ }
1147
+ export interface VoteOnProposalOutput {
1148
+ }
1149
+ export declare namespace VoteOnProposalOutput {
1150
+
1151
+ const filterSensitiveLog: (obj: VoteOnProposalOutput) => any;
1152
+ }