@aws-sdk/client-managedblockchain 3.180.0 → 3.183.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +29 -23
  3. package/dist-es/ManagedBlockchain.js +94 -101
  4. package/dist-es/ManagedBlockchainClient.js +22 -28
  5. package/dist-es/commands/CreateMemberCommand.js +21 -28
  6. package/dist-es/commands/CreateNetworkCommand.js +21 -28
  7. package/dist-es/commands/CreateNodeCommand.js +21 -28
  8. package/dist-es/commands/CreateProposalCommand.js +21 -28
  9. package/dist-es/commands/DeleteMemberCommand.js +21 -28
  10. package/dist-es/commands/DeleteNodeCommand.js +21 -28
  11. package/dist-es/commands/GetMemberCommand.js +21 -28
  12. package/dist-es/commands/GetNetworkCommand.js +21 -28
  13. package/dist-es/commands/GetNodeCommand.js +21 -28
  14. package/dist-es/commands/GetProposalCommand.js +21 -28
  15. package/dist-es/commands/ListInvitationsCommand.js +21 -28
  16. package/dist-es/commands/ListMembersCommand.js +21 -28
  17. package/dist-es/commands/ListNetworksCommand.js +21 -28
  18. package/dist-es/commands/ListNodesCommand.js +21 -28
  19. package/dist-es/commands/ListProposalVotesCommand.js +21 -28
  20. package/dist-es/commands/ListProposalsCommand.js +21 -28
  21. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  22. package/dist-es/commands/RejectInvitationCommand.js +21 -28
  23. package/dist-es/commands/TagResourceCommand.js +21 -28
  24. package/dist-es/commands/UntagResourceCommand.js +21 -28
  25. package/dist-es/commands/UpdateMemberCommand.js +21 -28
  26. package/dist-es/commands/UpdateNodeCommand.js +21 -28
  27. package/dist-es/commands/VoteOnProposalCommand.js +21 -28
  28. package/dist-es/endpoints.js +8 -8
  29. package/dist-es/models/ManagedBlockchainServiceException.js +5 -10
  30. package/dist-es/models/models_0.js +374 -208
  31. package/dist-es/pagination/ListInvitationsPaginator.js +25 -68
  32. package/dist-es/pagination/ListMembersPaginator.js +25 -68
  33. package/dist-es/pagination/ListNetworksPaginator.js +25 -68
  34. package/dist-es/pagination/ListNodesPaginator.js +25 -68
  35. package/dist-es/pagination/ListProposalVotesPaginator.js +25 -68
  36. package/dist-es/pagination/ListProposalsPaginator.js +25 -68
  37. package/dist-es/protocols/Aws_restJson1.js +1862 -2542
  38. package/dist-es/runtimeConfig.browser.js +26 -12
  39. package/dist-es/runtimeConfig.js +30 -12
  40. package/dist-es/runtimeConfig.native.js +8 -5
  41. package/dist-es/runtimeConfig.shared.js +8 -11
  42. package/package.json +33 -33
@@ -1,128 +1,127 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
2
  import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException";
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;
3
+ export class AccessDeniedException extends __BaseException {
4
+ constructor(opts) {
5
+ super({
6
+ name: "AccessDeniedException",
7
+ $fault: "client",
8
+ ...opts,
9
+ });
10
+ this.name = "AccessDeniedException";
11
+ this.$fault = "client";
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
13
14
  }
14
- return AccessDeniedException;
15
- }(__BaseException));
16
- export { AccessDeniedException };
15
+ }
17
16
  export var ThresholdComparator;
