@aws-sdk/client-managedblockchain 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ManagedBlockchain.js +101 -94
- package/dist-es/ManagedBlockchainClient.js +28 -22
- package/dist-es/commands/CreateMemberCommand.js +28 -21
- package/dist-es/commands/CreateNetworkCommand.js +28 -21
- package/dist-es/commands/CreateNodeCommand.js +28 -21
- package/dist-es/commands/CreateProposalCommand.js +28 -21
- package/dist-es/commands/DeleteMemberCommand.js +28 -21
- package/dist-es/commands/DeleteNodeCommand.js +28 -21
- package/dist-es/commands/GetMemberCommand.js +28 -21
- package/dist-es/commands/GetNetworkCommand.js +28 -21
- package/dist-es/commands/GetNodeCommand.js +28 -21
- package/dist-es/commands/GetProposalCommand.js +28 -21
- package/dist-es/commands/ListInvitationsCommand.js +28 -21
- package/dist-es/commands/ListMembersCommand.js +28 -21
- package/dist-es/commands/ListNetworksCommand.js +28 -21
- package/dist-es/commands/ListNodesCommand.js +28 -21
- package/dist-es/commands/ListProposalVotesCommand.js +28 -21
- package/dist-es/commands/ListProposalsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/RejectInvitationCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateMemberCommand.js +28 -21
- package/dist-es/commands/UpdateNodeCommand.js +28 -21
- package/dist-es/commands/VoteOnProposalCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ManagedBlockchainServiceException.js +10 -5
- package/dist-es/models/models_0.js +208 -374
- package/dist-es/pagination/ListInvitationsPaginator.js +68 -25
- package/dist-es/pagination/ListMembersPaginator.js +68 -25
- package/dist-es/pagination/ListNetworksPaginator.js +68 -25
- package/dist-es/pagination/ListNodesPaginator.js +68 -25
- package/dist-es/pagination/ListProposalVotesPaginator.js +68 -25
- package/dist-es/pagination/ListProposalsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +2555 -1862
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,127 +1,128 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
14
13
|
}
|
|
15
|
-
|
|
14
|
+
return AccessDeniedException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AccessDeniedException };
|
|
16
17
|
export var ThresholdComparator;
|
|
17
18
|
(function (ThresholdComparator) {
|
|
18
19
|
ThresholdComparator["GREATER_THAN"] = "GREATER_THAN";
|
|
19
20
|
ThresholdComparator["GREATER_THAN_OR_EQUAL_TO"] = "GREATER_THAN_OR_EQUAL_TO";
|
|
20
21
|
})(ThresholdComparator || (ThresholdComparator = {}));
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
this.$fault = "server";
|
|
30
|
-
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
22
|
+
var InternalServiceErrorException = (function (_super) {
|
|
23
|
+
__extends(InternalServiceErrorException, _super);
|
|
24
|
+
function InternalServiceErrorException(opts) {
|
|
25
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceErrorException", $fault: "server" }, opts)) || this;
|
|
26
|
+
_this.name = "InternalServiceErrorException";
|
|
27
|
+
_this.$fault = "server";
|
|
28
|
+
Object.setPrototypeOf(_this, InternalServiceErrorException.prototype);
|
|
29
|
+
return _this;
|
|
31
30
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
31
|
+
return InternalServiceErrorException;
|
|
32
|
+
}(__BaseException));
|
|
33
|
+
export { InternalServiceErrorException };
|
|
34
|
+
var InvalidRequestException = (function (_super) {
|
|
35
|
+
__extends(InvalidRequestException, _super);
|
|
36
|
+
function InvalidRequestException(opts) {
|
|
37
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
38
|
+
_this.name = "InvalidRequestException";
|
|
39
|
+
_this.$fault = "client";
|
|
40
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
41
|
+
_this.Message = opts.Message;
|
|
42
|
+
return _this;
|
|
44
43
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
44
|
+
return InvalidRequestException;
|
|
45
|
+
}(__BaseException));
|
|
46
|
+
export { InvalidRequestException };
|
|
47
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
48
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
49
|
+
function ResourceAlreadyExistsException(opts) {
|
|
50
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
51
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
52
|
+
_this.$fault = "client";
|
|
53
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
54
|
+
_this.Message = opts.Message;
|
|
55
|
+
return _this;
|
|
57
56
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
57
|
+
return ResourceAlreadyExistsException;
|
|
58
|
+
}(__BaseException));
|
|
59
|
+
export { ResourceAlreadyExistsException };
|
|
60
|
+
var ResourceLimitExceededException = (function (_super) {
|
|
61
|
+
__extends(ResourceLimitExceededException, _super);
|
|
62
|
+
function ResourceLimitExceededException(opts) {
|
|
63
|
+
var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
64
|
+
_this.name = "ResourceLimitExceededException";
|
|
65
|
+
_this.$fault = "client";
|
|
66
|
+
Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
|
|
67
|
+
_this.Message = opts.Message;
|
|
68
|
+
return _this;
|
|
70
69
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
70
|
+
return ResourceLimitExceededException;
|
|
71
|
+
}(__BaseException));
|
|
72
|
+
export { ResourceLimitExceededException };
|
|
73
|
+
var ResourceNotFoundException = (function (_super) {
|
|
74
|
+
__extends(ResourceNotFoundException, _super);
|
|
75
|
+
function ResourceNotFoundException(opts) {
|
|
76
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
77
|
+
_this.name = "ResourceNotFoundException";
|
|
78
|
+
_this.$fault = "client";
|
|
79
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
80
|
+
_this.Message = opts.Message;
|
|
81
|
+
_this.ResourceName = opts.ResourceName;
|
|
82
|
+
return _this;
|
|
84
83
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
84
|
+
return ResourceNotFoundException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { ResourceNotFoundException };
|
|
87
|
+
var ResourceNotReadyException = (function (_super) {
|
|
88
|
+
__extends(ResourceNotReadyException, _super);
|
|
89
|
+
function ResourceNotReadyException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotReadyException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "ResourceNotReadyException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, ResourceNotReadyException.prototype);
|
|
94
|
+
_this.Message = opts.Message;
|
|
95
|
+
return _this;
|
|
97
96
|
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
97
|
+
return ResourceNotReadyException;
|
|
98
|
+
}(__BaseException));
|
|
99
|
+
export { ResourceNotReadyException };
|
|
100
|
+
var ThrottlingException = (function (_super) {
|
|
101
|
+
__extends(ThrottlingException, _super);
|
|
102
|
+
function ThrottlingException(opts) {
|
|
103
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
104
|
+
_this.name = "ThrottlingException";
|
|
105
|
+
_this.$fault = "client";
|
|
106
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
107
|
+
return _this;
|
|
109
108
|
}
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
109
|
+
return ThrottlingException;
|
|
110
|
+
}(__BaseException));
|
|
111
|
+
export { ThrottlingException };
|
|
112
|
+
var TooManyTagsException = (function (_super) {
|
|
113
|
+
__extends(TooManyTagsException, _super);
|
|
114
|
+
function TooManyTagsException(opts) {
|
|
115
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
116
|
+
_this.name = "TooManyTagsException";
|
|
117
|
+
_this.$fault = "client";
|
|
118
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
119
|
+
_this.Message = opts.Message;
|
|
120
|
+
_this.ResourceName = opts.ResourceName;
|
|
121
|
+
return _this;
|
|
123
122
|
}
|
|
124
|
-
|
|
123
|
+
return TooManyTagsException;
|
|
124
|
+
}(__BaseException));
|
|
125
|
+
export { TooManyTagsException };
|
|
125
126
|
export var Framework;
|
|
126
127
|
(function (Framework) {
|
|
127
128
|
Framework["ETHEREUM"] = "ETHEREUM";
|
|
@@ -175,19 +176,19 @@ export var ProposalStatus;
|
|
|
175
176
|
ProposalStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
176
177
|
ProposalStatus["REJECTED"] = "REJECTED";
|
|
177
178
|
})(ProposalStatus || (ProposalStatus = {}));
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
Object.setPrototypeOf(this, IllegalActionException.prototype);
|
|
188
|
-
this.Message = opts.Message;
|
|
179
|
+
var IllegalActionException = (function (_super) {
|
|
180
|
+
__extends(IllegalActionException, _super);
|
|
181
|
+
function IllegalActionException(opts) {
|
|
182
|
+
var _this = _super.call(this, __assign({ name: "IllegalActionException", $fault: "client" }, opts)) || this;
|
|
183
|
+
_this.name = "IllegalActionException";
|
|
184
|
+
_this.$fault = "client";
|
|
185
|
+
Object.setPrototypeOf(_this, IllegalActionException.prototype);
|
|
186
|
+
_this.Message = opts.Message;
|
|
187
|
+
return _this;
|
|
189
188
|
}
|
|
190
|
-
|
|
189
|
+
return IllegalActionException;
|
|
190
|
+
}(__BaseException));
|
|
191
|
+
export { IllegalActionException };
|
|
191
192
|
export var InvitationStatus;
|
|
192
193
|
(function (InvitationStatus) {
|
|
193
194
|
InvitationStatus["ACCEPTED"] = "ACCEPTED";
|
|
@@ -201,257 +202,90 @@ export var VoteValue;
|
|
|
201
202
|
VoteValue["NO"] = "NO";
|
|
202
203
|
VoteValue["YES"] = "YES";
|
|
203
204
|
})(VoteValue || (VoteValue = {}));
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
});
|
|
207
|
-
export
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
});
|
|
211
|
-
export
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
})
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
});
|
|
218
|
-
export
|
|
219
|
-
|
|
220
|
-
});
|
|
221
|
-
export
|
|
222
|
-
|
|
223
|
-
});
|
|
224
|
-
export
|
|
225
|
-
|
|
226
|
-
});
|
|
227
|
-
export
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
});
|
|
233
|
-
export
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
});
|
|
239
|
-
export
|
|
240
|
-
|
|
241
|
-
});
|
|
242
|
-
export
|
|
243
|
-
|
|
244
|
-
});
|
|
245
|
-
export
|
|
246
|
-
|
|
247
|
-
});
|
|
248
|
-
export
|
|
249
|
-
|
|
250
|
-
});
|
|
251
|
-
export
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
});
|
|
257
|
-
export
|
|
258
|
-
|
|
259
|
-
});
|
|
260
|
-
export
|
|
261
|
-
|
|
262
|
-
});
|
|
263
|
-
export
|
|
264
|
-
|
|
265
|
-
});
|
|
266
|
-
export
|
|
267
|
-
|
|
268
|
-
});
|
|
269
|
-
export
|
|
270
|
-
|
|
271
|
-
});
|
|
272
|
-
export
|
|
273
|
-
|
|
274
|
-
});
|
|
275
|
-
export
|
|
276
|
-
|
|
277
|
-
});
|
|
278
|
-
export
|
|
279
|
-
|
|
280
|
-
});
|
|
281
|
-
export
|
|
282
|
-
|
|
283
|
-
});
|
|
284
|
-
export
|
|
285
|
-
|
|
286
|
-
});
|
|
287
|
-
export
|
|
288
|
-
|
|
289
|
-
});
|
|
290
|
-
export
|
|
291
|
-
...obj,
|
|
292
|
-
});
|
|
293
|
-
export const DeleteMemberOutputFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
});
|
|
296
|
-
export const DeleteNodeInputFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
});
|
|
299
|
-
export const DeleteNodeOutputFilterSensitiveLog = (obj) => ({
|
|
300
|
-
...obj,
|
|
301
|
-
});
|
|
302
|
-
export const GetMemberInputFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
});
|
|
305
|
-
export const MemberFabricAttributesFilterSensitiveLog = (obj) => ({
|
|
306
|
-
...obj,
|
|
307
|
-
});
|
|
308
|
-
export const MemberFrameworkAttributesFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
});
|
|
311
|
-
export const MemberFilterSensitiveLog = (obj) => ({
|
|
312
|
-
...obj,
|
|
313
|
-
});
|
|
314
|
-
export const GetMemberOutputFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
});
|
|
317
|
-
export const GetNetworkInputFilterSensitiveLog = (obj) => ({
|
|
318
|
-
...obj,
|
|
319
|
-
});
|
|
320
|
-
export const NetworkEthereumAttributesFilterSensitiveLog = (obj) => ({
|
|
321
|
-
...obj,
|
|
322
|
-
});
|
|
323
|
-
export const NetworkFabricAttributesFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
});
|
|
326
|
-
export const NetworkFrameworkAttributesFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
});
|
|
329
|
-
export const NetworkFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
});
|
|
332
|
-
export const GetNetworkOutputFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
export const GetNodeInputFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
});
|
|
338
|
-
export const NodeEthereumAttributesFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
export const NodeFabricAttributesFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
344
|
-
export const NodeFrameworkAttributesFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
export const NodeFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
|
-
export const GetNodeOutputFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
});
|
|
353
|
-
export const GetProposalInputFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
export const ProposalFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
});
|
|
359
|
-
export const GetProposalOutputFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
});
|
|
362
|
-
export const NetworkSummaryFilterSensitiveLog = (obj) => ({
|
|
363
|
-
...obj,
|
|
364
|
-
});
|
|
365
|
-
export const InvitationFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
});
|
|
368
|
-
export const ListInvitationsInputFilterSensitiveLog = (obj) => ({
|
|
369
|
-
...obj,
|
|
370
|
-
});
|
|
371
|
-
export const ListInvitationsOutputFilterSensitiveLog = (obj) => ({
|
|
372
|
-
...obj,
|
|
373
|
-
});
|
|
374
|
-
export const ListMembersInputFilterSensitiveLog = (obj) => ({
|
|
375
|
-
...obj,
|
|
376
|
-
});
|
|
377
|
-
export const MemberSummaryFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
});
|
|
380
|
-
export const ListMembersOutputFilterSensitiveLog = (obj) => ({
|
|
381
|
-
...obj,
|
|
382
|
-
});
|
|
383
|
-
export const ListNetworksInputFilterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
});
|
|
386
|
-
export const ListNetworksOutputFilterSensitiveLog = (obj) => ({
|
|
387
|
-
...obj,
|
|
388
|
-
});
|
|
389
|
-
export const ListNodesInputFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
});
|
|
392
|
-
export const NodeSummaryFilterSensitiveLog = (obj) => ({
|
|
393
|
-
...obj,
|
|
394
|
-
});
|
|
395
|
-
export const ListNodesOutputFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
|
-
export const ListProposalsInputFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
});
|
|
401
|
-
export const ProposalSummaryFilterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
});
|
|
404
|
-
export const ListProposalsOutputFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
});
|
|
407
|
-
export const ListProposalVotesInputFilterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
});
|
|
410
|
-
export const VoteSummaryFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
});
|
|
413
|
-
export const ListProposalVotesOutputFilterSensitiveLog = (obj) => ({
|
|
414
|
-
...obj,
|
|
415
|
-
});
|
|
416
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const RejectInvitationInputFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
425
|
-
export const RejectInvitationOutputFilterSensitiveLog = (obj) => ({
|
|
426
|
-
...obj,
|
|
427
|
-
});
|
|
428
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
429
|
-
...obj,
|
|
430
|
-
});
|
|
431
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
});
|
|
434
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
435
|
-
...obj,
|
|
436
|
-
});
|
|
437
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
438
|
-
...obj,
|
|
439
|
-
});
|
|
440
|
-
export const UpdateMemberInputFilterSensitiveLog = (obj) => ({
|
|
441
|
-
...obj,
|
|
442
|
-
});
|
|
443
|
-
export const UpdateMemberOutputFilterSensitiveLog = (obj) => ({
|
|
444
|
-
...obj,
|
|
445
|
-
});
|
|
446
|
-
export const UpdateNodeInputFilterSensitiveLog = (obj) => ({
|
|
447
|
-
...obj,
|
|
448
|
-
});
|
|
449
|
-
export const UpdateNodeOutputFilterSensitiveLog = (obj) => ({
|
|
450
|
-
...obj,
|
|
451
|
-
});
|
|
452
|
-
export const VoteOnProposalInputFilterSensitiveLog = (obj) => ({
|
|
453
|
-
...obj,
|
|
454
|
-
});
|
|
455
|
-
export const VoteOnProposalOutputFilterSensitiveLog = (obj) => ({
|
|
456
|
-
...obj,
|
|
457
|
-
});
|
|
205
|
+
export var ApprovalThresholdPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var MemberFabricConfigurationFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AdminPassword && { AdminPassword: SENSITIVE_STRING }))); };
|
|
207
|
+
export var MemberFrameworkConfigurationFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Fabric && { Fabric: MemberFabricConfigurationFilterSensitiveLog(obj.Fabric) }))); };
|
|
208
|
+
export var LogConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
+
export var LogConfigurationsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
export var MemberFabricLogPublishingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var MemberLogPublishingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
export var MemberConfigurationFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.FrameworkConfiguration && {
|
|
213
|
+
FrameworkConfiguration: MemberFrameworkConfigurationFilterSensitiveLog(obj.FrameworkConfiguration),
|
|
214
|
+
}))); };
|
|
215
|
+
export var CreateMemberInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.MemberConfiguration && {
|
|
216
|
+
MemberConfiguration: MemberConfigurationFilterSensitiveLog(obj.MemberConfiguration),
|
|
217
|
+
}))); };
|
|
218
|
+
export var CreateMemberOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var NetworkFabricConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var NetworkFrameworkConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var VotingPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var CreateNetworkInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.MemberConfiguration && {
|
|
223
|
+
MemberConfiguration: MemberConfigurationFilterSensitiveLog(obj.MemberConfiguration),
|
|
224
|
+
}))); };
|
|
225
|
+
export var CreateNetworkOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var NodeFabricLogPublishingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var NodeLogPublishingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var NodeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
|
+
export var CreateNodeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var CreateNodeOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var InviteActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var RemoveActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var ProposalActionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var CreateProposalInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var CreateProposalOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
export var DeleteMemberInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
237
|
+
export var DeleteMemberOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var DeleteNodeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var DeleteNodeOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var GetMemberInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var MemberFabricAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var MemberFrameworkAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var MemberFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var GetMemberOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var GetNetworkInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var NetworkEthereumAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var NetworkFabricAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var NetworkFrameworkAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var NetworkFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var GetNetworkOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var GetNodeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var NodeEthereumAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var NodeFabricAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var NodeFrameworkAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var NodeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var GetNodeOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var GetProposalInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var ProposalFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var GetProposalOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var NetworkSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var InvitationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var ListInvitationsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var ListInvitationsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var ListMembersInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var MemberSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var ListMembersOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var ListNetworksInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var ListNetworksOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var ListNodesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var NodeSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var ListNodesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var ListProposalsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var ProposalSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var ListProposalsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var ListProposalVotesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var VoteSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var ListProposalVotesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var RejectInvitationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var RejectInvitationOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var UpdateMemberInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var UpdateMemberOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var UpdateNodeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var UpdateNodeOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var VoteOnProposalInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var VoteOnProposalOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|