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