@aws-sdk/client-fms 3.952.0 → 3.954.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 +694 -450
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateAdminAccountCommand.js +2 -2
- package/dist-es/commands/AssociateThirdPartyFirewallCommand.js +2 -2
- package/dist-es/commands/BatchAssociateResourceCommand.js +2 -2
- package/dist-es/commands/BatchDisassociateResourceCommand.js +2 -2
- package/dist-es/commands/DeleteAppsListCommand.js +2 -2
- package/dist-es/commands/DeleteNotificationChannelCommand.js +2 -2
- package/dist-es/commands/DeletePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteProtocolsListCommand.js +2 -2
- package/dist-es/commands/DeleteResourceSetCommand.js +2 -2
- package/dist-es/commands/DisassociateAdminAccountCommand.js +2 -2
- package/dist-es/commands/DisassociateThirdPartyFirewallCommand.js +2 -2
- package/dist-es/commands/GetAdminAccountCommand.js +2 -2
- package/dist-es/commands/GetAdminScopeCommand.js +2 -2
- package/dist-es/commands/GetAppsListCommand.js +2 -2
- package/dist-es/commands/GetComplianceDetailCommand.js +2 -2
- package/dist-es/commands/GetNotificationChannelCommand.js +2 -2
- package/dist-es/commands/GetPolicyCommand.js +2 -2
- package/dist-es/commands/GetProtectionStatusCommand.js +2 -2
- package/dist-es/commands/GetProtocolsListCommand.js +2 -2
- package/dist-es/commands/GetResourceSetCommand.js +2 -2
- package/dist-es/commands/GetThirdPartyFirewallAssociationStatusCommand.js +2 -2
- package/dist-es/commands/GetViolationDetailsCommand.js +2 -2
- package/dist-es/commands/ListAdminAccountsForOrganizationCommand.js +2 -2
- package/dist-es/commands/ListAdminsManagingAccountCommand.js +2 -2
- package/dist-es/commands/ListAppsListsCommand.js +2 -2
- package/dist-es/commands/ListComplianceStatusCommand.js +2 -2
- package/dist-es/commands/ListDiscoveredResourcesCommand.js +2 -2
- package/dist-es/commands/ListMemberAccountsCommand.js +2 -2
- package/dist-es/commands/ListPoliciesCommand.js +2 -2
- package/dist-es/commands/ListProtocolsListsCommand.js +2 -2
- package/dist-es/commands/ListResourceSetResourcesCommand.js +2 -2
- package/dist-es/commands/ListResourceSetsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListThirdPartyFirewallFirewallPoliciesCommand.js +2 -2
- package/dist-es/commands/PutAdminAccountCommand.js +2 -2
- package/dist-es/commands/PutAppsListCommand.js +2 -2
- package/dist-es/commands/PutNotificationChannelCommand.js +2 -2
- package/dist-es/commands/PutPolicyCommand.js +2 -2
- package/dist-es/commands/PutProtocolsListCommand.js +2 -2
- package/dist-es/commands/PutResourceSetCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +444 -414
- package/dist-types/FMSClient.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 +215 -269
- package/dist-types/ts3.4/FMSClient.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 +214 -270
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class FMSClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class FMSServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, FMSServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class InternalErrorException extends FMSServiceException {
|
|
121
121
|
name = "InternalErrorException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let InternalErrorException$1 = class InternalErrorException extends FMSServiceEx
|
|
|
130
130
|
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class InvalidInputException extends FMSServiceException {
|
|
135
135
|
name = "InvalidInputException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
Message;
|
|
@@ -144,8 +144,8 @@ let InvalidInputException$1 = class InvalidInputException extends FMSServiceExce
|
|
|
144
144
|
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
145
145
|
this.Message = opts.Message;
|
|
146
146
|
}
|
|
147
|
-
}
|
|
148
|
-
|
|
147
|
+
}
|
|
148
|
+
class InvalidOperationException extends FMSServiceException {
|
|
149
149
|
name = "InvalidOperationException";
|
|
150
150
|
$fault = "client";
|
|
151
151
|
Message;
|
|
@@ -158,8 +158,8 @@ let InvalidOperationException$1 = class InvalidOperationException extends FMSSer
|
|
|
158
158
|
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
159
159
|
this.Message = opts.Message;
|
|
160
160
|
}
|
|
161
|
-
}
|
|
162
|
-
|
|
161
|
+
}
|
|
162
|
+
class LimitExceededException extends FMSServiceException {
|
|
163
163
|
name = "LimitExceededException";
|
|
164
164
|
$fault = "client";
|
|
165
165
|
Message;
|
|
@@ -172,8 +172,8 @@ let LimitExceededException$1 = class LimitExceededException extends FMSServiceEx
|
|
|
172
172
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
173
173
|
this.Message = opts.Message;
|
|
174
174
|
}
|
|
175
|
-
}
|
|
176
|
-
|
|
175
|
+
}
|
|
176
|
+
class ResourceNotFoundException extends FMSServiceException {
|
|
177
177
|
name = "ResourceNotFoundException";
|
|
178
178
|
$fault = "client";
|
|
179
179
|
Message;
|
|
@@ -186,8 +186,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends FMSSer
|
|
|
186
186
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
187
187
|
this.Message = opts.Message;
|
|
188
188
|
}
|
|
189
|
-
}
|
|
190
|
-
|
|
189
|
+
}
|
|
190
|
+
class InvalidTypeException extends FMSServiceException {
|
|
191
191
|
name = "InvalidTypeException";
|
|
192
192
|
$fault = "client";
|
|
193
193
|
Message;
|
|
@@ -200,7 +200,7 @@ let InvalidTypeException$1 = class InvalidTypeException extends FMSServiceExcept
|
|
|
200
200
|
Object.setPrototypeOf(this, InvalidTypeException.prototype);
|
|
201
201
|
this.Message = opts.Message;
|
|
202
202
|
}
|
|
203
|
-
}
|
|
203
|
+
}
|
|
204
204
|
|
|
205
205
|
const _A = "Accounts";
|
|
206
206
|
const _AA = "AdminAccount";
|
|
@@ -660,19 +660,19 @@ const _c = "client";
|
|
|
660
660
|
const _e = "error";
|
|
661
661
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.fms";
|
|
662
662
|
const n0 = "com.amazonaws.fms";
|
|
663
|
-
var AccountScope = [3, n0, _AS, 0, [_A, _AAE, _ESA], [64 | 0, 2, 2]];
|
|
664
|
-
var ActionTarget = [3, n0, _AT, 0, [_RI, _D], [0, 0]];
|
|
665
|
-
var AdminAccountSummary = [3, n0, _AAS, 0, [_AA, _DA, _S], [0, 2, 0]];
|
|
666
|
-
var AdminScope = [
|
|
663
|
+
var AccountScope$ = [3, n0, _AS, 0, [_A, _AAE, _ESA], [64 | 0, 2, 2]];
|
|
664
|
+
var ActionTarget$ = [3, n0, _AT, 0, [_RI, _D], [0, 0]];
|
|
665
|
+
var AdminAccountSummary$ = [3, n0, _AAS, 0, [_AA, _DA, _S], [0, 2, 0]];
|
|
666
|
+
var AdminScope$ = [
|
|
667
667
|
3,
|
|
668
668
|
n0,
|
|
669
669
|
_ASd,
|
|
670
670
|
0,
|
|
671
671
|
[_AS, _OUS, _RS, _PTS],
|
|
672
|
-
[() => AccountScope
|
|
672
|
+
[() => AccountScope$, () => OrganizationalUnitScope$, () => RegionScope$, () => PolicyTypeScope$],
|
|
673
673
|
];
|
|
674
|
-
var App = [3, n0, _Ap, 0, [_AN, _P, _Po], [0, 0, 1]];
|
|
675
|
-
var AppsListData = [
|
|
674
|
+
var App$ = [3, n0, _Ap, 0, [_AN, _P, _Po], [0, 0, 1]];
|
|
675
|
+
var AppsListData$ = [
|
|
676
676
|
3,
|
|
677
677
|
n0,
|
|
678
678
|
_ALD,
|
|
@@ -680,7 +680,7 @@ var AppsListData = [
|
|
|
680
680
|
[_LI, _LN, _LUT, _CT, _LUTa, _AL, _PAL],
|
|
681
681
|
[0, 0, 0, 4, 4, () => AppsList, () => PreviousAppsList],
|
|
682
682
|
];
|
|
683
|
-
var AppsListDataSummary = [
|
|
683
|
+
var AppsListDataSummary$ = [
|
|
684
684
|
3,
|
|
685
685
|
n0,
|
|
686
686
|
_ALDS,
|
|
@@ -688,10 +688,10 @@ var AppsListDataSummary = [
|
|
|
688
688
|
[_LA, _LI, _LN, _AL],
|
|
689
689
|
[0, 0, 0, () => AppsList],
|
|
690
690
|
];
|
|
691
|
-
var AssociateAdminAccountRequest = [3, n0, _AAAR, 0, [_AA], [0]];
|
|
692
|
-
var AssociateThirdPartyFirewallRequest = [3, n0, _ATPFR, 0, [_TPF], [0]];
|
|
693
|
-
var AssociateThirdPartyFirewallResponse = [3, n0, _ATPFRs, 0, [_TPFS], [0]];
|
|
694
|
-
var AwsEc2InstanceViolation = [
|
|
691
|
+
var AssociateAdminAccountRequest$ = [3, n0, _AAAR, 0, [_AA], [0]];
|
|
692
|
+
var AssociateThirdPartyFirewallRequest$ = [3, n0, _ATPFR, 0, [_TPF], [0]];
|
|
693
|
+
var AssociateThirdPartyFirewallResponse$ = [3, n0, _ATPFRs, 0, [_TPFS], [0]];
|
|
694
|
+
var AwsEc2InstanceViolation$ = [
|
|
695
695
|
3,
|
|
696
696
|
n0,
|
|
697
697
|
_AEIV,
|
|
@@ -699,8 +699,8 @@ var AwsEc2InstanceViolation = [
|
|
|
699
699
|
[_VT, _AENIV],
|
|
700
700
|
[0, () => AwsEc2NetworkInterfaceViolations],
|
|
701
701
|
];
|
|
702
|
-
var AwsEc2NetworkInterfaceViolation = [3, n0, _AENIVw, 0, [_VT, _VSG], [0, 64 | 0]];
|
|
703
|
-
var AwsVPCSecurityGroupViolation = [
|
|
702
|
+
var AwsEc2NetworkInterfaceViolation$ = [3, n0, _AENIVw, 0, [_VT, _VSG], [0, 64 | 0]];
|
|
703
|
+
var AwsVPCSecurityGroupViolation$ = [
|
|
704
704
|
3,
|
|
705
705
|
n0,
|
|
706
706
|
_AVPCSGV,
|
|
@@ -708,8 +708,8 @@ var AwsVPCSecurityGroupViolation = [
|
|
|
708
708
|
[_VT, _VTD, _PM, _PSGRA],
|
|
709
709
|
[0, 0, () => PartialMatches, () => SecurityGroupRemediationActions],
|
|
710
710
|
];
|
|
711
|
-
var BatchAssociateResourceRequest = [3, n0, _BARR, 0, [_RSI, _I], [0, 64 | 0]];
|
|
712
|
-
var BatchAssociateResourceResponse = [
|
|
711
|
+
var BatchAssociateResourceRequest$ = [3, n0, _BARR, 0, [_RSI, _I], [0, 64 | 0]];
|
|
712
|
+
var BatchAssociateResourceResponse$ = [
|
|
713
713
|
3,
|
|
714
714
|
n0,
|
|
715
715
|
_BARRa,
|
|
@@ -717,8 +717,8 @@ var BatchAssociateResourceResponse = [
|
|
|
717
717
|
[_RSI, _FI],
|
|
718
718
|
[0, () => FailedItemList],
|
|
719
719
|
];
|
|
720
|
-
var BatchDisassociateResourceRequest = [3, n0, _BDRR, 0, [_RSI, _I], [0, 64 | 0]];
|
|
721
|
-
var BatchDisassociateResourceResponse = [
|
|
720
|
+
var BatchDisassociateResourceRequest$ = [3, n0, _BDRR, 0, [_RSI, _I], [0, 64 | 0]];
|
|
721
|
+
var BatchDisassociateResourceResponse$ = [
|
|
722
722
|
3,
|
|
723
723
|
n0,
|
|
724
724
|
_BDRRa,
|
|
@@ -726,42 +726,42 @@ var BatchDisassociateResourceResponse = [
|
|
|
726
726
|
[_RSI, _FI],
|
|
727
727
|
[0, () => FailedItemList],
|
|
728
728
|
];
|
|
729
|
-
var ComplianceViolator = [3, n0, _CV, 0, [_RI, _VR, _RT, _M], [0, 0, 0, 128 | 0]];
|
|
730
|
-
var CreateNetworkAclAction = [
|
|
729
|
+
var ComplianceViolator$ = [3, n0, _CV, 0, [_RI, _VR, _RT, _M], [0, 0, 0, 128 | 0]];
|
|
730
|
+
var CreateNetworkAclAction$ = [
|
|
731
731
|
3,
|
|
732
732
|
n0,
|
|
733
733
|
_CNAA,
|
|
734
734
|
0,
|
|
735
735
|
[_D, _V, _FMSCR],
|
|
736
|
-
[0, () => ActionTarget
|
|
736
|
+
[0, () => ActionTarget$, 2],
|
|
737
737
|
];
|
|
738
|
-
var CreateNetworkAclEntriesAction = [
|
|
738
|
+
var CreateNetworkAclEntriesAction$ = [
|
|
739
739
|
3,
|
|
740
740
|
n0,
|
|
741
741
|
_CNAEA,
|
|
742
742
|
0,
|
|
743
743
|
[_D, _NAI, _NAETBC, _FMSCR],
|
|
744
|
-
[0, () => ActionTarget
|
|
744
|
+
[0, () => ActionTarget$, () => EntriesDescription, 2],
|
|
745
745
|
];
|
|
746
|
-
var DeleteAppsListRequest = [3, n0, _DALR, 0, [_LI], [0]];
|
|
747
|
-
var DeleteNetworkAclEntriesAction = [
|
|
746
|
+
var DeleteAppsListRequest$ = [3, n0, _DALR, 0, [_LI], [0]];
|
|
747
|
+
var DeleteNetworkAclEntriesAction$ = [
|
|
748
748
|
3,
|
|
749
749
|
n0,
|
|
750
750
|
_DNAEA,
|
|
751
751
|
0,
|
|
752
752
|
[_D, _NAI, _NAETBD, _FMSCR],
|
|
753
|
-
[0, () => ActionTarget
|
|
753
|
+
[0, () => ActionTarget$, () => EntriesDescription, 2],
|
|
754
754
|
];
|
|
755
|
-
var DeleteNotificationChannelRequest = [3, n0, _DNCR, 0, [], []];
|
|
756
|
-
var DeletePolicyRequest = [3, n0, _DPR, 0, [_PI, _DAPR], [0, 2]];
|
|
757
|
-
var DeleteProtocolsListRequest = [3, n0, _DPLR, 0, [_LI], [0]];
|
|
758
|
-
var DeleteResourceSetRequest = [3, n0, _DRSR, 0, [_Id], [0]];
|
|
759
|
-
var DisassociateAdminAccountRequest = [3, n0, _DAAR, 0, [], []];
|
|
760
|
-
var DisassociateThirdPartyFirewallRequest = [3, n0, _DTPFR, 0, [_TPF], [0]];
|
|
761
|
-
var DisassociateThirdPartyFirewallResponse = [3, n0, _DTPFRi, 0, [_TPFS], [0]];
|
|
762
|
-
var DiscoveredResource = [3, n0, _DR, 0, [_URI, _AI, _T, _N], [0, 0, 0, 0]];
|
|
763
|
-
var DnsDuplicateRuleGroupViolation = [3, n0, _DDRGV, 0, [_VT, _VTD], [0, 0]];
|
|
764
|
-
var DnsRuleGroupLimitExceededViolation = [
|
|
755
|
+
var DeleteNotificationChannelRequest$ = [3, n0, _DNCR, 0, [], []];
|
|
756
|
+
var DeletePolicyRequest$ = [3, n0, _DPR, 0, [_PI, _DAPR], [0, 2]];
|
|
757
|
+
var DeleteProtocolsListRequest$ = [3, n0, _DPLR, 0, [_LI], [0]];
|
|
758
|
+
var DeleteResourceSetRequest$ = [3, n0, _DRSR, 0, [_Id], [0]];
|
|
759
|
+
var DisassociateAdminAccountRequest$ = [3, n0, _DAAR, 0, [], []];
|
|
760
|
+
var DisassociateThirdPartyFirewallRequest$ = [3, n0, _DTPFR, 0, [_TPF], [0]];
|
|
761
|
+
var DisassociateThirdPartyFirewallResponse$ = [3, n0, _DTPFRi, 0, [_TPFS], [0]];
|
|
762
|
+
var DiscoveredResource$ = [3, n0, _DR, 0, [_URI, _AI, _T, _N], [0, 0, 0, 0]];
|
|
763
|
+
var DnsDuplicateRuleGroupViolation$ = [3, n0, _DDRGV, 0, [_VT, _VTD], [0, 0]];
|
|
764
|
+
var DnsRuleGroupLimitExceededViolation$ = [
|
|
765
765
|
3,
|
|
766
766
|
n0,
|
|
767
767
|
_DRGLEV,
|
|
@@ -769,7 +769,7 @@ var DnsRuleGroupLimitExceededViolation = [
|
|
|
769
769
|
[_VT, _VTD, _NORGAA],
|
|
770
770
|
[0, 0, 1],
|
|
771
771
|
];
|
|
772
|
-
var DnsRuleGroupPriorityConflictViolation = [
|
|
772
|
+
var DnsRuleGroupPriorityConflictViolation$ = [
|
|
773
773
|
3,
|
|
774
774
|
n0,
|
|
775
775
|
_DRGPCV,
|
|
@@ -777,66 +777,80 @@ var DnsRuleGroupPriorityConflictViolation = [
|
|
|
777
777
|
[_VT, _VTD, _CP, _CPI, _UP],
|
|
778
778
|
[0, 0, 1, 0, 64 | 1],
|
|
779
779
|
];
|
|
780
|
-
var EC2AssociateRouteTableAction = [
|
|
780
|
+
var EC2AssociateRouteTableAction$ = [
|
|
781
781
|
3,
|
|
782
782
|
n0,
|
|
783
783
|
_ECARTA,
|
|
784
784
|
0,
|
|
785
785
|
[_D, _RTI, _SI, _GI],
|
|
786
|
-
[0, () => ActionTarget
|
|
786
|
+
[0, () => ActionTarget$, () => ActionTarget$, () => ActionTarget$],
|
|
787
787
|
];
|
|
788
|
-
var EC2CopyRouteTableAction = [
|
|
788
|
+
var EC2CopyRouteTableAction$ = [
|
|
789
789
|
3,
|
|
790
790
|
n0,
|
|
791
791
|
_ECCRTA,
|
|
792
792
|
0,
|
|
793
793
|
[_D, _VI, _RTI],
|
|
794
|
-
[0, () => ActionTarget
|
|
794
|
+
[0, () => ActionTarget$, () => ActionTarget$],
|
|
795
795
|
];
|
|
796
|
-
var EC2CreateRouteAction = [
|
|
796
|
+
var EC2CreateRouteAction$ = [
|
|
797
797
|
3,
|
|
798
798
|
n0,
|
|
799
799
|
_ECCRA,
|
|
800
800
|
0,
|
|
801
801
|
[_D, _DCB, _DPLI, _DICB, _VEI, _GI, _RTI],
|
|
802
|
-
[0, 0, 0, 0, () => ActionTarget
|
|
802
|
+
[0, 0, 0, 0, () => ActionTarget$, () => ActionTarget$, () => ActionTarget$],
|
|
803
|
+
];
|
|
804
|
+
var EC2CreateRouteTableAction$ = [
|
|
805
|
+
3,
|
|
806
|
+
n0,
|
|
807
|
+
_ECCRTAr,
|
|
808
|
+
0,
|
|
809
|
+
[_D, _VI],
|
|
810
|
+
[0, () => ActionTarget$],
|
|
803
811
|
];
|
|
804
|
-
var
|
|
805
|
-
var EC2DeleteRouteAction = [
|
|
812
|
+
var EC2DeleteRouteAction$ = [
|
|
806
813
|
3,
|
|
807
814
|
n0,
|
|
808
815
|
_ECDRA,
|
|
809
816
|
0,
|
|
810
817
|
[_D, _DCB, _DPLI, _DICB, _RTI],
|
|
811
|
-
[0, 0, 0, 0, () => ActionTarget],
|
|
818
|
+
[0, 0, 0, 0, () => ActionTarget$],
|
|
812
819
|
];
|
|
813
|
-
var EC2ReplaceRouteAction = [
|
|
820
|
+
var EC2ReplaceRouteAction$ = [
|
|
814
821
|
3,
|
|
815
822
|
n0,
|
|
816
823
|
_ECRRA,
|
|
817
824
|
0,
|
|
818
825
|
[_D, _DCB, _DPLI, _DICB, _GI, _RTI],
|
|
819
|
-
[0, 0, 0, 0, () => ActionTarget
|
|
826
|
+
[0, 0, 0, 0, () => ActionTarget$, () => ActionTarget$],
|
|
820
827
|
];
|
|
821
|
-
var EC2ReplaceRouteTableAssociationAction = [
|
|
828
|
+
var EC2ReplaceRouteTableAssociationAction$ = [
|
|
822
829
|
3,
|
|
823
830
|
n0,
|
|
824
831
|
_ECRRTAA,
|
|
825
832
|
0,
|
|
826
833
|
[_D, _AIs, _RTI],
|
|
827
|
-
[0, () => ActionTarget
|
|
834
|
+
[0, () => ActionTarget$, () => ActionTarget$],
|
|
828
835
|
];
|
|
829
|
-
var EntryDescription = [
|
|
830
|
-
|
|
836
|
+
var EntryDescription$ = [
|
|
837
|
+
3,
|
|
838
|
+
n0,
|
|
839
|
+
_ED,
|
|
840
|
+
0,
|
|
841
|
+
[_EDn, _ERN, _ET],
|
|
842
|
+
[() => NetworkAclEntry$, 1, 0],
|
|
843
|
+
];
|
|
844
|
+
var EntryViolation$ = [
|
|
831
845
|
3,
|
|
832
846
|
n0,
|
|
833
847
|
_EV,
|
|
834
848
|
0,
|
|
835
849
|
[_EE, _EEO, _AEO, _EAEEO, _EWC, _EVR],
|
|
836
|
-
[() => EntryDescription
|
|
850
|
+
[() => EntryDescription$, 0, 0, () => EntryDescription$, () => EntriesWithConflicts, 64 | 0],
|
|
837
851
|
];
|
|
838
|
-
var EvaluationResult = [3, n0, _ER, 0, [_CS, _VC, _ELE], [0, 1, 2]];
|
|
839
|
-
var ExpectedRoute = [
|
|
852
|
+
var EvaluationResult$ = [3, n0, _ER, 0, [_CS, _VC, _ELE], [0, 1, 2]];
|
|
853
|
+
var ExpectedRoute$ = [
|
|
840
854
|
3,
|
|
841
855
|
n0,
|
|
842
856
|
_ERx,
|
|
@@ -844,8 +858,8 @@ var ExpectedRoute = [
|
|
|
844
858
|
[_IVC, _PLI, _IVCp, _CSo, _ATl, _RTI],
|
|
845
859
|
[0, 0, 0, 64 | 0, 64 | 0, 0],
|
|
846
860
|
];
|
|
847
|
-
var FailedItem = [3, n0, _FIa, 0, [_URI, _R], [0, 0]];
|
|
848
|
-
var FirewallSubnetIsOutOfScopeViolation = [
|
|
861
|
+
var FailedItem$ = [3, n0, _FIa, 0, [_URI, _R], [0, 0]];
|
|
862
|
+
var FirewallSubnetIsOutOfScopeViolation$ = [
|
|
849
863
|
3,
|
|
850
864
|
n0,
|
|
851
865
|
_FSIOOSV,
|
|
@@ -853,7 +867,7 @@ var FirewallSubnetIsOutOfScopeViolation = [
|
|
|
853
867
|
[_FSI, _VI, _SAZ, _SAZI, _VEI],
|
|
854
868
|
[0, 0, 0, 0, 0],
|
|
855
869
|
];
|
|
856
|
-
var FirewallSubnetMissingVPCEndpointViolation = [
|
|
870
|
+
var FirewallSubnetMissingVPCEndpointViolation$ = [
|
|
857
871
|
3,
|
|
858
872
|
n0,
|
|
859
873
|
_FSMVPCEV,
|
|
@@ -861,7 +875,7 @@ var FirewallSubnetMissingVPCEndpointViolation = [
|
|
|
861
875
|
[_FSI, _VI, _SAZ, _SAZI],
|
|
862
876
|
[0, 0, 0, 0],
|
|
863
877
|
];
|
|
864
|
-
var FMSPolicyUpdateFirewallCreationConfigAction = [
|
|
878
|
+
var FMSPolicyUpdateFirewallCreationConfigAction$ = [
|
|
865
879
|
3,
|
|
866
880
|
n0,
|
|
867
881
|
_FMSPUFCCA,
|
|
@@ -869,26 +883,26 @@ var FMSPolicyUpdateFirewallCreationConfigAction = [
|
|
|
869
883
|
[_D, _FCC],
|
|
870
884
|
[0, 0],
|
|
871
885
|
];
|
|
872
|
-
var GetAdminAccountRequest = [3, n0, _GAAR, 0, [], []];
|
|
873
|
-
var GetAdminAccountResponse = [3, n0, _GAARe, 0, [_AA, _RSo], [0, 0]];
|
|
874
|
-
var GetAdminScopeRequest = [3, n0, _GASR, 0, [_AA], [0]];
|
|
875
|
-
var GetAdminScopeResponse = [3, n0, _GASRe, 0, [_ASd, _S], [() => AdminScope
|
|
876
|
-
var GetAppsListRequest = [3, n0, _GALR, 0, [_LI, _DL], [0, 2]];
|
|
877
|
-
var GetAppsListResponse = [3, n0, _GALRe, 0, [_AL, _ALA], [() => AppsListData
|
|
878
|
-
var GetComplianceDetailRequest = [3, n0, _GCDR, 0, [_PI, _MA], [0, 0]];
|
|
879
|
-
var GetComplianceDetailResponse = [
|
|
886
|
+
var GetAdminAccountRequest$ = [3, n0, _GAAR, 0, [], []];
|
|
887
|
+
var GetAdminAccountResponse$ = [3, n0, _GAARe, 0, [_AA, _RSo], [0, 0]];
|
|
888
|
+
var GetAdminScopeRequest$ = [3, n0, _GASR, 0, [_AA], [0]];
|
|
889
|
+
var GetAdminScopeResponse$ = [3, n0, _GASRe, 0, [_ASd, _S], [() => AdminScope$, 0]];
|
|
890
|
+
var GetAppsListRequest$ = [3, n0, _GALR, 0, [_LI, _DL], [0, 2]];
|
|
891
|
+
var GetAppsListResponse$ = [3, n0, _GALRe, 0, [_AL, _ALA], [() => AppsListData$, 0]];
|
|
892
|
+
var GetComplianceDetailRequest$ = [3, n0, _GCDR, 0, [_PI, _MA], [0, 0]];
|
|
893
|
+
var GetComplianceDetailResponse$ = [
|
|
880
894
|
3,
|
|
881
895
|
n0,
|
|
882
896
|
_GCDRe,
|
|
883
897
|
0,
|
|
884
898
|
[_PCD],
|
|
885
|
-
[() => PolicyComplianceDetail],
|
|
899
|
+
[() => PolicyComplianceDetail$],
|
|
886
900
|
];
|
|
887
|
-
var GetNotificationChannelRequest = [3, n0, _GNCR, 0, [], []];
|
|
888
|
-
var GetNotificationChannelResponse = [3, n0, _GNCRe, 0, [_STA, _SRN], [0, 0]];
|
|
889
|
-
var GetPolicyRequest = [3, n0, _GPR, 0, [_PI], [0]];
|
|
890
|
-
var GetPolicyResponse = [3, n0, _GPRe, 0, [_Pol, _PA], [() => Policy
|
|
891
|
-
var GetProtectionStatusRequest = [
|
|
901
|
+
var GetNotificationChannelRequest$ = [3, n0, _GNCR, 0, [], []];
|
|
902
|
+
var GetNotificationChannelResponse$ = [3, n0, _GNCRe, 0, [_STA, _SRN], [0, 0]];
|
|
903
|
+
var GetPolicyRequest$ = [3, n0, _GPR, 0, [_PI], [0]];
|
|
904
|
+
var GetPolicyResponse$ = [3, n0, _GPRe, 0, [_Pol, _PA], [() => Policy$, 0]];
|
|
905
|
+
var GetProtectionStatusRequest$ = [
|
|
892
906
|
3,
|
|
893
907
|
n0,
|
|
894
908
|
_GPSR,
|
|
@@ -896,7 +910,7 @@ var GetProtectionStatusRequest = [
|
|
|
896
910
|
[_PI, _MAI, _ST, _ETn, _NT, _MR],
|
|
897
911
|
[0, 0, 4, 4, 0, 1],
|
|
898
912
|
];
|
|
899
|
-
var GetProtectionStatusResponse = [
|
|
913
|
+
var GetProtectionStatusResponse$ = [
|
|
900
914
|
3,
|
|
901
915
|
n0,
|
|
902
916
|
_GPSRe,
|
|
@@ -904,19 +918,19 @@ var GetProtectionStatusResponse = [
|
|
|
904
918
|
[_AAI, _STe, _Da, _NT],
|
|
905
919
|
[0, 0, 0, 0],
|
|
906
920
|
];
|
|
907
|
-
var GetProtocolsListRequest = [3, n0, _GPLR, 0, [_LI, _DL], [0, 2]];
|
|
908
|
-
var GetProtocolsListResponse = [
|
|
921
|
+
var GetProtocolsListRequest$ = [3, n0, _GPLR, 0, [_LI, _DL], [0, 2]];
|
|
922
|
+
var GetProtocolsListResponse$ = [
|
|
909
923
|
3,
|
|
910
924
|
n0,
|
|
911
925
|
_GPLRe,
|
|
912
926
|
0,
|
|
913
927
|
[_PL, _PLA],
|
|
914
|
-
[() => ProtocolsListData
|
|
928
|
+
[() => ProtocolsListData$, 0],
|
|
915
929
|
];
|
|
916
|
-
var GetResourceSetRequest = [3, n0, _GRSR, 0, [_Id], [0]];
|
|
917
|
-
var GetResourceSetResponse = [3, n0, _GRSRe, 0, [_RSe, _RSA], [() => ResourceSet
|
|
918
|
-
var GetThirdPartyFirewallAssociationStatusRequest = [3, n0, _GTPFASR, 0, [_TPF], [0]];
|
|
919
|
-
var GetThirdPartyFirewallAssociationStatusResponse = [
|
|
930
|
+
var GetResourceSetRequest$ = [3, n0, _GRSR, 0, [_Id], [0]];
|
|
931
|
+
var GetResourceSetResponse$ = [3, n0, _GRSRe, 0, [_RSe, _RSA], [() => ResourceSet$, 0]];
|
|
932
|
+
var GetThirdPartyFirewallAssociationStatusRequest$ = [3, n0, _GTPFASR, 0, [_TPF], [0]];
|
|
933
|
+
var GetThirdPartyFirewallAssociationStatusResponse$ = [
|
|
920
934
|
3,
|
|
921
935
|
n0,
|
|
922
936
|
_GTPFASRe,
|
|
@@ -924,13 +938,13 @@ var GetThirdPartyFirewallAssociationStatusResponse = [
|
|
|
924
938
|
[_TPFS, _MOS],
|
|
925
939
|
[0, 0],
|
|
926
940
|
];
|
|
927
|
-
var GetViolationDetailsRequest = [3, n0, _GVDR, 0, [_PI, _MA, _RI, _RT], [0, 0, 0, 0]];
|
|
928
|
-
var GetViolationDetailsResponse = [3, n0, _GVDRe, 0, [_VD], [() => ViolationDetail]];
|
|
929
|
-
var InternalErrorException = [-3, n0, _IEE, { [_e]: _c }, [_Me], [0]];
|
|
930
|
-
schema.TypeRegistry.for(n0).registerError(InternalErrorException
|
|
931
|
-
var InvalidInputException = [-3, n0, _IIE, { [_e]: _c }, [_Me], [0]];
|
|
932
|
-
schema.TypeRegistry.for(n0).registerError(InvalidInputException
|
|
933
|
-
var InvalidNetworkAclEntriesViolation = [
|
|
941
|
+
var GetViolationDetailsRequest$ = [3, n0, _GVDR, 0, [_PI, _MA, _RI, _RT], [0, 0, 0, 0]];
|
|
942
|
+
var GetViolationDetailsResponse$ = [3, n0, _GVDRe, 0, [_VD], [() => ViolationDetail$]];
|
|
943
|
+
var InternalErrorException$ = [-3, n0, _IEE, { [_e]: _c }, [_Me], [0]];
|
|
944
|
+
schema.TypeRegistry.for(n0).registerError(InternalErrorException$, InternalErrorException);
|
|
945
|
+
var InvalidInputException$ = [-3, n0, _IIE, { [_e]: _c }, [_Me], [0]];
|
|
946
|
+
schema.TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
|
|
947
|
+
var InvalidNetworkAclEntriesViolation$ = [
|
|
934
948
|
3,
|
|
935
949
|
n0,
|
|
936
950
|
_INAEV,
|
|
@@ -938,14 +952,14 @@ var InvalidNetworkAclEntriesViolation = [
|
|
|
938
952
|
[_V, _Su, _SAZ, _CANA, _EVn],
|
|
939
953
|
[0, 0, 0, 0, () => EntryViolations],
|
|
940
954
|
];
|
|
941
|
-
var InvalidOperationException = [-3, n0, _IOE, { [_e]: _c }, [_Me], [0]];
|
|
942
|
-
schema.TypeRegistry.for(n0).registerError(InvalidOperationException
|
|
943
|
-
var InvalidTypeException = [-3, n0, _ITE, { [_e]: _c }, [_Me], [0]];
|
|
944
|
-
schema.TypeRegistry.for(n0).registerError(InvalidTypeException
|
|
945
|
-
var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_Me], [0]];
|
|
946
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException
|
|
947
|
-
var ListAdminAccountsForOrganizationRequest = [3, n0, _LAAFOR, 0, [_NT, _MR], [0, 1]];
|
|
948
|
-
var ListAdminAccountsForOrganizationResponse = [
|
|
955
|
+
var InvalidOperationException$ = [-3, n0, _IOE, { [_e]: _c }, [_Me], [0]];
|
|
956
|
+
schema.TypeRegistry.for(n0).registerError(InvalidOperationException$, InvalidOperationException);
|
|
957
|
+
var InvalidTypeException$ = [-3, n0, _ITE, { [_e]: _c }, [_Me], [0]];
|
|
958
|
+
schema.TypeRegistry.for(n0).registerError(InvalidTypeException$, InvalidTypeException);
|
|
959
|
+
var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_Me], [0]];
|
|
960
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
961
|
+
var ListAdminAccountsForOrganizationRequest$ = [3, n0, _LAAFOR, 0, [_NT, _MR], [0, 1]];
|
|
962
|
+
var ListAdminAccountsForOrganizationResponse$ = [
|
|
949
963
|
3,
|
|
950
964
|
n0,
|
|
951
965
|
_LAAFORi,
|
|
@@ -953,12 +967,12 @@ var ListAdminAccountsForOrganizationResponse = [
|
|
|
953
967
|
[_AAd, _NT],
|
|
954
968
|
[() => AdminAccountSummaryList, 0],
|
|
955
969
|
];
|
|
956
|
-
var ListAdminsManagingAccountRequest = [3, n0, _LAMAR, 0, [_NT, _MR], [0, 1]];
|
|
957
|
-
var ListAdminsManagingAccountResponse = [3, n0, _LAMARi, 0, [_AAd, _NT], [64 | 0, 0]];
|
|
958
|
-
var ListAppsListsRequest = [3, n0, _LALR, 0, [_DLe, _NT, _MR], [2, 0, 1]];
|
|
959
|
-
var ListAppsListsResponse = [3, n0, _LALRi, 0, [_ALp, _NT], [() => AppsListsData, 0]];
|
|
960
|
-
var ListComplianceStatusRequest = [3, n0, _LCSR, 0, [_PI, _NT, _MR], [0, 0, 1]];
|
|
961
|
-
var ListComplianceStatusResponse = [
|
|
970
|
+
var ListAdminsManagingAccountRequest$ = [3, n0, _LAMAR, 0, [_NT, _MR], [0, 1]];
|
|
971
|
+
var ListAdminsManagingAccountResponse$ = [3, n0, _LAMARi, 0, [_AAd, _NT], [64 | 0, 0]];
|
|
972
|
+
var ListAppsListsRequest$ = [3, n0, _LALR, 0, [_DLe, _NT, _MR], [2, 0, 1]];
|
|
973
|
+
var ListAppsListsResponse$ = [3, n0, _LALRi, 0, [_ALp, _NT], [() => AppsListsData, 0]];
|
|
974
|
+
var ListComplianceStatusRequest$ = [3, n0, _LCSR, 0, [_PI, _NT, _MR], [0, 0, 1]];
|
|
975
|
+
var ListComplianceStatusResponse$ = [
|
|
962
976
|
3,
|
|
963
977
|
n0,
|
|
964
978
|
_LCSRi,
|
|
@@ -966,7 +980,7 @@ var ListComplianceStatusResponse = [
|
|
|
966
980
|
[_PCSL, _NT],
|
|
967
981
|
[() => PolicyComplianceStatusList, 0],
|
|
968
982
|
];
|
|
969
|
-
var ListDiscoveredResourcesRequest = [
|
|
983
|
+
var ListDiscoveredResourcesRequest$ = [
|
|
970
984
|
3,
|
|
971
985
|
n0,
|
|
972
986
|
_LDRR,
|
|
@@ -974,7 +988,7 @@ var ListDiscoveredResourcesRequest = [
|
|
|
974
988
|
[_MAIe, _RT, _MR, _NT],
|
|
975
989
|
[64 | 0, 0, 1, 0],
|
|
976
990
|
];
|
|
977
|
-
var ListDiscoveredResourcesResponse = [
|
|
991
|
+
var ListDiscoveredResourcesResponse$ = [
|
|
978
992
|
3,
|
|
979
993
|
n0,
|
|
980
994
|
_LDRRi,
|
|
@@ -982,12 +996,12 @@ var ListDiscoveredResourcesResponse = [
|
|
|
982
996
|
[_I, _NT],
|
|
983
997
|
[() => DiscoveredResourceList, 0],
|
|
984
998
|
];
|
|
985
|
-
var ListMemberAccountsRequest = [3, n0, _LMAR, 0, [_NT, _MR], [0, 1]];
|
|
986
|
-
var ListMemberAccountsResponse = [3, n0, _LMARi, 0, [_MAe, _NT], [64 | 0, 0]];
|
|
987
|
-
var ListPoliciesRequest = [3, n0, _LPR, 0, [_NT, _MR], [0, 1]];
|
|
988
|
-
var ListPoliciesResponse = [3, n0, _LPRi, 0, [_PLo, _NT], [() => PolicySummaryList, 0]];
|
|
989
|
-
var ListProtocolsListsRequest = [3, n0, _LPLR, 0, [_DLe, _NT, _MR], [2, 0, 1]];
|
|
990
|
-
var ListProtocolsListsResponse = [
|
|
999
|
+
var ListMemberAccountsRequest$ = [3, n0, _LMAR, 0, [_NT, _MR], [0, 1]];
|
|
1000
|
+
var ListMemberAccountsResponse$ = [3, n0, _LMARi, 0, [_MAe, _NT], [64 | 0, 0]];
|
|
1001
|
+
var ListPoliciesRequest$ = [3, n0, _LPR, 0, [_NT, _MR], [0, 1]];
|
|
1002
|
+
var ListPoliciesResponse$ = [3, n0, _LPRi, 0, [_PLo, _NT], [() => PolicySummaryList, 0]];
|
|
1003
|
+
var ListProtocolsListsRequest$ = [3, n0, _LPLR, 0, [_DLe, _NT, _MR], [2, 0, 1]];
|
|
1004
|
+
var ListProtocolsListsResponse$ = [
|
|
991
1005
|
3,
|
|
992
1006
|
n0,
|
|
993
1007
|
_LPLRi,
|
|
@@ -995,8 +1009,8 @@ var ListProtocolsListsResponse = [
|
|
|
995
1009
|
[_PLr, _NT],
|
|
996
1010
|
[() => ProtocolsListsData, 0],
|
|
997
1011
|
];
|
|
998
|
-
var ListResourceSetResourcesRequest = [3, n0, _LRSRR, 0, [_Id, _MR, _NT], [0, 1, 0]];
|
|
999
|
-
var ListResourceSetResourcesResponse = [
|
|
1012
|
+
var ListResourceSetResourcesRequest$ = [3, n0, _LRSRR, 0, [_Id, _MR, _NT], [0, 1, 0]];
|
|
1013
|
+
var ListResourceSetResourcesResponse$ = [
|
|
1000
1014
|
3,
|
|
1001
1015
|
n0,
|
|
1002
1016
|
_LRSRRi,
|
|
@@ -1004,8 +1018,8 @@ var ListResourceSetResourcesResponse = [
|
|
|
1004
1018
|
[_I, _NT],
|
|
1005
1019
|
[() => ResourceList, 0],
|
|
1006
1020
|
];
|
|
1007
|
-
var ListResourceSetsRequest = [3, n0, _LRSR, 0, [_NT, _MR], [0, 1]];
|
|
1008
|
-
var ListResourceSetsResponse = [
|
|
1021
|
+
var ListResourceSetsRequest$ = [3, n0, _LRSR, 0, [_NT, _MR], [0, 1]];
|
|
1022
|
+
var ListResourceSetsResponse$ = [
|
|
1009
1023
|
3,
|
|
1010
1024
|
n0,
|
|
1011
1025
|
_LRSRi,
|
|
@@ -1013,9 +1027,9 @@ var ListResourceSetsResponse = [
|
|
|
1013
1027
|
[_RSes, _NT],
|
|
1014
1028
|
[() => ResourceSetSummaryList, 0],
|
|
1015
1029
|
];
|
|
1016
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [0]];
|
|
1017
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_TL], [() => TagList]];
|
|
1018
|
-
var ListThirdPartyFirewallFirewallPoliciesRequest = [
|
|
1030
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [0]];
|
|
1031
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_TL], [() => TagList]];
|
|
1032
|
+
var ListThirdPartyFirewallFirewallPoliciesRequest$ = [
|
|
1019
1033
|
3,
|
|
1020
1034
|
n0,
|
|
1021
1035
|
_LTPFFPR,
|
|
@@ -1023,7 +1037,7 @@ var ListThirdPartyFirewallFirewallPoliciesRequest = [
|
|
|
1023
1037
|
[_TPF, _NT, _MR],
|
|
1024
1038
|
[0, 0, 1],
|
|
1025
1039
|
];
|
|
1026
|
-
var ListThirdPartyFirewallFirewallPoliciesResponse = [
|
|
1040
|
+
var ListThirdPartyFirewallFirewallPoliciesResponse$ = [
|
|
1027
1041
|
3,
|
|
1028
1042
|
n0,
|
|
1029
1043
|
_LTPFFPRi,
|
|
@@ -1031,16 +1045,16 @@ var ListThirdPartyFirewallFirewallPoliciesResponse = [
|
|
|
1031
1045
|
[_TPFFP, _NT],
|
|
1032
1046
|
[() => ThirdPartyFirewallFirewallPolicies, 0],
|
|
1033
1047
|
];
|
|
1034
|
-
var NetworkAclCommonPolicy = [3, n0, _NACP, 0, [_NAES], [() => NetworkAclEntrySet]];
|
|
1035
|
-
var NetworkAclEntry = [
|
|
1048
|
+
var NetworkAclCommonPolicy$ = [3, n0, _NACP, 0, [_NAES], [() => NetworkAclEntrySet$]];
|
|
1049
|
+
var NetworkAclEntry$ = [
|
|
1036
1050
|
3,
|
|
1037
1051
|
n0,
|
|
1038
1052
|
_NAE,
|
|
1039
1053
|
0,
|
|
1040
1054
|
[_ITC, _P, _PR, _CB, _ICB, _RAu, _E],
|
|
1041
|
-
[() => NetworkAclIcmpTypeCode
|
|
1055
|
+
[() => NetworkAclIcmpTypeCode$, 0, () => NetworkAclPortRange$, 0, 0, 0, 2],
|
|
1042
1056
|
];
|
|
1043
|
-
var NetworkAclEntrySet = [
|
|
1057
|
+
var NetworkAclEntrySet$ = [
|
|
1044
1058
|
3,
|
|
1045
1059
|
n0,
|
|
1046
1060
|
_NAES,
|
|
@@ -1048,9 +1062,9 @@ var NetworkAclEntrySet = [
|
|
|
1048
1062
|
[_FE, _FRFFE, _LE, _FRFLE],
|
|
1049
1063
|
[() => NetworkAclEntries, 2, () => NetworkAclEntries, 2],
|
|
1050
1064
|
];
|
|
1051
|
-
var NetworkAclIcmpTypeCode = [3, n0, _NAITC, 0, [_C, _T], [1, 1]];
|
|
1052
|
-
var NetworkAclPortRange = [3, n0, _NAPR, 0, [_F, _To], [1, 1]];
|
|
1053
|
-
var NetworkFirewallBlackHoleRouteDetectedViolation = [
|
|
1065
|
+
var NetworkAclIcmpTypeCode$ = [3, n0, _NAITC, 0, [_C, _T], [1, 1]];
|
|
1066
|
+
var NetworkAclPortRange$ = [3, n0, _NAPR, 0, [_F, _To], [1, 1]];
|
|
1067
|
+
var NetworkFirewallBlackHoleRouteDetectedViolation$ = [
|
|
1054
1068
|
3,
|
|
1055
1069
|
n0,
|
|
1056
1070
|
_NFBHRDV,
|
|
@@ -1058,7 +1072,7 @@ var NetworkFirewallBlackHoleRouteDetectedViolation = [
|
|
|
1058
1072
|
[_VT, _RTI, _VI, _VRi],
|
|
1059
1073
|
[0, 0, 0, () => Routes],
|
|
1060
1074
|
];
|
|
1061
|
-
var NetworkFirewallInternetTrafficNotInspectedViolation = [
|
|
1075
|
+
var NetworkFirewallInternetTrafficNotInspectedViolation$ = [
|
|
1062
1076
|
3,
|
|
1063
1077
|
n0,
|
|
1064
1078
|
_NFITNIV,
|
|
@@ -1066,7 +1080,7 @@ var NetworkFirewallInternetTrafficNotInspectedViolation = [
|
|
|
1066
1080
|
[_SI, _SAZ, _RTI, _VRi, _IRTUIDAZ, _CFSRT, _EFE, _FSI, _EFSR, _AFSR, _IGI, _CIGRT, _EIGR, _AIGR, _VI],
|
|
1067
1081
|
[0, 0, 0, () => Routes, 2, 0, 0, 0, () => ExpectedRoutes, () => Routes, 0, 0, () => ExpectedRoutes, () => Routes, 0],
|
|
1068
1082
|
];
|
|
1069
|
-
var NetworkFirewallInvalidRouteConfigurationViolation = [
|
|
1083
|
+
var NetworkFirewallInvalidRouteConfigurationViolation$ = [
|
|
1070
1084
|
3,
|
|
1071
1085
|
n0,
|
|
1072
1086
|
_NFIRCV,
|
|
@@ -1076,7 +1090,7 @@ var NetworkFirewallInvalidRouteConfigurationViolation = [
|
|
|
1076
1090
|
64 | 0,
|
|
1077
1091
|
0,
|
|
1078
1092
|
2,
|
|
1079
|
-
() => Route
|
|
1093
|
+
() => Route$,
|
|
1080
1094
|
0,
|
|
1081
1095
|
0,
|
|
1082
1096
|
0,
|
|
@@ -1091,7 +1105,7 @@ var NetworkFirewallInvalidRouteConfigurationViolation = [
|
|
|
1091
1105
|
0,
|
|
1092
1106
|
],
|
|
1093
1107
|
];
|
|
1094
|
-
var NetworkFirewallMissingExpectedRoutesViolation = [
|
|
1108
|
+
var NetworkFirewallMissingExpectedRoutesViolation$ = [
|
|
1095
1109
|
3,
|
|
1096
1110
|
n0,
|
|
1097
1111
|
_NFMERV,
|
|
@@ -1099,7 +1113,7 @@ var NetworkFirewallMissingExpectedRoutesViolation = [
|
|
|
1099
1113
|
[_VT, _ERxp, _VI],
|
|
1100
1114
|
[0, () => ExpectedRoutes, 0],
|
|
1101
1115
|
];
|
|
1102
|
-
var NetworkFirewallMissingExpectedRTViolation = [
|
|
1116
|
+
var NetworkFirewallMissingExpectedRTViolation$ = [
|
|
1103
1117
|
3,
|
|
1104
1118
|
n0,
|
|
1105
1119
|
_NFMERTV,
|
|
@@ -1107,7 +1121,7 @@ var NetworkFirewallMissingExpectedRTViolation = [
|
|
|
1107
1121
|
[_VT, _VPC, _AZ, _CRT, _ERT],
|
|
1108
1122
|
[0, 0, 0, 0, 0],
|
|
1109
1123
|
];
|
|
1110
|
-
var NetworkFirewallMissingFirewallViolation = [
|
|
1124
|
+
var NetworkFirewallMissingFirewallViolation$ = [
|
|
1111
1125
|
3,
|
|
1112
1126
|
n0,
|
|
1113
1127
|
_NFMFV,
|
|
@@ -1115,7 +1129,7 @@ var NetworkFirewallMissingFirewallViolation = [
|
|
|
1115
1129
|
[_VT, _VPC, _AZ, _TVR],
|
|
1116
1130
|
[0, 0, 0, 0],
|
|
1117
1131
|
];
|
|
1118
|
-
var NetworkFirewallMissingSubnetViolation = [
|
|
1132
|
+
var NetworkFirewallMissingSubnetViolation$ = [
|
|
1119
1133
|
3,
|
|
1120
1134
|
n0,
|
|
1121
1135
|
_NFMSV,
|
|
@@ -1123,8 +1137,8 @@ var NetworkFirewallMissingSubnetViolation = [
|
|
|
1123
1137
|
[_VT, _VPC, _AZ, _TVR],
|
|
1124
1138
|
[0, 0, 0, 0],
|
|
1125
1139
|
];
|
|
1126
|
-
var NetworkFirewallPolicy = [3, n0, _NFP, 0, [_FDM], [0]];
|
|
1127
|
-
var NetworkFirewallPolicyDescription = [
|
|
1140
|
+
var NetworkFirewallPolicy$ = [3, n0, _NFP, 0, [_FDM], [0]];
|
|
1141
|
+
var NetworkFirewallPolicyDescription$ = [
|
|
1128
1142
|
3,
|
|
1129
1143
|
n0,
|
|
1130
1144
|
_NFPD,
|
|
@@ -1137,19 +1151,19 @@ var NetworkFirewallPolicyDescription = [
|
|
|
1137
1151
|
64 | 0,
|
|
1138
1152
|
() => StatefulRuleGroupList,
|
|
1139
1153
|
64 | 0,
|
|
1140
|
-
() => StatefulEngineOptions
|
|
1154
|
+
() => StatefulEngineOptions$,
|
|
1141
1155
|
],
|
|
1142
1156
|
];
|
|
1143
|
-
var NetworkFirewallPolicyModifiedViolation = [
|
|
1157
|
+
var NetworkFirewallPolicyModifiedViolation$ = [
|
|
1144
1158
|
3,
|
|
1145
1159
|
n0,
|
|
1146
1160
|
_NFPMV,
|
|
1147
1161
|
0,
|
|
1148
1162
|
[_VT, _CPD, _EPD],
|
|
1149
|
-
[0, () => NetworkFirewallPolicyDescription
|
|
1163
|
+
[0, () => NetworkFirewallPolicyDescription$, () => NetworkFirewallPolicyDescription$],
|
|
1150
1164
|
];
|
|
1151
|
-
var NetworkFirewallStatefulRuleGroupOverride = [3, n0, _NFSRGO, 0, [_Ac], [0]];
|
|
1152
|
-
var NetworkFirewallUnexpectedFirewallRoutesViolation = [
|
|
1165
|
+
var NetworkFirewallStatefulRuleGroupOverride$ = [3, n0, _NFSRGO, 0, [_Ac], [0]];
|
|
1166
|
+
var NetworkFirewallUnexpectedFirewallRoutesViolation$ = [
|
|
1153
1167
|
3,
|
|
1154
1168
|
n0,
|
|
1155
1169
|
_NFUFRV,
|
|
@@ -1157,7 +1171,7 @@ var NetworkFirewallUnexpectedFirewallRoutesViolation = [
|
|
|
1157
1171
|
[_FSI, _VRi, _RTI, _FEi, _VI],
|
|
1158
1172
|
[0, () => Routes, 0, 0, 0],
|
|
1159
1173
|
];
|
|
1160
|
-
var NetworkFirewallUnexpectedGatewayRoutesViolation = [
|
|
1174
|
+
var NetworkFirewallUnexpectedGatewayRoutesViolation$ = [
|
|
1161
1175
|
3,
|
|
1162
1176
|
n0,
|
|
1163
1177
|
_NFUGRV,
|
|
@@ -1165,9 +1179,9 @@ var NetworkFirewallUnexpectedGatewayRoutesViolation = [
|
|
|
1165
1179
|
[_GI, _VRi, _RTI, _VI],
|
|
1166
1180
|
[0, () => Routes, 0, 0],
|
|
1167
1181
|
];
|
|
1168
|
-
var OrganizationalUnitScope = [3, n0, _OUS, 0, [_OU, _AOUE, _ESOU], [64 | 0, 2, 2]];
|
|
1169
|
-
var PartialMatch = [3, n0, _PMa, 0, [_Re, _TVRa], [0, 64 | 0]];
|
|
1170
|
-
var Policy = [
|
|
1182
|
+
var OrganizationalUnitScope$ = [3, n0, _OUS, 0, [_OU, _AOUE, _ESOU], [64 | 0, 2, 2]];
|
|
1183
|
+
var PartialMatch$ = [3, n0, _PMa, 0, [_Re, _TVRa], [0, 64 | 0]];
|
|
1184
|
+
var Policy$ = [
|
|
1171
1185
|
3,
|
|
1172
1186
|
n0,
|
|
1173
1187
|
_Pol,
|
|
@@ -1177,7 +1191,7 @@ var Policy = [
|
|
|
1177
1191
|
0,
|
|
1178
1192
|
0,
|
|
1179
1193
|
0,
|
|
1180
|
-
() => SecurityServicePolicyData
|
|
1194
|
+
() => SecurityServicePolicyData$,
|
|
1181
1195
|
0,
|
|
1182
1196
|
64 | 0,
|
|
1183
1197
|
() => ResourceTags,
|
|
@@ -1192,7 +1206,7 @@ var Policy = [
|
|
|
1192
1206
|
0,
|
|
1193
1207
|
],
|
|
1194
1208
|
];
|
|
1195
|
-
var PolicyComplianceDetail = [
|
|
1209
|
+
var PolicyComplianceDetail$ = [
|
|
1196
1210
|
3,
|
|
1197
1211
|
n0,
|
|
1198
1212
|
_PCD,
|
|
@@ -1200,7 +1214,7 @@ var PolicyComplianceDetail = [
|
|
|
1200
1214
|
[_PO, _PI, _MA, _Vi, _ELE, _EA, _IIM],
|
|
1201
1215
|
[0, 0, 0, () => ComplianceViolators, 2, 4, 128 | 0],
|
|
1202
1216
|
];
|
|
1203
|
-
var PolicyComplianceStatus = [
|
|
1217
|
+
var PolicyComplianceStatus$ = [
|
|
1204
1218
|
3,
|
|
1205
1219
|
n0,
|
|
1206
1220
|
_PCS,
|
|
@@ -1208,15 +1222,15 @@ var PolicyComplianceStatus = [
|
|
|
1208
1222
|
[_PO, _PI, _PN, _MA, _ERv, _LU, _IIM],
|
|
1209
1223
|
[0, 0, 0, 0, () => EvaluationResults, 4, 128 | 0],
|
|
1210
1224
|
];
|
|
1211
|
-
var PolicyOption = [
|
|
1225
|
+
var PolicyOption$ = [
|
|
1212
1226
|
3,
|
|
1213
1227
|
n0,
|
|
1214
1228
|
_POo,
|
|
1215
1229
|
0,
|
|
1216
1230
|
[_NFP, _TPFP, _NACP],
|
|
1217
|
-
[() => NetworkFirewallPolicy
|
|
1231
|
+
[() => NetworkFirewallPolicy$, () => ThirdPartyFirewallPolicy$, () => NetworkAclCommonPolicy$],
|
|
1218
1232
|
];
|
|
1219
|
-
var PolicySummary = [
|
|
1233
|
+
var PolicySummary$ = [
|
|
1220
1234
|
3,
|
|
1221
1235
|
n0,
|
|
1222
1236
|
_PSo,
|
|
@@ -1224,8 +1238,8 @@ var PolicySummary = [
|
|
|
1224
1238
|
[_PA, _PI, _PN, _RT, _SST, _RE, _DUFMMR, _PS],
|
|
1225
1239
|
[0, 0, 0, 0, 0, 2, 2, 0],
|
|
1226
1240
|
];
|
|
1227
|
-
var PolicyTypeScope = [3, n0, _PTS, 0, [_PT, _APTE], [64 | 0, 2]];
|
|
1228
|
-
var PossibleRemediationAction = [
|
|
1241
|
+
var PolicyTypeScope$ = [3, n0, _PTS, 0, [_PT, _APTE], [64 | 0, 2]];
|
|
1242
|
+
var PossibleRemediationAction$ = [
|
|
1229
1243
|
3,
|
|
1230
1244
|
n0,
|
|
1231
1245
|
_PRA,
|
|
@@ -1233,7 +1247,7 @@ var PossibleRemediationAction = [
|
|
|
1233
1247
|
[_D, _ORA, _IDA],
|
|
1234
1248
|
[0, () => OrderedRemediationActions, 2],
|
|
1235
1249
|
];
|
|
1236
|
-
var PossibleRemediationActions = [
|
|
1250
|
+
var PossibleRemediationActions$ = [
|
|
1237
1251
|
3,
|
|
1238
1252
|
n0,
|
|
1239
1253
|
_PRAo,
|
|
@@ -1241,7 +1255,7 @@ var PossibleRemediationActions = [
|
|
|
1241
1255
|
[_D, _Act],
|
|
1242
1256
|
[0, () => PossibleRemediationActionList],
|
|
1243
1257
|
];
|
|
1244
|
-
var ProtocolsListData = [
|
|
1258
|
+
var ProtocolsListData$ = [
|
|
1245
1259
|
3,
|
|
1246
1260
|
n0,
|
|
1247
1261
|
_PLD,
|
|
@@ -1249,47 +1263,54 @@ var ProtocolsListData = [
|
|
|
1249
1263
|
[_LI, _LN, _LUT, _CT, _LUTa, _PL, _PPL],
|
|
1250
1264
|
[0, 0, 0, 4, 4, 64 | 0, [2, n0, _PPL, 0, 0, 64 | 0]],
|
|
1251
1265
|
];
|
|
1252
|
-
var ProtocolsListDataSummary = [
|
|
1253
|
-
|
|
1254
|
-
|
|
1266
|
+
var ProtocolsListDataSummary$ = [
|
|
1267
|
+
3,
|
|
1268
|
+
n0,
|
|
1269
|
+
_PLDS,
|
|
1270
|
+
0,
|
|
1271
|
+
[_LA, _LI, _LN, _PL],
|
|
1272
|
+
[0, 0, 0, 64 | 0],
|
|
1273
|
+
];
|
|
1274
|
+
var PutAdminAccountRequest$ = [3, n0, _PAAR, 0, [_AA, _ASd], [0, () => AdminScope$]];
|
|
1275
|
+
var PutAppsListRequest$ = [
|
|
1255
1276
|
3,
|
|
1256
1277
|
n0,
|
|
1257
1278
|
_PALR,
|
|
1258
1279
|
0,
|
|
1259
1280
|
[_AL, _TL],
|
|
1260
|
-
[() => AppsListData
|
|
1281
|
+
[() => AppsListData$, () => TagList],
|
|
1261
1282
|
];
|
|
1262
|
-
var PutAppsListResponse = [3, n0, _PALRu, 0, [_AL, _ALA], [() => AppsListData
|
|
1263
|
-
var PutNotificationChannelRequest = [3, n0, _PNCR, 0, [_STA, _SRN], [0, 0]];
|
|
1264
|
-
var PutPolicyRequest = [3, n0, _PPR, 0, [_Pol, _TL], [() => Policy
|
|
1265
|
-
var PutPolicyResponse = [3, n0, _PPRu, 0, [_Pol, _PA], [() => Policy
|
|
1266
|
-
var PutProtocolsListRequest = [
|
|
1283
|
+
var PutAppsListResponse$ = [3, n0, _PALRu, 0, [_AL, _ALA], [() => AppsListData$, 0]];
|
|
1284
|
+
var PutNotificationChannelRequest$ = [3, n0, _PNCR, 0, [_STA, _SRN], [0, 0]];
|
|
1285
|
+
var PutPolicyRequest$ = [3, n0, _PPR, 0, [_Pol, _TL], [() => Policy$, () => TagList]];
|
|
1286
|
+
var PutPolicyResponse$ = [3, n0, _PPRu, 0, [_Pol, _PA], [() => Policy$, 0]];
|
|
1287
|
+
var PutProtocolsListRequest$ = [
|
|
1267
1288
|
3,
|
|
1268
1289
|
n0,
|
|
1269
1290
|
_PPLR,
|
|
1270
1291
|
0,
|
|
1271
1292
|
[_PL, _TL],
|
|
1272
|
-
[() => ProtocolsListData
|
|
1293
|
+
[() => ProtocolsListData$, () => TagList],
|
|
1273
1294
|
];
|
|
1274
|
-
var PutProtocolsListResponse = [
|
|
1295
|
+
var PutProtocolsListResponse$ = [
|
|
1275
1296
|
3,
|
|
1276
1297
|
n0,
|
|
1277
1298
|
_PPLRu,
|
|
1278
1299
|
0,
|
|
1279
1300
|
[_PL, _PLA],
|
|
1280
|
-
[() => ProtocolsListData
|
|
1301
|
+
[() => ProtocolsListData$, 0],
|
|
1281
1302
|
];
|
|
1282
|
-
var PutResourceSetRequest = [
|
|
1303
|
+
var PutResourceSetRequest$ = [
|
|
1283
1304
|
3,
|
|
1284
1305
|
n0,
|
|
1285
1306
|
_PRSR,
|
|
1286
1307
|
0,
|
|
1287
1308
|
[_RSe, _TL],
|
|
1288
|
-
[() => ResourceSet
|
|
1309
|
+
[() => ResourceSet$, () => TagList],
|
|
1289
1310
|
];
|
|
1290
|
-
var PutResourceSetResponse = [3, n0, _PRSRu, 0, [_RSe, _RSA], [() => ResourceSet
|
|
1291
|
-
var RegionScope = [3, n0, _RS, 0, [_Reg, _ARE], [64 | 0, 2]];
|
|
1292
|
-
var RemediationAction = [
|
|
1311
|
+
var PutResourceSetResponse$ = [3, n0, _PRSRu, 0, [_RSe, _RSA], [() => ResourceSet$, 0]];
|
|
1312
|
+
var RegionScope$ = [3, n0, _RS, 0, [_Reg, _ARE], [64 | 0, 2]];
|
|
1313
|
+
var RemediationAction$ = [
|
|
1293
1314
|
3,
|
|
1294
1315
|
n0,
|
|
1295
1316
|
_RAe,
|
|
@@ -1297,40 +1318,40 @@ var RemediationAction = [
|
|
|
1297
1318
|
[_D, _ECCRA, _ECRRA, _ECDRA, _ECCRTA, _ECRRTAA, _ECARTA, _ECCRTAr, _FMSPUFCCA, _CNAA, _RNAAA, _CNAEA, _DNAEA],
|
|
1298
1319
|
[
|
|
1299
1320
|
0,
|
|
1300
|
-
() => EC2CreateRouteAction
|
|
1301
|
-
() => EC2ReplaceRouteAction
|
|
1302
|
-
() => EC2DeleteRouteAction
|
|
1303
|
-
() => EC2CopyRouteTableAction
|
|
1304
|
-
() => EC2ReplaceRouteTableAssociationAction
|
|
1305
|
-
() => EC2AssociateRouteTableAction
|
|
1306
|
-
() => EC2CreateRouteTableAction
|
|
1307
|
-
() => FMSPolicyUpdateFirewallCreationConfigAction
|
|
1308
|
-
() => CreateNetworkAclAction
|
|
1309
|
-
() => ReplaceNetworkAclAssociationAction
|
|
1310
|
-
() => CreateNetworkAclEntriesAction
|
|
1311
|
-
() => DeleteNetworkAclEntriesAction
|
|
1321
|
+
() => EC2CreateRouteAction$,
|
|
1322
|
+
() => EC2ReplaceRouteAction$,
|
|
1323
|
+
() => EC2DeleteRouteAction$,
|
|
1324
|
+
() => EC2CopyRouteTableAction$,
|
|
1325
|
+
() => EC2ReplaceRouteTableAssociationAction$,
|
|
1326
|
+
() => EC2AssociateRouteTableAction$,
|
|
1327
|
+
() => EC2CreateRouteTableAction$,
|
|
1328
|
+
() => FMSPolicyUpdateFirewallCreationConfigAction$,
|
|
1329
|
+
() => CreateNetworkAclAction$,
|
|
1330
|
+
() => ReplaceNetworkAclAssociationAction$,
|
|
1331
|
+
() => CreateNetworkAclEntriesAction$,
|
|
1332
|
+
() => DeleteNetworkAclEntriesAction$,
|
|
1312
1333
|
],
|
|
1313
1334
|
];
|
|
1314
|
-
var RemediationActionWithOrder = [
|
|
1335
|
+
var RemediationActionWithOrder$ = [
|
|
1315
1336
|
3,
|
|
1316
1337
|
n0,
|
|
1317
1338
|
_RAWO,
|
|
1318
1339
|
0,
|
|
1319
1340
|
[_RAe, _O],
|
|
1320
|
-
[() => RemediationAction
|
|
1341
|
+
[() => RemediationAction$, 1],
|
|
1321
1342
|
];
|
|
1322
|
-
var ReplaceNetworkAclAssociationAction = [
|
|
1343
|
+
var ReplaceNetworkAclAssociationAction$ = [
|
|
1323
1344
|
3,
|
|
1324
1345
|
n0,
|
|
1325
1346
|
_RNAAA,
|
|
1326
1347
|
0,
|
|
1327
1348
|
[_D, _AIs, _NAI, _FMSCR],
|
|
1328
|
-
[0, () => ActionTarget
|
|
1349
|
+
[0, () => ActionTarget$, () => ActionTarget$, 2],
|
|
1329
1350
|
];
|
|
1330
|
-
var Resource = [3, n0, _Res, 0, [_URI, _AI], [0, 0]];
|
|
1331
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_Me], [0]];
|
|
1332
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
1333
|
-
var ResourceSet = [
|
|
1351
|
+
var Resource$ = [3, n0, _Res, 0, [_URI, _AI], [0, 0]];
|
|
1352
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_Me], [0]];
|
|
1353
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1354
|
+
var ResourceSet$ = [
|
|
1334
1355
|
3,
|
|
1335
1356
|
n0,
|
|
1336
1357
|
_RSe,
|
|
@@ -1338,9 +1359,9 @@ var ResourceSet = [
|
|
|
1338
1359
|
[_Id_, _N, _D, _UT, _RTL, _LUTa, _RSS],
|
|
1339
1360
|
[0, 0, 0, 0, 64 | 0, 4, 0],
|
|
1340
1361
|
];
|
|
1341
|
-
var ResourceSetSummary = [3, n0, _RSSe, 0, [_Id_, _N, _D, _LUTa, _RSS], [0, 0, 0, 4, 0]];
|
|
1342
|
-
var ResourceTag = [3, n0, _RTes, 0, [_K, _Va], [0, 0]];
|
|
1343
|
-
var ResourceViolation = [
|
|
1362
|
+
var ResourceSetSummary$ = [3, n0, _RSSe, 0, [_Id_, _N, _D, _LUTa, _RSS], [0, 0, 0, 4, 0]];
|
|
1363
|
+
var ResourceTag$ = [3, n0, _RTes, 0, [_K, _Va], [0, 0]];
|
|
1364
|
+
var ResourceViolation$ = [
|
|
1344
1365
|
3,
|
|
1345
1366
|
n0,
|
|
1346
1367
|
_RV,
|
|
@@ -1374,36 +1395,36 @@ var ResourceViolation = [
|
|
|
1374
1395
|
_WACLHOOSRV,
|
|
1375
1396
|
],
|
|
1376
1397
|
[
|
|
1377
|
-
() => AwsVPCSecurityGroupViolation
|
|
1378
|
-
() => AwsEc2NetworkInterfaceViolation
|
|
1379
|
-
() => AwsEc2InstanceViolation
|
|
1380
|
-
() => NetworkFirewallMissingFirewallViolation
|
|
1381
|
-
() => NetworkFirewallMissingSubnetViolation
|
|
1382
|
-
() => NetworkFirewallMissingExpectedRTViolation
|
|
1383
|
-
() => NetworkFirewallPolicyModifiedViolation
|
|
1384
|
-
() => NetworkFirewallInternetTrafficNotInspectedViolation
|
|
1385
|
-
() => NetworkFirewallInvalidRouteConfigurationViolation
|
|
1386
|
-
() => NetworkFirewallBlackHoleRouteDetectedViolation
|
|
1387
|
-
() => NetworkFirewallUnexpectedFirewallRoutesViolation
|
|
1388
|
-
() => NetworkFirewallUnexpectedGatewayRoutesViolation
|
|
1389
|
-
() => NetworkFirewallMissingExpectedRoutesViolation
|
|
1390
|
-
() => DnsRuleGroupPriorityConflictViolation
|
|
1391
|
-
() => DnsDuplicateRuleGroupViolation
|
|
1392
|
-
() => DnsRuleGroupLimitExceededViolation
|
|
1393
|
-
() => FirewallSubnetIsOutOfScopeViolation
|
|
1394
|
-
() => RouteHasOutOfScopeEndpointViolation
|
|
1395
|
-
() => ThirdPartyFirewallMissingFirewallViolation
|
|
1396
|
-
() => ThirdPartyFirewallMissingSubnetViolation
|
|
1397
|
-
() => ThirdPartyFirewallMissingExpectedRouteTableViolation
|
|
1398
|
-
() => FirewallSubnetMissingVPCEndpointViolation
|
|
1399
|
-
() => InvalidNetworkAclEntriesViolation
|
|
1400
|
-
() => PossibleRemediationActions
|
|
1401
|
-
() => WebACLHasIncompatibleConfigurationViolation
|
|
1402
|
-
() => WebACLHasOutOfScopeResourcesViolation
|
|
1398
|
+
() => AwsVPCSecurityGroupViolation$,
|
|
1399
|
+
() => AwsEc2NetworkInterfaceViolation$,
|
|
1400
|
+
() => AwsEc2InstanceViolation$,
|
|
1401
|
+
() => NetworkFirewallMissingFirewallViolation$,
|
|
1402
|
+
() => NetworkFirewallMissingSubnetViolation$,
|
|
1403
|
+
() => NetworkFirewallMissingExpectedRTViolation$,
|
|
1404
|
+
() => NetworkFirewallPolicyModifiedViolation$,
|
|
1405
|
+
() => NetworkFirewallInternetTrafficNotInspectedViolation$,
|
|
1406
|
+
() => NetworkFirewallInvalidRouteConfigurationViolation$,
|
|
1407
|
+
() => NetworkFirewallBlackHoleRouteDetectedViolation$,
|
|
1408
|
+
() => NetworkFirewallUnexpectedFirewallRoutesViolation$,
|
|
1409
|
+
() => NetworkFirewallUnexpectedGatewayRoutesViolation$,
|
|
1410
|
+
() => NetworkFirewallMissingExpectedRoutesViolation$,
|
|
1411
|
+
() => DnsRuleGroupPriorityConflictViolation$,
|
|
1412
|
+
() => DnsDuplicateRuleGroupViolation$,
|
|
1413
|
+
() => DnsRuleGroupLimitExceededViolation$,
|
|
1414
|
+
() => FirewallSubnetIsOutOfScopeViolation$,
|
|
1415
|
+
() => RouteHasOutOfScopeEndpointViolation$,
|
|
1416
|
+
() => ThirdPartyFirewallMissingFirewallViolation$,
|
|
1417
|
+
() => ThirdPartyFirewallMissingSubnetViolation$,
|
|
1418
|
+
() => ThirdPartyFirewallMissingExpectedRouteTableViolation$,
|
|
1419
|
+
() => FirewallSubnetMissingVPCEndpointViolation$,
|
|
1420
|
+
() => InvalidNetworkAclEntriesViolation$,
|
|
1421
|
+
() => PossibleRemediationActions$,
|
|
1422
|
+
() => WebACLHasIncompatibleConfigurationViolation$,
|
|
1423
|
+
() => WebACLHasOutOfScopeResourcesViolation$,
|
|
1403
1424
|
],
|
|
1404
1425
|
];
|
|
1405
|
-
var Route = [3, n0, _Ro, 0, [_DT, _TT, _De, _Ta], [0, 0, 0, 0]];
|
|
1406
|
-
var RouteHasOutOfScopeEndpointViolation = [
|
|
1426
|
+
var Route$ = [3, n0, _Ro, 0, [_DT, _TT, _De, _Ta], [0, 0, 0, 0]];
|
|
1427
|
+
var RouteHasOutOfScopeEndpointViolation$ = [
|
|
1407
1428
|
3,
|
|
1408
1429
|
n0,
|
|
1409
1430
|
_RHOOSEV,
|
|
@@ -1411,15 +1432,15 @@ var RouteHasOutOfScopeEndpointViolation = [
|
|
|
1411
1432
|
[_SI, _VI, _RTI, _VRi, _SAZ, _SAZI, _CFSRT, _FSI, _FSR, _IGI, _CIGRT, _IGR],
|
|
1412
1433
|
[0, 0, 0, () => Routes, 0, 0, 0, 0, () => Routes, 0, 0, () => Routes],
|
|
1413
1434
|
];
|
|
1414
|
-
var SecurityGroupRemediationAction = [
|
|
1435
|
+
var SecurityGroupRemediationAction$ = [
|
|
1415
1436
|
3,
|
|
1416
1437
|
n0,
|
|
1417
1438
|
_SGRA,
|
|
1418
1439
|
0,
|
|
1419
1440
|
[_RAT, _D, _RR, _IDA],
|
|
1420
|
-
[0, 0, () => SecurityGroupRuleDescription
|
|
1441
|
+
[0, 0, () => SecurityGroupRuleDescription$, 2],
|
|
1421
1442
|
];
|
|
1422
|
-
var SecurityGroupRuleDescription = [
|
|
1443
|
+
var SecurityGroupRuleDescription$ = [
|
|
1423
1444
|
3,
|
|
1424
1445
|
n0,
|
|
1425
1446
|
_SGRD,
|
|
@@ -1427,29 +1448,29 @@ var SecurityGroupRuleDescription = [
|
|
|
1427
1448
|
[_IPVR, _IPVRa, _PLI, _P, _FP, _TP],
|
|
1428
1449
|
[0, 0, 0, 0, 1, 1],
|
|
1429
1450
|
];
|
|
1430
|
-
var SecurityServicePolicyData = [
|
|
1451
|
+
var SecurityServicePolicyData$ = [
|
|
1431
1452
|
3,
|
|
1432
1453
|
n0,
|
|
1433
1454
|
_SSPD,
|
|
1434
1455
|
0,
|
|
1435
1456
|
[_T, _MSD, _POo],
|
|
1436
|
-
[0, 0, () => PolicyOption],
|
|
1457
|
+
[0, 0, () => PolicyOption$],
|
|
1437
1458
|
];
|
|
1438
|
-
var StatefulEngineOptions = [3, n0, _SEO, 0, [_RO, _SEP], [0, 0]];
|
|
1439
|
-
var StatefulRuleGroup = [
|
|
1459
|
+
var StatefulEngineOptions$ = [3, n0, _SEO, 0, [_RO, _SEP], [0, 0]];
|
|
1460
|
+
var StatefulRuleGroup$ = [
|
|
1440
1461
|
3,
|
|
1441
1462
|
n0,
|
|
1442
1463
|
_SRGta,
|
|
1443
1464
|
0,
|
|
1444
1465
|
[_RGN, _RI, _Pr, _Ov],
|
|
1445
|
-
[0, 0, 1, () => NetworkFirewallStatefulRuleGroupOverride],
|
|
1466
|
+
[0, 0, 1, () => NetworkFirewallStatefulRuleGroupOverride$],
|
|
1446
1467
|
];
|
|
1447
|
-
var StatelessRuleGroup = [3, n0, _SRGtat, 0, [_RGN, _RI, _Pr], [0, 0, 1]];
|
|
1448
|
-
var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
|
|
1449
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _TL], [0, () => TagList]];
|
|
1450
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1451
|
-
var ThirdPartyFirewallFirewallPolicy = [3, n0, _TPFFPh, 0, [_FPI, _FPN], [0, 0]];
|
|
1452
|
-
var ThirdPartyFirewallMissingExpectedRouteTableViolation = [
|
|
1468
|
+
var StatelessRuleGroup$ = [3, n0, _SRGtat, 0, [_RGN, _RI, _Pr], [0, 0, 1]];
|
|
1469
|
+
var Tag$ = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
|
|
1470
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _TL], [0, () => TagList]];
|
|
1471
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
1472
|
+
var ThirdPartyFirewallFirewallPolicy$ = [3, n0, _TPFFPh, 0, [_FPI, _FPN], [0, 0]];
|
|
1473
|
+
var ThirdPartyFirewallMissingExpectedRouteTableViolation$ = [
|
|
1453
1474
|
3,
|
|
1454
1475
|
n0,
|
|
1455
1476
|
_TPFMERTV,
|
|
@@ -1457,7 +1478,7 @@ var ThirdPartyFirewallMissingExpectedRouteTableViolation = [
|
|
|
1457
1478
|
[_VT, _VPC, _AZ, _CRT, _ERT],
|
|
1458
1479
|
[0, 0, 0, 0, 0],
|
|
1459
1480
|
];
|
|
1460
|
-
var ThirdPartyFirewallMissingFirewallViolation = [
|
|
1481
|
+
var ThirdPartyFirewallMissingFirewallViolation$ = [
|
|
1461
1482
|
3,
|
|
1462
1483
|
n0,
|
|
1463
1484
|
_TPFMFV,
|
|
@@ -1465,7 +1486,7 @@ var ThirdPartyFirewallMissingFirewallViolation = [
|
|
|
1465
1486
|
[_VT, _VPC, _AZ, _TVR],
|
|
1466
1487
|
[0, 0, 0, 0],
|
|
1467
1488
|
];
|
|
1468
|
-
var ThirdPartyFirewallMissingSubnetViolation = [
|
|
1489
|
+
var ThirdPartyFirewallMissingSubnetViolation$ = [
|
|
1469
1490
|
3,
|
|
1470
1491
|
n0,
|
|
1471
1492
|
_TPFMSV,
|
|
@@ -1473,10 +1494,10 @@ var ThirdPartyFirewallMissingSubnetViolation = [
|
|
|
1473
1494
|
[_VT, _VPC, _AZ, _TVR],
|
|
1474
1495
|
[0, 0, 0, 0],
|
|
1475
1496
|
];
|
|
1476
|
-
var ThirdPartyFirewallPolicy = [3, n0, _TPFP, 0, [_FDM], [0]];
|
|
1477
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_RA, _TK], [0, 64 | 0]];
|
|
1478
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1479
|
-
var ViolationDetail = [
|
|
1497
|
+
var ThirdPartyFirewallPolicy$ = [3, n0, _TPFP, 0, [_FDM], [0]];
|
|
1498
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_RA, _TK], [0, 64 | 0]];
|
|
1499
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
1500
|
+
var ViolationDetail$ = [
|
|
1480
1501
|
3,
|
|
1481
1502
|
n0,
|
|
1482
1503
|
_VD,
|
|
@@ -1484,7 +1505,7 @@ var ViolationDetail = [
|
|
|
1484
1505
|
[_PI, _MA, _RI, _RT, _RVe, _RTe, _RD],
|
|
1485
1506
|
[0, 0, 0, 0, () => ResourceViolations, () => TagList, 0],
|
|
1486
1507
|
];
|
|
1487
|
-
var WebACLHasIncompatibleConfigurationViolation = [
|
|
1508
|
+
var WebACLHasIncompatibleConfigurationViolation$ = [
|
|
1488
1509
|
3,
|
|
1489
1510
|
n0,
|
|
1490
1511
|
_WACLHICV,
|
|
@@ -1492,7 +1513,7 @@ var WebACLHasIncompatibleConfigurationViolation = [
|
|
|
1492
1513
|
[_WACLA, _D],
|
|
1493
1514
|
[0, 0],
|
|
1494
1515
|
];
|
|
1495
|
-
var WebACLHasOutOfScopeResourcesViolation = [
|
|
1516
|
+
var WebACLHasOutOfScopeResourcesViolation$ = [
|
|
1496
1517
|
3,
|
|
1497
1518
|
n0,
|
|
1498
1519
|
_WACLHOOSRV,
|
|
@@ -1501,315 +1522,324 @@ var WebACLHasOutOfScopeResourcesViolation = [
|
|
|
1501
1522
|
[0, 64 | 0],
|
|
1502
1523
|
];
|
|
1503
1524
|
var __Unit = "unit";
|
|
1504
|
-
var FMSServiceException = [-3, _s, "FMSServiceException", 0, [], []];
|
|
1505
|
-
schema.TypeRegistry.for(_s).registerError(FMSServiceException
|
|
1506
|
-
var AdminAccountSummaryList = [1, n0, _AASL, 0, () => AdminAccountSummary];
|
|
1507
|
-
var AppsList = [1, n0, _AL, 0, () => App];
|
|
1508
|
-
var AppsListsData = [1, n0, _ALDp, 0, () => AppsListDataSummary];
|
|
1509
|
-
var AwsEc2NetworkInterfaceViolations = [
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
];
|
|
1516
|
-
var
|
|
1517
|
-
var
|
|
1518
|
-
var
|
|
1519
|
-
var
|
|
1520
|
-
var
|
|
1521
|
-
var
|
|
1522
|
-
var
|
|
1523
|
-
var
|
|
1524
|
-
var
|
|
1525
|
-
var
|
|
1526
|
-
var
|
|
1527
|
-
var
|
|
1528
|
-
var
|
|
1529
|
-
var
|
|
1530
|
-
var
|
|
1531
|
-
var
|
|
1532
|
-
var
|
|
1533
|
-
var
|
|
1534
|
-
var
|
|
1535
|
-
var Routes = [1, n0, _Rou, 0, () => Route];
|
|
1536
|
-
var SecurityGroupRemediationActions = [1, n0, _SGRAe, 0, () => SecurityGroupRemediationAction];
|
|
1537
|
-
var StatefulRuleGroupList = [1, n0, _SRGL, 0, () => StatefulRuleGroup];
|
|
1538
|
-
var StatelessRuleGroupList = [1, n0, _SRGLt, 0, () => StatelessRuleGroup];
|
|
1539
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1540
|
-
var ThirdPartyFirewallFirewallPolicies = [
|
|
1541
|
-
1,
|
|
1542
|
-
n0,
|
|
1543
|
-
_TPFFP,
|
|
1544
|
-
0,
|
|
1545
|
-
() => ThirdPartyFirewallFirewallPolicy,
|
|
1546
|
-
];
|
|
1525
|
+
var FMSServiceException$ = [-3, _s, "FMSServiceException", 0, [], []];
|
|
1526
|
+
schema.TypeRegistry.for(_s).registerError(FMSServiceException$, FMSServiceException);
|
|
1527
|
+
var AdminAccountSummaryList = [1, n0, _AASL, 0, () => AdminAccountSummary$];
|
|
1528
|
+
var AppsList = [1, n0, _AL, 0, () => App$];
|
|
1529
|
+
var AppsListsData = [1, n0, _ALDp, 0, () => AppsListDataSummary$];
|
|
1530
|
+
var AwsEc2NetworkInterfaceViolations = [1, n0, _AENIV, 0, () => AwsEc2NetworkInterfaceViolation$];
|
|
1531
|
+
var ComplianceViolators = [1, n0, _CVo, 0, () => ComplianceViolator$];
|
|
1532
|
+
var DiscoveredResourceList = [1, n0, _DRL, 0, () => DiscoveredResource$];
|
|
1533
|
+
var EntriesDescription = [1, n0, _EDnt, 0, () => EntryDescription$];
|
|
1534
|
+
var EntriesWithConflicts = [1, n0, _EWC, 0, () => EntryDescription$];
|
|
1535
|
+
var EntryViolations = [1, n0, _EVn, 0, () => EntryViolation$];
|
|
1536
|
+
var EvaluationResults = [1, n0, _ERv, 0, () => EvaluationResult$];
|
|
1537
|
+
var ExpectedRoutes = [1, n0, _ERxp, 0, () => ExpectedRoute$];
|
|
1538
|
+
var FailedItemList = [1, n0, _FIL, 0, () => FailedItem$];
|
|
1539
|
+
var NetworkAclEntries = [1, n0, _NAEe, 0, () => NetworkAclEntry$];
|
|
1540
|
+
var OrderedRemediationActions = [1, n0, _ORA, 0, () => RemediationActionWithOrder$];
|
|
1541
|
+
var PartialMatches = [1, n0, _PM, 0, () => PartialMatch$];
|
|
1542
|
+
var PolicyComplianceStatusList = [1, n0, _PCSL, 0, () => PolicyComplianceStatus$];
|
|
1543
|
+
var PolicySummaryList = [1, n0, _PSL, 0, () => PolicySummary$];
|
|
1544
|
+
var PossibleRemediationActionList = [1, n0, _PRAL, 0, () => PossibleRemediationAction$];
|
|
1545
|
+
var ProtocolsListsData = [1, n0, _PLDr, 0, () => ProtocolsListDataSummary$];
|
|
1546
|
+
var ResourceList = [1, n0, _RL, 0, () => Resource$];
|
|
1547
|
+
var ResourceSetSummaryList = [1, n0, _RSSL, 0, () => ResourceSetSummary$];
|
|
1548
|
+
var ResourceTags = [1, n0, _RTe, 0, () => ResourceTag$];
|
|
1549
|
+
var ResourceViolations = [1, n0, _RVe, 0, () => ResourceViolation$];
|
|
1550
|
+
var Routes = [1, n0, _Rou, 0, () => Route$];
|
|
1551
|
+
var SecurityGroupRemediationActions = [1, n0, _SGRAe, 0, () => SecurityGroupRemediationAction$];
|
|
1552
|
+
var StatefulRuleGroupList = [1, n0, _SRGL, 0, () => StatefulRuleGroup$];
|
|
1553
|
+
var StatelessRuleGroupList = [1, n0, _SRGLt, 0, () => StatelessRuleGroup$];
|
|
1554
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
1555
|
+
var ThirdPartyFirewallFirewallPolicies = [1, n0, _TPFFP, 0, () => ThirdPartyFirewallFirewallPolicy$];
|
|
1547
1556
|
var PreviousAppsList = [2, n0, _PAL, 0, 0, () => AppsList];
|
|
1548
|
-
var AssociateAdminAccount = [
|
|
1557
|
+
var AssociateAdminAccount$ = [
|
|
1549
1558
|
9,
|
|
1550
1559
|
n0,
|
|
1551
1560
|
_AAA,
|
|
1552
1561
|
0,
|
|
1553
|
-
() => AssociateAdminAccountRequest
|
|
1562
|
+
() => AssociateAdminAccountRequest$,
|
|
1554
1563
|
() => __Unit,
|
|
1555
1564
|
];
|
|
1556
|
-
var AssociateThirdPartyFirewall = [
|
|
1565
|
+
var AssociateThirdPartyFirewall$ = [
|
|
1557
1566
|
9,
|
|
1558
1567
|
n0,
|
|
1559
1568
|
_ATPF,
|
|
1560
1569
|
0,
|
|
1561
|
-
() => AssociateThirdPartyFirewallRequest
|
|
1562
|
-
() => AssociateThirdPartyFirewallResponse
|
|
1570
|
+
() => AssociateThirdPartyFirewallRequest$,
|
|
1571
|
+
() => AssociateThirdPartyFirewallResponse$,
|
|
1563
1572
|
];
|
|
1564
|
-
var BatchAssociateResource = [
|
|
1573
|
+
var BatchAssociateResource$ = [
|
|
1565
1574
|
9,
|
|
1566
1575
|
n0,
|
|
1567
1576
|
_BAR,
|
|
1568
1577
|
0,
|
|
1569
|
-
() => BatchAssociateResourceRequest
|
|
1570
|
-
() => BatchAssociateResourceResponse
|
|
1578
|
+
() => BatchAssociateResourceRequest$,
|
|
1579
|
+
() => BatchAssociateResourceResponse$,
|
|
1571
1580
|
];
|
|
1572
|
-
var BatchDisassociateResource = [
|
|
1581
|
+
var BatchDisassociateResource$ = [
|
|
1573
1582
|
9,
|
|
1574
1583
|
n0,
|
|
1575
1584
|
_BDR,
|
|
1576
1585
|
0,
|
|
1577
|
-
() => BatchDisassociateResourceRequest
|
|
1578
|
-
() => BatchDisassociateResourceResponse
|
|
1586
|
+
() => BatchDisassociateResourceRequest$,
|
|
1587
|
+
() => BatchDisassociateResourceResponse$,
|
|
1579
1588
|
];
|
|
1580
|
-
var DeleteAppsList = [9, n0, _DAL, 0, () => DeleteAppsListRequest
|
|
1581
|
-
var DeleteNotificationChannel = [
|
|
1589
|
+
var DeleteAppsList$ = [9, n0, _DAL, 0, () => DeleteAppsListRequest$, () => __Unit];
|
|
1590
|
+
var DeleteNotificationChannel$ = [
|
|
1582
1591
|
9,
|
|
1583
1592
|
n0,
|
|
1584
1593
|
_DNC,
|
|
1585
1594
|
0,
|
|
1586
|
-
() => DeleteNotificationChannelRequest
|
|
1595
|
+
() => DeleteNotificationChannelRequest$,
|
|
1587
1596
|
() => __Unit,
|
|
1588
1597
|
];
|
|
1589
|
-
var DeletePolicy = [9, n0, _DP, 0, () => DeletePolicyRequest
|
|
1590
|
-
var DeleteProtocolsList = [
|
|
1598
|
+
var DeletePolicy$ = [9, n0, _DP, 0, () => DeletePolicyRequest$, () => __Unit];
|
|
1599
|
+
var DeleteProtocolsList$ = [
|
|
1591
1600
|
9,
|
|
1592
1601
|
n0,
|
|
1593
1602
|
_DPL,
|
|
1594
1603
|
0,
|
|
1595
|
-
() => DeleteProtocolsListRequest
|
|
1604
|
+
() => DeleteProtocolsListRequest$,
|
|
1596
1605
|
() => __Unit,
|
|
1597
1606
|
];
|
|
1598
|
-
var DeleteResourceSet = [9, n0, _DRS, 0, () => DeleteResourceSetRequest
|
|
1599
|
-
var DisassociateAdminAccount = [
|
|
1607
|
+
var DeleteResourceSet$ = [9, n0, _DRS, 0, () => DeleteResourceSetRequest$, () => __Unit];
|
|
1608
|
+
var DisassociateAdminAccount$ = [
|
|
1600
1609
|
9,
|
|
1601
1610
|
n0,
|
|
1602
1611
|
_DAA,
|
|
1603
1612
|
0,
|
|
1604
|
-
() => DisassociateAdminAccountRequest
|
|
1613
|
+
() => DisassociateAdminAccountRequest$,
|
|
1605
1614
|
() => __Unit,
|
|
1606
1615
|
];
|
|
1607
|
-
var DisassociateThirdPartyFirewall = [
|
|
1616
|
+
var DisassociateThirdPartyFirewall$ = [
|
|
1608
1617
|
9,
|
|
1609
1618
|
n0,
|
|
1610
1619
|
_DTPF,
|
|
1611
1620
|
0,
|
|
1612
|
-
() => DisassociateThirdPartyFirewallRequest
|
|
1613
|
-
() => DisassociateThirdPartyFirewallResponse
|
|
1621
|
+
() => DisassociateThirdPartyFirewallRequest$,
|
|
1622
|
+
() => DisassociateThirdPartyFirewallResponse$,
|
|
1614
1623
|
];
|
|
1615
|
-
var GetAdminAccount = [
|
|
1624
|
+
var GetAdminAccount$ = [
|
|
1616
1625
|
9,
|
|
1617
1626
|
n0,
|
|
1618
1627
|
_GAA,
|
|
1619
1628
|
0,
|
|
1620
|
-
() => GetAdminAccountRequest
|
|
1621
|
-
() => GetAdminAccountResponse
|
|
1629
|
+
() => GetAdminAccountRequest$,
|
|
1630
|
+
() => GetAdminAccountResponse$,
|
|
1622
1631
|
];
|
|
1623
|
-
var GetAdminScope = [
|
|
1632
|
+
var GetAdminScope$ = [
|
|
1624
1633
|
9,
|
|
1625
1634
|
n0,
|
|
1626
1635
|
_GAS,
|
|
1627
1636
|
0,
|
|
1628
|
-
() => GetAdminScopeRequest
|
|
1629
|
-
() => GetAdminScopeResponse
|
|
1637
|
+
() => GetAdminScopeRequest$,
|
|
1638
|
+
() => GetAdminScopeResponse$,
|
|
1630
1639
|
];
|
|
1631
|
-
var GetAppsList = [
|
|
1632
|
-
|
|
1640
|
+
var GetAppsList$ = [
|
|
1641
|
+
9,
|
|
1642
|
+
n0,
|
|
1643
|
+
_GAL,
|
|
1644
|
+
0,
|
|
1645
|
+
() => GetAppsListRequest$,
|
|
1646
|
+
() => GetAppsListResponse$,
|
|
1647
|
+
];
|
|
1648
|
+
var GetComplianceDetail$ = [
|
|
1633
1649
|
9,
|
|
1634
1650
|
n0,
|
|
1635
1651
|
_GCD,
|
|
1636
1652
|
0,
|
|
1637
|
-
() => GetComplianceDetailRequest
|
|
1638
|
-
() => GetComplianceDetailResponse
|
|
1653
|
+
() => GetComplianceDetailRequest$,
|
|
1654
|
+
() => GetComplianceDetailResponse$,
|
|
1639
1655
|
];
|
|
1640
|
-
var GetNotificationChannel = [
|
|
1656
|
+
var GetNotificationChannel$ = [
|
|
1641
1657
|
9,
|
|
1642
1658
|
n0,
|
|
1643
1659
|
_GNC,
|
|
1644
1660
|
0,
|
|
1645
|
-
() => GetNotificationChannelRequest
|
|
1646
|
-
() => GetNotificationChannelResponse
|
|
1661
|
+
() => GetNotificationChannelRequest$,
|
|
1662
|
+
() => GetNotificationChannelResponse$,
|
|
1647
1663
|
];
|
|
1648
|
-
var GetPolicy = [9, n0, _GP, 0, () => GetPolicyRequest
|
|
1649
|
-
var GetProtectionStatus = [
|
|
1664
|
+
var GetPolicy$ = [9, n0, _GP, 0, () => GetPolicyRequest$, () => GetPolicyResponse$];
|
|
1665
|
+
var GetProtectionStatus$ = [
|
|
1650
1666
|
9,
|
|
1651
1667
|
n0,
|
|
1652
1668
|
_GPS,
|
|
1653
1669
|
0,
|
|
1654
|
-
() => GetProtectionStatusRequest
|
|
1655
|
-
() => GetProtectionStatusResponse
|
|
1670
|
+
() => GetProtectionStatusRequest$,
|
|
1671
|
+
() => GetProtectionStatusResponse$,
|
|
1656
1672
|
];
|
|
1657
|
-
var GetProtocolsList = [
|
|
1673
|
+
var GetProtocolsList$ = [
|
|
1658
1674
|
9,
|
|
1659
1675
|
n0,
|
|
1660
1676
|
_GPL,
|
|
1661
1677
|
0,
|
|
1662
|
-
() => GetProtocolsListRequest
|
|
1663
|
-
() => GetProtocolsListResponse
|
|
1678
|
+
() => GetProtocolsListRequest$,
|
|
1679
|
+
() => GetProtocolsListResponse$,
|
|
1664
1680
|
];
|
|
1665
|
-
var GetResourceSet = [
|
|
1681
|
+
var GetResourceSet$ = [
|
|
1666
1682
|
9,
|
|
1667
1683
|
n0,
|
|
1668
1684
|
_GRS,
|
|
1669
1685
|
0,
|
|
1670
|
-
() => GetResourceSetRequest
|
|
1671
|
-
() => GetResourceSetResponse
|
|
1686
|
+
() => GetResourceSetRequest$,
|
|
1687
|
+
() => GetResourceSetResponse$,
|
|
1672
1688
|
];
|
|
1673
|
-
var GetThirdPartyFirewallAssociationStatus = [
|
|
1689
|
+
var GetThirdPartyFirewallAssociationStatus$ = [
|
|
1674
1690
|
9,
|
|
1675
1691
|
n0,
|
|
1676
1692
|
_GTPFAS,
|
|
1677
1693
|
0,
|
|
1678
|
-
() => GetThirdPartyFirewallAssociationStatusRequest
|
|
1679
|
-
() => GetThirdPartyFirewallAssociationStatusResponse
|
|
1694
|
+
() => GetThirdPartyFirewallAssociationStatusRequest$,
|
|
1695
|
+
() => GetThirdPartyFirewallAssociationStatusResponse$,
|
|
1680
1696
|
];
|
|
1681
|
-
var GetViolationDetails = [
|
|
1697
|
+
var GetViolationDetails$ = [
|
|
1682
1698
|
9,
|
|
1683
1699
|
n0,
|
|
1684
1700
|
_GVD,
|
|
1685
1701
|
0,
|
|
1686
|
-
() => GetViolationDetailsRequest
|
|
1687
|
-
() => GetViolationDetailsResponse
|
|
1702
|
+
() => GetViolationDetailsRequest$,
|
|
1703
|
+
() => GetViolationDetailsResponse$,
|
|
1688
1704
|
];
|
|
1689
|
-
var ListAdminAccountsForOrganization = [
|
|
1705
|
+
var ListAdminAccountsForOrganization$ = [
|
|
1690
1706
|
9,
|
|
1691
1707
|
n0,
|
|
1692
1708
|
_LAAFO,
|
|
1693
1709
|
0,
|
|
1694
|
-
() => ListAdminAccountsForOrganizationRequest
|
|
1695
|
-
() => ListAdminAccountsForOrganizationResponse
|
|
1710
|
+
() => ListAdminAccountsForOrganizationRequest$,
|
|
1711
|
+
() => ListAdminAccountsForOrganizationResponse$,
|
|
1696
1712
|
];
|
|
1697
|
-
var ListAdminsManagingAccount = [
|
|
1713
|
+
var ListAdminsManagingAccount$ = [
|
|
1698
1714
|
9,
|
|
1699
1715
|
n0,
|
|
1700
1716
|
_LAMA,
|
|
1701
1717
|
0,
|
|
1702
|
-
() => ListAdminsManagingAccountRequest
|
|
1703
|
-
() => ListAdminsManagingAccountResponse
|
|
1718
|
+
() => ListAdminsManagingAccountRequest$,
|
|
1719
|
+
() => ListAdminsManagingAccountResponse$,
|
|
1704
1720
|
];
|
|
1705
|
-
var ListAppsLists = [
|
|
1721
|
+
var ListAppsLists$ = [
|
|
1706
1722
|
9,
|
|
1707
1723
|
n0,
|
|
1708
1724
|
_LAL,
|
|
1709
1725
|
0,
|
|
1710
|
-
() => ListAppsListsRequest
|
|
1711
|
-
() => ListAppsListsResponse
|
|
1726
|
+
() => ListAppsListsRequest$,
|
|
1727
|
+
() => ListAppsListsResponse$,
|
|
1712
1728
|
];
|
|
1713
|
-
var ListComplianceStatus = [
|
|
1729
|
+
var ListComplianceStatus$ = [
|
|
1714
1730
|
9,
|
|
1715
1731
|
n0,
|
|
1716
1732
|
_LCS,
|
|
1717
1733
|
0,
|
|
1718
|
-
() => ListComplianceStatusRequest
|
|
1719
|
-
() => ListComplianceStatusResponse
|
|
1734
|
+
() => ListComplianceStatusRequest$,
|
|
1735
|
+
() => ListComplianceStatusResponse$,
|
|
1720
1736
|
];
|
|
1721
|
-
var ListDiscoveredResources = [
|
|
1737
|
+
var ListDiscoveredResources$ = [
|
|
1722
1738
|
9,
|
|
1723
1739
|
n0,
|
|
1724
1740
|
_LDR,
|
|
1725
1741
|
0,
|
|
1726
|
-
() => ListDiscoveredResourcesRequest
|
|
1727
|
-
() => ListDiscoveredResourcesResponse
|
|
1742
|
+
() => ListDiscoveredResourcesRequest$,
|
|
1743
|
+
() => ListDiscoveredResourcesResponse$,
|
|
1728
1744
|
];
|
|
1729
|
-
var ListMemberAccounts = [
|
|
1745
|
+
var ListMemberAccounts$ = [
|
|
1730
1746
|
9,
|
|
1731
1747
|
n0,
|
|
1732
1748
|
_LMA,
|
|
1733
1749
|
0,
|
|
1734
|
-
() => ListMemberAccountsRequest
|
|
1735
|
-
() => ListMemberAccountsResponse
|
|
1750
|
+
() => ListMemberAccountsRequest$,
|
|
1751
|
+
() => ListMemberAccountsResponse$,
|
|
1752
|
+
];
|
|
1753
|
+
var ListPolicies$ = [
|
|
1754
|
+
9,
|
|
1755
|
+
n0,
|
|
1756
|
+
_LP,
|
|
1757
|
+
0,
|
|
1758
|
+
() => ListPoliciesRequest$,
|
|
1759
|
+
() => ListPoliciesResponse$,
|
|
1736
1760
|
];
|
|
1737
|
-
var
|
|
1738
|
-
var ListProtocolsLists = [
|
|
1761
|
+
var ListProtocolsLists$ = [
|
|
1739
1762
|
9,
|
|
1740
1763
|
n0,
|
|
1741
1764
|
_LPL,
|
|
1742
1765
|
0,
|
|
1743
|
-
() => ListProtocolsListsRequest
|
|
1744
|
-
() => ListProtocolsListsResponse
|
|
1766
|
+
() => ListProtocolsListsRequest$,
|
|
1767
|
+
() => ListProtocolsListsResponse$,
|
|
1745
1768
|
];
|
|
1746
|
-
var ListResourceSetResources = [
|
|
1769
|
+
var ListResourceSetResources$ = [
|
|
1747
1770
|
9,
|
|
1748
1771
|
n0,
|
|
1749
1772
|
_LRSRis,
|
|
1750
1773
|
0,
|
|
1751
|
-
() => ListResourceSetResourcesRequest
|
|
1752
|
-
() => ListResourceSetResourcesResponse
|
|
1774
|
+
() => ListResourceSetResourcesRequest$,
|
|
1775
|
+
() => ListResourceSetResourcesResponse$,
|
|
1753
1776
|
];
|
|
1754
|
-
var ListResourceSets = [
|
|
1777
|
+
var ListResourceSets$ = [
|
|
1755
1778
|
9,
|
|
1756
1779
|
n0,
|
|
1757
1780
|
_LRS,
|
|
1758
1781
|
0,
|
|
1759
|
-
() => ListResourceSetsRequest
|
|
1760
|
-
() => ListResourceSetsResponse
|
|
1782
|
+
() => ListResourceSetsRequest$,
|
|
1783
|
+
() => ListResourceSetsResponse$,
|
|
1761
1784
|
];
|
|
1762
|
-
var ListTagsForResource = [
|
|
1785
|
+
var ListTagsForResource$ = [
|
|
1763
1786
|
9,
|
|
1764
1787
|
n0,
|
|
1765
1788
|
_LTFR,
|
|
1766
1789
|
0,
|
|
1767
|
-
() => ListTagsForResourceRequest
|
|
1768
|
-
() => ListTagsForResourceResponse
|
|
1790
|
+
() => ListTagsForResourceRequest$,
|
|
1791
|
+
() => ListTagsForResourceResponse$,
|
|
1769
1792
|
];
|
|
1770
|
-
var ListThirdPartyFirewallFirewallPolicies = [
|
|
1793
|
+
var ListThirdPartyFirewallFirewallPolicies$ = [
|
|
1771
1794
|
9,
|
|
1772
1795
|
n0,
|
|
1773
1796
|
_LTPFFP,
|
|
1774
1797
|
0,
|
|
1775
|
-
() => ListThirdPartyFirewallFirewallPoliciesRequest
|
|
1776
|
-
() => ListThirdPartyFirewallFirewallPoliciesResponse
|
|
1798
|
+
() => ListThirdPartyFirewallFirewallPoliciesRequest$,
|
|
1799
|
+
() => ListThirdPartyFirewallFirewallPoliciesResponse$,
|
|
1800
|
+
];
|
|
1801
|
+
var PutAdminAccount$ = [9, n0, _PAA, 0, () => PutAdminAccountRequest$, () => __Unit];
|
|
1802
|
+
var PutAppsList$ = [
|
|
1803
|
+
9,
|
|
1804
|
+
n0,
|
|
1805
|
+
_PALu,
|
|
1806
|
+
0,
|
|
1807
|
+
() => PutAppsListRequest$,
|
|
1808
|
+
() => PutAppsListResponse$,
|
|
1777
1809
|
];
|
|
1778
|
-
var
|
|
1779
|
-
var PutAppsList = [9, n0, _PALu, 0, () => PutAppsListRequest, () => PutAppsListResponse];
|
|
1780
|
-
var PutNotificationChannel = [
|
|
1810
|
+
var PutNotificationChannel$ = [
|
|
1781
1811
|
9,
|
|
1782
1812
|
n0,
|
|
1783
1813
|
_PNC,
|
|
1784
1814
|
0,
|
|
1785
|
-
() => PutNotificationChannelRequest
|
|
1815
|
+
() => PutNotificationChannelRequest$,
|
|
1786
1816
|
() => __Unit,
|
|
1787
1817
|
];
|
|
1788
|
-
var PutPolicy = [9, n0, _PP, 0, () => PutPolicyRequest
|
|
1789
|
-
var PutProtocolsList = [
|
|
1818
|
+
var PutPolicy$ = [9, n0, _PP, 0, () => PutPolicyRequest$, () => PutPolicyResponse$];
|
|
1819
|
+
var PutProtocolsList$ = [
|
|
1790
1820
|
9,
|
|
1791
1821
|
n0,
|
|
1792
1822
|
_PPLu,
|
|
1793
1823
|
0,
|
|
1794
|
-
() => PutProtocolsListRequest
|
|
1795
|
-
() => PutProtocolsListResponse
|
|
1824
|
+
() => PutProtocolsListRequest$,
|
|
1825
|
+
() => PutProtocolsListResponse$,
|
|
1796
1826
|
];
|
|
1797
|
-
var PutResourceSet = [
|
|
1827
|
+
var PutResourceSet$ = [
|
|
1798
1828
|
9,
|
|
1799
1829
|
n0,
|
|
1800
1830
|
_PRS,
|
|
1801
1831
|
0,
|
|
1802
|
-
() => PutResourceSetRequest
|
|
1803
|
-
() => PutResourceSetResponse
|
|
1832
|
+
() => PutResourceSetRequest$,
|
|
1833
|
+
() => PutResourceSetResponse$,
|
|
1804
1834
|
];
|
|
1805
|
-
var TagResource = [9, n0, _TR, 0, () => TagResourceRequest
|
|
1806
|
-
var UntagResource = [
|
|
1835
|
+
var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
|
|
1836
|
+
var UntagResource$ = [
|
|
1807
1837
|
9,
|
|
1808
1838
|
n0,
|
|
1809
1839
|
_UR,
|
|
1810
1840
|
0,
|
|
1811
|
-
() => UntagResourceRequest
|
|
1812
|
-
() => UntagResourceResponse
|
|
1841
|
+
() => UntagResourceRequest$,
|
|
1842
|
+
() => UntagResourceResponse$,
|
|
1813
1843
|
];
|
|
1814
1844
|
|
|
1815
1845
|
class AssociateAdminAccountCommand extends smithyClient.Command
|
|
@@ -1820,7 +1850,7 @@ class AssociateAdminAccountCommand extends smithyClient.Command
|
|
|
1820
1850
|
})
|
|
1821
1851
|
.s("AWSFMS_20180101", "AssociateAdminAccount", {})
|
|
1822
1852
|
.n("FMSClient", "AssociateAdminAccountCommand")
|
|
1823
|
-
.sc(AssociateAdminAccount)
|
|
1853
|
+
.sc(AssociateAdminAccount$)
|
|
1824
1854
|
.build() {
|
|
1825
1855
|
}
|
|
1826
1856
|
|
|
@@ -1832,7 +1862,7 @@ class AssociateThirdPartyFirewallCommand extends smithyClient.Command
|
|
|
1832
1862
|
})
|
|
1833
1863
|
.s("AWSFMS_20180101", "AssociateThirdPartyFirewall", {})
|
|
1834
1864
|
.n("FMSClient", "AssociateThirdPartyFirewallCommand")
|
|
1835
|
-
.sc(AssociateThirdPartyFirewall)
|
|
1865
|
+
.sc(AssociateThirdPartyFirewall$)
|
|
1836
1866
|
.build() {
|
|
1837
1867
|
}
|
|
1838
1868
|
|
|
@@ -1844,7 +1874,7 @@ class BatchAssociateResourceCommand extends smithyClient.Command
|
|
|
1844
1874
|
})
|
|
1845
1875
|
.s("AWSFMS_20180101", "BatchAssociateResource", {})
|
|
1846
1876
|
.n("FMSClient", "BatchAssociateResourceCommand")
|
|
1847
|
-
.sc(BatchAssociateResource)
|
|
1877
|
+
.sc(BatchAssociateResource$)
|
|
1848
1878
|
.build() {
|
|
1849
1879
|
}
|
|
1850
1880
|
|
|
@@ -1856,7 +1886,7 @@ class BatchDisassociateResourceCommand extends smithyClient.Command
|
|
|
1856
1886
|
})
|
|
1857
1887
|
.s("AWSFMS_20180101", "BatchDisassociateResource", {})
|
|
1858
1888
|
.n("FMSClient", "BatchDisassociateResourceCommand")
|
|
1859
|
-
.sc(BatchDisassociateResource)
|
|
1889
|
+
.sc(BatchDisassociateResource$)
|
|
1860
1890
|
.build() {
|
|
1861
1891
|
}
|
|
1862
1892
|
|
|
@@ -1868,7 +1898,7 @@ class DeleteAppsListCommand extends smithyClient.Command
|
|
|
1868
1898
|
})
|
|
1869
1899
|
.s("AWSFMS_20180101", "DeleteAppsList", {})
|
|
1870
1900
|
.n("FMSClient", "DeleteAppsListCommand")
|
|
1871
|
-
.sc(DeleteAppsList)
|
|
1901
|
+
.sc(DeleteAppsList$)
|
|
1872
1902
|
.build() {
|
|
1873
1903
|
}
|
|
1874
1904
|
|
|
@@ -1880,7 +1910,7 @@ class DeleteNotificationChannelCommand extends smithyClient.Command
|
|
|
1880
1910
|
})
|
|
1881
1911
|
.s("AWSFMS_20180101", "DeleteNotificationChannel", {})
|
|
1882
1912
|
.n("FMSClient", "DeleteNotificationChannelCommand")
|
|
1883
|
-
.sc(DeleteNotificationChannel)
|
|
1913
|
+
.sc(DeleteNotificationChannel$)
|
|
1884
1914
|
.build() {
|
|
1885
1915
|
}
|
|
1886
1916
|
|
|
@@ -1892,7 +1922,7 @@ class DeletePolicyCommand extends smithyClient.Command
|
|
|
1892
1922
|
})
|
|
1893
1923
|
.s("AWSFMS_20180101", "DeletePolicy", {})
|
|
1894
1924
|
.n("FMSClient", "DeletePolicyCommand")
|
|
1895
|
-
.sc(DeletePolicy)
|
|
1925
|
+
.sc(DeletePolicy$)
|
|
1896
1926
|
.build() {
|
|
1897
1927
|
}
|
|
1898
1928
|
|
|
@@ -1904,7 +1934,7 @@ class DeleteProtocolsListCommand extends smithyClient.Command
|
|
|
1904
1934
|
})
|
|
1905
1935
|
.s("AWSFMS_20180101", "DeleteProtocolsList", {})
|
|
1906
1936
|
.n("FMSClient", "DeleteProtocolsListCommand")
|
|
1907
|
-
.sc(DeleteProtocolsList)
|
|
1937
|
+
.sc(DeleteProtocolsList$)
|
|
1908
1938
|
.build() {
|
|
1909
1939
|
}
|
|
1910
1940
|
|
|
@@ -1916,7 +1946,7 @@ class DeleteResourceSetCommand extends smithyClient.Command
|
|
|
1916
1946
|
})
|
|
1917
1947
|
.s("AWSFMS_20180101", "DeleteResourceSet", {})
|
|
1918
1948
|
.n("FMSClient", "DeleteResourceSetCommand")
|
|
1919
|
-
.sc(DeleteResourceSet)
|
|
1949
|
+
.sc(DeleteResourceSet$)
|
|
1920
1950
|
.build() {
|
|
1921
1951
|
}
|
|
1922
1952
|
|
|
@@ -1928,7 +1958,7 @@ class DisassociateAdminAccountCommand extends smithyClient.Command
|
|
|
1928
1958
|
})
|
|
1929
1959
|
.s("AWSFMS_20180101", "DisassociateAdminAccount", {})
|
|
1930
1960
|
.n("FMSClient", "DisassociateAdminAccountCommand")
|
|
1931
|
-
.sc(DisassociateAdminAccount)
|
|
1961
|
+
.sc(DisassociateAdminAccount$)
|
|
1932
1962
|
.build() {
|
|
1933
1963
|
}
|
|
1934
1964
|
|
|
@@ -1940,7 +1970,7 @@ class DisassociateThirdPartyFirewallCommand extends smithyClient.Command
|
|
|
1940
1970
|
})
|
|
1941
1971
|
.s("AWSFMS_20180101", "DisassociateThirdPartyFirewall", {})
|
|
1942
1972
|
.n("FMSClient", "DisassociateThirdPartyFirewallCommand")
|
|
1943
|
-
.sc(DisassociateThirdPartyFirewall)
|
|
1973
|
+
.sc(DisassociateThirdPartyFirewall$)
|
|
1944
1974
|
.build() {
|
|
1945
1975
|
}
|
|
1946
1976
|
|
|
@@ -1952,7 +1982,7 @@ class GetAdminAccountCommand extends smithyClient.Command
|
|
|
1952
1982
|
})
|
|
1953
1983
|
.s("AWSFMS_20180101", "GetAdminAccount", {})
|
|
1954
1984
|
.n("FMSClient", "GetAdminAccountCommand")
|
|
1955
|
-
.sc(GetAdminAccount)
|
|
1985
|
+
.sc(GetAdminAccount$)
|
|
1956
1986
|
.build() {
|
|
1957
1987
|
}
|
|
1958
1988
|
|
|
@@ -1964,7 +1994,7 @@ class GetAdminScopeCommand extends smithyClient.Command
|
|
|
1964
1994
|
})
|
|
1965
1995
|
.s("AWSFMS_20180101", "GetAdminScope", {})
|
|
1966
1996
|
.n("FMSClient", "GetAdminScopeCommand")
|
|
1967
|
-
.sc(GetAdminScope)
|
|
1997
|
+
.sc(GetAdminScope$)
|
|
1968
1998
|
.build() {
|
|
1969
1999
|
}
|
|
1970
2000
|
|
|
@@ -1976,7 +2006,7 @@ class GetAppsListCommand extends smithyClient.Command
|
|
|
1976
2006
|
})
|
|
1977
2007
|
.s("AWSFMS_20180101", "GetAppsList", {})
|
|
1978
2008
|
.n("FMSClient", "GetAppsListCommand")
|
|
1979
|
-
.sc(GetAppsList)
|
|
2009
|
+
.sc(GetAppsList$)
|
|
1980
2010
|
.build() {
|
|
1981
2011
|
}
|
|
1982
2012
|
|
|
@@ -1988,7 +2018,7 @@ class GetComplianceDetailCommand extends smithyClient.Command
|
|
|
1988
2018
|
})
|
|
1989
2019
|
.s("AWSFMS_20180101", "GetComplianceDetail", {})
|
|
1990
2020
|
.n("FMSClient", "GetComplianceDetailCommand")
|
|
1991
|
-
.sc(GetComplianceDetail)
|
|
2021
|
+
.sc(GetComplianceDetail$)
|
|
1992
2022
|
.build() {
|
|
1993
2023
|
}
|
|
1994
2024
|
|
|
@@ -2000,7 +2030,7 @@ class GetNotificationChannelCommand extends smithyClient.Command
|
|
|
2000
2030
|
})
|
|
2001
2031
|
.s("AWSFMS_20180101", "GetNotificationChannel", {})
|
|
2002
2032
|
.n("FMSClient", "GetNotificationChannelCommand")
|
|
2003
|
-
.sc(GetNotificationChannel)
|
|
2033
|
+
.sc(GetNotificationChannel$)
|
|
2004
2034
|
.build() {
|
|
2005
2035
|
}
|
|
2006
2036
|
|
|
@@ -2012,7 +2042,7 @@ class GetPolicyCommand extends smithyClient.Command
|
|
|
2012
2042
|
})
|
|
2013
2043
|
.s("AWSFMS_20180101", "GetPolicy", {})
|
|
2014
2044
|
.n("FMSClient", "GetPolicyCommand")
|
|
2015
|
-
.sc(GetPolicy)
|
|
2045
|
+
.sc(GetPolicy$)
|
|
2016
2046
|
.build() {
|
|
2017
2047
|
}
|
|
2018
2048
|
|
|
@@ -2024,7 +2054,7 @@ class GetProtectionStatusCommand extends smithyClient.Command
|
|
|
2024
2054
|
})
|
|
2025
2055
|
.s("AWSFMS_20180101", "GetProtectionStatus", {})
|
|
2026
2056
|
.n("FMSClient", "GetProtectionStatusCommand")
|
|
2027
|
-
.sc(GetProtectionStatus)
|
|
2057
|
+
.sc(GetProtectionStatus$)
|
|
2028
2058
|
.build() {
|
|
2029
2059
|
}
|
|
2030
2060
|
|
|
@@ -2036,7 +2066,7 @@ class GetProtocolsListCommand extends smithyClient.Command
|
|
|
2036
2066
|
})
|
|
2037
2067
|
.s("AWSFMS_20180101", "GetProtocolsList", {})
|
|
2038
2068
|
.n("FMSClient", "GetProtocolsListCommand")
|
|
2039
|
-
.sc(GetProtocolsList)
|
|
2069
|
+
.sc(GetProtocolsList$)
|
|
2040
2070
|
.build() {
|
|
2041
2071
|
}
|
|
2042
2072
|
|
|
@@ -2048,7 +2078,7 @@ class GetResourceSetCommand extends smithyClient.Command
|
|
|
2048
2078
|
})
|
|
2049
2079
|
.s("AWSFMS_20180101", "GetResourceSet", {})
|
|
2050
2080
|
.n("FMSClient", "GetResourceSetCommand")
|
|
2051
|
-
.sc(GetResourceSet)
|
|
2081
|
+
.sc(GetResourceSet$)
|
|
2052
2082
|
.build() {
|
|
2053
2083
|
}
|
|
2054
2084
|
|
|
@@ -2060,7 +2090,7 @@ class GetThirdPartyFirewallAssociationStatusCommand extends smithyClient.Command
|
|
|
2060
2090
|
})
|
|
2061
2091
|
.s("AWSFMS_20180101", "GetThirdPartyFirewallAssociationStatus", {})
|
|
2062
2092
|
.n("FMSClient", "GetThirdPartyFirewallAssociationStatusCommand")
|
|
2063
|
-
.sc(GetThirdPartyFirewallAssociationStatus)
|
|
2093
|
+
.sc(GetThirdPartyFirewallAssociationStatus$)
|
|
2064
2094
|
.build() {
|
|
2065
2095
|
}
|
|
2066
2096
|
|
|
@@ -2072,7 +2102,7 @@ class GetViolationDetailsCommand extends smithyClient.Command
|
|
|
2072
2102
|
})
|
|
2073
2103
|
.s("AWSFMS_20180101", "GetViolationDetails", {})
|
|
2074
2104
|
.n("FMSClient", "GetViolationDetailsCommand")
|
|
2075
|
-
.sc(GetViolationDetails)
|
|
2105
|
+
.sc(GetViolationDetails$)
|
|
2076
2106
|
.build() {
|
|
2077
2107
|
}
|
|
2078
2108
|
|
|
@@ -2084,7 +2114,7 @@ class ListAdminAccountsForOrganizationCommand extends smithyClient.Command
|
|
|
2084
2114
|
})
|
|
2085
2115
|
.s("AWSFMS_20180101", "ListAdminAccountsForOrganization", {})
|
|
2086
2116
|
.n("FMSClient", "ListAdminAccountsForOrganizationCommand")
|
|
2087
|
-
.sc(ListAdminAccountsForOrganization)
|
|
2117
|
+
.sc(ListAdminAccountsForOrganization$)
|
|
2088
2118
|
.build() {
|
|
2089
2119
|
}
|
|
2090
2120
|
|
|
@@ -2096,7 +2126,7 @@ class ListAdminsManagingAccountCommand extends smithyClient.Command
|
|
|
2096
2126
|
})
|
|
2097
2127
|
.s("AWSFMS_20180101", "ListAdminsManagingAccount", {})
|
|
2098
2128
|
.n("FMSClient", "ListAdminsManagingAccountCommand")
|
|
2099
|
-
.sc(ListAdminsManagingAccount)
|
|
2129
|
+
.sc(ListAdminsManagingAccount$)
|
|
2100
2130
|
.build() {
|
|
2101
2131
|
}
|
|
2102
2132
|
|
|
@@ -2108,7 +2138,7 @@ class ListAppsListsCommand extends smithyClient.Command
|
|
|
2108
2138
|
})
|
|
2109
2139
|
.s("AWSFMS_20180101", "ListAppsLists", {})
|
|
2110
2140
|
.n("FMSClient", "ListAppsListsCommand")
|
|
2111
|
-
.sc(ListAppsLists)
|
|
2141
|
+
.sc(ListAppsLists$)
|
|
2112
2142
|
.build() {
|
|
2113
2143
|
}
|
|
2114
2144
|
|
|
@@ -2120,7 +2150,7 @@ class ListComplianceStatusCommand extends smithyClient.Command
|
|
|
2120
2150
|
})
|
|
2121
2151
|
.s("AWSFMS_20180101", "ListComplianceStatus", {})
|
|
2122
2152
|
.n("FMSClient", "ListComplianceStatusCommand")
|
|
2123
|
-
.sc(ListComplianceStatus)
|
|
2153
|
+
.sc(ListComplianceStatus$)
|
|
2124
2154
|
.build() {
|
|
2125
2155
|
}
|
|
2126
2156
|
|
|
@@ -2132,7 +2162,7 @@ class ListDiscoveredResourcesCommand extends smithyClient.Command
|
|
|
2132
2162
|
})
|
|
2133
2163
|
.s("AWSFMS_20180101", "ListDiscoveredResources", {})
|
|
2134
2164
|
.n("FMSClient", "ListDiscoveredResourcesCommand")
|
|
2135
|
-
.sc(ListDiscoveredResources)
|
|
2165
|
+
.sc(ListDiscoveredResources$)
|
|
2136
2166
|
.build() {
|
|
2137
2167
|
}
|
|
2138
2168
|
|
|
@@ -2144,7 +2174,7 @@ class ListMemberAccountsCommand extends smithyClient.Command
|
|
|
2144
2174
|
})
|
|
2145
2175
|
.s("AWSFMS_20180101", "ListMemberAccounts", {})
|
|
2146
2176
|
.n("FMSClient", "ListMemberAccountsCommand")
|
|
2147
|
-
.sc(ListMemberAccounts)
|
|
2177
|
+
.sc(ListMemberAccounts$)
|
|
2148
2178
|
.build() {
|
|
2149
2179
|
}
|
|
2150
2180
|
|
|
@@ -2156,7 +2186,7 @@ class ListPoliciesCommand extends smithyClient.Command
|
|
|
2156
2186
|
})
|
|
2157
2187
|
.s("AWSFMS_20180101", "ListPolicies", {})
|
|
2158
2188
|
.n("FMSClient", "ListPoliciesCommand")
|
|
2159
|
-
.sc(ListPolicies)
|
|
2189
|
+
.sc(ListPolicies$)
|
|
2160
2190
|
.build() {
|
|
2161
2191
|
}
|
|
2162
2192
|
|
|
@@ -2168,7 +2198,7 @@ class ListProtocolsListsCommand extends smithyClient.Command
|
|
|
2168
2198
|
})
|
|
2169
2199
|
.s("AWSFMS_20180101", "ListProtocolsLists", {})
|
|
2170
2200
|
.n("FMSClient", "ListProtocolsListsCommand")
|
|
2171
|
-
.sc(ListProtocolsLists)
|
|
2201
|
+
.sc(ListProtocolsLists$)
|
|
2172
2202
|
.build() {
|
|
2173
2203
|
}
|
|
2174
2204
|
|
|
@@ -2180,7 +2210,7 @@ class ListResourceSetResourcesCommand extends smithyClient.Command
|
|
|
2180
2210
|
})
|
|
2181
2211
|
.s("AWSFMS_20180101", "ListResourceSetResources", {})
|
|
2182
2212
|
.n("FMSClient", "ListResourceSetResourcesCommand")
|
|
2183
|
-
.sc(ListResourceSetResources)
|
|
2213
|
+
.sc(ListResourceSetResources$)
|
|
2184
2214
|
.build() {
|
|
2185
2215
|
}
|
|
2186
2216
|
|
|
@@ -2192,7 +2222,7 @@ class ListResourceSetsCommand extends smithyClient.Command
|
|
|
2192
2222
|
})
|
|
2193
2223
|
.s("AWSFMS_20180101", "ListResourceSets", {})
|
|
2194
2224
|
.n("FMSClient", "ListResourceSetsCommand")
|
|
2195
|
-
.sc(ListResourceSets)
|
|
2225
|
+
.sc(ListResourceSets$)
|
|
2196
2226
|
.build() {
|
|
2197
2227
|
}
|
|
2198
2228
|
|
|
@@ -2204,7 +2234,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2204
2234
|
})
|
|
2205
2235
|
.s("AWSFMS_20180101", "ListTagsForResource", {})
|
|
2206
2236
|
.n("FMSClient", "ListTagsForResourceCommand")
|
|
2207
|
-
.sc(ListTagsForResource)
|
|
2237
|
+
.sc(ListTagsForResource$)
|
|
2208
2238
|
.build() {
|
|
2209
2239
|
}
|
|
2210
2240
|
|
|
@@ -2216,7 +2246,7 @@ class ListThirdPartyFirewallFirewallPoliciesCommand extends smithyClient.Command
|
|
|
2216
2246
|
})
|
|
2217
2247
|
.s("AWSFMS_20180101", "ListThirdPartyFirewallFirewallPolicies", {})
|
|
2218
2248
|
.n("FMSClient", "ListThirdPartyFirewallFirewallPoliciesCommand")
|
|
2219
|
-
.sc(ListThirdPartyFirewallFirewallPolicies)
|
|
2249
|
+
.sc(ListThirdPartyFirewallFirewallPolicies$)
|
|
2220
2250
|
.build() {
|
|
2221
2251
|
}
|
|
2222
2252
|
|
|
@@ -2228,7 +2258,7 @@ class PutAdminAccountCommand extends smithyClient.Command
|
|
|
2228
2258
|
})
|
|
2229
2259
|
.s("AWSFMS_20180101", "PutAdminAccount", {})
|
|
2230
2260
|
.n("FMSClient", "PutAdminAccountCommand")
|
|
2231
|
-
.sc(PutAdminAccount)
|
|
2261
|
+
.sc(PutAdminAccount$)
|
|
2232
2262
|
.build() {
|
|
2233
2263
|
}
|
|
2234
2264
|
|
|
@@ -2240,7 +2270,7 @@ class PutAppsListCommand extends smithyClient.Command
|
|
|
2240
2270
|
})
|
|
2241
2271
|
.s("AWSFMS_20180101", "PutAppsList", {})
|
|
2242
2272
|
.n("FMSClient", "PutAppsListCommand")
|
|
2243
|
-
.sc(PutAppsList)
|
|
2273
|
+
.sc(PutAppsList$)
|
|
2244
2274
|
.build() {
|
|
2245
2275
|
}
|
|
2246
2276
|
|
|
@@ -2252,7 +2282,7 @@ class PutNotificationChannelCommand extends smithyClient.Command
|
|
|
2252
2282
|
})
|
|
2253
2283
|
.s("AWSFMS_20180101", "PutNotificationChannel", {})
|
|
2254
2284
|
.n("FMSClient", "PutNotificationChannelCommand")
|
|
2255
|
-
.sc(PutNotificationChannel)
|
|
2285
|
+
.sc(PutNotificationChannel$)
|
|
2256
2286
|
.build() {
|
|
2257
2287
|
}
|
|
2258
2288
|
|
|
@@ -2264,7 +2294,7 @@ class PutPolicyCommand extends smithyClient.Command
|
|
|
2264
2294
|
})
|
|
2265
2295
|
.s("AWSFMS_20180101", "PutPolicy", {})
|
|
2266
2296
|
.n("FMSClient", "PutPolicyCommand")
|
|
2267
|
-
.sc(PutPolicy)
|
|
2297
|
+
.sc(PutPolicy$)
|
|
2268
2298
|
.build() {
|
|
2269
2299
|
}
|
|
2270
2300
|
|
|
@@ -2276,7 +2306,7 @@ class PutProtocolsListCommand extends smithyClient.Command
|
|
|
2276
2306
|
})
|
|
2277
2307
|
.s("AWSFMS_20180101", "PutProtocolsList", {})
|
|
2278
2308
|
.n("FMSClient", "PutProtocolsListCommand")
|
|
2279
|
-
.sc(PutProtocolsList)
|
|
2309
|
+
.sc(PutProtocolsList$)
|
|
2280
2310
|
.build() {
|
|
2281
2311
|
}
|
|
2282
2312
|
|
|
@@ -2288,7 +2318,7 @@ class PutResourceSetCommand extends smithyClient.Command
|
|
|
2288
2318
|
})
|
|
2289
2319
|
.s("AWSFMS_20180101", "PutResourceSet", {})
|
|
2290
2320
|
.n("FMSClient", "PutResourceSetCommand")
|
|
2291
|
-
.sc(PutResourceSet)
|
|
2321
|
+
.sc(PutResourceSet$)
|
|
2292
2322
|
.build() {
|
|
2293
2323
|
}
|
|
2294
2324
|
|
|
@@ -2300,7 +2330,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2300
2330
|
})
|
|
2301
2331
|
.s("AWSFMS_20180101", "TagResource", {})
|
|
2302
2332
|
.n("FMSClient", "TagResourceCommand")
|
|
2303
|
-
.sc(TagResource)
|
|
2333
|
+
.sc(TagResource$)
|
|
2304
2334
|
.build() {
|
|
2305
2335
|
}
|
|
2306
2336
|
|
|
@@ -2312,7 +2342,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2312
2342
|
})
|
|
2313
2343
|
.s("AWSFMS_20180101", "UntagResource", {})
|
|
2314
2344
|
.n("FMSClient", "UntagResourceCommand")
|
|
2315
|
-
.sc(UntagResource)
|
|
2345
|
+
.sc(UntagResource$)
|
|
2316
2346
|
.build() {
|
|
2317
2347
|
}
|
|
2318
2348
|
|
|
@@ -2550,80 +2580,294 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2550
2580
|
get: function () { return smithyClient.Client; }
|
|
2551
2581
|
});
|
|
2552
2582
|
exports.AccountRoleStatus = AccountRoleStatus;
|
|
2583
|
+
exports.AccountScope$ = AccountScope$;
|
|
2584
|
+
exports.ActionTarget$ = ActionTarget$;
|
|
2585
|
+
exports.AdminAccountSummary$ = AdminAccountSummary$;
|
|
2586
|
+
exports.AdminScope$ = AdminScope$;
|
|
2587
|
+
exports.App$ = App$;
|
|
2588
|
+
exports.AppsListData$ = AppsListData$;
|
|
2589
|
+
exports.AppsListDataSummary$ = AppsListDataSummary$;
|
|
2590
|
+
exports.AssociateAdminAccount$ = AssociateAdminAccount$;
|
|
2553
2591
|
exports.AssociateAdminAccountCommand = AssociateAdminAccountCommand;
|
|
2592
|
+
exports.AssociateAdminAccountRequest$ = AssociateAdminAccountRequest$;
|
|
2593
|
+
exports.AssociateThirdPartyFirewall$ = AssociateThirdPartyFirewall$;
|
|
2554
2594
|
exports.AssociateThirdPartyFirewallCommand = AssociateThirdPartyFirewallCommand;
|
|
2595
|
+
exports.AssociateThirdPartyFirewallRequest$ = AssociateThirdPartyFirewallRequest$;
|
|
2596
|
+
exports.AssociateThirdPartyFirewallResponse$ = AssociateThirdPartyFirewallResponse$;
|
|
2597
|
+
exports.AwsEc2InstanceViolation$ = AwsEc2InstanceViolation$;
|
|
2598
|
+
exports.AwsEc2NetworkInterfaceViolation$ = AwsEc2NetworkInterfaceViolation$;
|
|
2599
|
+
exports.AwsVPCSecurityGroupViolation$ = AwsVPCSecurityGroupViolation$;
|
|
2600
|
+
exports.BatchAssociateResource$ = BatchAssociateResource$;
|
|
2555
2601
|
exports.BatchAssociateResourceCommand = BatchAssociateResourceCommand;
|
|
2602
|
+
exports.BatchAssociateResourceRequest$ = BatchAssociateResourceRequest$;
|
|
2603
|
+
exports.BatchAssociateResourceResponse$ = BatchAssociateResourceResponse$;
|
|
2604
|
+
exports.BatchDisassociateResource$ = BatchDisassociateResource$;
|
|
2556
2605
|
exports.BatchDisassociateResourceCommand = BatchDisassociateResourceCommand;
|
|
2606
|
+
exports.BatchDisassociateResourceRequest$ = BatchDisassociateResourceRequest$;
|
|
2607
|
+
exports.BatchDisassociateResourceResponse$ = BatchDisassociateResourceResponse$;
|
|
2608
|
+
exports.ComplianceViolator$ = ComplianceViolator$;
|
|
2609
|
+
exports.CreateNetworkAclAction$ = CreateNetworkAclAction$;
|
|
2610
|
+
exports.CreateNetworkAclEntriesAction$ = CreateNetworkAclEntriesAction$;
|
|
2557
2611
|
exports.CustomerPolicyScopeIdType = CustomerPolicyScopeIdType;
|
|
2558
2612
|
exports.CustomerPolicyStatus = CustomerPolicyStatus;
|
|
2613
|
+
exports.DeleteAppsList$ = DeleteAppsList$;
|
|
2559
2614
|
exports.DeleteAppsListCommand = DeleteAppsListCommand;
|
|
2615
|
+
exports.DeleteAppsListRequest$ = DeleteAppsListRequest$;
|
|
2616
|
+
exports.DeleteNetworkAclEntriesAction$ = DeleteNetworkAclEntriesAction$;
|
|
2617
|
+
exports.DeleteNotificationChannel$ = DeleteNotificationChannel$;
|
|
2560
2618
|
exports.DeleteNotificationChannelCommand = DeleteNotificationChannelCommand;
|
|
2619
|
+
exports.DeleteNotificationChannelRequest$ = DeleteNotificationChannelRequest$;
|
|
2620
|
+
exports.DeletePolicy$ = DeletePolicy$;
|
|
2561
2621
|
exports.DeletePolicyCommand = DeletePolicyCommand;
|
|
2622
|
+
exports.DeletePolicyRequest$ = DeletePolicyRequest$;
|
|
2623
|
+
exports.DeleteProtocolsList$ = DeleteProtocolsList$;
|
|
2562
2624
|
exports.DeleteProtocolsListCommand = DeleteProtocolsListCommand;
|
|
2625
|
+
exports.DeleteProtocolsListRequest$ = DeleteProtocolsListRequest$;
|
|
2626
|
+
exports.DeleteResourceSet$ = DeleteResourceSet$;
|
|
2563
2627
|
exports.DeleteResourceSetCommand = DeleteResourceSetCommand;
|
|
2628
|
+
exports.DeleteResourceSetRequest$ = DeleteResourceSetRequest$;
|
|
2564
2629
|
exports.DependentServiceName = DependentServiceName;
|
|
2565
2630
|
exports.DestinationType = DestinationType;
|
|
2631
|
+
exports.DisassociateAdminAccount$ = DisassociateAdminAccount$;
|
|
2566
2632
|
exports.DisassociateAdminAccountCommand = DisassociateAdminAccountCommand;
|
|
2633
|
+
exports.DisassociateAdminAccountRequest$ = DisassociateAdminAccountRequest$;
|
|
2634
|
+
exports.DisassociateThirdPartyFirewall$ = DisassociateThirdPartyFirewall$;
|
|
2567
2635
|
exports.DisassociateThirdPartyFirewallCommand = DisassociateThirdPartyFirewallCommand;
|
|
2636
|
+
exports.DisassociateThirdPartyFirewallRequest$ = DisassociateThirdPartyFirewallRequest$;
|
|
2637
|
+
exports.DisassociateThirdPartyFirewallResponse$ = DisassociateThirdPartyFirewallResponse$;
|
|
2638
|
+
exports.DiscoveredResource$ = DiscoveredResource$;
|
|
2639
|
+
exports.DnsDuplicateRuleGroupViolation$ = DnsDuplicateRuleGroupViolation$;
|
|
2640
|
+
exports.DnsRuleGroupLimitExceededViolation$ = DnsRuleGroupLimitExceededViolation$;
|
|
2641
|
+
exports.DnsRuleGroupPriorityConflictViolation$ = DnsRuleGroupPriorityConflictViolation$;
|
|
2642
|
+
exports.EC2AssociateRouteTableAction$ = EC2AssociateRouteTableAction$;
|
|
2643
|
+
exports.EC2CopyRouteTableAction$ = EC2CopyRouteTableAction$;
|
|
2644
|
+
exports.EC2CreateRouteAction$ = EC2CreateRouteAction$;
|
|
2645
|
+
exports.EC2CreateRouteTableAction$ = EC2CreateRouteTableAction$;
|
|
2646
|
+
exports.EC2DeleteRouteAction$ = EC2DeleteRouteAction$;
|
|
2647
|
+
exports.EC2ReplaceRouteAction$ = EC2ReplaceRouteAction$;
|
|
2648
|
+
exports.EC2ReplaceRouteTableAssociationAction$ = EC2ReplaceRouteTableAssociationAction$;
|
|
2649
|
+
exports.EntryDescription$ = EntryDescription$;
|
|
2568
2650
|
exports.EntryType = EntryType;
|
|
2651
|
+
exports.EntryViolation$ = EntryViolation$;
|
|
2569
2652
|
exports.EntryViolationReason = EntryViolationReason;
|
|
2653
|
+
exports.EvaluationResult$ = EvaluationResult$;
|
|
2654
|
+
exports.ExpectedRoute$ = ExpectedRoute$;
|
|
2570
2655
|
exports.FMS = FMS;
|
|
2571
2656
|
exports.FMSClient = FMSClient;
|
|
2572
|
-
exports.
|
|
2657
|
+
exports.FMSPolicyUpdateFirewallCreationConfigAction$ = FMSPolicyUpdateFirewallCreationConfigAction$;
|
|
2658
|
+
exports.FMSServiceException = FMSServiceException;
|
|
2659
|
+
exports.FMSServiceException$ = FMSServiceException$;
|
|
2660
|
+
exports.FailedItem$ = FailedItem$;
|
|
2573
2661
|
exports.FailedItemReason = FailedItemReason;
|
|
2574
2662
|
exports.FirewallDeploymentModel = FirewallDeploymentModel;
|
|
2663
|
+
exports.FirewallSubnetIsOutOfScopeViolation$ = FirewallSubnetIsOutOfScopeViolation$;
|
|
2664
|
+
exports.FirewallSubnetMissingVPCEndpointViolation$ = FirewallSubnetMissingVPCEndpointViolation$;
|
|
2665
|
+
exports.GetAdminAccount$ = GetAdminAccount$;
|
|
2575
2666
|
exports.GetAdminAccountCommand = GetAdminAccountCommand;
|
|
2667
|
+
exports.GetAdminAccountRequest$ = GetAdminAccountRequest$;
|
|
2668
|
+
exports.GetAdminAccountResponse$ = GetAdminAccountResponse$;
|
|
2669
|
+
exports.GetAdminScope$ = GetAdminScope$;
|
|
2576
2670
|
exports.GetAdminScopeCommand = GetAdminScopeCommand;
|
|
2671
|
+
exports.GetAdminScopeRequest$ = GetAdminScopeRequest$;
|
|
2672
|
+
exports.GetAdminScopeResponse$ = GetAdminScopeResponse$;
|
|
2673
|
+
exports.GetAppsList$ = GetAppsList$;
|
|
2577
2674
|
exports.GetAppsListCommand = GetAppsListCommand;
|
|
2675
|
+
exports.GetAppsListRequest$ = GetAppsListRequest$;
|
|
2676
|
+
exports.GetAppsListResponse$ = GetAppsListResponse$;
|
|
2677
|
+
exports.GetComplianceDetail$ = GetComplianceDetail$;
|
|
2578
2678
|
exports.GetComplianceDetailCommand = GetComplianceDetailCommand;
|
|
2679
|
+
exports.GetComplianceDetailRequest$ = GetComplianceDetailRequest$;
|
|
2680
|
+
exports.GetComplianceDetailResponse$ = GetComplianceDetailResponse$;
|
|
2681
|
+
exports.GetNotificationChannel$ = GetNotificationChannel$;
|
|
2579
2682
|
exports.GetNotificationChannelCommand = GetNotificationChannelCommand;
|
|
2683
|
+
exports.GetNotificationChannelRequest$ = GetNotificationChannelRequest$;
|
|
2684
|
+
exports.GetNotificationChannelResponse$ = GetNotificationChannelResponse$;
|
|
2685
|
+
exports.GetPolicy$ = GetPolicy$;
|
|
2580
2686
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
2687
|
+
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
2688
|
+
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
2689
|
+
exports.GetProtectionStatus$ = GetProtectionStatus$;
|
|
2581
2690
|
exports.GetProtectionStatusCommand = GetProtectionStatusCommand;
|
|
2691
|
+
exports.GetProtectionStatusRequest$ = GetProtectionStatusRequest$;
|
|
2692
|
+
exports.GetProtectionStatusResponse$ = GetProtectionStatusResponse$;
|
|
2693
|
+
exports.GetProtocolsList$ = GetProtocolsList$;
|
|
2582
2694
|
exports.GetProtocolsListCommand = GetProtocolsListCommand;
|
|
2695
|
+
exports.GetProtocolsListRequest$ = GetProtocolsListRequest$;
|
|
2696
|
+
exports.GetProtocolsListResponse$ = GetProtocolsListResponse$;
|
|
2697
|
+
exports.GetResourceSet$ = GetResourceSet$;
|
|
2583
2698
|
exports.GetResourceSetCommand = GetResourceSetCommand;
|
|
2699
|
+
exports.GetResourceSetRequest$ = GetResourceSetRequest$;
|
|
2700
|
+
exports.GetResourceSetResponse$ = GetResourceSetResponse$;
|
|
2701
|
+
exports.GetThirdPartyFirewallAssociationStatus$ = GetThirdPartyFirewallAssociationStatus$;
|
|
2584
2702
|
exports.GetThirdPartyFirewallAssociationStatusCommand = GetThirdPartyFirewallAssociationStatusCommand;
|
|
2703
|
+
exports.GetThirdPartyFirewallAssociationStatusRequest$ = GetThirdPartyFirewallAssociationStatusRequest$;
|
|
2704
|
+
exports.GetThirdPartyFirewallAssociationStatusResponse$ = GetThirdPartyFirewallAssociationStatusResponse$;
|
|
2705
|
+
exports.GetViolationDetails$ = GetViolationDetails$;
|
|
2585
2706
|
exports.GetViolationDetailsCommand = GetViolationDetailsCommand;
|
|
2586
|
-
exports.
|
|
2587
|
-
exports.
|
|
2588
|
-
exports.
|
|
2589
|
-
exports.
|
|
2590
|
-
exports.
|
|
2707
|
+
exports.GetViolationDetailsRequest$ = GetViolationDetailsRequest$;
|
|
2708
|
+
exports.GetViolationDetailsResponse$ = GetViolationDetailsResponse$;
|
|
2709
|
+
exports.InternalErrorException = InternalErrorException;
|
|
2710
|
+
exports.InternalErrorException$ = InternalErrorException$;
|
|
2711
|
+
exports.InvalidInputException = InvalidInputException;
|
|
2712
|
+
exports.InvalidInputException$ = InvalidInputException$;
|
|
2713
|
+
exports.InvalidNetworkAclEntriesViolation$ = InvalidNetworkAclEntriesViolation$;
|
|
2714
|
+
exports.InvalidOperationException = InvalidOperationException;
|
|
2715
|
+
exports.InvalidOperationException$ = InvalidOperationException$;
|
|
2716
|
+
exports.InvalidTypeException = InvalidTypeException;
|
|
2717
|
+
exports.InvalidTypeException$ = InvalidTypeException$;
|
|
2718
|
+
exports.LimitExceededException = LimitExceededException;
|
|
2719
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
2720
|
+
exports.ListAdminAccountsForOrganization$ = ListAdminAccountsForOrganization$;
|
|
2591
2721
|
exports.ListAdminAccountsForOrganizationCommand = ListAdminAccountsForOrganizationCommand;
|
|
2722
|
+
exports.ListAdminAccountsForOrganizationRequest$ = ListAdminAccountsForOrganizationRequest$;
|
|
2723
|
+
exports.ListAdminAccountsForOrganizationResponse$ = ListAdminAccountsForOrganizationResponse$;
|
|
2724
|
+
exports.ListAdminsManagingAccount$ = ListAdminsManagingAccount$;
|
|
2592
2725
|
exports.ListAdminsManagingAccountCommand = ListAdminsManagingAccountCommand;
|
|
2726
|
+
exports.ListAdminsManagingAccountRequest$ = ListAdminsManagingAccountRequest$;
|
|
2727
|
+
exports.ListAdminsManagingAccountResponse$ = ListAdminsManagingAccountResponse$;
|
|
2728
|
+
exports.ListAppsLists$ = ListAppsLists$;
|
|
2593
2729
|
exports.ListAppsListsCommand = ListAppsListsCommand;
|
|
2730
|
+
exports.ListAppsListsRequest$ = ListAppsListsRequest$;
|
|
2731
|
+
exports.ListAppsListsResponse$ = ListAppsListsResponse$;
|
|
2732
|
+
exports.ListComplianceStatus$ = ListComplianceStatus$;
|
|
2594
2733
|
exports.ListComplianceStatusCommand = ListComplianceStatusCommand;
|
|
2734
|
+
exports.ListComplianceStatusRequest$ = ListComplianceStatusRequest$;
|
|
2735
|
+
exports.ListComplianceStatusResponse$ = ListComplianceStatusResponse$;
|
|
2736
|
+
exports.ListDiscoveredResources$ = ListDiscoveredResources$;
|
|
2595
2737
|
exports.ListDiscoveredResourcesCommand = ListDiscoveredResourcesCommand;
|
|
2738
|
+
exports.ListDiscoveredResourcesRequest$ = ListDiscoveredResourcesRequest$;
|
|
2739
|
+
exports.ListDiscoveredResourcesResponse$ = ListDiscoveredResourcesResponse$;
|
|
2740
|
+
exports.ListMemberAccounts$ = ListMemberAccounts$;
|
|
2596
2741
|
exports.ListMemberAccountsCommand = ListMemberAccountsCommand;
|
|
2742
|
+
exports.ListMemberAccountsRequest$ = ListMemberAccountsRequest$;
|
|
2743
|
+
exports.ListMemberAccountsResponse$ = ListMemberAccountsResponse$;
|
|
2744
|
+
exports.ListPolicies$ = ListPolicies$;
|
|
2597
2745
|
exports.ListPoliciesCommand = ListPoliciesCommand;
|
|
2746
|
+
exports.ListPoliciesRequest$ = ListPoliciesRequest$;
|
|
2747
|
+
exports.ListPoliciesResponse$ = ListPoliciesResponse$;
|
|
2748
|
+
exports.ListProtocolsLists$ = ListProtocolsLists$;
|
|
2598
2749
|
exports.ListProtocolsListsCommand = ListProtocolsListsCommand;
|
|
2750
|
+
exports.ListProtocolsListsRequest$ = ListProtocolsListsRequest$;
|
|
2751
|
+
exports.ListProtocolsListsResponse$ = ListProtocolsListsResponse$;
|
|
2752
|
+
exports.ListResourceSetResources$ = ListResourceSetResources$;
|
|
2599
2753
|
exports.ListResourceSetResourcesCommand = ListResourceSetResourcesCommand;
|
|
2754
|
+
exports.ListResourceSetResourcesRequest$ = ListResourceSetResourcesRequest$;
|
|
2755
|
+
exports.ListResourceSetResourcesResponse$ = ListResourceSetResourcesResponse$;
|
|
2756
|
+
exports.ListResourceSets$ = ListResourceSets$;
|
|
2600
2757
|
exports.ListResourceSetsCommand = ListResourceSetsCommand;
|
|
2758
|
+
exports.ListResourceSetsRequest$ = ListResourceSetsRequest$;
|
|
2759
|
+
exports.ListResourceSetsResponse$ = ListResourceSetsResponse$;
|
|
2760
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2601
2761
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2762
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2763
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2764
|
+
exports.ListThirdPartyFirewallFirewallPolicies$ = ListThirdPartyFirewallFirewallPolicies$;
|
|
2602
2765
|
exports.ListThirdPartyFirewallFirewallPoliciesCommand = ListThirdPartyFirewallFirewallPoliciesCommand;
|
|
2766
|
+
exports.ListThirdPartyFirewallFirewallPoliciesRequest$ = ListThirdPartyFirewallFirewallPoliciesRequest$;
|
|
2767
|
+
exports.ListThirdPartyFirewallFirewallPoliciesResponse$ = ListThirdPartyFirewallFirewallPoliciesResponse$;
|
|
2603
2768
|
exports.MarketplaceSubscriptionOnboardingStatus = MarketplaceSubscriptionOnboardingStatus;
|
|
2769
|
+
exports.NetworkAclCommonPolicy$ = NetworkAclCommonPolicy$;
|
|
2770
|
+
exports.NetworkAclEntry$ = NetworkAclEntry$;
|
|
2771
|
+
exports.NetworkAclEntrySet$ = NetworkAclEntrySet$;
|
|
2772
|
+
exports.NetworkAclIcmpTypeCode$ = NetworkAclIcmpTypeCode$;
|
|
2773
|
+
exports.NetworkAclPortRange$ = NetworkAclPortRange$;
|
|
2604
2774
|
exports.NetworkAclRuleAction = NetworkAclRuleAction;
|
|
2775
|
+
exports.NetworkFirewallBlackHoleRouteDetectedViolation$ = NetworkFirewallBlackHoleRouteDetectedViolation$;
|
|
2776
|
+
exports.NetworkFirewallInternetTrafficNotInspectedViolation$ = NetworkFirewallInternetTrafficNotInspectedViolation$;
|
|
2777
|
+
exports.NetworkFirewallInvalidRouteConfigurationViolation$ = NetworkFirewallInvalidRouteConfigurationViolation$;
|
|
2778
|
+
exports.NetworkFirewallMissingExpectedRTViolation$ = NetworkFirewallMissingExpectedRTViolation$;
|
|
2779
|
+
exports.NetworkFirewallMissingExpectedRoutesViolation$ = NetworkFirewallMissingExpectedRoutesViolation$;
|
|
2780
|
+
exports.NetworkFirewallMissingFirewallViolation$ = NetworkFirewallMissingFirewallViolation$;
|
|
2781
|
+
exports.NetworkFirewallMissingSubnetViolation$ = NetworkFirewallMissingSubnetViolation$;
|
|
2605
2782
|
exports.NetworkFirewallOverrideAction = NetworkFirewallOverrideAction;
|
|
2783
|
+
exports.NetworkFirewallPolicy$ = NetworkFirewallPolicy$;
|
|
2784
|
+
exports.NetworkFirewallPolicyDescription$ = NetworkFirewallPolicyDescription$;
|
|
2785
|
+
exports.NetworkFirewallPolicyModifiedViolation$ = NetworkFirewallPolicyModifiedViolation$;
|
|
2786
|
+
exports.NetworkFirewallStatefulRuleGroupOverride$ = NetworkFirewallStatefulRuleGroupOverride$;
|
|
2787
|
+
exports.NetworkFirewallUnexpectedFirewallRoutesViolation$ = NetworkFirewallUnexpectedFirewallRoutesViolation$;
|
|
2788
|
+
exports.NetworkFirewallUnexpectedGatewayRoutesViolation$ = NetworkFirewallUnexpectedGatewayRoutesViolation$;
|
|
2606
2789
|
exports.OrganizationStatus = OrganizationStatus;
|
|
2790
|
+
exports.OrganizationalUnitScope$ = OrganizationalUnitScope$;
|
|
2791
|
+
exports.PartialMatch$ = PartialMatch$;
|
|
2792
|
+
exports.Policy$ = Policy$;
|
|
2793
|
+
exports.PolicyComplianceDetail$ = PolicyComplianceDetail$;
|
|
2794
|
+
exports.PolicyComplianceStatus$ = PolicyComplianceStatus$;
|
|
2607
2795
|
exports.PolicyComplianceStatusType = PolicyComplianceStatusType;
|
|
2796
|
+
exports.PolicyOption$ = PolicyOption$;
|
|
2797
|
+
exports.PolicySummary$ = PolicySummary$;
|
|
2798
|
+
exports.PolicyTypeScope$ = PolicyTypeScope$;
|
|
2799
|
+
exports.PossibleRemediationAction$ = PossibleRemediationAction$;
|
|
2800
|
+
exports.PossibleRemediationActions$ = PossibleRemediationActions$;
|
|
2801
|
+
exports.ProtocolsListData$ = ProtocolsListData$;
|
|
2802
|
+
exports.ProtocolsListDataSummary$ = ProtocolsListDataSummary$;
|
|
2803
|
+
exports.PutAdminAccount$ = PutAdminAccount$;
|
|
2608
2804
|
exports.PutAdminAccountCommand = PutAdminAccountCommand;
|
|
2805
|
+
exports.PutAdminAccountRequest$ = PutAdminAccountRequest$;
|
|
2806
|
+
exports.PutAppsList$ = PutAppsList$;
|
|
2609
2807
|
exports.PutAppsListCommand = PutAppsListCommand;
|
|
2808
|
+
exports.PutAppsListRequest$ = PutAppsListRequest$;
|
|
2809
|
+
exports.PutAppsListResponse$ = PutAppsListResponse$;
|
|
2810
|
+
exports.PutNotificationChannel$ = PutNotificationChannel$;
|
|
2610
2811
|
exports.PutNotificationChannelCommand = PutNotificationChannelCommand;
|
|
2812
|
+
exports.PutNotificationChannelRequest$ = PutNotificationChannelRequest$;
|
|
2813
|
+
exports.PutPolicy$ = PutPolicy$;
|
|
2611
2814
|
exports.PutPolicyCommand = PutPolicyCommand;
|
|
2815
|
+
exports.PutPolicyRequest$ = PutPolicyRequest$;
|
|
2816
|
+
exports.PutPolicyResponse$ = PutPolicyResponse$;
|
|
2817
|
+
exports.PutProtocolsList$ = PutProtocolsList$;
|
|
2612
2818
|
exports.PutProtocolsListCommand = PutProtocolsListCommand;
|
|
2819
|
+
exports.PutProtocolsListRequest$ = PutProtocolsListRequest$;
|
|
2820
|
+
exports.PutProtocolsListResponse$ = PutProtocolsListResponse$;
|
|
2821
|
+
exports.PutResourceSet$ = PutResourceSet$;
|
|
2613
2822
|
exports.PutResourceSetCommand = PutResourceSetCommand;
|
|
2823
|
+
exports.PutResourceSetRequest$ = PutResourceSetRequest$;
|
|
2824
|
+
exports.PutResourceSetResponse$ = PutResourceSetResponse$;
|
|
2825
|
+
exports.RegionScope$ = RegionScope$;
|
|
2826
|
+
exports.RemediationAction$ = RemediationAction$;
|
|
2614
2827
|
exports.RemediationActionType = RemediationActionType;
|
|
2615
|
-
exports.
|
|
2828
|
+
exports.RemediationActionWithOrder$ = RemediationActionWithOrder$;
|
|
2829
|
+
exports.ReplaceNetworkAclAssociationAction$ = ReplaceNetworkAclAssociationAction$;
|
|
2830
|
+
exports.Resource$ = Resource$;
|
|
2831
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2832
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2833
|
+
exports.ResourceSet$ = ResourceSet$;
|
|
2616
2834
|
exports.ResourceSetStatus = ResourceSetStatus;
|
|
2835
|
+
exports.ResourceSetSummary$ = ResourceSetSummary$;
|
|
2836
|
+
exports.ResourceTag$ = ResourceTag$;
|
|
2617
2837
|
exports.ResourceTagLogicalOperator = ResourceTagLogicalOperator;
|
|
2838
|
+
exports.ResourceViolation$ = ResourceViolation$;
|
|
2839
|
+
exports.Route$ = Route$;
|
|
2840
|
+
exports.RouteHasOutOfScopeEndpointViolation$ = RouteHasOutOfScopeEndpointViolation$;
|
|
2618
2841
|
exports.RuleOrder = RuleOrder;
|
|
2842
|
+
exports.SecurityGroupRemediationAction$ = SecurityGroupRemediationAction$;
|
|
2843
|
+
exports.SecurityGroupRuleDescription$ = SecurityGroupRuleDescription$;
|
|
2844
|
+
exports.SecurityServicePolicyData$ = SecurityServicePolicyData$;
|
|
2619
2845
|
exports.SecurityServiceType = SecurityServiceType;
|
|
2846
|
+
exports.StatefulEngineOptions$ = StatefulEngineOptions$;
|
|
2847
|
+
exports.StatefulRuleGroup$ = StatefulRuleGroup$;
|
|
2848
|
+
exports.StatelessRuleGroup$ = StatelessRuleGroup$;
|
|
2620
2849
|
exports.StreamExceptionPolicy = StreamExceptionPolicy;
|
|
2850
|
+
exports.Tag$ = Tag$;
|
|
2851
|
+
exports.TagResource$ = TagResource$;
|
|
2621
2852
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2853
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2854
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2622
2855
|
exports.TargetType = TargetType;
|
|
2623
2856
|
exports.ThirdPartyFirewall = ThirdPartyFirewall;
|
|
2624
2857
|
exports.ThirdPartyFirewallAssociationStatus = ThirdPartyFirewallAssociationStatus;
|
|
2858
|
+
exports.ThirdPartyFirewallFirewallPolicy$ = ThirdPartyFirewallFirewallPolicy$;
|
|
2859
|
+
exports.ThirdPartyFirewallMissingExpectedRouteTableViolation$ = ThirdPartyFirewallMissingExpectedRouteTableViolation$;
|
|
2860
|
+
exports.ThirdPartyFirewallMissingFirewallViolation$ = ThirdPartyFirewallMissingFirewallViolation$;
|
|
2861
|
+
exports.ThirdPartyFirewallMissingSubnetViolation$ = ThirdPartyFirewallMissingSubnetViolation$;
|
|
2862
|
+
exports.ThirdPartyFirewallPolicy$ = ThirdPartyFirewallPolicy$;
|
|
2863
|
+
exports.UntagResource$ = UntagResource$;
|
|
2625
2864
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2865
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2866
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2867
|
+
exports.ViolationDetail$ = ViolationDetail$;
|
|
2626
2868
|
exports.ViolationReason = ViolationReason;
|
|
2869
|
+
exports.WebACLHasIncompatibleConfigurationViolation$ = WebACLHasIncompatibleConfigurationViolation$;
|
|
2870
|
+
exports.WebACLHasOutOfScopeResourcesViolation$ = WebACLHasOutOfScopeResourcesViolation$;
|
|
2627
2871
|
exports.paginateListAdminAccountsForOrganization = paginateListAdminAccountsForOrganization;
|
|
2628
2872
|
exports.paginateListAdminsManagingAccount = paginateListAdminsManagingAccount;
|
|
2629
2873
|
exports.paginateListAppsLists = paginateListAppsLists;
|