18
17
  (function (ThresholdComparator) {
19
18
  ThresholdComparator["GREATER_THAN"] = "GREATER_THAN";
20
19
  ThresholdComparator["GREATER_THAN_OR_EQUAL_TO"] = "GREATER_THAN_OR_EQUAL_TO";
21
20
  })(ThresholdComparator || (ThresholdComparator = {}));
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;
21
+ export class InternalServiceErrorException extends __BaseException {
22
+ constructor(opts) {
23
+ super({
24
+ name: "InternalServiceErrorException",
25
+ $fault: "server",
26
+ ...opts,
27
+ });
28
+ this.name = "InternalServiceErrorException";
29
+ this.$fault = "server";
30
+ Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
30
31
  }
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;
32
+ }
33
+ export class InvalidRequestException extends __BaseException {
34
+ constructor(opts) {
35
+ super({
36
+ name: "InvalidRequestException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ this.name = "InvalidRequestException";
41
+ this.$fault = "client";
42
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
43
+ this.Message = opts.Message;
43
44
  }
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;
45
+ }
46
+ export class ResourceAlreadyExistsException extends __BaseException {
47
+ constructor(opts) {
48
+ super({
49
+ name: "ResourceAlreadyExistsException",
50
+ $fault: "client",
51
+ ...opts,
52
+ });
53
+ this.name = "ResourceAlreadyExistsException";
54
+ this.$fault = "client";
55
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
56
+ this.Message = opts.Message;
56
57
  }
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;
58
+ }
59
+ export class ResourceLimitExceededException extends __BaseException {
60
+ constructor(opts) {
61
+ super({
62
+ name: "ResourceLimitExceededException",
63
+ $fault: "client",
64
+ ...opts,
65
+ });
66
+ this.name = "ResourceLimitExceededException";
67
+ this.$fault = "client";
68
+ Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
69
+ this.Message = opts.Message;
69
70
  }
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;
71
+ }
72
+ export class ResourceNotFoundException extends __BaseException {
73
+ constructor(opts) {
74
+ super({
75
+ name: "ResourceNotFoundException",
76
+ $fault: "client",
77
+ ...opts,
78
+ });
79
+ this.name = "ResourceNotFoundException";
80
+ this.$fault = "client";
81
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
82
+ this.Message = opts.Message;
83
+ this.ResourceName = opts.ResourceName;
83
84
  }
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;
85
+ }
86
+ export class ResourceNotReadyException extends __BaseException {
87
+ constructor(opts) {
88
+ super({
89
+ name: "ResourceNotReadyException",
90
+ $fault: "client",
91
+ ...opts,
92
+ });
93
+ this.name = "ResourceNotReadyException";
94
+ this.$fault = "client";
95
+ Object.setPrototypeOf(this, ResourceNotReadyException.prototype);
96
+ this.Message = opts.Message;
96
97
  }
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;
98
+ }
99
+ export class ThrottlingException extends __BaseException {
100
+ constructor(opts) {
101
+ super({
102
+ name: "ThrottlingException",
103
+ $fault: "client",
104
+ ...opts,
105
+ });
106
+ this.name = "ThrottlingException";
107
+ this.$fault = "client";
108
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
108
109
  }
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;
110
+ }
111
+ export class TooManyTagsException extends __BaseException {
112
+ constructor(opts) {
113
+ super({
114
+ name: "TooManyTagsException",
115
+ $fault: "client",
116
+ ...opts,
117
+ });
118
+ this.name = "TooManyTagsException";
119
+ this.$fault = "client";
120
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
121
+ this.Message = opts.Message;
122
+ this.ResourceName = opts.ResourceName;
122
123
  }
123
- return TooManyTagsException;
124
- }(__BaseException));
125
- export { TooManyTagsException };
124
+ }
126
125
  export var Framework;
127
126
  (function (Framework) {
128
127
  Framework["ETHEREUM"] = "ETHEREUM";
@@ -176,19 +175,19 @@ export var ProposalStatus;
176
175
  ProposalStatus["IN_PROGRESS"] = "IN_PROGRESS";
177
176
  ProposalStatus["REJECTED"] = "REJECTED";
178
177
  })(ProposalStatus || (ProposalStatus = {}));
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;
178
+ export class IllegalActionException extends __BaseException {
179
+ constructor(opts) {
180
+ super({
181
+ name: "IllegalActionException",
182
+ $fault: "client",
183
+ ...opts,
184
+ });
185
+ this.name = "IllegalActionException";
186
+ this.$fault = "client";
187
+ Object.setPrototypeOf(this, IllegalActionException.prototype);
188
+ this.Message = opts.Message;
188
189
  }
189
- return IllegalActionException;
190
- }(__BaseException));
191
- export { IllegalActionException };
190
+ }
192
191
  export var InvitationStatus;
