@aws-sdk/client-managedblockchain 3.296.0 → 3.297.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 (40) hide show
  1. package/dist-types/ManagedBlockchain.d.ts +28 -0
  2. package/dist-types/ManagedBlockchainClient.d.ts +24 -4
  3. package/dist-types/commands/CreateAccessorCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateMemberCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateNetworkCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateNodeCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateProposalCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAccessorCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteMemberCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteNodeCommand.d.ts +16 -0
  11. package/dist-types/commands/GetAccessorCommand.d.ts +16 -0
  12. package/dist-types/commands/GetMemberCommand.d.ts +16 -0
  13. package/dist-types/commands/GetNetworkCommand.d.ts +16 -0
  14. package/dist-types/commands/GetNodeCommand.d.ts +16 -0
  15. package/dist-types/commands/GetProposalCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAccessorsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListInvitationsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListMembersCommand.d.ts +16 -0
  19. package/dist-types/commands/ListNetworksCommand.d.ts +16 -0
  20. package/dist-types/commands/ListNodesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListProposalVotesCommand.d.ts +16 -0
  22. package/dist-types/commands/ListProposalsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/RejectInvitationCommand.d.ts +16 -0
  25. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateMemberCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateNodeCommand.d.ts +16 -0
  29. package/dist-types/commands/VoteOnProposalCommand.d.ts +16 -0
  30. package/dist-types/models/ManagedBlockchainServiceException.d.ts +2 -0
  31. package/dist-types/models/models_0.d.ts +245 -0
  32. package/dist-types/pagination/Interfaces.d.ts +3 -0
  33. package/dist-types/pagination/ListAccessorsPaginator.d.ts +3 -0
  34. package/dist-types/pagination/ListInvitationsPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListNetworksPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListNodesPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListProposalVotesPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListProposalsPaginator.d.ts +3 -0
  40. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You don't have sufficient access to perform this action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -12,15 +13,22 @@ export declare class AccessDeniedException extends __BaseException {
12
13
  */
13
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
15
  }
16
+ /**
17
+ * @public
18
+ */
15
19
  export declare enum AccessorStatus {
16
20
  AVAILABLE = "AVAILABLE",
17
21
  DELETED = "DELETED",
18
22
  PENDING_DELETION = "PENDING_DELETION"
19
23
  }
24
+ /**
25
+ * @public
26
+ */
20
27
  export declare enum AccessorType {
21
28
  BILLING_TOKEN = "BILLING_TOKEN"
22
29
  }
23
30
  /**
31
+ * @public
24
32
  * <p>The properties of the Accessor.</p>
25
33
  */
