@aws-sdk/client-managedblockchain 3.948.0 → 3.953.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/dist-cjs/index.js +437 -287
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateAccessorCommand.js +2 -2
- package/dist-es/commands/CreateMemberCommand.js +2 -2
- package/dist-es/commands/CreateNetworkCommand.js +2 -2
- package/dist-es/commands/CreateNodeCommand.js +2 -2
- package/dist-es/commands/CreateProposalCommand.js +2 -2
- package/dist-es/commands/DeleteAccessorCommand.js +2 -2
- package/dist-es/commands/DeleteMemberCommand.js +2 -2
- package/dist-es/commands/DeleteNodeCommand.js +2 -2
- package/dist-es/commands/GetAccessorCommand.js +2 -2
- package/dist-es/commands/GetMemberCommand.js +2 -2
- package/dist-es/commands/GetNetworkCommand.js +2 -2
- package/dist-es/commands/GetNodeCommand.js +2 -2
- package/dist-es/commands/GetProposalCommand.js +2 -2
- package/dist-es/commands/ListAccessorsCommand.js +2 -2
- package/dist-es/commands/ListInvitationsCommand.js +2 -2
- package/dist-es/commands/ListMembersCommand.js +2 -2
- package/dist-es/commands/ListNetworksCommand.js +2 -2
- package/dist-es/commands/ListNodesCommand.js +2 -2
- package/dist-es/commands/ListProposalVotesCommand.js +2 -2
- package/dist-es/commands/ListProposalsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RejectInvitationCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateMemberCommand.js +2 -2
- package/dist-es/commands/UpdateNodeCommand.js +2 -2
- package/dist-es/commands/VoteOnProposalCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +254 -233
- package/dist-types/ManagedBlockchainClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +130 -143
- package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +129 -144
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class ManagedBlockchainClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class ManagedBlockchainServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, ManagedBlockchainServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends ManagedBlockchainServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ManagedBlockch
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class InternalServiceErrorException extends ManagedBlockchainServiceException {
|
|
135
135
|
name = "InternalServiceErrorException";
|
|
136
136
|
$fault = "server";
|
|
137
137
|
constructor(opts) {
|
|
@@ -142,8 +142,8 @@ let InternalServiceErrorException$1 = class InternalServiceErrorException extend
|
|
|
142
142
|
});
|
|
143
143
|
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
144
144
|
}
|
|
145
|
-
}
|
|
146
|
-
|
|
145
|
+
}
|
|
146
|
+
class InvalidRequestException extends ManagedBlockchainServiceException {
|
|
147
147
|
name = "InvalidRequestException";
|
|
148
148
|
$fault = "client";
|
|
149
149
|
Message;
|
|
@@ -156,8 +156,8 @@ let InvalidRequestException$1 = class InvalidRequestException extends ManagedBlo
|
|
|
156
156
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
157
157
|
this.Message = opts.Message;
|
|
158
158
|
}
|
|
159
|
-
}
|
|
160
|
-
|
|
159
|
+
}
|
|
160
|
+
class ResourceAlreadyExistsException extends ManagedBlockchainServiceException {
|
|
161
161
|
name = "ResourceAlreadyExistsException";
|
|
162
162
|
$fault = "client";
|
|
163
163
|
Message;
|
|
@@ -170,8 +170,8 @@ let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException exte
|
|
|
170
170
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
171
171
|
this.Message = opts.Message;
|
|
172
172
|
}
|
|
173
|
-
}
|
|
174
|
-
|
|
173
|
+
}
|
|
174
|
+
class ResourceLimitExceededException extends ManagedBlockchainServiceException {
|
|
175
175
|
name = "ResourceLimitExceededException";
|
|
176
176
|
$fault = "client";
|
|
177
177
|
Message;
|
|
@@ -184,8 +184,8 @@ let ResourceLimitExceededException$1 = class ResourceLimitExceededException exte
|
|
|
184
184
|
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
185
185
|
this.Message = opts.Message;
|
|
186
186
|
}
|
|
187
|
-
}
|
|
188
|
-
|
|
187
|
+
}
|
|
188
|
+
class ThrottlingException extends ManagedBlockchainServiceException {
|
|
189
189
|
name = "ThrottlingException";
|
|
190
190
|
$fault = "client";
|
|
191
191
|
constructor(opts) {
|
|
@@ -196,8 +196,8 @@ let ThrottlingException$1 = class ThrottlingException extends ManagedBlockchainS
|
|
|
196
196
|
});
|
|
197
197
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
198
198
|
}
|
|
199
|
-
}
|
|
200
|
-
|
|
199
|
+
}
|
|
200
|
+
class TooManyTagsException extends ManagedBlockchainServiceException {
|
|
201
201
|
name = "TooManyTagsException";
|
|
202
202
|
$fault = "client";
|
|
203
203
|
Message;
|
|
@@ -212,8 +212,8 @@ let TooManyTagsException$1 = class TooManyTagsException extends ManagedBlockchai
|
|
|
212
212
|
this.Message = opts.Message;
|
|
213
213
|
this.ResourceName = opts.ResourceName;
|
|
214
214
|
}
|
|
215
|
-
}
|
|
216
|
-
|
|
215
|
+
}
|
|
216
|
+
class ResourceNotFoundException extends ManagedBlockchainServiceException {
|
|
217
217
|
name = "ResourceNotFoundException";
|
|
218
218
|
$fault = "client";
|
|
219
219
|
Message;
|
|
@@ -228,8 +228,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Manage
|
|
|
228
228
|
this.Message = opts.Message;
|
|
229
229
|
this.ResourceName = opts.ResourceName;
|
|
230
230
|
}
|
|
231
|
-
}
|
|
232
|
-
|
|
231
|
+
}
|
|
232
|
+
class ResourceNotReadyException extends ManagedBlockchainServiceException {
|
|
233
233
|
name = "ResourceNotReadyException";
|
|
234
234
|
$fault = "client";
|
|
235
235
|
Message;
|
|
@@ -242,8 +242,8 @@ let ResourceNotReadyException$1 = class ResourceNotReadyException extends Manage
|
|
|
242
242
|
Object.setPrototypeOf(this, ResourceNotReadyException.prototype);
|
|
243
243
|
this.Message = opts.Message;
|
|
244
244
|
}
|
|
245
|
-
}
|
|
246
|
-
|
|
245
|
+
}
|
|
246
|
+
class IllegalActionException extends ManagedBlockchainServiceException {
|
|
247
247
|
name = "IllegalActionException";
|
|
248
248
|
$fault = "client";
|
|
249
249
|
Message;
|
|
@@ -256,7 +256,7 @@ let IllegalActionException$1 = class IllegalActionException extends ManagedBlock
|
|
|
256
256
|
Object.setPrototypeOf(this, IllegalActionException.prototype);
|
|
257
257
|
this.Message = opts.Message;
|
|
258
258
|
}
|
|
259
|
-
}
|
|
259
|
+
}
|
|
260
260
|
|
|
261
261
|
const _A = "Accessor";
|
|
262
262
|
const _ADE = "AccessDeniedException";
|
|
@@ -488,9 +488,9 @@ const _st = "status";
|
|
|
488
488
|
const _tK = "tagKeys";
|
|
489
489
|
const n0 = "com.amazonaws.managedblockchain";
|
|
490
490
|
var PasswordString = [0, n0, _PS, 8, 0];
|
|
491
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
492
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
493
|
-
var Accessor = [
|
|
491
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
492
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
493
|
+
var Accessor$ = [
|
|
494
494
|
3,
|
|
495
495
|
n0,
|
|
496
496
|
_A,
|
|
@@ -498,9 +498,9 @@ var Accessor = [
|
|
|
498
498
|
[_I, _T, _BT, _S, _CD, _Ar, _Ta, _NT],
|
|
499
499
|
[0, 0, 0, 0, 5, 0, 128 | 0, 0],
|
|
500
500
|
];
|
|
501
|
-
var AccessorSummary = [3, n0, _AS, 0, [_I, _T, _S, _CD, _Ar, _NT], [0, 0, 0, 5, 0, 0]];
|
|
502
|
-
var ApprovalThresholdPolicy = [3, n0, _ATP, 0, [_TP, _PDIH, _TC], [1, 1, 0]];
|
|
503
|
-
var CreateAccessorInput = [
|
|
501
|
+
var AccessorSummary$ = [3, n0, _AS, 0, [_I, _T, _S, _CD, _Ar, _NT], [0, 0, 0, 5, 0, 0]];
|
|
502
|
+
var ApprovalThresholdPolicy$ = [3, n0, _ATP, 0, [_TP, _PDIH, _TC], [1, 1, 0]];
|
|
503
|
+
var CreateAccessorInput$ = [
|
|
504
504
|
3,
|
|
505
505
|
n0,
|
|
506
506
|
_CAI,
|
|
@@ -508,17 +508,17 @@ var CreateAccessorInput = [
|
|
|
508
508
|
[_CRT, _AT, _Ta, _NT],
|
|
509
509
|
[[0, 4], 0, 128 | 0, 0],
|
|
510
510
|
];
|
|
511
|
-
var CreateAccessorOutput = [3, n0, _CAO, 0, [_AI, _BT, _NT], [0, 0, 0]];
|
|
512
|
-
var CreateMemberInput = [
|
|
511
|
+
var CreateAccessorOutput$ = [3, n0, _CAO, 0, [_AI, _BT, _NT], [0, 0, 0]];
|
|
512
|
+
var CreateMemberInput$ = [
|
|
513
513
|
3,
|
|
514
514
|
n0,
|
|
515
515
|
_CMI,
|
|
516
516
|
0,
|
|
517
517
|
[_CRT, _II, _NI, _MC],
|
|
518
|
-
[[0, 4], 0, [0, 1], [() => MemberConfiguration
|
|
518
|
+
[[0, 4], 0, [0, 1], [() => MemberConfiguration$, 0]],
|
|
519
519
|
];
|
|
520
|
-
var CreateMemberOutput = [3, n0, _CMO, 0, [_MI], [0]];
|
|
521
|
-
var CreateNetworkInput = [
|
|
520
|
+
var CreateMemberOutput$ = [3, n0, _CMO, 0, [_MI], [0]];
|
|
521
|
+
var CreateNetworkInput$ = [
|
|
522
522
|
3,
|
|
523
523
|
n0,
|
|
524
524
|
_CNI,
|
|
@@ -530,34 +530,34 @@ var CreateNetworkInput = [
|
|
|
530
530
|
0,
|
|
531
531
|
0,
|
|
532
532
|
0,
|
|
533
|
-
() => NetworkFrameworkConfiguration
|
|
534
|
-
() => VotingPolicy
|
|
535
|
-
[() => MemberConfiguration
|
|
533
|
+
() => NetworkFrameworkConfiguration$,
|
|
534
|
+
() => VotingPolicy$,
|
|
535
|
+
[() => MemberConfiguration$, 0],
|
|
536
536
|
128 | 0,
|
|
537
537
|
],
|
|
538
538
|
];
|
|
539
|
-
var CreateNetworkOutput = [3, n0, _CNO, 0, [_NI, _MI], [0, 0]];
|
|
540
|
-
var CreateNodeInput = [
|
|
539
|
+
var CreateNetworkOutput$ = [3, n0, _CNO, 0, [_NI, _MI], [0, 0]];
|
|
540
|
+
var CreateNodeInput$ = [
|
|
541
541
|
3,
|
|
542
542
|
n0,
|
|
543
543
|
_CNIr,
|
|
544
544
|
0,
|
|
545
545
|
[_CRT, _NI, _MI, _NC, _Ta],
|
|
546
|
-
[[0, 4], [0, 1], 0, () => NodeConfiguration
|
|
546
|
+
[[0, 4], [0, 1], 0, () => NodeConfiguration$, 128 | 0],
|
|
547
547
|
];
|
|
548
|
-
var CreateNodeOutput = [3, n0, _CNOr, 0, [_NIo], [0]];
|
|
549
|
-
var CreateProposalInput = [
|
|
548
|
+
var CreateNodeOutput$ = [3, n0, _CNOr, 0, [_NIo], [0]];
|
|
549
|
+
var CreateProposalInput$ = [
|
|
550
550
|
3,
|
|
551
551
|
n0,
|
|
552
552
|
_CPI,
|
|
553
553
|
0,
|
|
554
554
|
[_CRT, _NI, _MI, _Ac, _D, _Ta],
|
|
555
|
-
[[0, 4], [0, 1], 0, () => ProposalActions
|
|
555
|
+
[[0, 4], [0, 1], 0, () => ProposalActions$, 0, 128 | 0],
|
|
556
556
|
];
|
|
557
|
-
var CreateProposalOutput = [3, n0, _CPO, 0, [_PI], [0]];
|
|
558
|
-
var DeleteAccessorInput = [3, n0, _DAI, 0, [_AI], [[0, 1]]];
|
|
559
|
-
var DeleteAccessorOutput = [3, n0, _DAO, 0, [], []];
|
|
560
|
-
var DeleteMemberInput = [
|
|
557
|
+
var CreateProposalOutput$ = [3, n0, _CPO, 0, [_PI], [0]];
|
|
558
|
+
var DeleteAccessorInput$ = [3, n0, _DAI, 0, [_AI], [[0, 1]]];
|
|
559
|
+
var DeleteAccessorOutput$ = [3, n0, _DAO, 0, [], []];
|
|
560
|
+
var DeleteMemberInput$ = [
|
|
561
561
|
3,
|
|
562
562
|
n0,
|
|
563
563
|
_DMI,
|
|
@@ -568,8 +568,8 @@ var DeleteMemberInput = [
|
|
|
568
568
|
[0, 1],
|
|
569
569
|
],
|
|
570
570
|
];
|
|
571
|
-
var DeleteMemberOutput = [3, n0, _DMO, 0, [], []];
|
|
572
|
-
var DeleteNodeInput = [
|
|
571
|
+
var DeleteMemberOutput$ = [3, n0, _DMO, 0, [], []];
|
|
572
|
+
var DeleteNodeInput$ = [
|
|
573
573
|
3,
|
|
574
574
|
n0,
|
|
575
575
|
_DNI,
|
|
@@ -581,10 +581,10 @@ var DeleteNodeInput = [
|
|
|
581
581
|
[0, 1],
|
|
582
582
|
],
|
|
583
583
|
];
|
|
584
|
-
var DeleteNodeOutput = [3, n0, _DNO, 0, [], []];
|
|
585
|
-
var GetAccessorInput = [3, n0, _GAI, 0, [_AI], [[0, 1]]];
|
|
586
|
-
var GetAccessorOutput = [3, n0, _GAO, 0, [_A], [() => Accessor]];
|
|
587
|
-
var GetMemberInput = [
|
|
584
|
+
var DeleteNodeOutput$ = [3, n0, _DNO, 0, [], []];
|
|
585
|
+
var GetAccessorInput$ = [3, n0, _GAI, 0, [_AI], [[0, 1]]];
|
|
586
|
+
var GetAccessorOutput$ = [3, n0, _GAO, 0, [_A], [() => Accessor$]];
|
|
587
|
+
var GetMemberInput$ = [
|
|
588
588
|
3,
|
|
589
589
|
n0,
|
|
590
590
|
_GMI,
|
|
@@ -595,10 +595,10 @@ var GetMemberInput = [
|
|
|
595
595
|
[0, 1],
|
|
596
596
|
],
|
|
597
597
|
];
|
|
598
|
-
var GetMemberOutput = [3, n0, _GMO, 0, [_Me], [() => Member]];
|
|
599
|
-
var GetNetworkInput = [3, n0, _GNI, 0, [_NI], [[0, 1]]];
|
|
600
|
-
var GetNetworkOutput = [3, n0, _GNO, 0, [_Ne], [() => Network]];
|
|
601
|
-
var GetNodeInput = [
|
|
598
|
+
var GetMemberOutput$ = [3, n0, _GMO, 0, [_Me], [() => Member$]];
|
|
599
|
+
var GetNetworkInput$ = [3, n0, _GNI, 0, [_NI], [[0, 1]]];
|
|
600
|
+
var GetNetworkOutput$ = [3, n0, _GNO, 0, [_Ne], [() => Network$]];
|
|
601
|
+
var GetNodeInput$ = [
|
|
602
602
|
3,
|
|
603
603
|
n0,
|
|
604
604
|
_GNIe,
|
|
@@ -610,8 +610,8 @@ var GetNodeInput = [
|
|
|
610
610
|
[0, 1],
|
|
611
611
|
],
|
|
612
612
|
];
|
|
613
|
-
var GetNodeOutput = [3, n0, _GNOe, 0, [_No], [() => Node]];
|
|
614
|
-
var GetProposalInput = [
|
|
613
|
+
var GetNodeOutput$ = [3, n0, _GNOe, 0, [_No], [() => Node$]];
|
|
614
|
+
var GetProposalInput$ = [
|
|
615
615
|
3,
|
|
616
616
|
n0,
|
|
617
617
|
_GPI,
|
|
@@ -622,23 +622,23 @@ var GetProposalInput = [
|
|
|
622
622
|
[0, 1],
|
|
623
623
|
],
|
|
624
624
|
];
|
|
625
|
-
var GetProposalOutput = [3, n0, _GPO, 0, [_P], [() => Proposal]];
|
|
626
|
-
var IllegalActionException = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
627
|
-
schema.TypeRegistry.for(n0).registerError(IllegalActionException
|
|
628
|
-
var InternalServiceErrorException = [-3, n0, _ISEE, { [_e]: _s, [_hE]: 500 }, [], []];
|
|
629
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException
|
|
630
|
-
var InvalidRequestException = [-3, n0, _IRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
631
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException
|
|
632
|
-
var Invitation = [
|
|
625
|
+
var GetProposalOutput$ = [3, n0, _GPO, 0, [_P], [() => Proposal$]];
|
|
626
|
+
var IllegalActionException$ = [-3, n0, _IAE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
627
|
+
schema.TypeRegistry.for(n0).registerError(IllegalActionException$, IllegalActionException);
|
|
628
|
+
var InternalServiceErrorException$ = [-3, n0, _ISEE, { [_e]: _s, [_hE]: 500 }, [], []];
|
|
629
|
+
schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
630
|
+
var InvalidRequestException$ = [-3, n0, _IRE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
631
|
+
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
632
|
+
var Invitation$ = [
|
|
633
633
|
3,
|
|
634
634
|
n0,
|
|
635
635
|
_In,
|
|
636
636
|
0,
|
|
637
637
|
[_II, _CD, _ED, _S, _NS, _Ar],
|
|
638
|
-
[0, 5, 5, 0, () => NetworkSummary
|
|
638
|
+
[0, 5, 5, 0, () => NetworkSummary$, 0],
|
|
639
639
|
];
|
|
640
|
-
var InviteAction = [3, n0, _IA, 0, [_Pr], [0]];
|
|
641
|
-
var ListAccessorsInput = [
|
|
640
|
+
var InviteAction$ = [3, n0, _IA, 0, [_Pr], [0]];
|
|
641
|
+
var ListAccessorsInput$ = [
|
|
642
642
|
3,
|
|
643
643
|
n0,
|
|
644
644
|
_LAI,
|
|
@@ -650,8 +650,8 @@ var ListAccessorsInput = [
|
|
|
650
650
|
[0, { [_hQ]: _nTe }],
|
|
651
651
|
],
|
|
652
652
|
];
|
|
653
|
-
var ListAccessorsOutput = [3, n0, _LAO, 0, [_Acc, _NTe], [() => AccessorSummaryList, 0]];
|
|
654
|
-
var ListInvitationsInput = [
|
|
653
|
+
var ListAccessorsOutput$ = [3, n0, _LAO, 0, [_Acc, _NTe], [() => AccessorSummaryList, 0]];
|
|
654
|
+
var ListInvitationsInput$ = [
|
|
655
655
|
3,
|
|
656
656
|
n0,
|
|
657
657
|
_LII,
|
|
@@ -662,8 +662,8 @@ var ListInvitationsInput = [
|
|
|
662
662
|
[0, { [_hQ]: _nT }],
|
|
663
663
|
],
|
|
664
664
|
];
|
|
665
|
-
var ListInvitationsOutput = [3, n0, _LIO, 0, [_Inv, _NTe], [() => InvitationList, 0]];
|
|
666
|
-
var ListMembersInput = [
|
|
665
|
+
var ListInvitationsOutput$ = [3, n0, _LIO, 0, [_Inv, _NTe], [() => InvitationList, 0]];
|
|
666
|
+
var ListMembersInput$ = [
|
|
667
667
|
3,
|
|
668
668
|
n0,
|
|
669
669
|
_LMI,
|
|
@@ -678,8 +678,8 @@ var ListMembersInput = [
|
|
|
678
678
|
[0, { [_hQ]: _nT }],
|
|
679
679
|
],
|
|
680
680
|
];
|
|
681
|
-
var ListMembersOutput = [3, n0, _LMO, 0, [_Mem, _NTe], [() => MemberSummaryList, 0]];
|
|
682
|
-
var ListNetworksInput = [
|
|
681
|
+
var ListMembersOutput$ = [3, n0, _LMO, 0, [_Mem, _NTe], [() => MemberSummaryList, 0]];
|
|
682
|
+
var ListNetworksInput$ = [
|
|
683
683
|
3,
|
|
684
684
|
n0,
|
|
685
685
|
_LNI,
|
|
@@ -693,8 +693,8 @@ var ListNetworksInput = [
|
|
|
693
693
|
[0, { [_hQ]: _nT }],
|
|
694
694
|
],
|
|
695
695
|
];
|
|
696
|
-
var ListNetworksOutput = [3, n0, _LNO, 0, [_Net, _NTe], [() => NetworkSummaryList, 0]];
|
|
697
|
-
var ListNodesInput = [
|
|
696
|
+
var ListNetworksOutput$ = [3, n0, _LNO, 0, [_Net, _NTe], [() => NetworkSummaryList, 0]];
|
|
697
|
+
var ListNodesInput$ = [
|
|
698
698
|
3,
|
|
699
699
|
n0,
|
|
700
700
|
_LNIi,
|
|
@@ -708,8 +708,8 @@ var ListNodesInput = [
|
|
|
708
708
|
[0, { [_hQ]: _nT }],
|
|
709
709
|
],
|
|
710
710
|
];
|
|
711
|
-
var ListNodesOutput = [3, n0, _LNOi, 0, [_Nod, _NTe], [() => NodeSummaryList, 0]];
|
|
712
|
-
var ListProposalsInput = [
|
|
711
|
+
var ListNodesOutput$ = [3, n0, _LNOi, 0, [_Nod, _NTe], [() => NodeSummaryList, 0]];
|
|
712
|
+
var ListProposalsInput$ = [
|
|
713
713
|
3,
|
|
714
714
|
n0,
|
|
715
715
|
_LPI,
|
|
@@ -721,8 +721,8 @@ var ListProposalsInput = [
|
|
|
721
721
|
[0, { [_hQ]: _nT }],
|
|
722
722
|
],
|
|
723
723
|
];
|
|
724
|
-
var ListProposalsOutput = [3, n0, _LPO, 0, [_Pro, _NTe], [() => ProposalSummaryList, 0]];
|
|
725
|
-
var ListProposalVotesInput = [
|
|
724
|
+
var ListProposalsOutput$ = [3, n0, _LPO, 0, [_Pro, _NTe], [() => ProposalSummaryList, 0]];
|
|
725
|
+
var ListProposalVotesInput$ = [
|
|
726
726
|
3,
|
|
727
727
|
n0,
|
|
728
728
|
_LPVI,
|
|
@@ -735,29 +735,36 @@ var ListProposalVotesInput = [
|
|
|
735
735
|
[0, { [_hQ]: _nT }],
|
|
736
736
|
],
|
|
737
737
|
];
|
|
738
|
-
var ListProposalVotesOutput = [
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
738
|
+
var ListProposalVotesOutput$ = [
|
|
739
|
+
3,
|
|
740
|
+
n0,
|
|
741
|
+
_LPVO,
|
|
742
|
+
0,
|
|
743
|
+
[_PV, _NTe],
|
|
744
|
+
[() => ProposalVoteList, 0],
|
|
745
|
+
];
|
|
746
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
747
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
|
|
748
|
+
var LogConfiguration$ = [3, n0, _LC, 0, [_E], [2]];
|
|
749
|
+
var LogConfigurations$ = [3, n0, _LCo, 0, [_C], [() => LogConfiguration$]];
|
|
750
|
+
var Member$ = [
|
|
744
751
|
3,
|
|
745
752
|
n0,
|
|
746
753
|
_Me,
|
|
747
754
|
0,
|
|
748
755
|
[_NI, _I, _N, _D, _FA, _LPC, _S, _CD, _Ta, _Ar, _KKA],
|
|
749
|
-
[0, 0, 0, 0, () => MemberFrameworkAttributes
|
|
756
|
+
[0, 0, 0, 0, () => MemberFrameworkAttributes$, () => MemberLogPublishingConfiguration$, 0, 5, 128 | 0, 0, 0],
|
|
750
757
|
];
|
|
751
|
-
var MemberConfiguration = [
|
|
758
|
+
var MemberConfiguration$ = [
|
|
752
759
|
3,
|
|
753
760
|
n0,
|
|
754
761
|
_MC,
|
|
755
762
|
0,
|
|
756
763
|
[_N, _D, _FC, _LPC, _Ta, _KKA],
|
|
757
|
-
[0, 0, [() => MemberFrameworkConfiguration
|
|
764
|
+
[0, 0, [() => MemberFrameworkConfiguration$, 0], () => MemberLogPublishingConfiguration$, 128 | 0, 0],
|
|
758
765
|
];
|
|
759
|
-
var MemberFabricAttributes = [3, n0, _MFA, 0, [_AU, _CE], [0, 0]];
|
|
760
|
-
var MemberFabricConfiguration = [
|
|
766
|
+
var MemberFabricAttributes$ = [3, n0, _MFA, 0, [_AU, _CE], [0, 0]];
|
|
767
|
+
var MemberFabricConfiguration$ = [
|
|
761
768
|
3,
|
|
762
769
|
n0,
|
|
763
770
|
_MFC,
|
|
@@ -765,32 +772,39 @@ var MemberFabricConfiguration = [
|
|
|
765
772
|
[_AU, _AP],
|
|
766
773
|
[0, [() => PasswordString, 0]],
|
|
767
774
|
];
|
|
768
|
-
var MemberFabricLogPublishingConfiguration = [
|
|
775
|
+
var MemberFabricLogPublishingConfiguration$ = [
|
|
769
776
|
3,
|
|
770
777
|
n0,
|
|
771
778
|
_MFLPC,
|
|
772
779
|
0,
|
|
773
780
|
[_CL],
|
|
774
|
-
[() => LogConfigurations],
|
|
781
|
+
[() => LogConfigurations$],
|
|
775
782
|
];
|
|
776
|
-
var MemberFrameworkAttributes = [
|
|
777
|
-
|
|
783
|
+
var MemberFrameworkAttributes$ = [
|
|
784
|
+
3,
|
|
785
|
+
n0,
|
|
786
|
+
_MFAe,
|
|
787
|
+
0,
|
|
788
|
+
[_Fa],
|
|
789
|
+
[() => MemberFabricAttributes$],
|
|
790
|
+
];
|
|
791
|
+
var MemberFrameworkConfiguration$ = [
|
|
778
792
|
3,
|
|
779
793
|
n0,
|
|
780
794
|
_MFCe,
|
|
781
795
|
0,
|
|
782
796
|
[_Fa],
|
|
783
|
-
[[() => MemberFabricConfiguration
|
|
797
|
+
[[() => MemberFabricConfiguration$, 0]],
|
|
784
798
|
];
|
|
785
|
-
var MemberLogPublishingConfiguration = [
|
|
799
|
+
var MemberLogPublishingConfiguration$ = [
|
|
786
800
|
3,
|
|
787
801
|
n0,
|
|
788
802
|
_MLPC,
|
|
789
803
|
0,
|
|
790
804
|
[_Fa],
|
|
791
|
-
[() => MemberFabricLogPublishingConfiguration],
|
|
805
|
+
[() => MemberFabricLogPublishingConfiguration$],
|
|
792
806
|
];
|
|
793
|
-
var MemberSummary = [
|
|
807
|
+
var MemberSummary$ = [
|
|
794
808
|
3,
|
|
795
809
|
n0,
|
|
796
810
|
_MS,
|
|
@@ -798,34 +812,34 @@ var MemberSummary = [
|
|
|
798
812
|
[_I, _N, _D, _S, _CD, _IO, _Ar],
|
|
799
813
|
[0, 0, 0, 0, 5, 2, 0],
|
|
800
814
|
];
|
|
801
|
-
var Network = [
|
|
815
|
+
var Network$ = [
|
|
802
816
|
3,
|
|
803
817
|
n0,
|
|
804
818
|
_Ne,
|
|
805
819
|
0,
|
|
806
820
|
[_I, _N, _D, _F, _FV, _FA, _VESN, _VP, _S, _CD, _Ta, _Ar],
|
|
807
|
-
[0, 0, 0, 0, 0, () => NetworkFrameworkAttributes
|
|
821
|
+
[0, 0, 0, 0, 0, () => NetworkFrameworkAttributes$, 0, () => VotingPolicy$, 0, 5, 128 | 0, 0],
|
|
808
822
|
];
|
|
809
|
-
var NetworkEthereumAttributes = [3, n0, _NEA, 0, [_CI], [0]];
|
|
810
|
-
var NetworkFabricAttributes = [3, n0, _NFA, 0, [_OSE, _Ed], [0, 0]];
|
|
811
|
-
var NetworkFabricConfiguration = [3, n0, _NFC, 0, [_Ed], [0]];
|
|
812
|
-
var NetworkFrameworkAttributes = [
|
|
823
|
+
var NetworkEthereumAttributes$ = [3, n0, _NEA, 0, [_CI], [0]];
|
|
824
|
+
var NetworkFabricAttributes$ = [3, n0, _NFA, 0, [_OSE, _Ed], [0, 0]];
|
|
825
|
+
var NetworkFabricConfiguration$ = [3, n0, _NFC, 0, [_Ed], [0]];
|
|
826
|
+
var NetworkFrameworkAttributes$ = [
|
|
813
827
|
3,
|
|
814
828
|
n0,
|
|
815
829
|
_NFAe,
|
|
816
830
|
0,
|
|
817
831
|
[_Fa, _Et],
|
|
818
|
-
[() => NetworkFabricAttributes
|
|
832
|
+
[() => NetworkFabricAttributes$, () => NetworkEthereumAttributes$],
|
|
819
833
|
];
|
|
820
|
-
var NetworkFrameworkConfiguration = [
|
|
834
|
+
var NetworkFrameworkConfiguration$ = [
|
|
821
835
|
3,
|
|
822
836
|
n0,
|
|
823
837
|
_NFCe,
|
|
824
838
|
0,
|
|
825
839
|
[_Fa],
|
|
826
|
-
[() => NetworkFabricConfiguration],
|
|
840
|
+
[() => NetworkFabricConfiguration$],
|
|
827
841
|
];
|
|
828
|
-
var NetworkSummary = [
|
|
842
|
+
var NetworkSummary$ = [
|
|
829
843
|
3,
|
|
830
844
|
n0,
|
|
831
845
|
_NS,
|
|
@@ -833,58 +847,58 @@ var NetworkSummary = [
|
|
|
833
847
|
[_I, _N, _D, _F, _FV, _S, _CD, _Ar],
|
|
834
848
|
[0, 0, 0, 0, 0, 0, 5, 0],
|
|
835
849
|
];
|
|
836
|
-
var Node = [
|
|
850
|
+
var Node$ = [
|
|
837
851
|
3,
|
|
838
852
|
n0,
|
|
839
853
|
_No,
|
|
840
854
|
0,
|
|
841
855
|
[_NI, _MI, _I, _IT, _AZ, _FA, _LPC, _SDB, _S, _CD, _Ta, _Ar, _KKA],
|
|
842
|
-
[0, 0, 0, 0, 0, () => NodeFrameworkAttributes
|
|
856
|
+
[0, 0, 0, 0, 0, () => NodeFrameworkAttributes$, () => NodeLogPublishingConfiguration$, 0, 0, 5, 128 | 0, 0, 0],
|
|
843
857
|
];
|
|
844
|
-
var NodeConfiguration = [
|
|
858
|
+
var NodeConfiguration$ = [
|
|
845
859
|
3,
|
|
846
860
|
n0,
|
|
847
861
|
_NC,
|
|
848
862
|
0,
|
|
849
863
|
[_IT, _AZ, _LPC, _SDB],
|
|
850
|
-
[0, 0, () => NodeLogPublishingConfiguration
|
|
864
|
+
[0, 0, () => NodeLogPublishingConfiguration$, 0],
|
|
851
865
|
];
|
|
852
|
-
var NodeEthereumAttributes = [3, n0, _NEAo, 0, [_HE, _WSE], [0, 0]];
|
|
853
|
-
var NodeFabricAttributes = [3, n0, _NFAo, 0, [_PE, _PEE], [0, 0]];
|
|
854
|
-
var NodeFabricLogPublishingConfiguration = [
|
|
866
|
+
var NodeEthereumAttributes$ = [3, n0, _NEAo, 0, [_HE, _WSE], [0, 0]];
|
|
867
|
+
var NodeFabricAttributes$ = [3, n0, _NFAo, 0, [_PE, _PEE], [0, 0]];
|
|
868
|
+
var NodeFabricLogPublishingConfiguration$ = [
|
|
855
869
|
3,
|
|
856
870
|
n0,
|
|
857
871
|
_NFLPC,
|
|
858
872
|
0,
|
|
859
873
|
[_CLh, _PL],
|
|
860
|
-
[() => LogConfigurations
|
|
874
|
+
[() => LogConfigurations$, () => LogConfigurations$],
|
|
861
875
|
];
|
|
862
|
-
var NodeFrameworkAttributes = [
|
|
876
|
+
var NodeFrameworkAttributes$ = [
|
|
863
877
|
3,
|
|
864
878
|
n0,
|
|
865
879
|
_NFAod,
|
|
866
880
|
0,
|
|
867
881
|
[_Fa, _Et],
|
|
868
|
-
[() => NodeFabricAttributes
|
|
882
|
+
[() => NodeFabricAttributes$, () => NodeEthereumAttributes$],
|
|
869
883
|
];
|
|
870
|
-
var NodeLogPublishingConfiguration = [
|
|
884
|
+
var NodeLogPublishingConfiguration$ = [
|
|
871
885
|
3,
|
|
872
886
|
n0,
|
|
873
887
|
_NLPC,
|
|
874
888
|
0,
|
|
875
889
|
[_Fa],
|
|
876
|
-
[() => NodeFabricLogPublishingConfiguration],
|
|
890
|
+
[() => NodeFabricLogPublishingConfiguration$],
|
|
877
891
|
];
|
|
878
|
-
var NodeSummary = [3, n0, _NSo, 0, [_I, _S, _CD, _AZ, _IT, _Ar], [0, 0, 5, 0, 0, 0]];
|
|
879
|
-
var Proposal = [
|
|
892
|
+
var NodeSummary$ = [3, n0, _NSo, 0, [_I, _S, _CD, _AZ, _IT, _Ar], [0, 0, 5, 0, 0, 0]];
|
|
893
|
+
var Proposal$ = [
|
|
880
894
|
3,
|
|
881
895
|
n0,
|
|
882
896
|
_P,
|
|
883
897
|
0,
|
|
884
898
|
[_PI, _NI, _D, _Ac, _PBMI, _PBMN, _S, _CD, _ED, _YVC, _NVC, _OVC, _Ta, _Ar],
|
|
885
|
-
[0, 0, 0, () => ProposalActions
|
|
899
|
+
[0, 0, 0, () => ProposalActions$, 0, 0, 0, 5, 5, 1, 1, 1, 128 | 0, 0],
|
|
886
900
|
];
|
|
887
|
-
var ProposalActions = [
|
|
901
|
+
var ProposalActions$ = [
|
|
888
902
|
3,
|
|
889
903
|
n0,
|
|
890
904
|
_PA,
|
|
@@ -892,7 +906,7 @@ var ProposalActions = [
|
|
|
892
906
|
[_Inv, _R],
|
|
893
907
|
[() => InviteActionList, () => RemoveActionList],
|
|
894
908
|
];
|
|
895
|
-
var ProposalSummary = [
|
|
909
|
+
var ProposalSummary$ = [
|
|
896
910
|
3,
|
|
897
911
|
n0,
|
|
898
912
|
_PSr,
|
|
@@ -900,24 +914,24 @@ var ProposalSummary = [
|
|
|
900
914
|
[_PI, _D, _PBMI, _PBMN, _S, _CD, _ED, _Ar],
|
|
901
915
|
[0, 0, 0, 0, 0, 5, 5, 0],
|
|
902
916
|
];
|
|
903
|
-
var RejectInvitationInput = [3, n0, _RII, 0, [_II], [[0, 1]]];
|
|
904
|
-
var RejectInvitationOutput = [3, n0, _RIO, 0, [], []];
|
|
905
|
-
var RemoveAction = [3, n0, _RAe, 0, [_MI], [0]];
|
|
906
|
-
var ResourceAlreadyExistsException = [-3, n0, _RAEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
907
|
-
schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException
|
|
908
|
-
var ResourceLimitExceededException = [-3, n0, _RLEE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
909
|
-
schema.TypeRegistry.for(n0).registerError(ResourceLimitExceededException
|
|
910
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M, _RN], [0, 0]];
|
|
911
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
912
|
-
var ResourceNotReadyException = [-3, n0, _RNRE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
913
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotReadyException
|
|
914
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
915
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
916
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [], []];
|
|
917
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
918
|
-
var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RN], [0, 0]];
|
|
919
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException
|
|
920
|
-
var UntagResourceRequest = [
|
|
917
|
+
var RejectInvitationInput$ = [3, n0, _RII, 0, [_II], [[0, 1]]];
|
|
918
|
+
var RejectInvitationOutput$ = [3, n0, _RIO, 0, [], []];
|
|
919
|
+
var RemoveAction$ = [3, n0, _RAe, 0, [_MI], [0]];
|
|
920
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
921
|
+
schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
922
|
+
var ResourceLimitExceededException$ = [-3, n0, _RLEE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
923
|
+
schema.TypeRegistry.for(n0).registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
924
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M, _RN], [0, 0]];
|
|
925
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
926
|
+
var ResourceNotReadyException$ = [-3, n0, _RNRE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
927
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotReadyException$, ResourceNotReadyException);
|
|
928
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
|
|
929
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
930
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [], []];
|
|
931
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
932
|
+
var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RN], [0, 0]];
|
|
933
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
934
|
+
var UntagResourceRequest$ = [
|
|
921
935
|
3,
|
|
922
936
|
n0,
|
|
923
937
|
_URR,
|
|
@@ -928,30 +942,37 @@ var UntagResourceRequest = [
|
|
|
928
942
|
[64 | 0, { [_hQ]: _tK }],
|
|
929
943
|
],
|
|
930
944
|
];
|
|
931
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
932
|
-
var UpdateMemberInput = [
|
|
945
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
946
|
+
var UpdateMemberInput$ = [
|
|
933
947
|
3,
|
|
934
948
|
n0,
|
|
935
949
|
_UMI,
|
|
936
950
|
0,
|
|
937
951
|
[_NI, _MI, _LPC],
|
|
938
|
-
[[0, 1], [0, 1], () => MemberLogPublishingConfiguration],
|
|
952
|
+
[[0, 1], [0, 1], () => MemberLogPublishingConfiguration$],
|
|
939
953
|
];
|
|
940
|
-
var UpdateMemberOutput = [3, n0, _UMO, 0, [], []];
|
|
941
|
-
var UpdateNodeInput = [
|
|
954
|
+
var UpdateMemberOutput$ = [3, n0, _UMO, 0, [], []];
|
|
955
|
+
var UpdateNodeInput$ = [
|
|
942
956
|
3,
|
|
943
957
|
n0,
|
|
944
958
|
_UNI,
|
|
945
959
|
0,
|
|
946
960
|
[_NI, _MI, _NIo, _LPC],
|
|
947
|
-
[[0, 1], 0, [0, 1], () => NodeLogPublishingConfiguration],
|
|
948
|
-
];
|
|
949
|
-
var UpdateNodeOutput = [3, n0, _UNO, 0, [], []];
|
|
950
|
-
var VoteOnProposalInput = [
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
961
|
+
[[0, 1], 0, [0, 1], () => NodeLogPublishingConfiguration$],
|
|
962
|
+
];
|
|
963
|
+
var UpdateNodeOutput$ = [3, n0, _UNO, 0, [], []];
|
|
964
|
+
var VoteOnProposalInput$ = [
|
|
965
|
+
3,
|
|
966
|
+
n0,
|
|
967
|
+
_VOPI,
|
|
968
|
+
0,
|
|
969
|
+
[_NI, _PI, _VMI, _V],
|
|
970
|
+
[[0, 1], [0, 1], 0, 0],
|
|
971
|
+
];
|
|
972
|
+
var VoteOnProposalOutput$ = [3, n0, _VOPO, 0, [], []];
|
|
973
|
+
var VoteSummary$ = [3, n0, _VS, 0, [_V, _MN, _MI], [0, 0, 0]];
|
|
974
|
+
var VotingPolicy$ = [3, n0, _VP, 0, [_ATP], [() => ApprovalThresholdPolicy$]];
|
|
975
|
+
var ManagedBlockchainServiceException$ = [
|
|
955
976
|
-3,
|
|
956
977
|
_sm,
|
|
957
978
|
"ManagedBlockchainServiceException",
|
|
@@ -959,231 +980,231 @@ var ManagedBlockchainServiceException = [
|
|
|
959
980
|
[],
|
|
960
981
|
[],
|
|
961
982
|
];
|
|
962
|
-
schema.TypeRegistry.for(_sm).registerError(ManagedBlockchainServiceException
|
|
963
|
-
var AccessorSummaryList = [1, n0, _ASL, 0, () => AccessorSummary];
|
|
964
|
-
var InvitationList = [1, n0, _IL, 0, () => Invitation];
|
|
965
|
-
var InviteActionList = [1, n0, _IAL, 0, () => InviteAction];
|
|
966
|
-
var MemberSummaryList = [1, n0, _MSL, 0, () => MemberSummary];
|
|
967
|
-
var NetworkSummaryList = [1, n0, _NSL, 0, () => NetworkSummary];
|
|
968
|
-
var NodeSummaryList = [1, n0, _NSLo, 0, () => NodeSummary];
|
|
969
|
-
var ProposalSummaryList = [1, n0, _PSL, 0, () => ProposalSummary];
|
|
970
|
-
var ProposalVoteList = [1, n0, _PVL, 0, () => VoteSummary];
|
|
971
|
-
var RemoveActionList = [1, n0, _RAL, 0, () => RemoveAction];
|
|
972
|
-
var CreateAccessor = [
|
|
983
|
+
schema.TypeRegistry.for(_sm).registerError(ManagedBlockchainServiceException$, ManagedBlockchainServiceException);
|
|
984
|
+
var AccessorSummaryList = [1, n0, _ASL, 0, () => AccessorSummary$];
|
|
985
|
+
var InvitationList = [1, n0, _IL, 0, () => Invitation$];
|
|
986
|
+
var InviteActionList = [1, n0, _IAL, 0, () => InviteAction$];
|
|
987
|
+
var MemberSummaryList = [1, n0, _MSL, 0, () => MemberSummary$];
|
|
988
|
+
var NetworkSummaryList = [1, n0, _NSL, 0, () => NetworkSummary$];
|
|
989
|
+
var NodeSummaryList = [1, n0, _NSLo, 0, () => NodeSummary$];
|
|
990
|
+
var ProposalSummaryList = [1, n0, _PSL, 0, () => ProposalSummary$];
|
|
991
|
+
var ProposalVoteList = [1, n0, _PVL, 0, () => VoteSummary$];
|
|
992
|
+
var RemoveActionList = [1, n0, _RAL, 0, () => RemoveAction$];
|
|
993
|
+
var CreateAccessor$ = [
|
|
973
994
|
9,
|
|
974
995
|
n0,
|
|
975
996
|
_CA,
|
|
976
997
|
{ [_h]: ["POST", "/accessors", 200] },
|
|
977
|
-
() => CreateAccessorInput
|
|
978
|
-
() => CreateAccessorOutput
|
|
998
|
+
() => CreateAccessorInput$,
|
|
999
|
+
() => CreateAccessorOutput$,
|
|
979
1000
|
];
|
|
980
|
-
var CreateMember = [
|
|
1001
|
+
var CreateMember$ = [
|
|
981
1002
|
9,
|
|
982
1003
|
n0,
|
|
983
1004
|
_CM,
|
|
984
1005
|
{ [_h]: ["POST", "/networks/{NetworkId}/members", 200] },
|
|
985
|
-
() => CreateMemberInput
|
|
986
|
-
() => CreateMemberOutput
|
|
1006
|
+
() => CreateMemberInput$,
|
|
1007
|
+
() => CreateMemberOutput$,
|
|
987
1008
|
];
|
|
988
|
-
var CreateNetwork = [
|
|
1009
|
+
var CreateNetwork$ = [
|
|
989
1010
|
9,
|
|
990
1011
|
n0,
|
|
991
1012
|
_CN,
|
|
992
1013
|
{ [_h]: ["POST", "/networks", 200] },
|
|
993
|
-
() => CreateNetworkInput
|
|
994
|
-
() => CreateNetworkOutput
|
|
1014
|
+
() => CreateNetworkInput$,
|
|
1015
|
+
() => CreateNetworkOutput$,
|
|
995
1016
|
];
|
|
996
|
-
var CreateNode = [
|
|
1017
|
+
var CreateNode$ = [
|
|
997
1018
|
9,
|
|
998
1019
|
n0,
|
|
999
1020
|
_CNr,
|
|
1000
1021
|
{ [_h]: ["POST", "/networks/{NetworkId}/nodes", 200] },
|
|
1001
|
-
() => CreateNodeInput
|
|
1002
|
-
() => CreateNodeOutput
|
|
1022
|
+
() => CreateNodeInput$,
|
|
1023
|
+
() => CreateNodeOutput$,
|
|
1003
1024
|
];
|
|
1004
|
-
var CreateProposal = [
|
|
1025
|
+
var CreateProposal$ = [
|
|
1005
1026
|
9,
|
|
1006
1027
|
n0,
|
|
1007
1028
|
_CP,
|
|
1008
1029
|
{ [_h]: ["POST", "/networks/{NetworkId}/proposals", 200] },
|
|
1009
|
-
() => CreateProposalInput
|
|
1010
|
-
() => CreateProposalOutput
|
|
1030
|
+
() => CreateProposalInput$,
|
|
1031
|
+
() => CreateProposalOutput$,
|
|
1011
1032
|
];
|
|
1012
|
-
var DeleteAccessor = [
|
|
1033
|
+
var DeleteAccessor$ = [
|
|
1013
1034
|
9,
|
|
1014
1035
|
n0,
|
|
1015
1036
|
_DA,
|
|
1016
1037
|
{ [_h]: ["DELETE", "/accessors/{AccessorId}", 200] },
|
|
1017
|
-
() => DeleteAccessorInput
|
|
1018
|
-
() => DeleteAccessorOutput
|
|
1038
|
+
() => DeleteAccessorInput$,
|
|
1039
|
+
() => DeleteAccessorOutput$,
|
|
1019
1040
|
];
|
|
1020
|
-
var DeleteMember = [
|
|
1041
|
+
var DeleteMember$ = [
|
|
1021
1042
|
9,
|
|
1022
1043
|
n0,
|
|
1023
1044
|
_DM,
|
|
1024
1045
|
{ [_h]: ["DELETE", "/networks/{NetworkId}/members/{MemberId}", 200] },
|
|
1025
|
-
() => DeleteMemberInput
|
|
1026
|
-
() => DeleteMemberOutput
|
|
1046
|
+
() => DeleteMemberInput$,
|
|
1047
|
+
() => DeleteMemberOutput$,
|
|
1027
1048
|
];
|
|
1028
|
-
var DeleteNode = [
|
|
1049
|
+
var DeleteNode$ = [
|
|
1029
1050
|
9,
|
|
1030
1051
|
n0,
|
|
1031
1052
|
_DN,
|
|
1032
1053
|
{ [_h]: ["DELETE", "/networks/{NetworkId}/nodes/{NodeId}", 200] },
|
|
1033
|
-
() => DeleteNodeInput
|
|
1034
|
-
() => DeleteNodeOutput
|
|
1054
|
+
() => DeleteNodeInput$,
|
|
1055
|
+
() => DeleteNodeOutput$,
|
|
1035
1056
|
];
|
|
1036
|
-
var GetAccessor = [
|
|
1057
|
+
var GetAccessor$ = [
|
|
1037
1058
|
9,
|
|
1038
1059
|
n0,
|
|
1039
1060
|
_GA,
|
|
1040
1061
|
{ [_h]: ["GET", "/accessors/{AccessorId}", 200] },
|
|
1041
|
-
() => GetAccessorInput
|
|
1042
|
-
() => GetAccessorOutput
|
|
1062
|
+
() => GetAccessorInput$,
|
|
1063
|
+
() => GetAccessorOutput$,
|
|
1043
1064
|
];
|
|
1044
|
-
var GetMember = [
|
|
1065
|
+
var GetMember$ = [
|
|
1045
1066
|
9,
|
|
1046
1067
|
n0,
|
|
1047
1068
|
_GM,
|
|
1048
1069
|
{ [_h]: ["GET", "/networks/{NetworkId}/members/{MemberId}", 200] },
|
|
1049
|
-
() => GetMemberInput
|
|
1050
|
-
() => GetMemberOutput
|
|
1070
|
+
() => GetMemberInput$,
|
|
1071
|
+
() => GetMemberOutput$,
|
|
1051
1072
|
];
|
|
1052
|
-
var GetNetwork = [
|
|
1073
|
+
var GetNetwork$ = [
|
|
1053
1074
|
9,
|
|
1054
1075
|
n0,
|
|
1055
1076
|
_GN,
|
|
1056
1077
|
{ [_h]: ["GET", "/networks/{NetworkId}", 200] },
|
|
1057
|
-
() => GetNetworkInput
|
|
1058
|
-
() => GetNetworkOutput
|
|
1078
|
+
() => GetNetworkInput$,
|
|
1079
|
+
() => GetNetworkOutput$,
|
|
1059
1080
|
];
|
|
1060
|
-
var GetNode = [
|
|
1081
|
+
var GetNode$ = [
|
|
1061
1082
|
9,
|
|
1062
1083
|
n0,
|
|
1063
1084
|
_GNe,
|
|
1064
1085
|
{ [_h]: ["GET", "/networks/{NetworkId}/nodes/{NodeId}", 200] },
|
|
1065
|
-
() => GetNodeInput
|
|
1066
|
-
() => GetNodeOutput
|
|
1086
|
+
() => GetNodeInput$,
|
|
1087
|
+
() => GetNodeOutput$,
|
|
1067
1088
|
];
|
|
1068
|
-
var GetProposal = [
|
|
1089
|
+
var GetProposal$ = [
|
|
1069
1090
|
9,
|
|
1070
1091
|
n0,
|
|
1071
1092
|
_GP,
|
|
1072
1093
|
{ [_h]: ["GET", "/networks/{NetworkId}/proposals/{ProposalId}", 200] },
|
|
1073
|
-
() => GetProposalInput
|
|
1074
|
-
() => GetProposalOutput
|
|
1094
|
+
() => GetProposalInput$,
|
|
1095
|
+
() => GetProposalOutput$,
|
|
1075
1096
|
];
|
|
1076
|
-
var ListAccessors = [
|
|
1097
|
+
var ListAccessors$ = [
|
|
1077
1098
|
9,
|
|
1078
1099
|
n0,
|
|
1079
1100
|
_LA,
|
|
1080
1101
|
{ [_h]: ["GET", "/accessors", 200] },
|
|
1081
|
-
() => ListAccessorsInput
|
|
1082
|
-
() => ListAccessorsOutput
|
|
1102
|
+
() => ListAccessorsInput$,
|
|
1103
|
+
() => ListAccessorsOutput$,
|
|
1083
1104
|
];
|
|
1084
|
-
var ListInvitations = [
|
|
1105
|
+
var ListInvitations$ = [
|
|
1085
1106
|
9,
|
|
1086
1107
|
n0,
|
|
1087
1108
|
_LI,
|
|
1088
1109
|
{ [_h]: ["GET", "/invitations", 200] },
|
|
1089
|
-
() => ListInvitationsInput
|
|
1090
|
-
() => ListInvitationsOutput
|
|
1110
|
+
() => ListInvitationsInput$,
|
|
1111
|
+
() => ListInvitationsOutput$,
|
|
1091
1112
|
];
|
|
1092
|
-
var ListMembers = [
|
|
1113
|
+
var ListMembers$ = [
|
|
1093
1114
|
9,
|
|
1094
1115
|
n0,
|
|
1095
1116
|
_LM,
|
|
1096
1117
|
{ [_h]: ["GET", "/networks/{NetworkId}/members", 200] },
|
|
1097
|
-
() => ListMembersInput
|
|
1098
|
-
() => ListMembersOutput
|
|
1118
|
+
() => ListMembersInput$,
|
|
1119
|
+
() => ListMembersOutput$,
|
|
1099
1120
|
];
|
|
1100
|
-
var ListNetworks = [
|
|
1121
|
+
var ListNetworks$ = [
|
|
1101
1122
|
9,
|
|
1102
1123
|
n0,
|
|
1103
1124
|
_LN,
|
|
1104
1125
|
{ [_h]: ["GET", "/networks", 200] },
|
|
1105
|
-
() => ListNetworksInput
|
|
1106
|
-
() => ListNetworksOutput
|
|
1126
|
+
() => ListNetworksInput$,
|
|
1127
|
+
() => ListNetworksOutput$,
|
|
1107
1128
|
];
|
|
1108
|
-
var ListNodes = [
|
|
1129
|
+
var ListNodes$ = [
|
|
1109
1130
|
9,
|
|
1110
1131
|
n0,
|
|
1111
1132
|
_LNi,
|
|
1112
1133
|
{ [_h]: ["GET", "/networks/{NetworkId}/nodes", 200] },
|
|
1113
|
-
() => ListNodesInput
|
|
1114
|
-
() => ListNodesOutput
|
|
1134
|
+
() => ListNodesInput$,
|
|
1135
|
+
() => ListNodesOutput$,
|
|
1115
1136
|
];
|
|
1116
|
-
var ListProposals = [
|
|
1137
|
+
var ListProposals$ = [
|
|
1117
1138
|
9,
|
|
1118
1139
|
n0,
|
|
1119
1140
|
_LP,
|
|
1120
1141
|
{ [_h]: ["GET", "/networks/{NetworkId}/proposals", 200] },
|
|
1121
|
-
() => ListProposalsInput
|
|
1122
|
-
() => ListProposalsOutput
|
|
1142
|
+
() => ListProposalsInput$,
|
|
1143
|
+
() => ListProposalsOutput$,
|
|
1123
1144
|
];
|
|
1124
|
-
var ListProposalVotes = [
|
|
1145
|
+
var ListProposalVotes$ = [
|
|
1125
1146
|
9,
|
|
1126
1147
|
n0,
|
|
1127
1148
|
_LPV,
|
|
1128
1149
|
{ [_h]: ["GET", "/networks/{NetworkId}/proposals/{ProposalId}/votes", 200] },
|
|
1129
|
-
() => ListProposalVotesInput
|
|
1130
|
-
() => ListProposalVotesOutput
|
|
1150
|
+
() => ListProposalVotesInput$,
|
|
1151
|
+
() => ListProposalVotesOutput$,
|
|
1131
1152
|
];
|
|
1132
|
-
var ListTagsForResource = [
|
|
1153
|
+
var ListTagsForResource$ = [
|
|
1133
1154
|
9,
|
|
1134
1155
|
n0,
|
|
1135
1156
|
_LTFR,
|
|
1136
1157
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] },
|
|
1137
|
-
() => ListTagsForResourceRequest
|
|
1138
|
-
() => ListTagsForResourceResponse
|
|
1158
|
+
() => ListTagsForResourceRequest$,
|
|
1159
|
+
() => ListTagsForResourceResponse$,
|
|
1139
1160
|
];
|
|
1140
|
-
var RejectInvitation = [
|
|
1161
|
+
var RejectInvitation$ = [
|
|
1141
1162
|
9,
|
|
1142
1163
|
n0,
|
|
1143
1164
|
_RI,
|
|
1144
1165
|
{ [_h]: ["DELETE", "/invitations/{InvitationId}", 200] },
|
|
1145
|
-
() => RejectInvitationInput
|
|
1146
|
-
() => RejectInvitationOutput
|
|
1166
|
+
() => RejectInvitationInput$,
|
|
1167
|
+
() => RejectInvitationOutput$,
|
|
1147
1168
|
];
|
|
1148
|
-
var TagResource = [
|
|
1169
|
+
var TagResource$ = [
|
|
1149
1170
|
9,
|
|
1150
1171
|
n0,
|
|
1151
1172
|
_TR,
|
|
1152
1173
|
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] },
|
|
1153
|
-
() => TagResourceRequest
|
|
1154
|
-
() => TagResourceResponse
|
|
1174
|
+
() => TagResourceRequest$,
|
|
1175
|
+
() => TagResourceResponse$,
|
|
1155
1176
|
];
|
|
1156
|
-
var UntagResource = [
|
|
1177
|
+
var UntagResource$ = [
|
|
1157
1178
|
9,
|
|
1158
1179
|
n0,
|
|
1159
1180
|
_UR,
|
|
1160
1181
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
|
|
1161
|
-
() => UntagResourceRequest
|
|
1162
|
-
() => UntagResourceResponse
|
|
1182
|
+
() => UntagResourceRequest$,
|
|
1183
|
+
() => UntagResourceResponse$,
|
|
1163
1184
|
];
|
|
1164
|
-
var UpdateMember = [
|
|
1185
|
+
var UpdateMember$ = [
|
|
1165
1186
|
9,
|
|
1166
1187
|
n0,
|
|
1167
1188
|
_UM,
|
|
1168
1189
|
{ [_h]: ["PATCH", "/networks/{NetworkId}/members/{MemberId}", 200] },
|
|
1169
|
-
() => UpdateMemberInput
|
|
1170
|
-
() => UpdateMemberOutput
|
|
1190
|
+
() => UpdateMemberInput$,
|
|
1191
|
+
() => UpdateMemberOutput$,
|
|
1171
1192
|
];
|
|
1172
|
-
var UpdateNode = [
|
|
1193
|
+
var UpdateNode$ = [
|
|
1173
1194
|
9,
|
|
1174
1195
|
n0,
|
|
1175
1196
|
_UN,
|
|
1176
1197
|
{ [_h]: ["PATCH", "/networks/{NetworkId}/nodes/{NodeId}", 200] },
|
|
1177
|
-
() => UpdateNodeInput
|
|
1178
|
-
() => UpdateNodeOutput
|
|
1198
|
+
() => UpdateNodeInput$,
|
|
1199
|
+
() => UpdateNodeOutput$,
|
|
1179
1200
|
];
|
|
1180
|
-
var VoteOnProposal = [
|
|
1201
|
+
var VoteOnProposal$ = [
|
|
1181
1202
|
9,
|
|
1182
1203
|
n0,
|
|
1183
1204
|
_VOP,
|
|
1184
1205
|
{ [_h]: ["POST", "/networks/{NetworkId}/proposals/{ProposalId}/votes", 200] },
|
|
1185
|
-
() => VoteOnProposalInput
|
|
1186
|
-
() => VoteOnProposalOutput
|
|
1206
|
+
() => VoteOnProposalInput$,
|
|
1207
|
+
() => VoteOnProposalOutput$,
|
|
1187
1208
|
];
|
|
1188
1209
|
|
|
1189
1210
|
class CreateAccessorCommand extends smithyClient.Command
|
|
@@ -1194,7 +1215,7 @@ class CreateAccessorCommand extends smithyClient.Command
|
|
|
1194
1215
|
})
|
|
1195
1216
|
.s("TaigaWebService", "CreateAccessor", {})
|
|
1196
1217
|
.n("ManagedBlockchainClient", "CreateAccessorCommand")
|
|
1197
|
-
.sc(CreateAccessor)
|
|
1218
|
+
.sc(CreateAccessor$)
|
|
1198
1219
|
.build() {
|
|
1199
1220
|
}
|
|
1200
1221
|
|
|
@@ -1206,7 +1227,7 @@ class CreateMemberCommand extends smithyClient.Command
|
|
|
1206
1227
|
})
|
|
1207
1228
|
.s("TaigaWebService", "CreateMember", {})
|
|
1208
1229
|
.n("ManagedBlockchainClient", "CreateMemberCommand")
|
|
1209
|
-
.sc(CreateMember)
|
|
1230
|
+
.sc(CreateMember$)
|
|
1210
1231
|
.build() {
|
|
1211
1232
|
}
|
|
1212
1233
|
|
|
@@ -1218,7 +1239,7 @@ class CreateNetworkCommand extends smithyClient.Command
|
|
|
1218
1239
|
})
|
|
1219
1240
|
.s("TaigaWebService", "CreateNetwork", {})
|
|
1220
1241
|
.n("ManagedBlockchainClient", "CreateNetworkCommand")
|
|
1221
|
-
.sc(CreateNetwork)
|
|
1242
|
+
.sc(CreateNetwork$)
|
|
1222
1243
|
.build() {
|
|
1223
1244
|
}
|
|
1224
1245
|
|
|
@@ -1230,7 +1251,7 @@ class CreateNodeCommand extends smithyClient.Command
|
|
|
1230
1251
|
})
|
|
1231
1252
|
.s("TaigaWebService", "CreateNode", {})
|
|
1232
1253
|
.n("ManagedBlockchainClient", "CreateNodeCommand")
|
|
1233
|
-
.sc(CreateNode)
|
|
1254
|
+
.sc(CreateNode$)
|
|
1234
1255
|
.build() {
|
|
1235
1256
|
}
|
|
1236
1257
|
|
|
@@ -1242,7 +1263,7 @@ class CreateProposalCommand extends smithyClient.Command
|
|
|
1242
1263
|
})
|
|
1243
1264
|
.s("TaigaWebService", "CreateProposal", {})
|
|
1244
1265
|
.n("ManagedBlockchainClient", "CreateProposalCommand")
|
|
1245
|
-
.sc(CreateProposal)
|
|
1266
|
+
.sc(CreateProposal$)
|
|
1246
1267
|
.build() {
|
|
1247
1268
|
}
|
|
1248
1269
|
|
|
@@ -1254,7 +1275,7 @@ class DeleteAccessorCommand extends smithyClient.Command
|
|
|
1254
1275
|
})
|
|
1255
1276
|
.s("TaigaWebService", "DeleteAccessor", {})
|
|
1256
1277
|
.n("ManagedBlockchainClient", "DeleteAccessorCommand")
|
|
1257
|
-
.sc(DeleteAccessor)
|
|
1278
|
+
.sc(DeleteAccessor$)
|
|
1258
1279
|
.build() {
|
|
1259
1280
|
}
|
|
1260
1281
|
|
|
@@ -1266,7 +1287,7 @@ class DeleteMemberCommand extends smithyClient.Command
|
|
|
1266
1287
|
})
|
|
1267
1288
|
.s("TaigaWebService", "DeleteMember", {})
|
|
1268
1289
|
.n("ManagedBlockchainClient", "DeleteMemberCommand")
|
|
1269
|
-
.sc(DeleteMember)
|
|
1290
|
+
.sc(DeleteMember$)
|
|
1270
1291
|
.build() {
|
|
1271
1292
|
}
|
|
1272
1293
|
|
|
@@ -1278,7 +1299,7 @@ class DeleteNodeCommand extends smithyClient.Command
|
|
|
1278
1299
|
})
|
|
1279
1300
|
.s("TaigaWebService", "DeleteNode", {})
|
|
1280
1301
|
.n("ManagedBlockchainClient", "DeleteNodeCommand")
|
|
1281
|
-
.sc(DeleteNode)
|
|
1302
|
+
.sc(DeleteNode$)
|
|
1282
1303
|
.build() {
|
|
1283
1304
|
}
|
|
1284
1305
|
|
|
@@ -1290,7 +1311,7 @@ class GetAccessorCommand extends smithyClient.Command
|
|
|
1290
1311
|
})
|
|
1291
1312
|
.s("TaigaWebService", "GetAccessor", {})
|
|
1292
1313
|
.n("ManagedBlockchainClient", "GetAccessorCommand")
|
|
1293
|
-
.sc(GetAccessor)
|
|
1314
|
+
.sc(GetAccessor$)
|
|
1294
1315
|
.build() {
|
|
1295
1316
|
}
|
|
1296
1317
|
|
|
@@ -1302,7 +1323,7 @@ class GetMemberCommand extends smithyClient.Command
|
|
|
1302
1323
|
})
|
|
1303
1324
|
.s("TaigaWebService", "GetMember", {})
|
|
1304
1325
|
.n("ManagedBlockchainClient", "GetMemberCommand")
|
|
1305
|
-
.sc(GetMember)
|
|
1326
|
+
.sc(GetMember$)
|
|
1306
1327
|
.build() {
|
|
1307
1328
|
}
|
|
1308
1329
|
|
|
@@ -1314,7 +1335,7 @@ class GetNetworkCommand extends smithyClient.Command
|
|
|
1314
1335
|
})
|
|
1315
1336
|
.s("TaigaWebService", "GetNetwork", {})
|
|
1316
1337
|
.n("ManagedBlockchainClient", "GetNetworkCommand")
|
|
1317
|
-
.sc(GetNetwork)
|
|
1338
|
+
.sc(GetNetwork$)
|
|
1318
1339
|
.build() {
|
|
1319
1340
|
}
|
|
1320
1341
|
|
|
@@ -1326,7 +1347,7 @@ class GetNodeCommand extends smithyClient.Command
|
|
|
1326
1347
|
})
|
|
1327
1348
|
.s("TaigaWebService", "GetNode", {})
|
|
1328
1349
|
.n("ManagedBlockchainClient", "GetNodeCommand")
|
|
1329
|
-
.sc(GetNode)
|
|
1350
|
+
.sc(GetNode$)
|
|
1330
1351
|
.build() {
|
|
1331
1352
|
}
|
|
1332
1353
|
|
|
@@ -1338,7 +1359,7 @@ class GetProposalCommand extends smithyClient.Command
|
|
|
1338
1359
|
})
|
|
1339
1360
|
.s("TaigaWebService", "GetProposal", {})
|
|
1340
1361
|
.n("ManagedBlockchainClient", "GetProposalCommand")
|
|
1341
|
-
.sc(GetProposal)
|
|
1362
|
+
.sc(GetProposal$)
|
|
1342
1363
|
.build() {
|
|
1343
1364
|
}
|
|
1344
1365
|
|
|
@@ -1350,7 +1371,7 @@ class ListAccessorsCommand extends smithyClient.Command
|
|
|
1350
1371
|
})
|
|
1351
1372
|
.s("TaigaWebService", "ListAccessors", {})
|
|
1352
1373
|
.n("ManagedBlockchainClient", "ListAccessorsCommand")
|
|
1353
|
-
.sc(ListAccessors)
|
|
1374
|
+
.sc(ListAccessors$)
|
|
1354
1375
|
.build() {
|
|
1355
1376
|
}
|
|
1356
1377
|
|
|
@@ -1362,7 +1383,7 @@ class ListInvitationsCommand extends smithyClient.Command
|
|
|
1362
1383
|
})
|
|
1363
1384
|
.s("TaigaWebService", "ListInvitations", {})
|
|
1364
1385
|
.n("ManagedBlockchainClient", "ListInvitationsCommand")
|
|
1365
|
-
.sc(ListInvitations)
|
|
1386
|
+
.sc(ListInvitations$)
|
|
1366
1387
|
.build() {
|
|
1367
1388
|
}
|
|
1368
1389
|
|
|
@@ -1374,7 +1395,7 @@ class ListMembersCommand extends smithyClient.Command
|
|
|
1374
1395
|
})
|
|
1375
1396
|
.s("TaigaWebService", "ListMembers", {})
|
|
1376
1397
|
.n("ManagedBlockchainClient", "ListMembersCommand")
|
|
1377
|
-
.sc(ListMembers)
|
|
1398
|
+
.sc(ListMembers$)
|
|
1378
1399
|
.build() {
|
|
1379
1400
|
}
|
|
1380
1401
|
|
|
@@ -1386,7 +1407,7 @@ class ListNetworksCommand extends smithyClient.Command
|
|
|
1386
1407
|
})
|
|
1387
1408
|
.s("TaigaWebService", "ListNetworks", {})
|
|
1388
1409
|
.n("ManagedBlockchainClient", "ListNetworksCommand")
|
|
1389
|
-
.sc(ListNetworks)
|
|
1410
|
+
.sc(ListNetworks$)
|
|
1390
1411
|
.build() {
|
|
1391
1412
|
}
|
|
1392
1413
|
|
|
@@ -1398,7 +1419,7 @@ class ListNodesCommand extends smithyClient.Command
|
|
|
1398
1419
|
})
|
|
1399
1420
|
.s("TaigaWebService", "ListNodes", {})
|
|
1400
1421
|
.n("ManagedBlockchainClient", "ListNodesCommand")
|
|
1401
|
-
.sc(ListNodes)
|
|
1422
|
+
.sc(ListNodes$)
|
|
1402
1423
|
.build() {
|
|
1403
1424
|
}
|
|
1404
1425
|
|
|
@@ -1410,7 +1431,7 @@ class ListProposalsCommand extends smithyClient.Command
|
|
|
1410
1431
|
})
|
|
1411
1432
|
.s("TaigaWebService", "ListProposals", {})
|
|
1412
1433
|
.n("ManagedBlockchainClient", "ListProposalsCommand")
|
|
1413
|
-
.sc(ListProposals)
|
|
1434
|
+
.sc(ListProposals$)
|
|
1414
1435
|
.build() {
|
|
1415
1436
|
}
|
|
1416
1437
|
|
|
@@ -1422,7 +1443,7 @@ class ListProposalVotesCommand extends smithyClient.Command
|
|
|
1422
1443
|
})
|
|
1423
1444
|
.s("TaigaWebService", "ListProposalVotes", {})
|
|
1424
1445
|
.n("ManagedBlockchainClient", "ListProposalVotesCommand")
|
|
1425
|
-
.sc(ListProposalVotes)
|
|
1446
|
+
.sc(ListProposalVotes$)
|
|
1426
1447
|
.build() {
|
|
1427
1448
|
}
|
|
1428
1449
|
|
|
@@ -1434,7 +1455,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1434
1455
|
})
|
|
1435
1456
|
.s("TaigaWebService", "ListTagsForResource", {})
|
|
1436
1457
|
.n("ManagedBlockchainClient", "ListTagsForResourceCommand")
|
|
1437
|
-
.sc(ListTagsForResource)
|
|
1458
|
+
.sc(ListTagsForResource$)
|
|
1438
1459
|
.build() {
|
|
1439
1460
|
}
|
|
1440
1461
|
|
|
@@ -1446,7 +1467,7 @@ class RejectInvitationCommand extends smithyClient.Command
|
|
|
1446
1467
|
})
|
|
1447
1468
|
.s("TaigaWebService", "RejectInvitation", {})
|
|
1448
1469
|
.n("ManagedBlockchainClient", "RejectInvitationCommand")
|
|
1449
|
-
.sc(RejectInvitation)
|
|
1470
|
+
.sc(RejectInvitation$)
|
|
1450
1471
|
.build() {
|
|
1451
1472
|
}
|
|
1452
1473
|
|
|
@@ -1458,7 +1479,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1458
1479
|
})
|
|
1459
1480
|
.s("TaigaWebService", "TagResource", {})
|
|
1460
1481
|
.n("ManagedBlockchainClient", "TagResourceCommand")
|
|
1461
|
-
.sc(TagResource)
|
|
1482
|
+
.sc(TagResource$)
|
|
1462
1483
|
.build() {
|
|
1463
1484
|
}
|
|
1464
1485
|
|
|
@@ -1470,7 +1491,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1470
1491
|
})
|
|
1471
1492
|
.s("TaigaWebService", "UntagResource", {})
|
|
1472
1493
|
.n("ManagedBlockchainClient", "UntagResourceCommand")
|
|
1473
|
-
.sc(UntagResource)
|
|
1494
|
+
.sc(UntagResource$)
|
|
1474
1495
|
.build() {
|
|
1475
1496
|
}
|
|
1476
1497
|
|
|
@@ -1482,7 +1503,7 @@ class UpdateMemberCommand extends smithyClient.Command
|
|
|
1482
1503
|
})
|
|
1483
1504
|
.s("TaigaWebService", "UpdateMember", {})
|
|
1484
1505
|
.n("ManagedBlockchainClient", "UpdateMemberCommand")
|
|
1485
|
-
.sc(UpdateMember)
|
|
1506
|
+
.sc(UpdateMember$)
|
|
1486
1507
|
.build() {
|
|
1487
1508
|
}
|
|
1488
1509
|
|
|
@@ -1494,7 +1515,7 @@ class UpdateNodeCommand extends smithyClient.Command
|
|
|
1494
1515
|
})
|
|
1495
1516
|
.s("TaigaWebService", "UpdateNode", {})
|
|
1496
1517
|
.n("ManagedBlockchainClient", "UpdateNodeCommand")
|
|
1497
|
-
.sc(UpdateNode)
|
|
1518
|
+
.sc(UpdateNode$)
|
|
1498
1519
|
.build() {
|
|
1499
1520
|
}
|
|
1500
1521
|
|
|
@@ -1506,7 +1527,7 @@ class VoteOnProposalCommand extends smithyClient.Command
|
|
|
1506
1527
|
})
|
|
1507
1528
|
.s("TaigaWebService", "VoteOnProposal", {})
|
|
1508
1529
|
.n("ManagedBlockchainClient", "VoteOnProposalCommand")
|
|
1509
|
-
.sc(VoteOnProposal)
|
|
1530
|
+
.sc(VoteOnProposal$)
|
|
1510
1531
|
.build() {
|
|
1511
1532
|
}
|
|
1512
1533
|
|
|
@@ -1642,59 +1663,188 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1642
1663
|
enumerable: true,
|
|
1643
1664
|
get: function () { return smithyClient.Client; }
|
|
1644
1665
|
});
|
|
1645
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1666
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1667
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1668
|
+
exports.Accessor$ = Accessor$;
|
|
1646
1669
|
exports.AccessorNetworkType = AccessorNetworkType;
|
|
1647
1670
|
exports.AccessorStatus = AccessorStatus;
|
|
1671
|
+
exports.AccessorSummary$ = AccessorSummary$;
|
|
1648
1672
|
exports.AccessorType = AccessorType;
|
|
1673
|
+
exports.ApprovalThresholdPolicy$ = ApprovalThresholdPolicy$;
|
|
1674
|
+
exports.CreateAccessor$ = CreateAccessor$;
|
|
1649
1675
|
exports.CreateAccessorCommand = CreateAccessorCommand;
|
|
1676
|
+
exports.CreateAccessorInput$ = CreateAccessorInput$;
|
|
1677
|
+
exports.CreateAccessorOutput$ = CreateAccessorOutput$;
|
|
1678
|
+
exports.CreateMember$ = CreateMember$;
|
|
1650
1679
|
exports.CreateMemberCommand = CreateMemberCommand;
|
|
1680
|
+
exports.CreateMemberInput$ = CreateMemberInput$;
|
|
1681
|
+
exports.CreateMemberOutput$ = CreateMemberOutput$;
|
|
1682
|
+
exports.CreateNetwork$ = CreateNetwork$;
|
|
1651
1683
|
exports.CreateNetworkCommand = CreateNetworkCommand;
|
|
1684
|
+
exports.CreateNetworkInput$ = CreateNetworkInput$;
|
|
1685
|
+
exports.CreateNetworkOutput$ = CreateNetworkOutput$;
|
|
1686
|
+
exports.CreateNode$ = CreateNode$;
|
|
1652
1687
|
exports.CreateNodeCommand = CreateNodeCommand;
|
|
1688
|
+
exports.CreateNodeInput$ = CreateNodeInput$;
|
|
1689
|
+
exports.CreateNodeOutput$ = CreateNodeOutput$;
|
|
1690
|
+
exports.CreateProposal$ = CreateProposal$;
|
|
1653
1691
|
exports.CreateProposalCommand = CreateProposalCommand;
|
|
1692
|
+
exports.CreateProposalInput$ = CreateProposalInput$;
|
|
1693
|
+
exports.CreateProposalOutput$ = CreateProposalOutput$;
|
|
1694
|
+
exports.DeleteAccessor$ = DeleteAccessor$;
|
|
1654
1695
|
exports.DeleteAccessorCommand = DeleteAccessorCommand;
|
|
1696
|
+
exports.DeleteAccessorInput$ = DeleteAccessorInput$;
|
|
1697
|
+
exports.DeleteAccessorOutput$ = DeleteAccessorOutput$;
|
|
1698
|
+
exports.DeleteMember$ = DeleteMember$;
|
|
1655
1699
|
exports.DeleteMemberCommand = DeleteMemberCommand;
|
|
1700
|
+
exports.DeleteMemberInput$ = DeleteMemberInput$;
|
|
1701
|
+
exports.DeleteMemberOutput$ = DeleteMemberOutput$;
|
|
1702
|
+
exports.DeleteNode$ = DeleteNode$;
|
|
1656
1703
|
exports.DeleteNodeCommand = DeleteNodeCommand;
|
|
1704
|
+
exports.DeleteNodeInput$ = DeleteNodeInput$;
|
|
1705
|
+
exports.DeleteNodeOutput$ = DeleteNodeOutput$;
|
|
1657
1706
|
exports.Edition = Edition;
|
|
1658
1707
|
exports.Framework = Framework;
|
|
1708
|
+
exports.GetAccessor$ = GetAccessor$;
|
|
1659
1709
|
exports.GetAccessorCommand = GetAccessorCommand;
|
|
1710
|
+
exports.GetAccessorInput$ = GetAccessorInput$;
|
|
1711
|
+
exports.GetAccessorOutput$ = GetAccessorOutput$;
|
|
1712
|
+
exports.GetMember$ = GetMember$;
|
|
1660
1713
|
exports.GetMemberCommand = GetMemberCommand;
|
|
1714
|
+
exports.GetMemberInput$ = GetMemberInput$;
|
|
1715
|
+
exports.GetMemberOutput$ = GetMemberOutput$;
|
|
1716
|
+
exports.GetNetwork$ = GetNetwork$;
|
|
1661
1717
|
exports.GetNetworkCommand = GetNetworkCommand;
|
|
1718
|
+
exports.GetNetworkInput$ = GetNetworkInput$;
|
|
1719
|
+
exports.GetNetworkOutput$ = GetNetworkOutput$;
|
|
1720
|
+
exports.GetNode$ = GetNode$;
|
|
1662
1721
|
exports.GetNodeCommand = GetNodeCommand;
|
|
1722
|
+
exports.GetNodeInput$ = GetNodeInput$;
|
|
1723
|
+
exports.GetNodeOutput$ = GetNodeOutput$;
|
|
1724
|
+
exports.GetProposal$ = GetProposal$;
|
|
1663
1725
|
exports.GetProposalCommand = GetProposalCommand;
|
|
1664
|
-
exports.
|
|
1665
|
-
exports.
|
|
1666
|
-
exports.
|
|
1726
|
+
exports.GetProposalInput$ = GetProposalInput$;
|
|
1727
|
+
exports.GetProposalOutput$ = GetProposalOutput$;
|
|
1728
|
+
exports.IllegalActionException = IllegalActionException;
|
|
1729
|
+
exports.IllegalActionException$ = IllegalActionException$;
|
|
1730
|
+
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
1731
|
+
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
1732
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1733
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1734
|
+
exports.Invitation$ = Invitation$;
|
|
1667
1735
|
exports.InvitationStatus = InvitationStatus;
|
|
1736
|
+
exports.InviteAction$ = InviteAction$;
|
|
1737
|
+
exports.ListAccessors$ = ListAccessors$;
|
|
1668
1738
|
exports.ListAccessorsCommand = ListAccessorsCommand;
|
|
1739
|
+
exports.ListAccessorsInput$ = ListAccessorsInput$;
|
|
1740
|
+
exports.ListAccessorsOutput$ = ListAccessorsOutput$;
|
|
1741
|
+
exports.ListInvitations$ = ListInvitations$;
|
|
1669
1742
|
exports.ListInvitationsCommand = ListInvitationsCommand;
|
|
1743
|
+
exports.ListInvitationsInput$ = ListInvitationsInput$;
|
|
1744
|
+
exports.ListInvitationsOutput$ = ListInvitationsOutput$;
|
|
1745
|
+
exports.ListMembers$ = ListMembers$;
|
|
1670
1746
|
exports.ListMembersCommand = ListMembersCommand;
|
|
1747
|
+
exports.ListMembersInput$ = ListMembersInput$;
|
|
1748
|
+
exports.ListMembersOutput$ = ListMembersOutput$;
|
|
1749
|
+
exports.ListNetworks$ = ListNetworks$;
|
|
1671
1750
|
exports.ListNetworksCommand = ListNetworksCommand;
|
|
1751
|
+
exports.ListNetworksInput$ = ListNetworksInput$;
|
|
1752
|
+
exports.ListNetworksOutput$ = ListNetworksOutput$;
|
|
1753
|
+
exports.ListNodes$ = ListNodes$;
|
|
1672
1754
|
exports.ListNodesCommand = ListNodesCommand;
|
|
1755
|
+
exports.ListNodesInput$ = ListNodesInput$;
|
|
1756
|
+
exports.ListNodesOutput$ = ListNodesOutput$;
|
|
1757
|
+
exports.ListProposalVotes$ = ListProposalVotes$;
|
|
1673
1758
|
exports.ListProposalVotesCommand = ListProposalVotesCommand;
|
|
1759
|
+
exports.ListProposalVotesInput$ = ListProposalVotesInput$;
|
|
1760
|
+
exports.ListProposalVotesOutput$ = ListProposalVotesOutput$;
|
|
1761
|
+
exports.ListProposals$ = ListProposals$;
|
|
1674
1762
|
exports.ListProposalsCommand = ListProposalsCommand;
|
|
1763
|
+
exports.ListProposalsInput$ = ListProposalsInput$;
|
|
1764
|
+
exports.ListProposalsOutput$ = ListProposalsOutput$;
|
|
1765
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1675
1766
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1767
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1768
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1769
|
+
exports.LogConfiguration$ = LogConfiguration$;
|
|
1770
|
+
exports.LogConfigurations$ = LogConfigurations$;
|
|
1676
1771
|
exports.ManagedBlockchain = ManagedBlockchain;
|
|
1677
1772
|
exports.ManagedBlockchainClient = ManagedBlockchainClient;
|
|
1678
|
-
exports.ManagedBlockchainServiceException = ManagedBlockchainServiceException
|
|
1773
|
+
exports.ManagedBlockchainServiceException = ManagedBlockchainServiceException;
|
|
1774
|
+
exports.ManagedBlockchainServiceException$ = ManagedBlockchainServiceException$;
|
|
1775
|
+
exports.Member$ = Member$;
|
|
1776
|
+
exports.MemberConfiguration$ = MemberConfiguration$;
|
|
1777
|
+
exports.MemberFabricAttributes$ = MemberFabricAttributes$;
|
|
1778
|
+
exports.MemberFabricConfiguration$ = MemberFabricConfiguration$;
|
|
1779
|
+
exports.MemberFabricLogPublishingConfiguration$ = MemberFabricLogPublishingConfiguration$;
|
|
1780
|
+
exports.MemberFrameworkAttributes$ = MemberFrameworkAttributes$;
|
|
1781
|
+
exports.MemberFrameworkConfiguration$ = MemberFrameworkConfiguration$;
|
|
1782
|
+
exports.MemberLogPublishingConfiguration$ = MemberLogPublishingConfiguration$;
|
|
1679
1783
|
exports.MemberStatus = MemberStatus;
|
|
1784
|
+
exports.MemberSummary$ = MemberSummary$;
|
|
1785
|
+
exports.Network$ = Network$;
|
|
1786
|
+
exports.NetworkEthereumAttributes$ = NetworkEthereumAttributes$;
|
|
1787
|
+
exports.NetworkFabricAttributes$ = NetworkFabricAttributes$;
|
|
1788
|
+
exports.NetworkFabricConfiguration$ = NetworkFabricConfiguration$;
|
|
1789
|
+
exports.NetworkFrameworkAttributes$ = NetworkFrameworkAttributes$;
|
|
1790
|
+
exports.NetworkFrameworkConfiguration$ = NetworkFrameworkConfiguration$;
|
|
1680
1791
|
exports.NetworkStatus = NetworkStatus;
|
|
1792
|
+
exports.NetworkSummary$ = NetworkSummary$;
|
|
1793
|
+
exports.Node$ = Node$;
|
|
1794
|
+
exports.NodeConfiguration$ = NodeConfiguration$;
|
|
1795
|
+
exports.NodeEthereumAttributes$ = NodeEthereumAttributes$;
|
|
1796
|
+
exports.NodeFabricAttributes$ = NodeFabricAttributes$;
|
|
1797
|
+
exports.NodeFabricLogPublishingConfiguration$ = NodeFabricLogPublishingConfiguration$;
|
|
1798
|
+
exports.NodeFrameworkAttributes$ = NodeFrameworkAttributes$;
|
|
1799
|
+
exports.NodeLogPublishingConfiguration$ = NodeLogPublishingConfiguration$;
|
|
1681
1800
|
exports.NodeStatus = NodeStatus;
|
|
1801
|
+
exports.NodeSummary$ = NodeSummary$;
|
|
1802
|
+
exports.Proposal$ = Proposal$;
|
|
1803
|
+
exports.ProposalActions$ = ProposalActions$;
|
|
1682
1804
|
exports.ProposalStatus = ProposalStatus;
|
|
1805
|
+
exports.ProposalSummary$ = ProposalSummary$;
|
|
1806
|
+
exports.RejectInvitation$ = RejectInvitation$;
|
|
1683
1807
|
exports.RejectInvitationCommand = RejectInvitationCommand;
|
|
1684
|
-
exports.
|
|
1685
|
-
exports.
|
|
1686
|
-
exports.
|
|
1687
|
-
exports.
|
|
1808
|
+
exports.RejectInvitationInput$ = RejectInvitationInput$;
|
|
1809
|
+
exports.RejectInvitationOutput$ = RejectInvitationOutput$;
|
|
1810
|
+
exports.RemoveAction$ = RemoveAction$;
|
|
1811
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
1812
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
1813
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
1814
|
+
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
1815
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1816
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1817
|
+
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
1818
|
+
exports.ResourceNotReadyException$ = ResourceNotReadyException$;
|
|
1688
1819
|
exports.StateDBType = StateDBType;
|
|
1820
|
+
exports.TagResource$ = TagResource$;
|
|
1689
1821
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1822
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1823
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1690
1824
|
exports.ThresholdComparator = ThresholdComparator;
|
|
1691
|
-
exports.ThrottlingException = ThrottlingException
|
|
1692
|
-
exports.
|
|
1825
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1826
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1827
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1828
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1829
|
+
exports.UntagResource$ = UntagResource$;
|
|
1693
1830
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1831
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1832
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1833
|
+
exports.UpdateMember$ = UpdateMember$;
|
|
1694
1834
|
exports.UpdateMemberCommand = UpdateMemberCommand;
|
|
1835
|
+
exports.UpdateMemberInput$ = UpdateMemberInput$;
|
|
1836
|
+
exports.UpdateMemberOutput$ = UpdateMemberOutput$;
|
|
1837
|
+
exports.UpdateNode$ = UpdateNode$;
|
|
1695
1838
|
exports.UpdateNodeCommand = UpdateNodeCommand;
|
|
1839
|
+
exports.UpdateNodeInput$ = UpdateNodeInput$;
|
|
1840
|
+
exports.UpdateNodeOutput$ = UpdateNodeOutput$;
|
|
1841
|
+
exports.VoteOnProposal$ = VoteOnProposal$;
|
|
1696
1842
|
exports.VoteOnProposalCommand = VoteOnProposalCommand;
|
|
1843
|
+
exports.VoteOnProposalInput$ = VoteOnProposalInput$;
|
|
1844
|
+
exports.VoteOnProposalOutput$ = VoteOnProposalOutput$;
|
|
1845
|
+
exports.VoteSummary$ = VoteSummary$;
|
|
1697
1846
|
exports.VoteValue = VoteValue;
|
|
1847
|
+
exports.VotingPolicy$ = VotingPolicy$;
|
|
1698
1848
|
exports.paginateListAccessors = paginateListAccessors;
|
|
1699
1849
|
exports.paginateListInvitations = paginateListInvitations;
|
|
1700
1850
|
exports.paginateListMembers = paginateListMembers;
|