193
192
  (function (InvitationStatus) {
194
193
  InvitationStatus["ACCEPTED"] = "ACCEPTED";
@@ -202,90 +201,257 @@ export var VoteValue;
202
201
  VoteValue["NO"] = "NO";
203
202
  VoteValue["YES"] = "YES";
204
203
  })(VoteValue || (VoteValue = {}));
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)); };
204
+ export const ApprovalThresholdPolicyFilterSensitiveLog = (obj) => ({
205
+ ...obj,
206
+ });
207
+ export const MemberFabricConfigurationFilterSensitiveLog = (obj) => ({
208
+ ...obj,
209
+ ...(obj.AdminPassword && { AdminPassword: SENSITIVE_STRING }),
210
+ });
211
+ export const MemberFrameworkConfigurationFilterSensitiveLog = (obj) => ({
212
+ ...obj,
213
+ ...(obj.Fabric && { Fabric: MemberFabricConfigurationFilterSensitiveLog(obj.Fabric) }),
214
+ });
215
+ export const LogConfigurationFilterSensitiveLog = (obj) => ({
216
+ ...obj,
217
+ });
218
+ export const LogConfigurationsFilterSensitiveLog = (obj) => ({
219
+ ...obj,
220
+ });
221
+ export const MemberFabricLogPublishingConfigurationFilterSensitiveLog = (obj) => ({
222
+ ...obj,
223
+ });
224
+ export const MemberLogPublishingConfigurationFilterSensitiveLog = (obj) => ({
225
+ ...obj,
226
+ });
227
+ export const MemberConfigurationFilterSensitiveLog = (obj) => ({
228
+ ...obj,
229
+ ...(obj.FrameworkConfiguration && {
230
+ FrameworkConfiguration: MemberFrameworkConfigurationFilterSensitiveLog(obj.FrameworkConfiguration),
231
+ }),
232
+ });
233
+ export const CreateMemberInputFilterSensitiveLog = (obj) => ({
234
+ ...obj,
235
+ ...(obj.MemberConfiguration && {
236
+ MemberConfiguration: MemberConfigurationFilterSensitiveLog(obj.MemberConfiguration),
237
+ }),
238
+ });
239
+ export const CreateMemberOutputFilterSensitiveLog = (obj) => ({
240
+ ...obj,
241
+ });
242
+ export const NetworkFabricConfigurationFilterSensitiveLog = (obj) => ({
243
+ ...obj,
244
+ });
245
+ export const NetworkFrameworkConfigurationFilterSensitiveLog = (obj) => ({
246
+ ...obj,
247
+ });
248
+ export const VotingPolicyFilterSensitiveLog = (obj) => ({
249
+ ...obj,
250
+ });
251
+ export const CreateNetworkInputFilterSensitiveLog = (obj) => ({
252
+ ...obj,
253
+ ...(obj.MemberConfiguration && {
254
+ MemberConfiguration: MemberConfigurationFilterSensitiveLog(obj.MemberConfiguration),
255
+ }),
256
+ });
257
+ export const CreateNetworkOutputFilterSensitiveLog = (obj) => ({
258
+ ...obj,
259
+ });
260
+ export const NodeFabricLogPublishingConfigurationFilterSensitiveLog = (obj) => ({
261
+ ...obj,
262
+ });
263
+ export const NodeLogPublishingConfigurationFilterSensitiveLog = (obj) => ({
264
+ ...obj,
265
+ });
266
+ export const NodeConfigurationFilterSensitiveLog = (obj) => ({
267
+ ...obj,
268
+ });
269
+ export const CreateNodeInputFilterSensitiveLog = (obj) => ({
270
+ ...obj,
271
+ });
272
+ export const CreateNodeOutputFilterSensitiveLog = (obj) => ({
273
+ ...obj,
274
+ });
275
+ export const InviteActionFilterSensitiveLog = (obj) => ({
276
+ ...obj,
277
+ });
278
+ export const RemoveActionFilterSensitiveLog = (obj) => ({
279
+ ...obj,
280
+ });
281
+ export const ProposalActionsFilterSensitiveLog = (obj) => ({
282
+ ...obj,
283
+ });
284
+ export const CreateProposalInputFilterSensitiveLog = (obj) => ({
285
+ ...obj,
286
+ });
287
+ export const CreateProposalOutputFilterSensitiveLog = (obj) => ({
288
+ ...obj,
289
+ });
290
+ export const DeleteMemberInputFilterSensitiveLog = (obj) => ({
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
+ });