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