@aws-sdk/client-fms 3.52.0 → 3.53.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 +12 -0
- package/README.md +6 -6
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/FMSServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +124 -3
- package/dist-cjs/protocols/Aws_json1_1.js +367 -888
- package/dist-es/index.js +1 -0
- package/dist-es/models/FMSServiceException.js +12 -0
- package/dist-es/models/models_0.js +106 -1
- package/dist-es/protocols/Aws_json1_1.js +667 -983
- package/dist-types/FMS.d.ts +59 -56
- package/dist-types/FMSClient.d.ts +6 -6
- package/dist-types/commands/AssociateAdminAccountCommand.d.ts +5 -4
- package/dist-types/commands/DeleteNotificationChannelCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateAdminAccountCommand.d.ts +3 -3
- package/dist-types/commands/GetAdminAccountCommand.d.ts +2 -2
- package/dist-types/commands/GetComplianceDetailCommand.d.ts +13 -13
- package/dist-types/commands/GetNotificationChannelCommand.d.ts +2 -2
- package/dist-types/commands/GetProtectionStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetViolationDetailsCommand.d.ts +2 -1
- package/dist-types/commands/ListComplianceStatusCommand.d.ts +2 -2
- package/dist-types/commands/ListMemberAccountsCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutNotificationChannelCommand.d.ts +6 -5
- package/dist-types/commands/PutPolicyCommand.d.ts +11 -12
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/FMSServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +771 -334
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/FMSServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -19
- package/package.json +25 -25
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
12
|
+
* **clients:** update clients as of 2022/02/24 ([#3361](https://github.com/aws/aws-sdk-js-v3/issues/3361)) ([ec3cc1e](https://github.com/aws/aws-sdk-js-v3/commit/ec3cc1eacd4010797a3a9eec2b0cc1a55e531ea9))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @aws-sdk/client-fms
|
package/README.md
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
AWS SDK for JavaScript FMS Client for Node.js, Browser and React Native.
|
|
9
9
|
|
|
10
10
|
<p>This is the <i>Firewall Manager API Reference</i>. This guide is for
|
|
11
|
-
developers who need detailed information about the Firewall Manager API actions, data
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
<p>Some API actions require explicit resource permissions. For information, see the
|
|
15
|
-
<a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-api-permissions-ref.html">Firewall Manager required permissions
|
|
16
|
-
</p>
|
|
11
|
+
developers who need detailed information about the Firewall Manager API actions, data types, and
|
|
12
|
+
errors. For detailed information about Firewall Manager features, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-chapter.html">Firewall Manager
|
|
13
|
+
Developer Guide</a>.</p>
|
|
14
|
+
<p>Some API actions require explicit resource permissions. For information, see the
|
|
15
|
+
developer guide topic <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-api-permissions-ref.html">Firewall Manager required permissions
|
|
16
|
+
for API actions</a>. </p>
|
|
17
17
|
|
|
18
18
|
## Installing
|
|
19
19
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FMSServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./FMS"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./FMSClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var FMSServiceException_1 = require("./models/FMSServiceException");
|
|
11
|
+
Object.defineProperty(exports, "FMSServiceException", { enumerable: true, get: function () { return FMSServiceException_1.FMSServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FMSServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class FMSServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, FMSServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.FMSServiceException = FMSServiceException;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.PutProtocolsListResponse = exports.PutProtocolsListRequest = void 0;
|
|
3
|
+
exports.RemediationActionType = exports.PartialMatch = exports.Tag = exports.GetViolationDetailsRequest = exports.GetProtocolsListResponse = exports.ProtocolsListData = exports.GetProtocolsListRequest = exports.GetProtectionStatusResponse = exports.GetProtectionStatusRequest = exports.InvalidTypeException = exports.GetPolicyResponse = exports.Policy = exports.SecurityServicePolicyData = exports.SecurityServiceType = exports.PolicyOption = exports.NetworkFirewallPolicy = exports.FirewallDeploymentModel = exports.ResourceTag = exports.CustomerPolicyScopeIdType = exports.GetPolicyRequest = exports.GetNotificationChannelResponse = exports.GetNotificationChannelRequest = exports.GetComplianceDetailResponse = exports.PolicyComplianceDetail = exports.ComplianceViolator = exports.ViolationReason = exports.DependentServiceName = exports.GetComplianceDetailRequest = exports.GetAppsListResponse = exports.GetAppsListRequest = exports.GetAdminAccountResponse = exports.GetAdminAccountRequest = exports.DisassociateAdminAccountRequest = exports.DeleteProtocolsListRequest = exports.DeletePolicyRequest = exports.DeleteNotificationChannelRequest = exports.DeleteAppsListRequest = exports.AwsEc2InstanceViolation = exports.AwsEc2NetworkInterfaceViolation = exports.ResourceNotFoundException = exports.LimitExceededException = exports.InvalidOperationException = exports.InvalidInputException = exports.InternalErrorException = exports.AssociateAdminAccountRequest = exports.AppsListDataSummary = exports.AppsListData = exports.App = exports.ActionTarget = exports.AccountRoleStatus = void 0;
|
|
4
|
+
exports.ListPoliciesRequest = exports.ListMemberAccountsResponse = exports.ListMemberAccountsRequest = exports.ListComplianceStatusResponse = exports.PolicyComplianceStatus = exports.EvaluationResult = exports.PolicyComplianceStatusType = exports.ListComplianceStatusRequest = exports.ListAppsListsResponse = exports.ListAppsListsRequest = exports.GetViolationDetailsResponse = exports.ViolationDetail = exports.ResourceViolation = exports.RouteHasOutOfScopeEndpointViolation = exports.PossibleRemediationActions = exports.PossibleRemediationAction = exports.RemediationActionWithOrder = exports.RemediationAction = exports.FMSPolicyUpdateFirewallCreationConfigAction = exports.EC2ReplaceRouteTableAssociationAction = exports.EC2ReplaceRouteAction = exports.EC2DeleteRouteAction = exports.EC2CreateRouteTableAction = exports.EC2CreateRouteAction = exports.EC2CopyRouteTableAction = exports.EC2AssociateRouteTableAction = exports.NetworkFirewallUnexpectedGatewayRoutesViolation = exports.NetworkFirewallUnexpectedFirewallRoutesViolation = exports.NetworkFirewallPolicyModifiedViolation = exports.NetworkFirewallPolicyDescription = exports.StatelessRuleGroup = exports.StatefulRuleGroup = exports.NetworkFirewallMissingSubnetViolation = exports.NetworkFirewallMissingFirewallViolation = exports.NetworkFirewallMissingExpectedRTViolation = exports.NetworkFirewallMissingExpectedRoutesViolation = exports.NetworkFirewallInvalidRouteConfigurationViolation = exports.NetworkFirewallInternetTrafficNotInspectedViolation = exports.ExpectedRoute = exports.NetworkFirewallBlackHoleRouteDetectedViolation = exports.Route = exports.TargetType = exports.DestinationType = exports.FirewallSubnetIsOutOfScopeViolation = exports.DnsRuleGroupPriorityConflictViolation = exports.DnsRuleGroupLimitExceededViolation = exports.DnsDuplicateRuleGroupViolation = exports.AwsVPCSecurityGroupViolation = exports.SecurityGroupRemediationAction = exports.SecurityGroupRuleDescription = void 0;
|
|
5
|
+
exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.PutProtocolsListResponse = exports.PutProtocolsListRequest = exports.PutPolicyResponse = exports.PutPolicyRequest = exports.PutNotificationChannelRequest = exports.PutAppsListResponse = exports.PutAppsListRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListProtocolsListsResponse = exports.ProtocolsListDataSummary = exports.ListProtocolsListsRequest = exports.ListPoliciesResponse = exports.PolicySummary = void 0;
|
|
6
|
+
const FMSServiceException_1 = require("./FMSServiceException");
|
|
6
7
|
var AccountRoleStatus;
|
|
7
8
|
(function (AccountRoleStatus) {
|
|
8
9
|
AccountRoleStatus["Creating"] = "CREATING";
|
|
@@ -41,6 +42,76 @@ var AssociateAdminAccountRequest;
|
|
|
41
42
|
...obj,
|
|
42
43
|
});
|
|
43
44
|
})(AssociateAdminAccountRequest = exports.AssociateAdminAccountRequest || (exports.AssociateAdminAccountRequest = {}));
|
|
45
|
+
class InternalErrorException extends FMSServiceException_1.FMSServiceException {
|
|
46
|
+
constructor(opts) {
|
|
47
|
+
super({
|
|
48
|
+
name: "InternalErrorException",
|
|
49
|
+
$fault: "client",
|
|
50
|
+
...opts,
|
|
51
|
+
});
|
|
52
|
+
this.name = "InternalErrorException";
|
|
53
|
+
this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
55
|
+
this.Message = opts.Message;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
exports.InternalErrorException = InternalErrorException;
|
|
59
|
+
class InvalidInputException extends FMSServiceException_1.FMSServiceException {
|
|
60
|
+
constructor(opts) {
|
|
61
|
+
super({
|
|
62
|
+
name: "InvalidInputException",
|
|
63
|
+
$fault: "client",
|
|
64
|
+
...opts,
|
|
65
|
+
});
|
|
66
|
+
this.name = "InvalidInputException";
|
|
67
|
+
this.$fault = "client";
|
|
68
|
+
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
69
|
+
this.Message = opts.Message;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
exports.InvalidInputException = InvalidInputException;
|
|
73
|
+
class InvalidOperationException extends FMSServiceException_1.FMSServiceException {
|
|
74
|
+
constructor(opts) {
|
|
75
|
+
super({
|
|
76
|
+
name: "InvalidOperationException",
|
|
77
|
+
$fault: "client",
|
|
78
|
+
...opts,
|
|
79
|
+
});
|
|
80
|
+
this.name = "InvalidOperationException";
|
|
81
|
+
this.$fault = "client";
|
|
82
|
+
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
83
|
+
this.Message = opts.Message;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
exports.InvalidOperationException = InvalidOperationException;
|
|
87
|
+
class LimitExceededException extends FMSServiceException_1.FMSServiceException {
|
|
88
|
+
constructor(opts) {
|
|
89
|
+
super({
|
|
90
|
+
name: "LimitExceededException",
|
|
91
|
+
$fault: "client",
|
|
92
|
+
...opts,
|
|
93
|
+
});
|
|
94
|
+
this.name = "LimitExceededException";
|
|
95
|
+
this.$fault = "client";
|
|
96
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
97
|
+
this.Message = opts.Message;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
exports.LimitExceededException = LimitExceededException;
|
|
101
|
+
class ResourceNotFoundException extends FMSServiceException_1.FMSServiceException {
|
|
102
|
+
constructor(opts) {
|
|
103
|
+
super({
|
|
104
|
+
name: "ResourceNotFoundException",
|
|
105
|
+
$fault: "client",
|
|
106
|
+
...opts,
|
|
107
|
+
});
|
|
108
|
+
this.name = "ResourceNotFoundException";
|
|
109
|
+
this.$fault = "client";
|
|
110
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
111
|
+
this.Message = opts.Message;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
44
115
|
var AwsEc2NetworkInterfaceViolation;
|
|
45
116
|
(function (AwsEc2NetworkInterfaceViolation) {
|
|
46
117
|
AwsEc2NetworkInterfaceViolation.filterSensitiveLog = (obj) => ({
|
|
@@ -125,6 +196,7 @@ var ViolationReason;
|
|
|
125
196
|
ViolationReason["BlackHoleRouteDetected"] = "BLACK_HOLE_ROUTE_DETECTED";
|
|
126
197
|
ViolationReason["BlackHoleRouteDetectedInFirewallSubnet"] = "BLACK_HOLE_ROUTE_DETECTED_IN_FIREWALL_SUBNET";
|
|
127
198
|
ViolationReason["FMSCreatedSecurityGroupEdited"] = "FMS_CREATED_SECURITY_GROUP_EDITED";
|
|
199
|
+
ViolationReason["FirewallSubnetIsOutOfScope"] = "FIREWALL_SUBNET_IS_OUT_OF_SCOPE";
|
|
128
200
|
ViolationReason["FirewallSubnetMissingExpectedRoute"] = "FIREWALL_SUBNET_MISSING_EXPECTED_ROUTE";
|
|
129
201
|
ViolationReason["InternetGatewayMissingExpectedRoute"] = "INTERNET_GATEWAY_MISSING_EXPECTED_ROUTE";
|
|
130
202
|
ViolationReason["InternetTrafficNotInspected"] = "INTERNET_TRAFFIC_NOT_INSPECTED";
|
|
@@ -141,6 +213,7 @@ var ViolationReason;
|
|
|
141
213
|
ViolationReason["ResourceMissingWebAcl"] = "RESOURCE_MISSING_WEB_ACL";
|
|
142
214
|
ViolationReason["ResourceMissingWebaclOrShieldProtection"] = "RESOURCE_MISSING_WEB_ACL_OR_SHIELD_PROTECTION";
|
|
143
215
|
ViolationReason["ResourceViolatesAuditSecurityGroup"] = "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP";
|
|
216
|
+
ViolationReason["RouteHasOutOfScopeEndpoint"] = "ROUTE_HAS_OUT_OF_SCOPE_ENDPOINT";
|
|
144
217
|
ViolationReason["SecurityGroupRedundant"] = "SECURITY_GROUP_REDUNDANT";
|
|
145
218
|
ViolationReason["SecurityGroupUnused"] = "SECURITY_GROUP_UNUSED";
|
|
146
219
|
ViolationReason["TrafficInspectionCrossesAZBoundary"] = "TRAFFIC_INSPECTION_CROSSES_AZ_BOUNDARY";
|
|
@@ -195,6 +268,22 @@ var ResourceTag;
|
|
|
195
268
|
...obj,
|
|
196
269
|
});
|
|
197
270
|
})(ResourceTag = exports.ResourceTag || (exports.ResourceTag = {}));
|
|
271
|
+
var FirewallDeploymentModel;
|
|
272
|
+
(function (FirewallDeploymentModel) {
|
|
273
|
+
FirewallDeploymentModel["CENTRALIZED"] = "CENTRALIZED";
|
|
274
|
+
})(FirewallDeploymentModel = exports.FirewallDeploymentModel || (exports.FirewallDeploymentModel = {}));
|
|
275
|
+
var NetworkFirewallPolicy;
|
|
276
|
+
(function (NetworkFirewallPolicy) {
|
|
277
|
+
NetworkFirewallPolicy.filterSensitiveLog = (obj) => ({
|
|
278
|
+
...obj,
|
|
279
|
+
});
|
|
280
|
+
})(NetworkFirewallPolicy = exports.NetworkFirewallPolicy || (exports.NetworkFirewallPolicy = {}));
|
|
281
|
+
var PolicyOption;
|
|
282
|
+
(function (PolicyOption) {
|
|
283
|
+
PolicyOption.filterSensitiveLog = (obj) => ({
|
|
284
|
+
...obj,
|
|
285
|
+
});
|
|
286
|
+
})(PolicyOption = exports.PolicyOption || (exports.PolicyOption = {}));
|
|
198
287
|
var SecurityServiceType;
|
|
199
288
|
(function (SecurityServiceType) {
|
|
200
289
|
SecurityServiceType["DNS_FIREWALL"] = "DNS_FIREWALL";
|
|
@@ -224,6 +313,20 @@ var GetPolicyResponse;
|
|
|
224
313
|
...obj,
|
|
225
314
|
});
|
|
226
315
|
})(GetPolicyResponse = exports.GetPolicyResponse || (exports.GetPolicyResponse = {}));
|
|
316
|
+
class InvalidTypeException extends FMSServiceException_1.FMSServiceException {
|
|
317
|
+
constructor(opts) {
|
|
318
|
+
super({
|
|
319
|
+
name: "InvalidTypeException",
|
|
320
|
+
$fault: "client",
|
|
321
|
+
...opts,
|
|
322
|
+
});
|
|
323
|
+
this.name = "InvalidTypeException";
|
|
324
|
+
this.$fault = "client";
|
|
325
|
+
Object.setPrototypeOf(this, InvalidTypeException.prototype);
|
|
326
|
+
this.Message = opts.Message;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
exports.InvalidTypeException = InvalidTypeException;
|
|
227
330
|
var GetProtectionStatusRequest;
|
|
228
331
|
(function (GetProtectionStatusRequest) {
|
|
229
332
|
GetProtectionStatusRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -313,6 +416,12 @@ var DnsRuleGroupPriorityConflictViolation;
|
|
|
313
416
|
...obj,
|
|
314
417
|
});
|
|
315
418
|
})(DnsRuleGroupPriorityConflictViolation = exports.DnsRuleGroupPriorityConflictViolation || (exports.DnsRuleGroupPriorityConflictViolation = {}));
|
|
419
|
+
var FirewallSubnetIsOutOfScopeViolation;
|
|
420
|
+
(function (FirewallSubnetIsOutOfScopeViolation) {
|
|
421
|
+
FirewallSubnetIsOutOfScopeViolation.filterSensitiveLog = (obj) => ({
|
|
422
|
+
...obj,
|
|
423
|
+
});
|
|
424
|
+
})(FirewallSubnetIsOutOfScopeViolation = exports.FirewallSubnetIsOutOfScopeViolation || (exports.FirewallSubnetIsOutOfScopeViolation = {}));
|
|
316
425
|
var DestinationType;
|
|
317
426
|
(function (DestinationType) {
|
|
318
427
|
DestinationType["IPV4"] = "IPV4";
|
|
@@ -464,6 +573,12 @@ var EC2ReplaceRouteTableAssociationAction;
|
|
|
464
573
|
...obj,
|
|
465
574
|
});
|
|
466
575
|
})(EC2ReplaceRouteTableAssociationAction = exports.EC2ReplaceRouteTableAssociationAction || (exports.EC2ReplaceRouteTableAssociationAction = {}));
|
|
576
|
+
var FMSPolicyUpdateFirewallCreationConfigAction;
|
|
577
|
+
(function (FMSPolicyUpdateFirewallCreationConfigAction) {
|
|
578
|
+
FMSPolicyUpdateFirewallCreationConfigAction.filterSensitiveLog = (obj) => ({
|
|
579
|
+
...obj,
|
|
580
|
+
});
|
|
581
|
+
})(FMSPolicyUpdateFirewallCreationConfigAction = exports.FMSPolicyUpdateFirewallCreationConfigAction || (exports.FMSPolicyUpdateFirewallCreationConfigAction = {}));
|
|
467
582
|
var RemediationAction;
|
|
468
583
|
(function (RemediationAction) {
|
|
469
584
|
RemediationAction.filterSensitiveLog = (obj) => ({
|
|
@@ -488,6 +603,12 @@ var PossibleRemediationActions;
|
|
|
488
603
|
...obj,
|
|
489
604
|
});
|
|
490
605
|
})(PossibleRemediationActions = exports.PossibleRemediationActions || (exports.PossibleRemediationActions = {}));
|
|
606
|
+
var RouteHasOutOfScopeEndpointViolation;
|
|
607
|
+
(function (RouteHasOutOfScopeEndpointViolation) {
|
|
608
|
+
RouteHasOutOfScopeEndpointViolation.filterSensitiveLog = (obj) => ({
|
|
609
|
+
...obj,
|
|
610
|
+
});
|
|
611
|
+
})(RouteHasOutOfScopeEndpointViolation = exports.RouteHasOutOfScopeEndpointViolation || (exports.RouteHasOutOfScopeEndpointViolation = {}));
|
|
491
612
|
var ResourceViolation;
|
|
492
613
|
(function (ResourceViolation) {
|
|
493
614
|
ResourceViolation.filterSensitiveLog = (obj) => ({
|