@aws-sdk/client-managedblockchain 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/ManagedBlockchain.d.ts +395 -120
  3. package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +243 -96
  4. package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +30 -17
  13. package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +32 -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 +7 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +751 -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 +67 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  46. package/package.json +34 -34
@@ -1,970 +1,751 @@
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
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare enum ThresholdComparator {
12
+ GREATER_THAN = "GREATER_THAN",
13
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
14
+ }
15
+ export interface ApprovalThresholdPolicy {
16
+ ThresholdPercentage?: number;
17
+ ProposalDurationInHours?: number;
18
+ ThresholdComparator?: ThresholdComparator | string;
19
+ }
20
+ export interface MemberFabricConfiguration {
21
+ AdminUsername: string | undefined;
22
+ AdminPassword: string | undefined;
23
+ }
24
+ export interface MemberFrameworkConfiguration {
25
+ Fabric?: MemberFabricConfiguration;
26
+ }
27
+ export interface LogConfiguration {
28
+ Enabled?: boolean;
29
+ }
30
+ export interface LogConfigurations {
31
+ Cloudwatch?: LogConfiguration;
32
+ }
33
+ export interface MemberFabricLogPublishingConfiguration {
34
+ CaLogs?: LogConfigurations;
35
+ }
36
+ export interface MemberLogPublishingConfiguration {
37
+ Fabric?: MemberFabricLogPublishingConfiguration;
38
+ }
39
+ export interface MemberConfiguration {
40
+ Name: string | undefined;
41
+ Description?: string;
42
+ FrameworkConfiguration: MemberFrameworkConfiguration | undefined;
43
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration;
44
+ Tags?: Record<string, string>;
45
+ KmsKeyArn?: string;
46
+ }
47
+ export interface CreateMemberInput {
48
+ ClientRequestToken?: string;
49
+ InvitationId: string | undefined;
50
+ NetworkId: string | undefined;
51
+ MemberConfiguration: MemberConfiguration | undefined;
52
+ }
53
+ export interface CreateMemberOutput {
54
+ MemberId?: string;
55
+ }
56
+ export declare class InternalServiceErrorException extends __BaseException {
57
+ readonly name: "InternalServiceErrorException";
58
+ readonly $fault: "server";
59
+ constructor(
60
+ opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
61
+ );
62
+ }
63
+ export declare class InvalidRequestException extends __BaseException {
64
+ readonly name: "InvalidRequestException";
65
+ readonly $fault: "client";
66
+ Message?: string;
67
+ constructor(
68
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
69
+ );
70
+ }
71
+ export declare class ResourceAlreadyExistsException extends __BaseException {
72
+ readonly name: "ResourceAlreadyExistsException";
73
+ readonly $fault: "client";
74
+ Message?: string;
75
+ constructor(
76
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
77
+ );
78
+ }
79
+ export declare class ResourceLimitExceededException extends __BaseException {
80
+ readonly name: "ResourceLimitExceededException";
81
+ readonly $fault: "client";
82
+ Message?: string;
83
+ constructor(
84
+ opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
85
+ );
86
+ }
87
+ export declare class ResourceNotFoundException extends __BaseException {
88
+ readonly name: "ResourceNotFoundException";
89
+ readonly $fault: "client";
90
+ Message?: string;
91
+ ResourceName?: string;
92
+ constructor(
93
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
94
+ );
95
+ }
96
+ export declare class ResourceNotReadyException extends __BaseException {
97
+ readonly name: "ResourceNotReadyException";
98
+ readonly $fault: "client";
99
+ Message?: string;
100
+ constructor(
101
+ opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
102
+ );
103
+ }
104
+ export declare class ThrottlingException extends __BaseException {
105
+ readonly name: "ThrottlingException";
106
+ readonly $fault: "client";
107
+ constructor(
108
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
109
+ );
110
+ }
111
+ export declare class TooManyTagsException extends __BaseException {
112
+ readonly name: "TooManyTagsException";
113
+ readonly $fault: "client";
114
+ Message?: string;
115
+ ResourceName?: string;
116
+ constructor(
117
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
118
+ );
119
+ }
120
+ export declare enum Framework {
121
+ ETHEREUM = "ETHEREUM",
122
+ HYPERLEDGER_FABRIC = "HYPERLEDGER_FABRIC",
123
+ }
124
+ export declare enum Edition {
125
+ STANDARD = "STANDARD",
126
+ STARTER = "STARTER",
127
+ }
128
+ export interface NetworkFabricConfiguration {
129
+ Edition: Edition | string | undefined;
130
+ }
131
+ export interface NetworkFrameworkConfiguration {
132
+ Fabric?: NetworkFabricConfiguration;
133
+ }
134
+ export interface VotingPolicy {
135
+ ApprovalThresholdPolicy?: ApprovalThresholdPolicy;
136
+ }
137
+ export interface CreateNetworkInput {
138
+ ClientRequestToken?: string;
139
+ Name: string | undefined;
140
+ Description?: string;
141
+ Framework: Framework | string | undefined;
142
+ FrameworkVersion: string | undefined;
143
+ FrameworkConfiguration?: NetworkFrameworkConfiguration;
144
+ VotingPolicy: VotingPolicy | undefined;
145
+ MemberConfiguration: MemberConfiguration | undefined;
146
+ Tags?: Record<string, string>;
147
+ }
148
+ export interface CreateNetworkOutput {
149
+ NetworkId?: string;
150
+ MemberId?: string;
151
+ }
152
+ export interface NodeFabricLogPublishingConfiguration {
153
+ ChaincodeLogs?: LogConfigurations;
154
+ PeerLogs?: LogConfigurations;
155
+ }
156
+ export interface NodeLogPublishingConfiguration {
157
+ Fabric?: NodeFabricLogPublishingConfiguration;
158
+ }
159
+ export declare enum StateDBType {
160
+ CouchDB = "CouchDB",
161
+ LevelDB = "LevelDB",
162
+ }
163
+ export interface NodeConfiguration {
164
+ InstanceType: string | undefined;
165
+ AvailabilityZone?: string;
166
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration;
167
+ StateDB?: StateDBType | string;
168
+ }
169
+ export interface CreateNodeInput {
170
+ ClientRequestToken?: string;
171
+ NetworkId: string | undefined;
172
+ MemberId?: string;
173
+ NodeConfiguration: NodeConfiguration | undefined;
174
+ Tags?: Record<string, string>;
175
+ }
176
+ export interface CreateNodeOutput {
177
+ NodeId?: string;
178
+ }
179
+ export interface InviteAction {
180
+ Principal: string | undefined;
181
+ }
182
+ export interface RemoveAction {
183
+ MemberId: string | undefined;
184
+ }
185
+ export interface ProposalActions {
186
+ Invitations?: InviteAction[];
187
+ Removals?: RemoveAction[];
188
+ }
189
+ export interface CreateProposalInput {
190
+ ClientRequestToken?: string;
191
+ NetworkId: string | undefined;
192
+ MemberId: string | undefined;
193
+ Actions: ProposalActions | undefined;
194
+ Description?: string;
195
+ Tags?: Record<string, string>;
196
+ }
197
+ export interface CreateProposalOutput {
198
+ ProposalId?: string;
199
+ }
200
+ export interface DeleteMemberInput {
201
+ NetworkId: string | undefined;
202
+ MemberId: string | undefined;
203
+ }
204
+ export interface DeleteMemberOutput {}
205
+ export interface DeleteNodeInput {
206
+ NetworkId: string | undefined;
207
+ MemberId?: string;
208
+ NodeId: string | undefined;
209
+ }
210
+ export interface DeleteNodeOutput {}
211
+ export interface GetMemberInput {
212
+ NetworkId: string | undefined;
213
+ MemberId: string | undefined;
214
+ }
215
+ export interface MemberFabricAttributes {
216
+ AdminUsername?: string;
217
+ CaEndpoint?: string;
218
+ }
219
+ export interface MemberFrameworkAttributes {
220
+ Fabric?: MemberFabricAttributes;
221
+ }
222
+ export declare enum MemberStatus {
223
+ AVAILABLE = "AVAILABLE",
224
+ CREATE_FAILED = "CREATE_FAILED",
225
+ CREATING = "CREATING",
226
+ DELETED = "DELETED",
227
+ DELETING = "DELETING",
228
+ INACCESSIBLE_ENCRYPTION_KEY = "INACCESSIBLE_ENCRYPTION_KEY",
229
+ UPDATING = "UPDATING",
230
+ }
231
+ export interface Member {
232
+ NetworkId?: string;
233
+ Id?: string;
234
+ Name?: string;
235
+ Description?: string;
236
+ FrameworkAttributes?: MemberFrameworkAttributes;
237
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration;
238
+ Status?: MemberStatus | string;
239
+ CreationDate?: Date;
240
+ Tags?: Record<string, string>;
241
+ Arn?: string;
242
+ KmsKeyArn?: string;
243
+ }
244
+ export interface GetMemberOutput {
245
+ Member?: Member;
246
+ }
247
+ export interface GetNetworkInput {
248
+ NetworkId: string | undefined;
249
+ }
250
+ export interface NetworkEthereumAttributes {
251
+ ChainId?: string;
252
+ }
253
+ export interface NetworkFabricAttributes {
254
+ OrderingServiceEndpoint?: string;
255
+ Edition?: Edition | string;
256
+ }
257
+ export interface NetworkFrameworkAttributes {
258
+ Fabric?: NetworkFabricAttributes;
259
+ Ethereum?: NetworkEthereumAttributes;
260
+ }
261
+ export declare enum NetworkStatus {
262
+ AVAILABLE = "AVAILABLE",
263
+ CREATE_FAILED = "CREATE_FAILED",
264
+ CREATING = "CREATING",
265
+ DELETED = "DELETED",
266
+ DELETING = "DELETING",
267
+ }
268
+ export interface Network {
269
+ Id?: string;
270
+ Name?: string;
271
+ Description?: string;
272
+ Framework?: Framework | string;
273
+ FrameworkVersion?: string;
274
+ FrameworkAttributes?: NetworkFrameworkAttributes;
275
+ VpcEndpointServiceName?: string;
276
+ VotingPolicy?: VotingPolicy;
277
+ Status?: NetworkStatus | string;
278
+ CreationDate?: Date;
279
+ Tags?: Record<string, string>;
280
+ Arn?: string;
281
+ }
282
+ export interface GetNetworkOutput {
283
+ Network?: Network;
284
+ }
285
+ export interface GetNodeInput {
286
+ NetworkId: string | undefined;
287
+ MemberId?: string;
288
+ NodeId: string | undefined;
289
+ }
290
+ export interface NodeEthereumAttributes {
291
+ HttpEndpoint?: string;
292
+ WebSocketEndpoint?: string;
293
+ }
294
+ export interface NodeFabricAttributes {
295
+ PeerEndpoint?: string;
296
+ PeerEventEndpoint?: string;
297
+ }
298
+ export interface NodeFrameworkAttributes {
299
+ Fabric?: NodeFabricAttributes;
300
+ Ethereum?: NodeEthereumAttributes;
301
+ }
302
+ export declare enum NodeStatus {
303
+ AVAILABLE = "AVAILABLE",
304
+ CREATE_FAILED = "CREATE_FAILED",
305
+ CREATING = "CREATING",
306
+ DELETED = "DELETED",
307
+ DELETING = "DELETING",
308
+ FAILED = "FAILED",
309
+ INACCESSIBLE_ENCRYPTION_KEY = "INACCESSIBLE_ENCRYPTION_KEY",
310
+ UNHEALTHY = "UNHEALTHY",
311
+ UPDATING = "UPDATING",
312
+ }
313
+ export interface Node {
314
+ NetworkId?: string;
315
+ MemberId?: string;
316
+ Id?: string;
317
+ InstanceType?: string;
318
+ AvailabilityZone?: string;
319
+ FrameworkAttributes?: NodeFrameworkAttributes;
320
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration;
321
+ StateDB?: StateDBType | string;
322
+ Status?: NodeStatus | string;
323
+ CreationDate?: Date;
324
+ Tags?: Record<string, string>;
325
+ Arn?: string;
326
+ KmsKeyArn?: string;
327
+ }
328
+ export interface GetNodeOutput {
329
+ Node?: Node;
330
+ }
331
+ export interface GetProposalInput {
332
+ NetworkId: string | undefined;
333
+ ProposalId: string | undefined;
334
+ }
335
+ export declare enum ProposalStatus {
336
+ ACTION_FAILED = "ACTION_FAILED",
337
+ APPROVED = "APPROVED",
338
+ EXPIRED = "EXPIRED",
339
+ IN_PROGRESS = "IN_PROGRESS",
340
+ REJECTED = "REJECTED",
341
+ }
342
+ export interface Proposal {
343
+ ProposalId?: string;
344
+ NetworkId?: string;
345
+ Description?: string;
346
+ Actions?: ProposalActions;
347
+ ProposedByMemberId?: string;
348
+ ProposedByMemberName?: string;
349
+ Status?: ProposalStatus | string;
350
+ CreationDate?: Date;
351
+ ExpirationDate?: Date;
352
+ YesVoteCount?: number;
353
+ NoVoteCount?: number;
354
+ OutstandingVoteCount?: number;
355
+ Tags?: Record<string, string>;
356
+ Arn?: string;
357
+ }
358
+ export interface GetProposalOutput {
359
+ Proposal?: Proposal;
360
+ }
361
+ export declare class IllegalActionException extends __BaseException {
362
+ readonly name: "IllegalActionException";
363
+ readonly $fault: "client";
364
+ Message?: string;
365
+ constructor(
366
+ opts: __ExceptionOptionType<IllegalActionException, __BaseException>
367
+ );
368
+ }
369
+ export interface NetworkSummary {
370
+ Id?: string;
371
+ Name?: string;
372
+ Description?: string;
373
+ Framework?: Framework | string;
374
+ FrameworkVersion?: string;
375
+ Status?: NetworkStatus | string;
376
+ CreationDate?: Date;
377
+ Arn?: string;
378
+ }
379
+ export declare enum InvitationStatus {
380
+ ACCEPTED = "ACCEPTED",
381
+ ACCEPTING = "ACCEPTING",
382
+ EXPIRED = "EXPIRED",
383
+ PENDING = "PENDING",
384
+ REJECTED = "REJECTED",
385
+ }
386
+ export interface Invitation {
387
+ InvitationId?: string;
388
+ CreationDate?: Date;
389
+ ExpirationDate?: Date;
390
+ Status?: InvitationStatus | string;
391
+ NetworkSummary?: NetworkSummary;
392
+ Arn?: string;
393
+ }
394
+ export interface ListInvitationsInput {
395
+ MaxResults?: number;
396
+ NextToken?: string;
397
+ }
398
+ export interface ListInvitationsOutput {
399
+ Invitations?: Invitation[];
400
+ NextToken?: string;
401
+ }
402
+ export interface ListMembersInput {
403
+ NetworkId: string | undefined;
404
+ Name?: string;
405
+ Status?: MemberStatus | string;
406
+ IsOwned?: boolean;
407
+ MaxResults?: number;
408
+ NextToken?: string;
409
+ }
410
+ export interface MemberSummary {
411
+ Id?: string;
412
+ Name?: string;
413
+ Description?: string;
414
+ Status?: MemberStatus | string;
415
+ CreationDate?: Date;
416
+ IsOwned?: boolean;
417
+ Arn?: string;
418
+ }
419
+ export interface ListMembersOutput {
420
+ Members?: MemberSummary[];
421
+ NextToken?: string;
422
+ }
423
+ export interface ListNetworksInput {
424
+ Name?: string;
425
+ Framework?: Framework | string;
426
+ Status?: NetworkStatus | string;
427
+ MaxResults?: number;
428
+ NextToken?: string;
429
+ }
430
+ export interface ListNetworksOutput {
431
+ Networks?: NetworkSummary[];
432
+ NextToken?: string;
433
+ }
434
+ export interface ListNodesInput {
435
+ NetworkId: string | undefined;
436
+ MemberId?: string;
437
+ Status?: NodeStatus | string;
438
+ MaxResults?: number;
439
+ NextToken?: string;
440
+ }
441
+ export interface NodeSummary {
442
+ Id?: string;
443
+ Status?: NodeStatus | string;
444
+ CreationDate?: Date;
445
+ AvailabilityZone?: string;
446
+ InstanceType?: string;
447
+ Arn?: string;
448
+ }
449
+ export interface ListNodesOutput {
450
+ Nodes?: NodeSummary[];
451
+ NextToken?: string;
452
+ }
453
+ export interface ListProposalsInput {
454
+ NetworkId: string | undefined;
455
+ MaxResults?: number;
456
+ NextToken?: string;
457
+ }
458
+ export interface ProposalSummary {
459
+ ProposalId?: string;
460
+ Description?: string;
461
+ ProposedByMemberId?: string;
462
+ ProposedByMemberName?: string;
463
+ Status?: ProposalStatus | string;
464
+ CreationDate?: Date;
465
+ ExpirationDate?: Date;
466
+ Arn?: string;
467
+ }
468
+ export interface ListProposalsOutput {
469
+ Proposals?: ProposalSummary[];
470
+ NextToken?: string;
471
+ }
472
+ export interface ListProposalVotesInput {
473
+ NetworkId: string | undefined;
474
+ ProposalId: string | undefined;
475
+ MaxResults?: number;
476
+ NextToken?: string;
477
+ }
478
+ export declare enum VoteValue {
479
+ NO = "NO",
480
+ YES = "YES",
481
+ }
482
+ export interface VoteSummary {
483
+ Vote?: VoteValue | string;
484
+ MemberName?: string;
485
+ MemberId?: string;
486
+ }
487
+ export interface ListProposalVotesOutput {
488
+ ProposalVotes?: VoteSummary[];
489
+ NextToken?: string;
490
+ }
491
+ export interface ListTagsForResourceRequest {
492
+ ResourceArn: string | undefined;
493
+ }
494
+ export interface ListTagsForResourceResponse {
495
+ Tags?: Record<string, string>;
496
+ }
497
+ export interface RejectInvitationInput {
498
+ InvitationId: string | undefined;
499
+ }
500
+ export interface RejectInvitationOutput {}
501
+ export interface TagResourceRequest {
502
+ ResourceArn: string | undefined;
503
+ Tags: Record<string, string> | undefined;
504
+ }
505
+ export interface TagResourceResponse {}
506
+ export interface UntagResourceRequest {
507
+ ResourceArn: string | undefined;
508
+ TagKeys: string[] | undefined;
509
+ }
510
+ export interface UntagResourceResponse {}
511
+ export interface UpdateMemberInput {
512
+ NetworkId: string | undefined;
513
+ MemberId: string | undefined;
514
+ LogPublishingConfiguration?: MemberLogPublishingConfiguration;
515
+ }
516
+ export interface UpdateMemberOutput {}
517
+ export interface UpdateNodeInput {
518
+ NetworkId: string | undefined;
519
+ MemberId?: string;
520
+ NodeId: string | undefined;
521
+ LogPublishingConfiguration?: NodeLogPublishingConfiguration;
522
+ }
523
+ export interface UpdateNodeOutput {}
524
+ export interface VoteOnProposalInput {
525
+ NetworkId: string | undefined;
526
+ ProposalId: string | undefined;
527
+ VoterMemberId: string | undefined;
528
+ Vote: VoteValue | string | undefined;
529
+ }
530
+ export interface VoteOnProposalOutput {}
531
+ export declare const ApprovalThresholdPolicyFilterSensitiveLog: (
532
+ obj: ApprovalThresholdPolicy
533
+ ) => any;
534
+ export declare const MemberFabricConfigurationFilterSensitiveLog: (
535
+ obj: MemberFabricConfiguration
536
+ ) => any;
537
+ export declare const MemberFrameworkConfigurationFilterSensitiveLog: (
538
+ obj: MemberFrameworkConfiguration
539
+ ) => any;
540
+ export declare const LogConfigurationFilterSensitiveLog: (
541
+ obj: LogConfiguration
542
+ ) => any;
543
+ export declare const LogConfigurationsFilterSensitiveLog: (
544
+ obj: LogConfigurations
545
+ ) => any;
546
+ export declare const MemberFabricLogPublishingConfigurationFilterSensitiveLog: (
547
+ obj: MemberFabricLogPublishingConfiguration
548
+ ) => any;
549
+ export declare const MemberLogPublishingConfigurationFilterSensitiveLog: (
550
+ obj: MemberLogPublishingConfiguration
551
+ ) => any;
552
+ export declare const MemberConfigurationFilterSensitiveLog: (
553
+ obj: MemberConfiguration
554
+ ) => any;
555
+ export declare const CreateMemberInputFilterSensitiveLog: (
556
+ obj: CreateMemberInput
557
+ ) => any;
558
+ export declare const CreateMemberOutputFilterSensitiveLog: (
559
+ obj: CreateMemberOutput
560
+ ) => any;
561
+ export declare const NetworkFabricConfigurationFilterSensitiveLog: (
562
+ obj: NetworkFabricConfiguration
563
+ ) => any;
564
+ export declare const NetworkFrameworkConfigurationFilterSensitiveLog: (
565
+ obj: NetworkFrameworkConfiguration
566
+ ) => any;
567
+ export declare const VotingPolicyFilterSensitiveLog: (obj: VotingPolicy) => any;
568
+ export declare const CreateNetworkInputFilterSensitiveLog: (
569
+ obj: CreateNetworkInput
570
+ ) => any;
571
+ export declare const CreateNetworkOutputFilterSensitiveLog: (
572
+ obj: CreateNetworkOutput
573
+ ) => any;
574
+ export declare const NodeFabricLogPublishingConfigurationFilterSensitiveLog: (
575
+ obj: NodeFabricLogPublishingConfiguration
576
+ ) => any;
577
+ export declare const NodeLogPublishingConfigurationFilterSensitiveLog: (
578
+ obj: NodeLogPublishingConfiguration
579
+ ) => any;
580
+ export declare const NodeConfigurationFilterSensitiveLog: (
581
+ obj: NodeConfiguration
582
+ ) => any;
583
+ export declare const CreateNodeInputFilterSensitiveLog: (
584
+ obj: CreateNodeInput
585
+ ) => any;
586
+ export declare const CreateNodeOutputFilterSensitiveLog: (
587
+ obj: CreateNodeOutput
588
+ ) => any;
589
+ export declare const InviteActionFilterSensitiveLog: (obj: InviteAction) => any;
590
+ export declare const RemoveActionFilterSensitiveLog: (obj: RemoveAction) => any;
591
+ export declare const ProposalActionsFilterSensitiveLog: (
592
+ obj: ProposalActions
593
+ ) => any;
594
+ export declare const CreateProposalInputFilterSensitiveLog: (
595
+ obj: CreateProposalInput
596
+ ) => any;
597
+ export declare const CreateProposalOutputFilterSensitiveLog: (
598
+ obj: CreateProposalOutput
599
+ ) => any;
600
+ export declare const DeleteMemberInputFilterSensitiveLog: (
601
+ obj: DeleteMemberInput
602
+ ) => any;
603
+ export declare const DeleteMemberOutputFilterSensitiveLog: (
604
+ obj: DeleteMemberOutput
605
+ ) => any;
606
+ export declare const DeleteNodeInputFilterSensitiveLog: (
607
+ obj: DeleteNodeInput
608
+ ) => any;
609
+ export declare const DeleteNodeOutputFilterSensitiveLog: (
610
+ obj: DeleteNodeOutput
611
+ ) => any;
612
+ export declare const GetMemberInputFilterSensitiveLog: (
613
+ obj: GetMemberInput
614
+ ) => any;
615
+ export declare const MemberFabricAttributesFilterSensitiveLog: (
616
+ obj: MemberFabricAttributes
617
+ ) => any;
618
+ export declare const MemberFrameworkAttributesFilterSensitiveLog: (
619
+ obj: MemberFrameworkAttributes
620
+ ) => any;
621
+ export declare const MemberFilterSensitiveLog: (obj: Member) => any;
622
+ export declare const GetMemberOutputFilterSensitiveLog: (
623
+ obj: GetMemberOutput
624
+ ) => any;
625
+ export declare const GetNetworkInputFilterSensitiveLog: (
626
+ obj: GetNetworkInput
627
+ ) => any;
628
+ export declare const NetworkEthereumAttributesFilterSensitiveLog: (
629
+ obj: NetworkEthereumAttributes
630
+ ) => any;
631
+ export declare const NetworkFabricAttributesFilterSensitiveLog: (
632
+ obj: NetworkFabricAttributes
633
+ ) => any;
634
+ export declare const NetworkFrameworkAttributesFilterSensitiveLog: (
635
+ obj: NetworkFrameworkAttributes
636
+ ) => any;
637
+ export declare const NetworkFilterSensitiveLog: (obj: Network) => any;
638
+ export declare const GetNetworkOutputFilterSensitiveLog: (
639
+ obj: GetNetworkOutput
640
+ ) => any;
641
+ export declare const GetNodeInputFilterSensitiveLog: (obj: GetNodeInput) => any;
642
+ export declare const NodeEthereumAttributesFilterSensitiveLog: (
643
+ obj: NodeEthereumAttributes
644
+ ) => any;
645
+ export declare const NodeFabricAttributesFilterSensitiveLog: (
646
+ obj: NodeFabricAttributes
647
+ ) => any;
648
+ export declare const NodeFrameworkAttributesFilterSensitiveLog: (
649
+ obj: NodeFrameworkAttributes
650
+ ) => any;
651
+ export declare const NodeFilterSensitiveLog: (obj: Node) => any;
652
+ export declare const GetNodeOutputFilterSensitiveLog: (
653
+ obj: GetNodeOutput
654
+ ) => any;
655
+ export declare const GetProposalInputFilterSensitiveLog: (
656
+ obj: GetProposalInput
657
+ ) => any;
658
+ export declare const ProposalFilterSensitiveLog: (obj: Proposal) => any;
659
+ export declare const GetProposalOutputFilterSensitiveLog: (
660
+ obj: GetProposalOutput
661
+ ) => any;
662
+ export declare const NetworkSummaryFilterSensitiveLog: (
663
+ obj: NetworkSummary
664
+ ) => any;
665
+ export declare const InvitationFilterSensitiveLog: (obj: Invitation) => any;
666
+ export declare const ListInvitationsInputFilterSensitiveLog: (
667
+ obj: ListInvitationsInput
668
+ ) => any;
669
+ export declare const ListInvitationsOutputFilterSensitiveLog: (
670
+ obj: ListInvitationsOutput
671
+ ) => any;
672
+ export declare const ListMembersInputFilterSensitiveLog: (
673
+ obj: ListMembersInput
674
+ ) => any;
675
+ export declare const MemberSummaryFilterSensitiveLog: (
676
+ obj: MemberSummary
677
+ ) => any;
678
+ export declare const ListMembersOutputFilterSensitiveLog: (
679
+ obj: ListMembersOutput
680
+ ) => any;
681
+ export declare const ListNetworksInputFilterSensitiveLog: (
682
+ obj: ListNetworksInput
683
+ ) => any;
684
+ export declare const ListNetworksOutputFilterSensitiveLog: (
685
+ obj: ListNetworksOutput
686
+ ) => any;
687
+ export declare const ListNodesInputFilterSensitiveLog: (
688
+ obj: ListNodesInput
689
+ ) => any;
690
+ export declare const NodeSummaryFilterSensitiveLog: (obj: NodeSummary) => any;
691
+ export declare const ListNodesOutputFilterSensitiveLog: (
692
+ obj: ListNodesOutput
693
+ ) => any;
694
+ export declare const ListProposalsInputFilterSensitiveLog: (
695
+ obj: ListProposalsInput
696
+ ) => any;
697
+ export declare const ProposalSummaryFilterSensitiveLog: (
698
+ obj: ProposalSummary
699
+ ) => any;
700
+ export declare const ListProposalsOutputFilterSensitiveLog: (
701
+ obj: ListProposalsOutput
702
+ ) => any;
703
+ export declare const ListProposalVotesInputFilterSensitiveLog: (
704
+ obj: ListProposalVotesInput
705
+ ) => any;
706
+ export declare const VoteSummaryFilterSensitiveLog: (obj: VoteSummary) => any;
707
+ export declare const ListProposalVotesOutputFilterSensitiveLog: (
708
+ obj: ListProposalVotesOutput
709
+ ) => any;
710
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
711
+ obj: ListTagsForResourceRequest
712
+ ) => any;
713
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
714
+ obj: ListTagsForResourceResponse
715
+ ) => any;
716
+ export declare const RejectInvitationInputFilterSensitiveLog: (
717
+ obj: RejectInvitationInput
718
+ ) => any;
719
+ export declare const RejectInvitationOutputFilterSensitiveLog: (
720
+ obj: RejectInvitationOutput
721
+ ) => any;
722
+ export declare const TagResourceRequestFilterSensitiveLog: (
723
+ obj: TagResourceRequest
724
+ ) => any;
725
+ export declare const TagResourceResponseFilterSensitiveLog: (
726
+ obj: TagResourceResponse
727
+ ) => any;
728
+ export declare const UntagResourceRequestFilterSensitiveLog: (
729
+ obj: UntagResourceRequest
730
+ ) => any;
731
+ export declare const UntagResourceResponseFilterSensitiveLog: (
732
+ obj: UntagResourceResponse
733
+ ) => any;
734
+ export declare const UpdateMemberInputFilterSensitiveLog: (
735
+ obj: UpdateMemberInput
736
+ ) => any;
737
+ export declare const UpdateMemberOutputFilterSensitiveLog: (
738
+ obj: UpdateMemberOutput
739
+ ) => any;
740
+ export declare const UpdateNodeInputFilterSensitiveLog: (
741
+ obj: UpdateNodeInput
742
+ ) => any;
743
+ export declare const UpdateNodeOutputFilterSensitiveLog: (
744
+ obj: UpdateNodeOutput
745
+ ) => any;
746
+ export declare const VoteOnProposalInputFilterSensitiveLog: (
747
+ obj: VoteOnProposalInput
748
+ ) => any;
749
+ export declare const VoteOnProposalOutputFilterSensitiveLog: (
750
+ obj: VoteOnProposalOutput
751
+ ) => any;