@aws-sdk/client-managedblockchain 3.131.0 → 3.142.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateMemberCommand.js +2 -2
- package/dist-cjs/commands/CreateNetworkCommand.js +2 -2
- package/dist-cjs/commands/CreateNodeCommand.js +2 -2
- package/dist-cjs/commands/CreateProposalCommand.js +2 -2
- package/dist-cjs/commands/DeleteMemberCommand.js +2 -2
- package/dist-cjs/commands/DeleteNodeCommand.js +2 -2
- package/dist-cjs/commands/GetMemberCommand.js +2 -2
- package/dist-cjs/commands/GetNetworkCommand.js +2 -2
- package/dist-cjs/commands/GetNodeCommand.js +2 -2
- package/dist-cjs/commands/GetProposalCommand.js +2 -2
- package/dist-cjs/commands/ListInvitationsCommand.js +2 -2
- package/dist-cjs/commands/ListMembersCommand.js +2 -2
- package/dist-cjs/commands/ListNetworksCommand.js +2 -2
- package/dist-cjs/commands/ListNodesCommand.js +2 -2
- package/dist-cjs/commands/ListProposalVotesCommand.js +2 -2
- package/dist-cjs/commands/ListProposalsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/RejectInvitationCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateMemberCommand.js +2 -2
- package/dist-cjs/commands/UpdateNodeCommand.js +2 -2
- package/dist-cjs/commands/VoteOnProposalCommand.js +2 -2
- package/dist-cjs/models/models_0.js +338 -500
- package/dist-cjs/protocols/Aws_restJson1.js +297 -654
- package/dist-es/commands/CreateMemberCommand.js +3 -3
- package/dist-es/commands/CreateNetworkCommand.js +3 -3
- package/dist-es/commands/CreateNodeCommand.js +3 -3
- package/dist-es/commands/CreateProposalCommand.js +3 -3
- package/dist-es/commands/DeleteMemberCommand.js +3 -3
- package/dist-es/commands/DeleteNodeCommand.js +3 -3
- package/dist-es/commands/GetMemberCommand.js +3 -3
- package/dist-es/commands/GetNetworkCommand.js +3 -3
- package/dist-es/commands/GetNodeCommand.js +3 -3
- package/dist-es/commands/GetProposalCommand.js +3 -3
- package/dist-es/commands/ListInvitationsCommand.js +3 -3
- package/dist-es/commands/ListMembersCommand.js +3 -3
- package/dist-es/commands/ListNetworksCommand.js +3 -3
- package/dist-es/commands/ListNodesCommand.js +3 -3
- package/dist-es/commands/ListProposalVotesCommand.js +3 -3
- package/dist-es/commands/ListProposalsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/RejectInvitationCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateMemberCommand.js +3 -3
- package/dist-es/commands/UpdateNodeCommand.js +3 -3
- package/dist-es/commands/VoteOnProposalCommand.js +3 -3
- package/dist-es/models/models_0.js +87 -330
- package/dist-es/protocols/Aws_restJson1.js +387 -643
- package/dist-types/models/models_0.d.ts +324 -486
- package/dist-types/ts3.4/models/models_0.d.ts +162 -324
- package/package.json +6 -6
|
@@ -21,10 +21,6 @@ export interface ApprovalThresholdPolicy {
|
|
|
21
21
|
|
|
22
22
|
ThresholdComparator?: ThresholdComparator | string;
|
|
23
23
|
}
|
|
24
|
-
export declare namespace ApprovalThresholdPolicy {
|
|
25
|
-
|
|
26
|
-
const filterSensitiveLog: (obj: ApprovalThresholdPolicy) => any;
|
|
27
|
-
}
|
|
28
24
|
|
|
29
25
|
export interface MemberFabricConfiguration {
|
|
30
26
|
|
|
@@ -32,55 +28,31 @@ export interface MemberFabricConfiguration {
|
|
|
32
28
|
|
|
33
29
|
AdminPassword: string | undefined;
|
|
34
30
|
}
|
|
35
|
-
export declare namespace MemberFabricConfiguration {
|
|
36
|
-
|
|
37
|
-
const filterSensitiveLog: (obj: MemberFabricConfiguration) => any;
|
|
38
|
-
}
|
|
39
31
|
|
|
40
32
|
export interface MemberFrameworkConfiguration {
|
|
41
33
|
|
|
42
34
|
Fabric?: MemberFabricConfiguration;
|
|
43
35
|
}
|
|
44
|
-
export declare namespace MemberFrameworkConfiguration {
|
|
45
|
-
|
|
46
|
-
const filterSensitiveLog: (obj: MemberFrameworkConfiguration) => any;
|
|
47
|
-
}
|
|
48
36
|
|
|
49
37
|
export interface LogConfiguration {
|
|
50
38
|
|
|
51
39
|
Enabled?: boolean;
|
|
52
40
|
}
|
|
53
|
-
export declare namespace LogConfiguration {
|
|
54
|
-
|
|
55
|
-
const filterSensitiveLog: (obj: LogConfiguration) => any;
|
|
56
|
-
}
|
|
57
41
|
|
|
58
42
|
export interface LogConfigurations {
|
|
59
43
|
|
|
60
44
|
Cloudwatch?: LogConfiguration;
|
|
61
45
|
}
|
|
62
|
-
export declare namespace LogConfigurations {
|
|
63
|
-
|
|
64
|
-
const filterSensitiveLog: (obj: LogConfigurations) => any;
|
|
65
|
-
}
|
|
66
46
|
|
|
67
47
|
export interface MemberFabricLogPublishingConfiguration {
|
|
68
48
|
|
|
69
49
|
CaLogs?: LogConfigurations;
|
|
70
50
|
}
|
|
71
|
-
export declare namespace MemberFabricLogPublishingConfiguration {
|
|
72
|
-
|
|
73
|
-
const filterSensitiveLog: (obj: MemberFabricLogPublishingConfiguration) => any;
|
|
74
|
-
}
|
|
75
51
|
|
|
76
52
|
export interface MemberLogPublishingConfiguration {
|
|
77
53
|
|
|
78
54
|
Fabric?: MemberFabricLogPublishingConfiguration;
|
|
79
55
|
}
|
|
80
|
-
export declare namespace MemberLogPublishingConfiguration {
|
|
81
|
-
|
|
82
|
-
const filterSensitiveLog: (obj: MemberLogPublishingConfiguration) => any;
|
|
83
|
-
}
|
|
84
56
|
|
|
85
57
|
export interface MemberConfiguration {
|
|
86
58
|
|
|
@@ -96,10 +68,6 @@ export interface MemberConfiguration {
|
|
|
96
68
|
|
|
97
69
|
KmsKeyArn?: string;
|
|
98
70
|
}
|
|
99
|
-
export declare namespace MemberConfiguration {
|
|
100
|
-
|
|
101
|
-
const filterSensitiveLog: (obj: MemberConfiguration) => any;
|
|
102
|
-
}
|
|
103
71
|
export interface CreateMemberInput {
|
|
104
72
|
|
|
105
73
|
ClientRequestToken?: string;
|
|
@@ -110,18 +78,10 @@ export interface CreateMemberInput {
|
|
|
110
78
|
|
|
111
79
|
MemberConfiguration: MemberConfiguration | undefined;
|
|
112
80
|
}
|
|
113
|
-
export declare namespace CreateMemberInput {
|
|
114
|
-
|
|
115
|
-
const filterSensitiveLog: (obj: CreateMemberInput) => any;
|
|
116
|
-
}
|
|
117
81
|
export interface CreateMemberOutput {
|
|
118
82
|
|
|
119
83
|
MemberId?: string;
|
|
120
84
|
}
|
|
121
|
-
export declare namespace CreateMemberOutput {
|
|
122
|
-
|
|
123
|
-
const filterSensitiveLog: (obj: CreateMemberOutput) => any;
|
|
124
|
-
}
|
|
125
85
|
|
|
126
86
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
127
87
|
readonly name: "InternalServiceErrorException";
|
|
@@ -201,28 +161,16 @@ export interface NetworkFabricConfiguration {
|
|
|
201
161
|
|
|
202
162
|
Edition: Edition | string | undefined;
|
|
203
163
|
}
|
|
204
|
-
export declare namespace NetworkFabricConfiguration {
|
|
205
|
-
|
|
206
|
-
const filterSensitiveLog: (obj: NetworkFabricConfiguration) => any;
|
|
207
|
-
}
|
|
208
164
|
|
|
209
165
|
export interface NetworkFrameworkConfiguration {
|
|
210
166
|
|
|
211
167
|
Fabric?: NetworkFabricConfiguration;
|
|
212
168
|
}
|
|
213
|
-
export declare namespace NetworkFrameworkConfiguration {
|
|
214
|
-
|
|
215
|
-
const filterSensitiveLog: (obj: NetworkFrameworkConfiguration) => any;
|
|
216
|
-
}
|
|
217
169
|
|
|
218
170
|
export interface VotingPolicy {
|
|
219
171
|
|
|
220
172
|
ApprovalThresholdPolicy?: ApprovalThresholdPolicy;
|
|
221
173
|
}
|
|
222
|
-
export declare namespace VotingPolicy {
|
|
223
|
-
|
|
224
|
-
const filterSensitiveLog: (obj: VotingPolicy) => any;
|
|
225
|
-
}
|
|
226
174
|
export interface CreateNetworkInput {
|
|
227
175
|
|
|
228
176
|
ClientRequestToken?: string;
|
|
@@ -243,20 +191,12 @@ export interface CreateNetworkInput {
|
|
|
243
191
|
|
|
244
192
|
Tags?: Record<string, string>;
|
|
245
193
|
}
|
|
246
|
-
export declare namespace CreateNetworkInput {
|
|
247
|
-
|
|
248
|
-
const filterSensitiveLog: (obj: CreateNetworkInput) => any;
|
|
249
|
-
}
|
|
250
194
|
export interface CreateNetworkOutput {
|
|
251
195
|
|
|
252
196
|
NetworkId?: string;
|
|
253
197
|
|
|
254
198
|
MemberId?: string;
|
|
255
199
|
}
|
|
256
|
-
export declare namespace CreateNetworkOutput {
|
|
257
|
-
|
|
258
|
-
const filterSensitiveLog: (obj: CreateNetworkOutput) => any;
|
|
259
|
-
}
|
|
260
200
|
|
|
261
201
|
export interface NodeFabricLogPublishingConfiguration {
|
|
262
202
|
|
|
@@ -264,19 +204,11 @@ export interface NodeFabricLogPublishingConfiguration {
|
|
|
264
204
|
|
|
265
205
|
PeerLogs?: LogConfigurations;
|
|
266
206
|
}
|
|
267
|
-
export declare namespace NodeFabricLogPublishingConfiguration {
|
|
268
|
-
|
|
269
|
-
const filterSensitiveLog: (obj: NodeFabricLogPublishingConfiguration) => any;
|
|
270
|
-
}
|
|
271
207
|
|
|
272
208
|
export interface NodeLogPublishingConfiguration {
|
|
273
209
|
|
|
274
210
|
Fabric?: NodeFabricLogPublishingConfiguration;
|
|
275
211
|
}
|
|
276
|
-
export declare namespace NodeLogPublishingConfiguration {
|
|
277
|
-
|
|
278
|
-
const filterSensitiveLog: (obj: NodeLogPublishingConfiguration) => any;
|
|
279
|
-
}
|
|
280
212
|
export declare enum StateDBType {
|
|
281
213
|
CouchDB = "CouchDB",
|
|
282
214
|
LevelDB = "LevelDB"
|
|
@@ -292,10 +224,6 @@ export interface NodeConfiguration {
|
|
|
292
224
|
|
|
293
225
|
StateDB?: StateDBType | string;
|
|
294
226
|
}
|
|
295
|
-
export declare namespace NodeConfiguration {
|
|
296
|
-
|
|
297
|
-
const filterSensitiveLog: (obj: NodeConfiguration) => any;
|
|
298
|
-
}
|
|
299
227
|
export interface CreateNodeInput {
|
|
300
228
|
|
|
301
229
|
ClientRequestToken?: string;
|
|
@@ -308,36 +236,20 @@ export interface CreateNodeInput {
|
|
|
308
236
|
|
|
309
237
|
Tags?: Record<string, string>;
|
|
310
238
|
}
|
|
311
|
-
export declare namespace CreateNodeInput {
|
|
312
|
-
|
|
313
|
-
const filterSensitiveLog: (obj: CreateNodeInput) => any;
|
|
314
|
-
}
|
|
315
239
|
export interface CreateNodeOutput {
|
|
316
240
|
|
|
317
241
|
NodeId?: string;
|
|
318
242
|
}
|
|
319
|
-
export declare namespace CreateNodeOutput {
|
|
320
|
-
|
|
321
|
-
const filterSensitiveLog: (obj: CreateNodeOutput) => any;
|
|
322
|
-
}
|
|
323
243
|
|
|
324
244
|
export interface InviteAction {
|
|
325
245
|
|
|
326
246
|
Principal: string | undefined;
|
|
327
247
|
}
|
|
328
|
-
export declare namespace InviteAction {
|
|
329
|
-
|
|
330
|
-
const filterSensitiveLog: (obj: InviteAction) => any;
|
|
331
|
-
}
|
|
332
248
|
|
|
333
249
|
export interface RemoveAction {
|
|
334
250
|
|
|
335
251
|
MemberId: string | undefined;
|
|
336
252
|
}
|
|
337
|
-
export declare namespace RemoveAction {
|
|
338
|
-
|
|
339
|
-
const filterSensitiveLog: (obj: RemoveAction) => any;
|
|
340
|
-
}
|
|
341
253
|
|
|
342
254
|
export interface ProposalActions {
|
|
343
255
|
|
|
@@ -345,10 +257,6 @@ export interface ProposalActions {
|
|
|
345
257
|
|
|
346
258
|
Removals?: RemoveAction[];
|
|
347
259
|
}
|
|
348
|
-
export declare namespace ProposalActions {
|
|
349
|
-
|
|
350
|
-
const filterSensitiveLog: (obj: ProposalActions) => any;
|
|
351
|
-
}
|
|
352
260
|
export interface CreateProposalInput {
|
|
353
261
|
|
|
354
262
|
ClientRequestToken?: string;
|
|
@@ -363,34 +271,18 @@ export interface CreateProposalInput {
|
|
|
363
271
|
|
|
364
272
|
Tags?: Record<string, string>;
|
|
365
273
|
}
|
|
366
|
-
export declare namespace CreateProposalInput {
|
|
367
|
-
|
|
368
|
-
const filterSensitiveLog: (obj: CreateProposalInput) => any;
|
|
369
|
-
}
|
|
370
274
|
export interface CreateProposalOutput {
|
|
371
275
|
|
|
372
276
|
ProposalId?: string;
|
|
373
277
|
}
|
|
374
|
-
export declare namespace CreateProposalOutput {
|
|
375
|
-
|
|
376
|
-
const filterSensitiveLog: (obj: CreateProposalOutput) => any;
|
|
377
|
-
}
|
|
378
278
|
export interface DeleteMemberInput {
|
|
379
279
|
|
|
380
280
|
NetworkId: string | undefined;
|
|
381
281
|
|
|
382
282
|
MemberId: string | undefined;
|
|
383
283
|
}
|
|
384
|
-
export declare namespace DeleteMemberInput {
|
|
385
|
-
|
|
386
|
-
const filterSensitiveLog: (obj: DeleteMemberInput) => any;
|
|
387
|
-
}
|
|
388
284
|
export interface DeleteMemberOutput {
|
|
389
285
|
}
|
|
390
|
-
export declare namespace DeleteMemberOutput {
|
|
391
|
-
|
|
392
|
-
const filterSensitiveLog: (obj: DeleteMemberOutput) => any;
|
|
393
|
-
}
|
|
394
286
|
export interface DeleteNodeInput {
|
|
395
287
|
|
|
396
288
|
NetworkId: string | undefined;
|
|
@@ -399,26 +291,14 @@ export interface DeleteNodeInput {
|
|
|
399
291
|
|
|
400
292
|
NodeId: string | undefined;
|
|
401
293
|
}
|
|
402
|
-
export declare namespace DeleteNodeInput {
|
|
403
|
-
|
|
404
|
-
const filterSensitiveLog: (obj: DeleteNodeInput) => any;
|
|
405
|
-
}
|
|
406
294
|
export interface DeleteNodeOutput {
|
|
407
295
|
}
|
|
408
|
-
export declare namespace DeleteNodeOutput {
|
|
409
|
-
|
|
410
|
-
const filterSensitiveLog: (obj: DeleteNodeOutput) => any;
|
|
411
|
-
}
|
|
412
296
|
export interface GetMemberInput {
|
|
413
297
|
|
|
414
298
|
NetworkId: string | undefined;
|
|
415
299
|
|
|
416
300
|
MemberId: string | undefined;
|
|
417
301
|
}
|
|
418
|
-
export declare namespace GetMemberInput {
|
|
419
|
-
|
|
420
|
-
const filterSensitiveLog: (obj: GetMemberInput) => any;
|
|
421
|
-
}
|
|
422
302
|
|
|
423
303
|
export interface MemberFabricAttributes {
|
|
424
304
|
|
|
@@ -426,19 +306,11 @@ export interface MemberFabricAttributes {
|
|
|
426
306
|
|
|
427
307
|
CaEndpoint?: string;
|
|
428
308
|
}
|
|
429
|
-
export declare namespace MemberFabricAttributes {
|
|
430
|
-
|
|
431
|
-
const filterSensitiveLog: (obj: MemberFabricAttributes) => any;
|
|
432
|
-
}
|
|
433
309
|
|
|
434
310
|
export interface MemberFrameworkAttributes {
|
|
435
311
|
|
|
436
312
|
Fabric?: MemberFabricAttributes;
|
|
437
313
|
}
|
|
438
|
-
export declare namespace MemberFrameworkAttributes {
|
|
439
|
-
|
|
440
|
-
const filterSensitiveLog: (obj: MemberFrameworkAttributes) => any;
|
|
441
|
-
}
|
|
442
314
|
export declare enum MemberStatus {
|
|
443
315
|
AVAILABLE = "AVAILABLE",
|
|
444
316
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -473,35 +345,19 @@ export interface Member {
|
|
|
473
345
|
|
|
474
346
|
KmsKeyArn?: string;
|
|
475
347
|
}
|
|
476
|
-
export declare namespace Member {
|
|
477
|
-
|
|
478
|
-
const filterSensitiveLog: (obj: Member) => any;
|
|
479
|
-
}
|
|
480
348
|
export interface GetMemberOutput {
|
|
481
349
|
|
|
482
350
|
Member?: Member;
|
|
483
351
|
}
|
|
484
|
-
export declare namespace GetMemberOutput {
|
|
485
|
-
|
|
486
|
-
const filterSensitiveLog: (obj: GetMemberOutput) => any;
|
|
487
|
-
}
|
|
488
352
|
export interface GetNetworkInput {
|
|
489
353
|
|
|
490
354
|
NetworkId: string | undefined;
|
|
491
355
|
}
|
|
492
|
-
export declare namespace GetNetworkInput {
|
|
493
|
-
|
|
494
|
-
const filterSensitiveLog: (obj: GetNetworkInput) => any;
|
|
495
|
-
}
|
|
496
356
|
|
|
497
357
|
export interface NetworkEthereumAttributes {
|
|
498
358
|
|
|
499
359
|
ChainId?: string;
|
|
500
360
|
}
|
|
501
|
-
export declare namespace NetworkEthereumAttributes {
|
|
502
|
-
|
|
503
|
-
const filterSensitiveLog: (obj: NetworkEthereumAttributes) => any;
|
|
504
|
-
}
|
|
505
361
|
|
|
506
362
|
export interface NetworkFabricAttributes {
|
|
507
363
|
|
|
@@ -509,10 +365,6 @@ export interface NetworkFabricAttributes {
|
|
|
509
365
|
|
|
510
366
|
Edition?: Edition | string;
|
|
511
367
|
}
|
|
512
|
-
export declare namespace NetworkFabricAttributes {
|
|
513
|
-
|
|
514
|
-
const filterSensitiveLog: (obj: NetworkFabricAttributes) => any;
|
|
515
|
-
}
|
|
516
368
|
|
|
517
369
|
export interface NetworkFrameworkAttributes {
|
|
518
370
|
|
|
@@ -520,10 +372,6 @@ export interface NetworkFrameworkAttributes {
|
|
|
520
372
|
|
|
521
373
|
Ethereum?: NetworkEthereumAttributes;
|
|
522
374
|
}
|
|
523
|
-
export declare namespace NetworkFrameworkAttributes {
|
|
524
|
-
|
|
525
|
-
const filterSensitiveLog: (obj: NetworkFrameworkAttributes) => any;
|
|
526
|
-
}
|
|
527
375
|
export declare enum NetworkStatus {
|
|
528
376
|
AVAILABLE = "AVAILABLE",
|
|
529
377
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -558,18 +406,10 @@ export interface Network {
|
|
|
558
406
|
|
|
559
407
|
Arn?: string;
|
|
560
408
|
}
|
|
561
|
-
export declare namespace Network {
|
|
562
|
-
|
|
563
|
-
const filterSensitiveLog: (obj: Network) => any;
|
|
564
|
-
}
|
|
565
409
|
export interface GetNetworkOutput {
|
|
566
410
|
|
|
567
411
|
Network?: Network;
|
|
568
412
|
}
|
|
569
|
-
export declare namespace GetNetworkOutput {
|
|
570
|
-
|
|
571
|
-
const filterSensitiveLog: (obj: GetNetworkOutput) => any;
|
|
572
|
-
}
|
|
573
413
|
export interface GetNodeInput {
|
|
574
414
|
|
|
575
415
|
NetworkId: string | undefined;
|
|
@@ -578,10 +418,6 @@ export interface GetNodeInput {
|
|
|
578
418
|
|
|
579
419
|
NodeId: string | undefined;
|
|
580
420
|
}
|
|
581
|
-
export declare namespace GetNodeInput {
|
|
582
|
-
|
|
583
|
-
const filterSensitiveLog: (obj: GetNodeInput) => any;
|
|
584
|
-
}
|
|
585
421
|
|
|
586
422
|
export interface NodeEthereumAttributes {
|
|
587
423
|
|
|
@@ -589,10 +425,6 @@ export interface NodeEthereumAttributes {
|
|
|
589
425
|
|
|
590
426
|
WebSocketEndpoint?: string;
|
|
591
427
|
}
|
|
592
|
-
export declare namespace NodeEthereumAttributes {
|
|
593
|
-
|
|
594
|
-
const filterSensitiveLog: (obj: NodeEthereumAttributes) => any;
|
|
595
|
-
}
|
|
596
428
|
|
|
597
429
|
export interface NodeFabricAttributes {
|
|
598
430
|
|
|
@@ -600,10 +432,6 @@ export interface NodeFabricAttributes {
|
|
|
600
432
|
|
|
601
433
|
PeerEventEndpoint?: string;
|
|
602
434
|
}
|
|
603
|
-
export declare namespace NodeFabricAttributes {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: NodeFabricAttributes) => any;
|
|
606
|
-
}
|
|
607
435
|
|
|
608
436
|
export interface NodeFrameworkAttributes {
|
|
609
437
|
|
|
@@ -611,10 +439,6 @@ export interface NodeFrameworkAttributes {
|
|
|
611
439
|
|
|
612
440
|
Ethereum?: NodeEthereumAttributes;
|
|
613
441
|
}
|
|
614
|
-
export declare namespace NodeFrameworkAttributes {
|
|
615
|
-
|
|
616
|
-
const filterSensitiveLog: (obj: NodeFrameworkAttributes) => any;
|
|
617
|
-
}
|
|
618
442
|
export declare enum NodeStatus {
|
|
619
443
|
AVAILABLE = "AVAILABLE",
|
|
620
444
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -655,28 +479,16 @@ export interface Node {
|
|
|
655
479
|
|
|
656
480
|
KmsKeyArn?: string;
|
|
657
481
|
}
|
|
658
|
-
export declare namespace Node {
|
|
659
|
-
|
|
660
|
-
const filterSensitiveLog: (obj: Node) => any;
|
|
661
|
-
}
|
|
662
482
|
export interface GetNodeOutput {
|
|
663
483
|
|
|
664
484
|
Node?: Node;
|
|
665
485
|
}
|
|
666
|
-
export declare namespace GetNodeOutput {
|
|
667
|
-
|
|
668
|
-
const filterSensitiveLog: (obj: GetNodeOutput) => any;
|
|
669
|
-
}
|
|
670
486
|
export interface GetProposalInput {
|
|
671
487
|
|
|
672
488
|
NetworkId: string | undefined;
|
|
673
489
|
|
|
674
490
|
ProposalId: string | undefined;
|
|
675
491
|
}
|
|
676
|
-
export declare namespace GetProposalInput {
|
|
677
|
-
|
|
678
|
-
const filterSensitiveLog: (obj: GetProposalInput) => any;
|
|
679
|
-
}
|
|
680
492
|
export declare enum ProposalStatus {
|
|
681
493
|
ACTION_FAILED = "ACTION_FAILED",
|
|
682
494
|
APPROVED = "APPROVED",
|
|
@@ -715,18 +527,10 @@ export interface Proposal {
|
|
|
715
527
|
|
|
716
528
|
Arn?: string;
|
|
717
529
|
}
|
|
718
|
-
export declare namespace Proposal {
|
|
719
|
-
|
|
720
|
-
const filterSensitiveLog: (obj: Proposal) => any;
|
|
721
|
-
}
|
|
722
530
|
export interface GetProposalOutput {
|
|
723
531
|
|
|
724
532
|
Proposal?: Proposal;
|
|
725
533
|
}
|
|
726
|
-
export declare namespace GetProposalOutput {
|
|
727
|
-
|
|
728
|
-
const filterSensitiveLog: (obj: GetProposalOutput) => any;
|
|
729
|
-
}
|
|
730
534
|
|
|
731
535
|
export declare class IllegalActionException extends __BaseException {
|
|
732
536
|
readonly name: "IllegalActionException";
|
|
@@ -754,10 +558,6 @@ export interface NetworkSummary {
|
|
|
754
558
|
|
|
755
559
|
Arn?: string;
|
|
756
560
|
}
|
|
757
|
-
export declare namespace NetworkSummary {
|
|
758
|
-
|
|
759
|
-
const filterSensitiveLog: (obj: NetworkSummary) => any;
|
|
760
|
-
}
|
|
761
561
|
export declare enum InvitationStatus {
|
|
762
562
|
ACCEPTED = "ACCEPTED",
|
|
763
563
|
ACCEPTING = "ACCEPTING",
|
|
@@ -780,30 +580,18 @@ export interface Invitation {
|
|
|
780
580
|
|
|
781
581
|
Arn?: string;
|
|
782
582
|
}
|
|
783
|
-
export declare namespace Invitation {
|
|
784
|
-
|
|
785
|
-
const filterSensitiveLog: (obj: Invitation) => any;
|
|
786
|
-
}
|
|
787
583
|
export interface ListInvitationsInput {
|
|
788
584
|
|
|
789
585
|
MaxResults?: number;
|
|
790
586
|
|
|
791
587
|
NextToken?: string;
|
|
792
588
|
}
|
|
793
|
-
export declare namespace ListInvitationsInput {
|
|
794
|
-
|
|
795
|
-
const filterSensitiveLog: (obj: ListInvitationsInput) => any;
|
|
796
|
-
}
|
|
797
589
|
export interface ListInvitationsOutput {
|
|
798
590
|
|
|
799
591
|
Invitations?: Invitation[];
|
|
800
592
|
|
|
801
593
|
NextToken?: string;
|
|
802
594
|
}
|
|
803
|
-
export declare namespace ListInvitationsOutput {
|
|
804
|
-
|
|
805
|
-
const filterSensitiveLog: (obj: ListInvitationsOutput) => any;
|
|
806
|
-
}
|
|
807
595
|
export interface ListMembersInput {
|
|
808
596
|
|
|
809
597
|
NetworkId: string | undefined;
|
|
@@ -818,10 +606,6 @@ export interface ListMembersInput {
|
|
|
818
606
|
|
|
819
607
|
NextToken?: string;
|
|
820
608
|
}
|
|
821
|
-
export declare namespace ListMembersInput {
|
|
822
|
-
|
|
823
|
-
const filterSensitiveLog: (obj: ListMembersInput) => any;
|
|
824
|
-
}
|
|
825
609
|
|
|
826
610
|
export interface MemberSummary {
|
|
827
611
|
|
|
@@ -839,20 +623,12 @@ export interface MemberSummary {
|
|
|
839
623
|
|
|
840
624
|
Arn?: string;
|
|
841
625
|
}
|
|
842
|
-
export declare namespace MemberSummary {
|
|
843
|
-
|
|
844
|
-
const filterSensitiveLog: (obj: MemberSummary) => any;
|
|
845
|
-
}
|
|
846
626
|
export interface ListMembersOutput {
|
|
847
627
|
|
|
848
628
|
Members?: MemberSummary[];
|
|
849
629
|
|
|
850
630
|
NextToken?: string;
|
|
851
631
|
}
|
|
852
|
-
export declare namespace ListMembersOutput {
|
|
853
|
-
|
|
854
|
-
const filterSensitiveLog: (obj: ListMembersOutput) => any;
|
|
855
|
-
}
|
|
856
632
|
export interface ListNetworksInput {
|
|
857
633
|
|
|
858
634
|
Name?: string;
|
|
@@ -865,20 +641,12 @@ export interface ListNetworksInput {
|
|
|
865
641
|
|
|
866
642
|
NextToken?: string;
|
|
867
643
|
}
|
|
868
|
-
export declare namespace ListNetworksInput {
|
|
869
|
-
|
|
870
|
-
const filterSensitiveLog: (obj: ListNetworksInput) => any;
|
|
871
|
-
}
|
|
872
644
|
export interface ListNetworksOutput {
|
|
873
645
|
|
|
874
646
|
Networks?: NetworkSummary[];
|
|
875
647
|
|
|
876
648
|
NextToken?: string;
|
|
877
649
|
}
|
|
878
|
-
export declare namespace ListNetworksOutput {
|
|
879
|
-
|
|
880
|
-
const filterSensitiveLog: (obj: ListNetworksOutput) => any;
|
|
881
|
-
}
|
|
882
650
|
export interface ListNodesInput {
|
|
883
651
|
|
|
884
652
|
NetworkId: string | undefined;
|
|
@@ -891,10 +659,6 @@ export interface ListNodesInput {
|
|
|
891
659
|
|
|
892
660
|
NextToken?: string;
|
|
893
661
|
}
|
|
894
|
-
export declare namespace ListNodesInput {
|
|
895
|
-
|
|
896
|
-
const filterSensitiveLog: (obj: ListNodesInput) => any;
|
|
897
|
-
}
|
|
898
662
|
|
|
899
663
|
export interface NodeSummary {
|
|
900
664
|
|
|
@@ -910,20 +674,12 @@ export interface NodeSummary {
|
|
|
910
674
|
|
|
911
675
|
Arn?: string;
|
|
912
676
|
}
|
|
913
|
-
export declare namespace NodeSummary {
|
|
914
|
-
|
|
915
|
-
const filterSensitiveLog: (obj: NodeSummary) => any;
|
|
916
|
-
}
|
|
917
677
|
export interface ListNodesOutput {
|
|
918
678
|
|
|
919
679
|
Nodes?: NodeSummary[];
|
|
920
680
|
|
|
921
681
|
NextToken?: string;
|
|
922
682
|
}
|
|
923
|
-
export declare namespace ListNodesOutput {
|
|
924
|
-
|
|
925
|
-
const filterSensitiveLog: (obj: ListNodesOutput) => any;
|
|
926
|
-
}
|
|
927
683
|
export interface ListProposalsInput {
|
|
928
684
|
|
|
929
685
|
NetworkId: string | undefined;
|
|
@@ -932,10 +688,6 @@ export interface ListProposalsInput {
|
|
|
932
688
|
|
|
933
689
|
NextToken?: string;
|
|
934
690
|
}
|
|
935
|
-
export declare namespace ListProposalsInput {
|
|
936
|
-
|
|
937
|
-
const filterSensitiveLog: (obj: ListProposalsInput) => any;
|
|
938
|
-
}
|
|
939
691
|
|
|
940
692
|
export interface ProposalSummary {
|
|
941
693
|
|
|
@@ -955,20 +707,12 @@ export interface ProposalSummary {
|
|
|
955
707
|
|
|
956
708
|
Arn?: string;
|
|
957
709
|
}
|
|
958
|
-
export declare namespace ProposalSummary {
|
|
959
|
-
|
|
960
|
-
const filterSensitiveLog: (obj: ProposalSummary) => any;
|
|
961
|
-
}
|
|
962
710
|
export interface ListProposalsOutput {
|
|
963
711
|
|
|
964
712
|
Proposals?: ProposalSummary[];
|
|
965
713
|
|
|
966
714
|
NextToken?: string;
|
|
967
715
|
}
|
|
968
|
-
export declare namespace ListProposalsOutput {
|
|
969
|
-
|
|
970
|
-
const filterSensitiveLog: (obj: ListProposalsOutput) => any;
|
|
971
|
-
}
|
|
972
716
|
export interface ListProposalVotesInput {
|
|
973
717
|
|
|
974
718
|
NetworkId: string | undefined;
|
|
@@ -979,10 +723,6 @@ export interface ListProposalVotesInput {
|
|
|
979
723
|
|
|
980
724
|
NextToken?: string;
|
|
981
725
|
}
|
|
982
|
-
export declare namespace ListProposalVotesInput {
|
|
983
|
-
|
|
984
|
-
const filterSensitiveLog: (obj: ListProposalVotesInput) => any;
|
|
985
|
-
}
|
|
986
726
|
export declare enum VoteValue {
|
|
987
727
|
NO = "NO",
|
|
988
728
|
YES = "YES"
|
|
@@ -996,82 +736,42 @@ export interface VoteSummary {
|
|
|
996
736
|
|
|
997
737
|
MemberId?: string;
|
|
998
738
|
}
|
|
999
|
-
export declare namespace VoteSummary {
|
|
1000
|
-
|
|
1001
|
-
const filterSensitiveLog: (obj: VoteSummary) => any;
|
|
1002
|
-
}
|
|
1003
739
|
export interface ListProposalVotesOutput {
|
|
1004
740
|
|
|
1005
741
|
ProposalVotes?: VoteSummary[];
|
|
1006
742
|
|
|
1007
743
|
NextToken?: string;
|
|
1008
744
|
}
|
|
1009
|
-
export declare namespace ListProposalVotesOutput {
|
|
1010
|
-
|
|
1011
|
-
const filterSensitiveLog: (obj: ListProposalVotesOutput) => any;
|
|
1012
|
-
}
|
|
1013
745
|
export interface ListTagsForResourceRequest {
|
|
1014
746
|
|
|
1015
747
|
ResourceArn: string | undefined;
|
|
1016
748
|
}
|
|
1017
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1018
|
-
|
|
1019
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1020
|
-
}
|
|
1021
749
|
export interface ListTagsForResourceResponse {
|
|
1022
750
|
|
|
1023
751
|
Tags?: Record<string, string>;
|
|
1024
752
|
}
|
|
1025
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1026
|
-
|
|
1027
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1028
|
-
}
|
|
1029
753
|
export interface RejectInvitationInput {
|
|
1030
754
|
|
|
1031
755
|
InvitationId: string | undefined;
|
|
1032
756
|
}
|
|
1033
|
-
export declare namespace RejectInvitationInput {
|
|
1034
|
-
|
|
1035
|
-
const filterSensitiveLog: (obj: RejectInvitationInput) => any;
|
|
1036
|
-
}
|
|
1037
757
|
export interface RejectInvitationOutput {
|
|
1038
758
|
}
|
|
1039
|
-
export declare namespace RejectInvitationOutput {
|
|
1040
|
-
|
|
1041
|
-
const filterSensitiveLog: (obj: RejectInvitationOutput) => any;
|
|
1042
|
-
}
|
|
1043
759
|
export interface TagResourceRequest {
|
|
1044
760
|
|
|
1045
761
|
ResourceArn: string | undefined;
|
|
1046
762
|
|
|
1047
763
|
Tags: Record<string, string> | undefined;
|
|
1048
764
|
}
|
|
1049
|
-
export declare namespace TagResourceRequest {
|
|
1050
|
-
|
|
1051
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1052
|
-
}
|
|
1053
765
|
export interface TagResourceResponse {
|
|
1054
766
|
}
|
|
1055
|
-
export declare namespace TagResourceResponse {
|
|
1056
|
-
|
|
1057
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1058
|
-
}
|
|
1059
767
|
export interface UntagResourceRequest {
|
|
1060
768
|
|
|
1061
769
|
ResourceArn: string | undefined;
|
|
1062
770
|
|
|
1063
771
|
TagKeys: string[] | undefined;
|
|
1064
772
|
}
|
|
1065
|
-
export declare namespace UntagResourceRequest {
|
|
1066
|
-
|
|
1067
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1068
|
-
}
|
|
1069
773
|
export interface UntagResourceResponse {
|
|
1070
774
|
}
|
|
1071
|
-
export declare namespace UntagResourceResponse {
|
|
1072
|
-
|
|
1073
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1074
|
-
}
|
|
1075
775
|
export interface UpdateMemberInput {
|
|
1076
776
|
|
|
1077
777
|
NetworkId: string | undefined;
|
|
@@ -1080,16 +780,8 @@ export interface UpdateMemberInput {
|
|
|
1080
780
|
|
|
1081
781
|
LogPublishingConfiguration?: MemberLogPublishingConfiguration;
|
|
1082
782
|
}
|
|
1083
|
-
export declare namespace UpdateMemberInput {
|
|
1084
|
-
|
|
1085
|
-
const filterSensitiveLog: (obj: UpdateMemberInput) => any;
|
|
1086
|
-
}
|
|
1087
783
|
export interface UpdateMemberOutput {
|
|
1088
784
|
}
|
|
1089
|
-
export declare namespace UpdateMemberOutput {
|
|
1090
|
-
|
|
1091
|
-
const filterSensitiveLog: (obj: UpdateMemberOutput) => any;
|
|
1092
|
-
}
|
|
1093
785
|
export interface UpdateNodeInput {
|
|
1094
786
|
|
|
1095
787
|
NetworkId: string | undefined;
|
|
@@ -1100,16 +792,8 @@ export interface UpdateNodeInput {
|
|
|
1100
792
|
|
|
1101
793
|
LogPublishingConfiguration?: NodeLogPublishingConfiguration;
|
|
1102
794
|
}
|
|
1103
|
-
export declare namespace UpdateNodeInput {
|
|
1104
|
-
|
|
1105
|
-
const filterSensitiveLog: (obj: UpdateNodeInput) => any;
|
|
1106
|
-
}
|
|
1107
795
|
export interface UpdateNodeOutput {
|
|
1108
796
|
}
|
|
1109
|
-
export declare namespace UpdateNodeOutput {
|
|
1110
|
-
|
|
1111
|
-
const filterSensitiveLog: (obj: UpdateNodeOutput) => any;
|
|
1112
|
-
}
|
|
1113
797
|
export interface VoteOnProposalInput {
|
|
1114
798
|
|
|
1115
799
|
NetworkId: string | undefined;
|
|
@@ -1120,13 +804,167 @@ export interface VoteOnProposalInput {
|
|
|
1120
804
|
|
|
1121
805
|
Vote: VoteValue | string | undefined;
|
|
1122
806
|
}
|
|
1123
|
-
export declare namespace VoteOnProposalInput {
|
|
1124
|
-
|
|
1125
|
-
const filterSensitiveLog: (obj: VoteOnProposalInput) => any;
|
|
1126
|
-
}
|
|
1127
807
|
export interface VoteOnProposalOutput {
|
|
1128
808
|
}
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
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;
|