26
34
  export interface Accessor {
@@ -62,6 +70,7 @@ export interface Accessor {
62
70
  Tags?: Record<string, string>;
63
71
  }
64
72
  /**
73
+ * @public
65
74
  * <p>A summary of accessor properties.</p>
66
75
  */
67
76
  export interface AccessorSummary {
@@ -91,11 +100,15 @@ export interface AccessorSummary {
91
100
  */
92
101
  Arn?: string;
93
102
  }
103
+ /**
104
+ * @public
105
+ */
94
106
  export declare enum ThresholdComparator {
95
107
  GREATER_THAN = "GREATER_THAN",
96
108
  GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO"
97
109
  }
98
110
  /**
111
+ * @public
99
112
  * <p>A policy type that defines the voting rules for the network. The rules decide if a proposal is approved. Approval may be based on criteria such as the percentage of <code>YES</code> votes and the duration of the proposal. The policy applies to all proposals and is specified when the network is created.</p>
100
113
  * <p>Applies only to Hyperledger Fabric.</p>
101
114
  */
@@ -113,6 +126,9 @@ export interface ApprovalThresholdPolicy {
113
126
  */
114
127
  ThresholdComparator?: ThresholdComparator | string;
115
128
  }
129
+ /**
130
+ * @public
131
+ */
116
132
  export interface CreateAccessorInput {
117
133
  /**
118
134
  * <p>This is a unique, case-sensitive identifier that you provide to ensure the idempotency of
@@ -138,6 +154,9 @@ export interface CreateAccessorInput {
138
154
  */
139
155
  Tags?: Record<string, string>;
140
156
  }
157
+ /**
158
+ * @public
159
+ */
141
160
  export interface CreateAccessorOutput {
142
161
  /**
143
162
  * <p>The unique identifier of the accessor.</p>
@@ -151,6 +170,7 @@ export interface CreateAccessorOutput {
151
170
  BillingToken?: string;
152
171
  }
153
172
  /**
173
+ * @public
154
174
  * <p>The request processing has failed because of an unknown error, exception or failure.</p>
155
175
  */
156
176
  export declare class InternalServiceErrorException extends __BaseException {
@@ -162,6 +182,7 @@ export declare class InternalServiceErrorException extends __BaseException {
162
182
  constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
163
183
  }
164
184
  /**
185
+ * @public
165
186
  * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
166
187
  */
167
188
  export declare class InvalidRequestException extends __BaseException {
@@ -174,6 +195,7 @@ export declare class InvalidRequestException extends __BaseException {
174
195
  constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
175
196
  }
176
197
  /**
198
+ * @public
177
199
  * <p>A resource request is issued for a resource that already exists.</p>
178
200
  */
179
201
  export declare class ResourceAlreadyExistsException extends __BaseException {
@@ -186,6 +208,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
186
208
  constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
187
209
  }
188
210
  /**
211
+ * @public
189
212
  * <p>The maximum number of resources of that type already exist. Ensure the resources requested
190
213
  * are within the boundaries of the service edition and your account limits.</p>
191
214
  */
@@ -199,6 +222,7 @@ export declare class ResourceLimitExceededException extends __BaseException {
199
222
  constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
200
223
  }
201
224
  /**
225
+ * @public
202
226
  * <p>The request or operation couldn't be performed because a service is
203
227
  * throttling requests. The most common source of throttling errors is
204
228
  * creating resources that exceed your service limit for this resource type.
@@ -213,6 +237,7 @@ export declare class ThrottlingException extends __BaseException {
213
237
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
214
238
  }
215
239
  /**
240
+ * @public
216
241
  * <p></p>
217
242
  */
218
243
  export declare class TooManyTagsException extends __BaseException {
@@ -229,6 +254,7 @@ export declare class TooManyTagsException extends __BaseException {
229
254
  constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
230
255
  }
231
256
  /**
257
+ * @public
232
258
  * <p>Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.</p>
233
259
  */
234
260
  export interface MemberFabricConfiguration {
@@ -242,6 +268,7 @@ export interface MemberFabricConfiguration {
242
268
  AdminPassword: string | undefined;
243
269
  }
244
270
  /**
271
+ * @public
245
272
  * <p>Configuration properties relevant to a member for the blockchain framework that the Managed Blockchain network uses.</p>
246
273
  */
247
274
  export interface MemberFrameworkConfiguration {
@@ -251,6 +278,7 @@ export interface MemberFrameworkConfiguration {
251
278
  Fabric?: MemberFabricConfiguration;
252
279
  }
253
280
  /**
281
+ * @public
254
282
  * <p>A configuration for logging events.</p>
255
283
  */
256
284
  export interface LogConfiguration {
@@ -260,6 +288,7 @@ export interface LogConfiguration {
260
288
  Enabled?: boolean;
261
289
  }
262
290
  /**
291
+ * @public
263
292
  * <p>A collection of log configurations.</p>
264
293
  */
265
294
  export interface LogConfigurations {
@@ -269,6 +298,7 @@ export interface LogConfigurations {
269
298
  Cloudwatch?: LogConfiguration;
270
299
  }
271
300
  /**
301
+ * @public
272
302
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network using the Hyperledger Fabric framework.</p>
273
303
  */
274
304
  export interface MemberFabricLogPublishingConfiguration {
@@ -278,6 +308,7 @@ export interface MemberFabricLogPublishingConfiguration {
278
308
  CaLogs?: LogConfigurations;
279
309
  }
280
310
  /**
311
+ * @public
281
312
  * <p>Configuration properties for logging events associated with a member of a Managed Blockchain network.</p>
282
313
  */
283
314
  export interface MemberLogPublishingConfiguration {
@@ -287,6 +318,7 @@ export interface MemberLogPublishingConfiguration {
287
318
  Fabric?: MemberFabricLogPublishingConfiguration;
288
319
  }
289
320
  /**
321
+ * @public
290
322
  * <p>Configuration properties of the member.</p>
291
323
  * <p>Applies only to Hyperledger Fabric.</p>
292
324
  */
@@ -332,6 +364,9 @@ export interface MemberConfiguration {
332
364
  */
333
365
  KmsKeyArn?: string;
334
366
  }
367
+ /**
368
+ * @public
369
+ */
335
370
  export interface CreateMemberInput {
336
371
  /**
337
372
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the CLI.</p>
@@ -350,6 +385,9 @@ export interface CreateMemberInput {
350
385
  */
351
386
  MemberConfiguration: MemberConfiguration | undefined;
352
387
  }
388
+ /**
389
+ * @public
390
+ */
353
391
  export interface CreateMemberOutput {
354
392
  /**
355
393
  * <p>The unique identifier of the member.</p>
@@ -357,6 +395,7 @@ export interface CreateMemberOutput {
357
395
  MemberId?: string;
358
396
  }
359
397
  /**
398
+ * @public
360
399
  * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
361
400
  */
362
401
  export declare class ResourceNotFoundException extends __BaseException {
@@ -373,6 +412,7 @@ export declare class ResourceNotFoundException extends __BaseException {
373
412
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
374
413
  }
375
414
  /**
415
+ * @public
376
416
  * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
377
417
  */
378
418
  export declare class ResourceNotReadyException extends __BaseException {
@@ -384,15 +424,22 @@ export declare class ResourceNotReadyException extends __BaseException {
384
424
  */
385
425
  constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
386
426
  }
427
+ /**
428
+ * @public
429
+ */
387
430
  export declare enum Framework {
388
431
  ETHEREUM = "ETHEREUM",
389
432
  HYPERLEDGER_FABRIC = "HYPERLEDGER_FABRIC"
390
433
  }
434
+ /**
435
+ * @public
436
+ */
391
437
  export declare enum Edition {
392
438
  STANDARD = "STANDARD",
393
439
  STARTER = "STARTER"
394
440
  }
395
441
  /**
442
+ * @public
396
443
  * <p>Hyperledger Fabric configuration properties for the network.</p>
397
444
  */
398
445
  export interface NetworkFabricConfiguration {
@@ -402,6 +449,7 @@ export interface NetworkFabricConfiguration {
402
449
  Edition: Edition | string | undefined;
403
450
  }
404
451
  /**
452
+ * @public
405
453
  * <p>
406
454
  * Configuration properties relevant to the network for the blockchain framework that the network uses.
407
455
  * </p>
@@ -415,6 +463,7 @@ export interface NetworkFrameworkConfiguration {
415
463
  Fabric?: NetworkFabricConfiguration;
416
464
  }
417
465
  /**
466
+ * @public
418
467
  * <p>
419
468
  * The voting rules for the network to decide if a proposal is accepted
420
469
  * </p>
@@ -426,6 +475,9 @@ export interface VotingPolicy {
426
475
  */
427
476
  ApprovalThresholdPolicy?: ApprovalThresholdPolicy;
428
477
  }
478
+ /**
479
+ * @public
480
+ */
429
481
  export interface CreateNetworkInput {
430
482
  /**
431
483
  * <p>This is a unique, case-sensitive identifier that you provide to ensure the idempotency of the
@@ -476,6 +528,9 @@ export interface CreateNetworkInput {
476
528
  */
477
529
  Tags?: Record<string, string>;
478
530
  }
531
+ /**
532
+ * @public
533
+ */
479
534
  export interface CreateNetworkOutput {
480
535
  /**
481
536
  * <p>The unique identifier for the network.</p>
@@ -487,6 +542,7 @@ export interface CreateNetworkOutput {
487
542
  MemberId?: string;
488
543
  }
489
544
  /**
545
+ * @public
490
546
  * <p>Configuration properties for logging events associated with a peer node owned by a member in a Managed Blockchain network.</p>
491
547
  */
492
548
  export interface NodeFabricLogPublishingConfiguration {
@@ -500,6 +556,7 @@ export interface NodeFabricLogPublishingConfiguration {
500
556
  PeerLogs?: LogConfigurations;
501
557
  }
502
558
  /**
559
+ * @public
503
560
  * <p>Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.</p>
504
561
  */
505
562
  export interface NodeLogPublishingConfiguration {
@@ -508,11 +565,15 @@ export interface NodeLogPublishingConfiguration {
508
565
  */
509
566
  Fabric?: NodeFabricLogPublishingConfiguration;
510
567
  }
568
+ /**
569
+ * @public
570
+ */
511
571
  export declare enum StateDBType {
512
572
  CouchDB = "CouchDB",
513
573
  LevelDB = "LevelDB"
514
574
  }
515
575
  /**
576
+ * @public
516
577
  * <p>Configuration properties of a node.</p>
517
578
  */
518
579
  export interface NodeConfiguration {
@@ -535,6 +596,9 @@ export interface NodeConfiguration {
535
596
  */
536
597
  StateDB?: StateDBType | string;
537
598
  }
599
+ /**
600
+ * @public
601
+ */
538
602
  export interface CreateNodeInput {
539
603
  /**
540
604
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the CLI.</p>
@@ -585,6 +649,9 @@ export interface CreateNodeInput {
585
649
  */
586
650
  Tags?: Record<string, string>;
587
651
  }
652
+ /**
653
+ * @public
654
+ */
588
655
  export interface CreateNodeOutput {
589
656
  /**
590
657
  * <p>The unique identifier of the node.</p>
@@ -592,6 +659,7 @@ export interface CreateNodeOutput {
592
659
  NodeId?: string;
593
660
  }
594
661
  /**
662
+ * @public
595
663
  * <p>An action to invite a specific Amazon Web Services account to create a member and join the network. The <code>InviteAction</code> is carried out when a <code>Proposal</code> is <code>APPROVED</code>.</p>
596
664
  * <p>Applies only to Hyperledger Fabric.</p>
597
665
  */
@@ -602,6 +670,7 @@ export interface InviteAction {
602
670
  Principal: string | undefined;
603
671
  }
604
672
  /**
673
+ * @public
605
674
  * <p>An action to remove a member from a Managed Blockchain network as the result of a removal proposal that is <code>APPROVED</code>. The member and all associated resources are deleted from the network.</p>
606
675
  * <p>Applies only to Hyperledger Fabric.</p>
607
676
  */
@@ -612,6 +681,7 @@ export interface RemoveAction {
612
681
  MemberId: string | undefined;
613
682
  }
614
683
  /**
684
+ * @public
615
685
  * <p>
616
686
  * The actions to carry out if a proposal is <code>APPROVED</code>.
617
687
  * </p>
@@ -631,6 +701,9 @@ export interface ProposalActions {
631
701
  */
632
702
  Removals?: RemoveAction[];
633
703
  }
704
+ /**
705
+ * @public
706
+ */
634
707
  export interface CreateProposalInput {
635
708
  /**
636
709
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time. This identifier is required only if you make a service request directly using an HTTP client. It is generated automatically if you use an Amazon Web Services SDK or the CLI.</p>
@@ -664,20 +737,32 @@ export interface CreateProposalInput {
664
737
  */
665
738
  Tags?: Record<string, string>;
666
739
  }
740
+ /**
741
+ * @public
742
+ */
667
743
  export interface CreateProposalOutput {
668
744
  /**
669
745
  * <p>The unique identifier of the proposal.</p>
670
746
  */
671
747
  ProposalId?: string;
672
748
  }
749
+ /**
750
+ * @public
751
+ */
673
752
  export interface DeleteAccessorInput {
674
753
  /**
675
754
  * <p>The unique identifier of the accessor.</p>
676
755
  */
677
756
  AccessorId: string | undefined;
678
757
  }
758
+ /**
759
+ * @public
760
+ */
679
761
  export interface DeleteAccessorOutput {
680
762
  }
763
+ /**
764
+ * @public
765
+ */
681
766
  export interface DeleteMemberInput {
682
767
  /**
683
768
  * <p>The unique identifier of the network from which the member is removed.</p>
@@ -688,8 +773,14 @@ export interface DeleteMemberInput {
688
773
  */
689
774
  MemberId: string | undefined;
690
775
  }
776
+ /**
777
+ * @public
778
+ */
691
779
  export interface DeleteMemberOutput {
692
780
  }
781
+ /**
782
+ * @public
783
+ */
693
784
  export interface DeleteNodeInput {
694
785
  /**
695
786
  * <p>The unique identifier of the network that the node is on.</p>
@@ -728,20 +819,32 @@ export interface DeleteNodeInput {
728
819
  */
729
820
  NodeId: string | undefined;
730
821
  }
822
+ /**
823
+ * @public
824
+ */
731
825
  export interface DeleteNodeOutput {
732
826
  }
827
+ /**
828
+ * @public
829
+ */
733
830
  export interface GetAccessorInput {
734
831
  /**
735
832
  * <p>The unique identifier of the accessor.</p>
736
833
  */
737
834
  AccessorId: string | undefined;
738
835
  }
836
+ /**
837
+ * @public
838
+ */
739
839
  export interface GetAccessorOutput {
740
840
  /**
741
841
  * <p>The properties of the accessor.</p>
742
842
  */
743
843
  Accessor?: Accessor;
744
844
  }
845
+ /**
846
+ * @public
847
+ */
745
848
  export interface GetMemberInput {
746
849
  /**
747
850
  * <p>The unique identifier of the network to which the member belongs.</p>
@@ -753,6 +856,7 @@ export interface GetMemberInput {
753
856
  MemberId: string | undefined;
754
857
  }
755
858
  /**
859
+ * @public
756
860
  * <p>Attributes of Hyperledger Fabric for a member in a Managed Blockchain network using the Hyperledger Fabric framework.</p>
757
861
  */
758
862
  export interface MemberFabricAttributes {
@@ -766,6 +870,7 @@ export interface MemberFabricAttributes {
766
870
  CaEndpoint?: string;
767
871
  }
768
872
  /**
873
+ * @public
769
874
  * <p>Attributes relevant to a member for the blockchain framework that the Managed Blockchain network uses.</p>
770
875
  */
771
876
  export interface MemberFrameworkAttributes {
@@ -774,6 +879,9 @@ export interface MemberFrameworkAttributes {
774
879
  */
775
880
  Fabric?: MemberFabricAttributes;
776
881
  }
882
+ /**
883
+ * @public
884
+ */
777
885
  export declare enum MemberStatus {
778
886
  AVAILABLE = "AVAILABLE",
779
887
  CREATE_FAILED = "CREATE_FAILED",
@@ -784,6 +892,7 @@ export declare enum MemberStatus {
784
892
  UPDATING = "UPDATING"
785
893
  }
786
894
  /**
895
+ * @public
787
896
  * <p>Member configuration properties.</p>
788
897
  * <p>Applies only to Hyperledger Fabric.</p>
789
898
  */
@@ -868,12 +977,18 @@ export interface Member {
868
977
  */
869
978
  KmsKeyArn?: string;
870
979
  }
980
+ /**
981
+ * @public
982
+ */
871
983
  export interface GetMemberOutput {
872
984
  /**
873
985
  * <p>The properties of a member.</p>
874
986
  */
875
987
  Member?: Member;
876
988
  }
989
+ /**
990
+ * @public
991
+ */
877
992
  export interface GetNetworkInput {
878
993
  /**
879
994
  * <p>The unique identifier of the network to get information about.</p>
@@ -881,6 +996,7 @@ export interface GetNetworkInput {
881
996
  NetworkId: string | undefined;
882
997
  }
883
998
  /**
999
+ * @public
884
1000
  * <p>Attributes of Ethereum for a network. </p>
885
1001
  */
886
1002
  export interface NetworkEthereumAttributes {
@@ -908,6 +1024,7 @@ export interface NetworkEthereumAttributes {
908
1024
  ChainId?: string;
909
1025
  }
910
1026
  /**
1027
+ * @public
911
1028
  * <p>Attributes of Hyperledger Fabric for a network.</p>
912
1029
  */
913
1030
  export interface NetworkFabricAttributes {
@@ -921,6 +1038,7 @@ export interface NetworkFabricAttributes {
921
1038
  Edition?: Edition | string;
922
1039
  }
923
1040
  /**
1041
+ * @public
924
1042
  * <p>Attributes relevant to the network for the blockchain framework that the network uses.</p>
925
1043
  */
926
1044
  export interface NetworkFrameworkAttributes {
@@ -933,6 +1051,9 @@ export interface NetworkFrameworkAttributes {
933
1051
  */
934
1052
  Ethereum?: NetworkEthereumAttributes;
935
1053
  }
1054
+ /**
1055
+ * @public
1056
+ */
936
1057
  export declare enum NetworkStatus {
937
1058
  AVAILABLE = "AVAILABLE",
938
1059
  CREATE_FAILED = "CREATE_FAILED",
@@ -941,6 +1062,7 @@ export declare enum NetworkStatus {
941
1062
  DELETING = "DELETING"
942
1063
  }
943
1064
  /**
1065
+ * @public
944
1066
  * <p>Network configuration properties.</p>
945
1067
  */
946
1068
  export interface Network {
@@ -994,12 +1116,18 @@ export interface Network {
994
1116
  */
995
1117
  Arn?: string;
996
1118
  }
1119
+ /**
1120
+ * @public
1121
+ */
997
1122
  export interface GetNetworkOutput {
998
1123
  /**
999
1124
  * <p>An object containing network configuration parameters.</p>
1000
1125
  */
1001
1126
  Network?: Network;
1002
1127
  }
1128
+ /**
1129
+ * @public
1130
+ */
1003
1131
  export interface GetNodeInput {
1004
1132
  /**
1005
1133
  * <p>The unique identifier of the network that the node is on.</p>
@@ -1016,6 +1144,7 @@ export interface GetNodeInput {
1016
1144
  NodeId: string | undefined;
1017
1145
  }
1018
1146
  /**
1147
+ * @public
1019
1148
  * <p>Attributes of an Ethereum node.</p>
1020
1149
  */
1021
1150
  export interface NodeEthereumAttributes {
@@ -1029,6 +1158,7 @@ export interface NodeEthereumAttributes {
1029
1158
  WebSocketEndpoint?: string;
1030
1159
  }
1031
1160
  /**
1161
+ * @public
1032
1162
  * <p>Attributes of Hyperledger Fabric for a peer node on a Hyperledger Fabric network on Managed Blockchain.</p>
1033
1163
  */
1034
1164
  export interface NodeFabricAttributes {
@@ -1042,6 +1172,7 @@ export interface NodeFabricAttributes {
1042
1172
  PeerEventEndpoint?: string;
1043
1173
  }
1044
1174
  /**
1175
+ * @public
1045
1176
  * <p>Attributes relevant to a node on a Managed Blockchain network for the blockchain framework that the network uses.</p>
1046
1177
  */
1047
1178
  export interface NodeFrameworkAttributes {
@@ -1054,6 +1185,9 @@ export interface NodeFrameworkAttributes {
1054
1185
  */
1055
1186
  Ethereum?: NodeEthereumAttributes;
1056
1187
  }
1188
+ /**
1189
+ * @public
1190
+ */
1057
1191
  export declare enum NodeStatus {
1058
1192
  AVAILABLE = "AVAILABLE",
1059
1193
  CREATE_FAILED = "CREATE_FAILED",
@@ -1066,6 +1200,7 @@ export declare enum NodeStatus {
1066
1200
  UPDATING = "UPDATING"
1067
1201
  }
1068
1202
  /**
1203
+ * @public
1069
1204
  * <p>Configuration properties of a node.</p>
1070
1205
  */
1071
1206
  export interface Node {
@@ -1166,12 +1301,18 @@ export interface Node {
1166
1301
  */
1167
1302
  KmsKeyArn?: string;
1168
1303
  }
1304
+ /**
1305
+ * @public
1306
+ */
1169
1307
  export interface GetNodeOutput {
1170
1308
  /**
1171
1309
  * <p>Properties of the node configuration.</p>
1172
1310
  */
1173
1311
  Node?: Node;
1174
1312
  }
1313
+ /**
1314
+ * @public
1315
+ */
1175
1316
  export interface GetProposalInput {
1176
1317
  /**
1177
1318
  * <p>The unique identifier of the network for which the proposal is made.</p>
@@ -1182,6 +1323,9 @@ export interface GetProposalInput {
1182
1323
  */
1183
1324
  ProposalId: string | undefined;
1184
1325
  }
1326
+ /**
1327
+ * @public
1328
+ */
1185
1329
  export declare enum ProposalStatus {
1186
1330
  ACTION_FAILED = "ACTION_FAILED",
1187
1331
  APPROVED = "APPROVED",
@@ -1190,6 +1334,7 @@ export declare enum ProposalStatus {
1190
1334
  REJECTED = "REJECTED"
1191
1335
  }
1192
1336
  /**
1337
+ * @public
1193
1338
  * <p>Properties of a proposal on a Managed Blockchain network.</p>
1194
1339
  * <p>Applies only to Hyperledger Fabric.</p>
1195
1340
  */
@@ -1284,6 +1429,9 @@ export interface Proposal {
1284
1429
  */
1285
1430
  Arn?: string;
1286
1431
  }
1432
+ /**
1433
+ * @public
1434
+ */
1287
1435
  export interface GetProposalOutput {
1288
1436
  /**
1289
1437
  * <p>Information about a proposal.</p>
@@ -1291,6 +1439,7 @@ export interface GetProposalOutput {
1291
1439
  Proposal?: Proposal;
1292
1440
  }
1293
1441
  /**
1442
+ * @public
1294
1443
  * <p></p>
1295
1444
  */
1296
1445
  export declare class IllegalActionException extends __BaseException {
@@ -1303,6 +1452,7 @@ export declare class IllegalActionException extends __BaseException {
1303
1452
  constructor(opts: __ExceptionOptionType<IllegalActionException, __BaseException>);
1304
1453
  }
1305
1454
  /**
1455
+ * @public
1306
1456
  * <p>A summary of network configuration properties.</p>
1307
1457
  */
1308
1458
  export interface NetworkSummary {
@@ -1339,6 +1489,9 @@ export interface NetworkSummary {
1339
1489
  */
1340
1490
  Arn?: string;
1341
1491
  }
1492
+ /**
1493
+ * @public
1494
+ */
1342
1495
  export declare enum InvitationStatus {
1343
1496
  ACCEPTED = "ACCEPTED",
1344
1497
  ACCEPTING = "ACCEPTING",
@@ -1347,6 +1500,7 @@ export declare enum InvitationStatus {
1347
1500
  REJECTED = "REJECTED"
1348
1501
  }
1349
1502
  /**
1503
+ * @public
1350
1504
  * <p>An invitation to an Amazon Web Services account to create a member and join the network.</p>
1351
1505
  * <p>Applies only to Hyperledger Fabric.</p>
1352
1506
  */
@@ -1398,6 +1552,9 @@ export interface Invitation {
1398
1552
  */
1399
1553
  Arn?: string;
1400
1554
  }
1555
+ /**
1556
+ * @public
1557
+ */
1401
1558
  export interface ListAccessorsInput {
1402
1559
  /**
1403
1560
  * <p> The maximum number of accessors to list.</p>
@@ -1408,6 +1565,9 @@ export interface ListAccessorsInput {
1408
1565
  */
1409
1566
  NextToken?: string;
1410
1567
  }
1568
+ /**
1569
+ * @public
1570
+ */
1411
1571
  export interface ListAccessorsOutput {
1412
1572
  /**
1413
1573
  * <p>An array of AccessorSummary objects that contain configuration properties for
@@ -1419,6 +1579,9 @@ export interface ListAccessorsOutput {
1419
1579
  */
1420
1580
  NextToken?: string;
1421
1581
  }
1582
+ /**
1583
+ * @public
1584
+ */
1422
1585
  export interface ListInvitationsInput {
1423
1586
  /**
1424
1587
  * <p>The maximum number of invitations to return.</p>
@@ -1429,6 +1592,9 @@ export interface ListInvitationsInput {
1429
1592
  */
1430
1593
  NextToken?: string;
1431
1594
  }
1595
+ /**
1596
+ * @public
1597
+ */
1432
1598
  export interface ListInvitationsOutput {
1433
1599
  /**
1434
1600
  * <p>The invitations for the network.</p>
@@ -1439,6 +1605,9 @@ export interface ListInvitationsOutput {
1439
1605
  */
1440
1606
  NextToken?: string;
1441
1607
  }
1608
+ /**
1609
+ * @public
1610
+ */
1442
1611
  export interface ListMembersInput {
1443
1612
  /**
1444
1613
  * <p>The unique identifier of the network for which to list members.</p>
@@ -1468,6 +1637,7 @@ export interface ListMembersInput {
1468
1637
  NextToken?: string;
1469
1638
  }
1470
1639
  /**
1640
+ * @public
1471
1641
  * <p>A summary of configuration properties for a member.</p>
1472
1642
  * <p>Applies only to Hyperledger Fabric.</p>
1473
1643
  */
@@ -1534,6 +1704,9 @@ export interface MemberSummary {
1534
1704
  */
1535
1705
  Arn?: string;
1536
1706
  }
1707
+ /**
1708
+ * @public
1709
+ */
1537
1710
  export interface ListMembersOutput {
1538
1711
  /**
1539
1712
  * <p>An array of <code>MemberSummary</code> objects. Each object contains details about a network member.</p>
@@ -1544,6 +1717,9 @@ export interface ListMembersOutput {
1544
1717
  */
1545
1718
  NextToken?: string;
1546
1719
  }
1720
+ /**
1721
+ * @public
1722
+ */
1547
1723
  export interface ListNetworksInput {
1548
1724
  /**
1549
1725
  * <p>The name of the network.</p>
@@ -1567,6 +1743,9 @@ export interface ListNetworksInput {
1567
1743
  */
1568
1744
  NextToken?: string;
1569
1745
  }
1746
+ /**
1747
+ * @public
1748
+ */
1570
1749
  export interface ListNetworksOutput {
1571
1750
  /**
1572
1751
  * <p>An array of <code>NetworkSummary</code> objects that contain configuration properties for each network.</p>
@@ -1577,6 +1756,9 @@ export interface ListNetworksOutput {
1577
1756
  */
1578
1757
  NextToken?: string;
1579
1758
  }
1759
+ /**
1760
+ * @public
1761
+ */
1580
1762
  export interface ListNodesInput {
1581
1763
  /**
1582
1764
  * <p>The unique identifier of the network for which to list nodes.</p>
@@ -1601,6 +1783,7 @@ export interface ListNodesInput {
1601
1783
  NextToken?: string;
1602
1784
  }
1603
1785
  /**
1786
+ * @public
1604
1787
  * <p>A summary of configuration properties for a node.</p>
1605
1788
  */
1606
1789
  export interface NodeSummary {
@@ -1629,6 +1812,9 @@ export interface NodeSummary {
1629
1812
  */
1630
1813
  Arn?: string;
1631
1814
  }
1815
+ /**
1816
+ * @public
1817
+ */
1632
1818
  export interface ListNodesOutput {
1633
1819
  /**
1634
1820
  * <p>An array of <code>NodeSummary</code> objects that contain configuration properties for each node.</p>
@@ -1639,6 +1825,9 @@ export interface ListNodesOutput {
1639
1825
  */
1640
1826
  NextToken?: string;
1641
1827
  }
1828
+ /**
1829
+ * @public
1830
+ */
1642
1831
  export interface ListProposalsInput {
1643
1832
  /**
1644
1833
  * <p>
@@ -1660,6 +1849,7 @@ export interface ListProposalsInput {
1660
1849
  NextToken?: string;
1661
1850
  }
1662
1851
  /**
1852
+ * @public
1663
1853
  * <p>Properties of a proposal.</p>
1664
1854
  * <p>Applies only to Hyperledger Fabric.</p>
1665
1855
  */
@@ -1731,6 +1921,9 @@ export interface ProposalSummary {
1731
1921
  */
1732
1922
  Arn?: string;
1733
1923
  }
1924
+ /**
1925
+ * @public
1926
+ */
1734
1927
  export interface ListProposalsOutput {
1735
1928
  /**
1736
1929
  * <p>The summary of each proposal made on the network.</p>
@@ -1741,6 +1934,9 @@ export interface ListProposalsOutput {
1741
1934
  */
1742
1935
  NextToken?: string;
1743
1936
  }
1937
+ /**
1938
+ * @public
1939
+ */
1744
1940
  export interface ListProposalVotesInput {
1745
1941
  /**
1746
1942
  * <p>
@@ -1767,11 +1963,15 @@ export interface ListProposalVotesInput {
1767
1963
  */
1768
1964
  NextToken?: string;
1769
1965
  }
1966
+ /**
1967
+ * @public
1968
+ */
1770
1969
  export declare enum VoteValue {
1771
1970
  NO = "NO",
1772
1971
  YES = "YES"
1773
1972
  }
1774
1973
  /**
1974
+ * @public
1775
1975
  * <p>
1776
1976
  * Properties of an individual vote that a member cast for a proposal.
1777
1977
  * </p>
@@ -1797,6 +1997,9 @@ export interface VoteSummary {
1797
1997
  */
1798
1998
  MemberId?: string;
1799
1999
  }
2000
+ /**
2001
+ * @public
2002
+ */
1800
2003
  export interface ListProposalVotesOutput {
1801
2004
  /**
1802
2005
  * <p>
@@ -1811,26 +2014,41 @@ export interface ListProposalVotesOutput {
1811
2014
  */
1812
2015
  NextToken?: string;
1813
2016
  }
2017
+ /**
2018
+ * @public
2019
+ */
1814
2020
  export interface ListTagsForResourceRequest {
1815
2021
  /**
1816
2022
  * <p>The Amazon Resource Name (ARN) of the resource. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
1817
2023
  */
1818
2024
  ResourceArn: string | undefined;
1819
2025
  }
2026
+ /**
2027
+ * @public
2028
+ */
1820
2029
  export interface ListTagsForResourceResponse {
1821
2030
  /**
1822
2031
  * <p>The tags assigned to the resource.</p>
1823
2032
  */
1824
2033
  Tags?: Record<string, string>;
1825
2034
  }
2035
+ /**
2036
+ * @public
2037
+ */
1826
2038
  export interface RejectInvitationInput {
1827
2039
  /**
1828
2040
  * <p>The unique identifier of the invitation to reject.</p>
1829
2041
  */
1830
2042
  InvitationId: string | undefined;
1831
2043
  }
2044
+ /**
2045
+ * @public
2046
+ */
1832
2047
  export interface RejectInvitationOutput {
1833
2048
  }
2049
+ /**
2050
+ * @public
2051
+ */
1834
2052
  export interface TagResourceRequest {
1835
2053
  /**
1836
2054
  * <p>The Amazon Resource Name (ARN) of the resource. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
@@ -1841,8 +2059,14 @@ export interface TagResourceRequest {
1841
2059
  */
1842
2060
  Tags: Record<string, string> | undefined;
1843
2061
  }
2062
+ /**
2063
+ * @public
2064
+ */
1844
2065
  export interface TagResourceResponse {
1845
2066
  }
2067
+ /**
2068
+ * @public
2069
+ */
1846
2070
  export interface UntagResourceRequest {
1847
2071
  /**
1848
2072
  * <p>The Amazon Resource Name (ARN) of the resource. For more information about ARNs and their format, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
@@ -1853,8 +2077,14 @@ export interface UntagResourceRequest {
1853
2077
  */
1854
2078
  TagKeys: string[] | undefined;
1855
2079
  }
2080
+ /**
2081
+ * @public
2082
+ */
1856
2083
  export interface UntagResourceResponse {
1857
2084
  }
2085
+ /**
2086
+ * @public
2087
+ */
1858
2088
  export interface UpdateMemberInput {
1859
2089
  /**
1860
2090
  * <p>The unique identifier of the Managed Blockchain network to which the member belongs.</p>
@@ -1869,8 +2099,14 @@ export interface UpdateMemberInput {
1869
2099
  */
1870
2100
  LogPublishingConfiguration?: MemberLogPublishingConfiguration;
1871
2101
  }
2102
+ /**
2103
+ * @public
2104
+ */
1872
2105
  export interface UpdateMemberOutput {
1873
2106
  }
2107
+ /**
2108
+ * @public
2109
+ */
1874
2110
  export interface UpdateNodeInput {
1875
2111
  /**
1876
2112
  * <p>The unique identifier of the network that the node is on.</p>
@@ -1890,8 +2126,14 @@ export interface UpdateNodeInput {
1890
2126
  */
1891
2127
  LogPublishingConfiguration?: NodeLogPublishingConfiguration;
1892
2128
  }
2129
+ /**
2130
+ * @public
2131
+ */
1893
2132
  export interface UpdateNodeOutput {
1894
2133
  }
2134
+ /**
2135
+ * @public
2136
+ */
1895
2137
  export interface VoteOnProposalInput {
1896
2138
  /**
1897
2139
  * <p>
@@ -1917,6 +2159,9 @@ export interface VoteOnProposalInput {
1917
2159
  */
1918
2160
  Vote: VoteValue | string | undefined;
1919
2161
  }
2162
+ /**
2163
+ * @public
2164
+ */
1920
2165
  export interface VoteOnProposalOutput {
1921
2166
  }
1922
2167
  /**