@aws-sdk/client-network-firewall 3.1076.0 → 3.1077.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/README.md +35 -0
- package/dist-cjs/index.js +268 -48
- package/dist-es/NetworkFirewall.js +12 -0
- package/dist-es/commands/CreateContainerAssociationCommand.js +16 -0
- package/dist-es/commands/DeleteContainerAssociationCommand.js +16 -0
- package/dist-es/commands/DescribeContainerAssociationCommand.js +16 -0
- package/dist-es/commands/ListContainerAssociationsCommand.js +16 -0
- package/dist-es/commands/UpdateContainerAssociationCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +9 -0
- package/dist-es/pagination/ListContainerAssociationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +161 -45
- package/dist-types/NetworkFirewall.d.ts +45 -0
- package/dist-types/NetworkFirewallClient.d.ts +7 -2
- package/dist-types/commands/CreateContainerAssociationCommand.d.ts +149 -0
- package/dist-types/commands/DeleteContainerAssociationCommand.d.ts +109 -0
- package/dist-types/commands/DescribeContainerAssociationCommand.d.ts +127 -0
- package/dist-types/commands/ListContainerAssociationsCommand.d.ts +106 -0
- package/dist-types/commands/UpdateContainerAssociationCommand.d.ts +148 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +25 -0
- package/dist-types/models/models_0.d.ts +345 -2
- package/dist-types/pagination/ListContainerAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +95 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateContainerAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteContainerAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeContainerAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListContainerAssociationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateContainerAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +93 -0
- package/dist-types/ts3.4/pagination/ListContainerAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/package.json +6 -8
package/dist-cjs/index.js
CHANGED
|
@@ -10,9 +10,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
|
|
|
10
10
|
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
11
|
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
12
|
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
-
const { toUtf8, fromUtf8, toBase64, fromBase64,
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
14
|
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
15
|
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
16
17
|
|
|
17
18
|
const defaultNetworkFirewallHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
19
|
return {
|
|
@@ -67,7 +68,7 @@ const commonParams = {
|
|
|
67
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
68
69
|
};
|
|
69
70
|
|
|
70
|
-
var version = "3.
|
|
71
|
+
var version = "3.1076.0";
|
|
71
72
|
var packageInfo = {
|
|
72
73
|
version: version};
|
|
73
74
|
|
|
@@ -314,6 +315,7 @@ const _ACIDRC = "AvailableCIDRCount";
|
|
|
314
315
|
const _AD = "ActionDefinition";
|
|
315
316
|
const _ADd = "AddressDefinition";
|
|
316
317
|
const _ADn = "AnalysisDetail";
|
|
318
|
+
const _AF = "AttributeFilters";
|
|
317
319
|
const _AFP = "AssociateFirewallPolicy";
|
|
318
320
|
const _AFPR = "AssociateFirewallPolicyRequest";
|
|
319
321
|
const _AFPRs = "AssociateFirewallPolicyResponse";
|
|
@@ -353,12 +355,22 @@ const _Ar = "Arn";
|
|
|
353
355
|
const _At = "Attachment";
|
|
354
356
|
const _BC = "ByteCount";
|
|
355
357
|
const _C = "Conditions";
|
|
356
|
-
const _CA = "
|
|
357
|
-
const _CAA = "
|
|
358
|
+
const _CA = "ContainerAttribute";
|
|
359
|
+
const _CAA = "ContainerAssociationArn";
|
|
360
|
+
const _CAAe = "CertificateAuthorityArn";
|
|
361
|
+
const _CAN = "ContainerAssociationName";
|
|
362
|
+
const _CAS = "ContainerAssociationSummary";
|
|
358
363
|
const _CAe = "CertificateArn";
|
|
359
364
|
const _CAer = "CertificateAuthority";
|
|
360
|
-
const
|
|
365
|
+
const _CAl = "ClusterArn";
|
|
366
|
+
const _CAo = "ContainerAssociations";
|
|
367
|
+
const _CAon = "ContainerAttributes";
|
|
368
|
+
const _CAu = "CustomAction";
|
|
369
|
+
const _CAus = "CustomActions";
|
|
361
370
|
const _CC = "ConsumedCapacity";
|
|
371
|
+
const _CCA = "CreateContainerAssociation";
|
|
372
|
+
const _CCAR = "CreateContainerAssociationRequest";
|
|
373
|
+
const _CCARr = "CreateContainerAssociationResponse";
|
|
362
374
|
const _CCRS = "CheckCertificateRevocationStatus";
|
|
363
375
|
const _CCRSA = "CheckCertificateRevocationStatusActions";
|
|
364
376
|
const _CF = "CreateFirewall";
|
|
@@ -370,6 +382,8 @@ const _CFRr = "CreateFirewallResponse";
|
|
|
370
382
|
const _CIDR = "CIDRs";
|
|
371
383
|
const _CIDRS = "CIDRSummary";
|
|
372
384
|
const _CK = "ConditionKey";
|
|
385
|
+
const _CMC = "ContainerMonitoringConfiguration";
|
|
386
|
+
const _CMCo = "ContainerMonitoringConfigurations";
|
|
373
387
|
const _CO = "ConditionOperator";
|
|
374
388
|
const _CP = "CreateProxy";
|
|
375
389
|
const _CPC = "CreateProxyConfiguration";
|
|
@@ -412,6 +426,12 @@ const _DA = "DestinationAddress";
|
|
|
412
426
|
const _DAZ = "DisassociateAvailabilityZones";
|
|
413
427
|
const _DAZR = "DisassociateAvailabilityZonesRequest";
|
|
414
428
|
const _DAZRi = "DisassociateAvailabilityZonesResponse";
|
|
429
|
+
const _DCA = "DeleteContainerAssociation";
|
|
430
|
+
const _DCAR = "DeleteContainerAssociationRequest";
|
|
431
|
+
const _DCARe = "DeleteContainerAssociationResponse";
|
|
432
|
+
const _DCARes = "DescribeContainerAssociationRequest";
|
|
433
|
+
const _DCAResc = "DescribeContainerAssociationResponse";
|
|
434
|
+
const _DCAe = "DescribeContainerAssociation";
|
|
415
435
|
const _DF = "DeleteFirewall";
|
|
416
436
|
const _DFM = "DescribeFirewallMetadata";
|
|
417
437
|
const _DFMR = "DescribeFirewallMetadataRequest";
|
|
@@ -573,14 +593,17 @@ const _IRPE = "InvalidResourcePolicyException";
|
|
|
573
593
|
const _ISE = "InternalServerError";
|
|
574
594
|
const _IT = "IdentifiedType";
|
|
575
595
|
const _ITE = "InvalidTokenException";
|
|
576
|
-
const _K = "
|
|
596
|
+
const _K = "Key";
|
|
577
597
|
const _KI = "KeyId";
|
|
578
|
-
const _Ke = "
|
|
598
|
+
const _Ke = "Keyword";
|
|
579
599
|
const _LA = "LastAccessed";
|
|
580
600
|
const _LAR = "ListAnalysisReports";
|
|
581
601
|
const _LARR = "ListAnalysisReportsRequest";
|
|
582
602
|
const _LARRi = "ListAnalysisReportsResponse";
|
|
583
603
|
const _LC = "LoggingConfiguration";
|
|
604
|
+
const _LCA = "ListContainerAssociations";
|
|
605
|
+
const _LCAR = "ListContainerAssociationsRequest";
|
|
606
|
+
const _LCARi = "ListContainerAssociationsResponse";
|
|
584
607
|
const _LD = "LogDestination";
|
|
585
608
|
const _LDC = "LogDestinationConfig";
|
|
586
609
|
const _LDCo = "LogDestinationConfigs";
|
|
@@ -626,6 +649,7 @@ const _LTFRRi = "ListTagsForResourceResponse";
|
|
|
626
649
|
const _LTLSIC = "ListTLSInspectionConfigurations";
|
|
627
650
|
const _LTLSICR = "ListTLSInspectionConfigurationsRequest";
|
|
628
651
|
const _LTLSICRi = "ListTLSInspectionConfigurationsResponse";
|
|
652
|
+
const _LUT = "LastUpdatedTime";
|
|
629
653
|
const _LVEA = "ListVpcEndpointAssociations";
|
|
630
654
|
const _LVEAR = "ListVpcEndpointAssociationsRequest";
|
|
631
655
|
const _LVEARi = "ListVpcEndpointAssociationsResponse";
|
|
@@ -703,6 +727,7 @@ const _R = "Rules";
|
|
|
703
727
|
const _RA = "ResourceArn";
|
|
704
728
|
const _RAe = "ReferenceArn";
|
|
705
729
|
const _RC = "RemoveConditions";
|
|
730
|
+
const _RCC = "ResolvedCidrCount";
|
|
706
731
|
const _RCIDRC = "ResolvedCIDRCount";
|
|
707
732
|
const _RCe = "RemovedConditions";
|
|
708
733
|
const _RD = "RuleDefinition";
|
|
@@ -795,7 +820,7 @@ const _Se = "Settings";
|
|
|
795
820
|
const _So = "Source";
|
|
796
821
|
const _Sou = "Sources";
|
|
797
822
|
const _Su = "Summary";
|
|
798
|
-
const _T = "
|
|
823
|
+
const _T = "Type";
|
|
799
824
|
const _TCD = "TlsCertificateData";
|
|
800
825
|
const _TCPF = "TCPFlags";
|
|
801
826
|
const _TCPFF = "TCPFlagField";
|
|
@@ -824,12 +849,15 @@ const _TR = "TagResource";
|
|
|
824
849
|
const _TRR = "TagResourceRequest";
|
|
825
850
|
const _TRRa = "TagResourceResponse";
|
|
826
851
|
const _TT = "TargetTypes";
|
|
827
|
-
const _Ta = "
|
|
852
|
+
const _Ta = "Tags";
|
|
828
853
|
const _Tag = "Tag";
|
|
829
|
-
const
|
|
854
|
+
const _Tar = "Targets";
|
|
830
855
|
const _UAZCP = "UpdateAvailabilityZoneChangeProtection";
|
|
831
856
|
const _UAZCPR = "UpdateAvailabilityZoneChangeProtectionRequest";
|
|
832
857
|
const _UAZCPRp = "UpdateAvailabilityZoneChangeProtectionResponse";
|
|
858
|
+
const _UCA = "UpdateContainerAssociation";
|
|
859
|
+
const _UCAR = "UpdateContainerAssociationRequest";
|
|
860
|
+
const _UCARp = "UpdateContainerAssociationResponse";
|
|
833
861
|
const _UCIDRC = "UtilizedCIDRCount";
|
|
834
862
|
const _UFAS = "UpdateFirewallAnalysisSettings";
|
|
835
863
|
const _UFASR = "UpdateFirewallAnalysisSettingsRequest";
|
|
@@ -1091,9 +1119,34 @@ var CIDRSummary$ = [3, n0, _CIDRS,
|
|
|
1091
1119
|
[_ACIDRC, _UCIDRC, _IPSR],
|
|
1092
1120
|
[1, 1, () => IPSetMetadataMap]
|
|
1093
1121
|
];
|
|
1122
|
+
var ContainerAssociationSummary$ = [3, n0, _CAS,
|
|
1123
|
+
0,
|
|
1124
|
+
[_Ar, _N],
|
|
1125
|
+
[0, 0]
|
|
1126
|
+
];
|
|
1127
|
+
var ContainerAttribute$ = [3, n0, _CA,
|
|
1128
|
+
0,
|
|
1129
|
+
[_K, _V],
|
|
1130
|
+
[0, 0], 2
|
|
1131
|
+
];
|
|
1132
|
+
var ContainerMonitoringConfiguration$ = [3, n0, _CMC,
|
|
1133
|
+
0,
|
|
1134
|
+
[_CAl, _AF],
|
|
1135
|
+
[0, () => ContainerAttributes], 1
|
|
1136
|
+
];
|
|
1137
|
+
var CreateContainerAssociationRequest$ = [3, n0, _CCAR,
|
|
1138
|
+
0,
|
|
1139
|
+
[_CAN, _T, _CMCo, _De, _Ta],
|
|
1140
|
+
[0, 0, () => ContainerMonitoringConfigurations, 0, () => TagList], 3
|
|
1141
|
+
];
|
|
1142
|
+
var CreateContainerAssociationResponse$ = [3, n0, _CCARr,
|
|
1143
|
+
0,
|
|
1144
|
+
[_CAN, _CAA, _De, _T, _CMCo, _S, _Ta, _UT],
|
|
1145
|
+
[0, 0, 0, 0, () => ContainerMonitoringConfigurations, 0, () => TagList, 0]
|
|
1146
|
+
];
|
|
1094
1147
|
var CreateFirewallPolicyRequest$ = [3, n0, _CFPR,
|
|
1095
1148
|
0,
|
|
1096
|
-
[_FPN, _FP, _De,
|
|
1149
|
+
[_FPN, _FP, _De, _Ta, _DR, _EC],
|
|
1097
1150
|
[0, () => FirewallPolicy$, 0, () => TagList, 2, () => EncryptionConfiguration$], 2
|
|
1098
1151
|
];
|
|
1099
1152
|
var CreateFirewallPolicyResponse$ = [3, n0, _CFPRr,
|
|
@@ -1103,7 +1156,7 @@ var CreateFirewallPolicyResponse$ = [3, n0, _CFPRr,
|
|
|
1103
1156
|
];
|
|
1104
1157
|
var CreateFirewallRequest$ = [3, n0, _CFR,
|
|
1105
1158
|
0,
|
|
1106
|
-
[_FN, _FPA, _VI, _SM, _DP, _SCP, _FPCP, _De,
|
|
1159
|
+
[_FN, _FPA, _VI, _SM, _DP, _SCP, _FPCP, _De, _Ta, _EC, _EAT, _TGI, _AZM, _AZCP],
|
|
1107
1160
|
[0, 0, 0, () => SubnetMappings, 2, 2, 2, 0, () => TagList, () => EncryptionConfiguration$, 64 | 0, 0, () => AvailabilityZoneMappings, 2], 2
|
|
1108
1161
|
];
|
|
1109
1162
|
var CreateFirewallResponse$ = [3, n0, _CFRr,
|
|
@@ -1113,7 +1166,7 @@ var CreateFirewallResponse$ = [3, n0, _CFRr,
|
|
|
1113
1166
|
];
|
|
1114
1167
|
var CreateProxyConfigurationRequest$ = [3, n0, _CPCR,
|
|
1115
1168
|
0,
|
|
1116
|
-
[_PCN, _DRPA, _De, _RGN, _RGA,
|
|
1169
|
+
[_PCN, _DRPA, _De, _RGN, _RGA, _Ta],
|
|
1117
1170
|
[0, () => ProxyConfigDefaultRulePhaseActionsRequest$, 0, 64 | 0, 64 | 0, () => TagList], 2
|
|
1118
1171
|
];
|
|
1119
1172
|
var CreateProxyConfigurationResponse$ = [3, n0, _CPCRr,
|
|
@@ -1123,7 +1176,7 @@ var CreateProxyConfigurationResponse$ = [3, n0, _CPCRr,
|
|
|
1123
1176
|
];
|
|
1124
1177
|
var CreateProxyRequest$ = [3, n0, _CPR,
|
|
1125
1178
|
0,
|
|
1126
|
-
[_PN, _NGI, _TIP, _PCN, _PCA, _LP,
|
|
1179
|
+
[_PN, _NGI, _TIP, _PCN, _PCA, _LP, _Ta],
|
|
1127
1180
|
[0, 0, () => TlsInterceptPropertiesRequest$, 0, 0, () => ListenerPropertiesRequest, () => TagList], 3
|
|
1128
1181
|
];
|
|
1129
1182
|
var CreateProxyResponse$ = [3, n0, _CPRr,
|
|
@@ -1138,7 +1191,7 @@ var CreateProxyRule$ = [3, n0, _CPRre,
|
|
|
1138
1191
|
];
|
|
1139
1192
|
var CreateProxyRuleGroupRequest$ = [3, n0, _CPRGR,
|
|
1140
1193
|
0,
|
|
1141
|
-
[_PRGN, _De, _R,
|
|
1194
|
+
[_PRGN, _De, _R, _Ta],
|
|
1142
1195
|
[0, 0, () => ProxyRulesByRequestPhase$, () => TagList], 1
|
|
1143
1196
|
];
|
|
1144
1197
|
var CreateProxyRuleGroupResponse$ = [3, n0, _CPRGRr,
|
|
@@ -1163,7 +1216,7 @@ var CreateProxyRulesResponse$ = [3, n0, _CPRRr,
|
|
|
1163
1216
|
];
|
|
1164
1217
|
var CreateRuleGroupRequest$ = [3, n0, _CRGR,
|
|
1165
1218
|
0,
|
|
1166
|
-
[_RGNu,
|
|
1219
|
+
[_RGNu, _T, _Ca, _RGu, _R, _De, _Ta, _DR, _EC, _SMo, _ARG, _SC],
|
|
1167
1220
|
[0, 0, 1, () => RuleGroup$, 0, 0, () => TagList, 2, () => EncryptionConfiguration$, () => SourceMetadata$, 2, () => SummaryConfiguration$], 3
|
|
1168
1221
|
];
|
|
1169
1222
|
var CreateRuleGroupResponse$ = [3, n0, _CRGRr,
|
|
@@ -1173,7 +1226,7 @@ var CreateRuleGroupResponse$ = [3, n0, _CRGRr,
|
|
|
1173
1226
|
];
|
|
1174
1227
|
var CreateTLSInspectionConfigurationRequest$ = [3, n0, _CTLSICR,
|
|
1175
1228
|
0,
|
|
1176
|
-
[_TLSICN, _TLSIC, _De,
|
|
1229
|
+
[_TLSICN, _TLSIC, _De, _Ta, _EC],
|
|
1177
1230
|
[0, () => TLSInspectionConfiguration$, 0, () => TagList, () => EncryptionConfiguration$], 2
|
|
1178
1231
|
];
|
|
1179
1232
|
var CreateTLSInspectionConfigurationResponse$ = [3, n0, _CTLSICRr,
|
|
@@ -1183,7 +1236,7 @@ var CreateTLSInspectionConfigurationResponse$ = [3, n0, _CTLSICRr,
|
|
|
1183
1236
|
];
|
|
1184
1237
|
var CreateVpcEndpointAssociationRequest$ = [3, n0, _CVEAR,
|
|
1185
1238
|
0,
|
|
1186
|
-
[_FAi, _VI, _SMu, _De,
|
|
1239
|
+
[_FAi, _VI, _SMu, _De, _Ta],
|
|
1187
1240
|
[0, 0, () => SubnetMapping$, 0, () => TagList], 3
|
|
1188
1241
|
];
|
|
1189
1242
|
var CreateVpcEndpointAssociationResponse$ = [3, n0, _CVEARr,
|
|
@@ -1191,11 +1244,21 @@ var CreateVpcEndpointAssociationResponse$ = [3, n0, _CVEARr,
|
|
|
1191
1244
|
[_VEA, _VEAS],
|
|
1192
1245
|
[() => VpcEndpointAssociation$, () => VpcEndpointAssociationStatus$]
|
|
1193
1246
|
];
|
|
1194
|
-
var CustomAction$ = [3, n0,
|
|
1247
|
+
var CustomAction$ = [3, n0, _CAu,
|
|
1195
1248
|
0,
|
|
1196
1249
|
[_AN, _AD],
|
|
1197
1250
|
[0, () => ActionDefinition$], 2
|
|
1198
1251
|
];
|
|
1252
|
+
var DeleteContainerAssociationRequest$ = [3, n0, _DCAR,
|
|
1253
|
+
0,
|
|
1254
|
+
[_CAN, _CAA],
|
|
1255
|
+
[0, 0]
|
|
1256
|
+
];
|
|
1257
|
+
var DeleteContainerAssociationResponse$ = [3, n0, _DCARe,
|
|
1258
|
+
0,
|
|
1259
|
+
[_CAN, _CAA, _S],
|
|
1260
|
+
[0, 0, 0]
|
|
1261
|
+
];
|
|
1199
1262
|
var DeleteFirewallPolicyRequest$ = [3, n0, _DFPR,
|
|
1200
1263
|
0,
|
|
1201
1264
|
[_FPN, _FPA],
|
|
@@ -1278,7 +1341,7 @@ var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
|
1278
1341
|
];
|
|
1279
1342
|
var DeleteRuleGroupRequest$ = [3, n0, _DRGR,
|
|
1280
1343
|
0,
|
|
1281
|
-
[_RGNu, _RGAu,
|
|
1344
|
+
[_RGNu, _RGAu, _T],
|
|
1282
1345
|
[0, 0, 0]
|
|
1283
1346
|
];
|
|
1284
1347
|
var DeleteRuleGroupResponse$ = [3, n0, _DRGRe,
|
|
@@ -1306,6 +1369,16 @@ var DeleteVpcEndpointAssociationResponse$ = [3, n0, _DVEARe,
|
|
|
1306
1369
|
[_VEA, _VEAS],
|
|
1307
1370
|
[() => VpcEndpointAssociation$, () => VpcEndpointAssociationStatus$]
|
|
1308
1371
|
];
|
|
1372
|
+
var DescribeContainerAssociationRequest$ = [3, n0, _DCARes,
|
|
1373
|
+
0,
|
|
1374
|
+
[_CAN, _CAA],
|
|
1375
|
+
[0, 0]
|
|
1376
|
+
];
|
|
1377
|
+
var DescribeContainerAssociationResponse$ = [3, n0, _DCAResc,
|
|
1378
|
+
0,
|
|
1379
|
+
[_CAN, _CAA, _De, _T, _CMCo, _S, _RCC, _LUT, _Ta, _UT],
|
|
1380
|
+
[0, 0, 0, 0, () => ContainerMonitoringConfigurations, 0, 1, 4, () => TagList, 0]
|
|
1381
|
+
];
|
|
1309
1382
|
var DescribeFirewallMetadataRequest$ = [3, n0, _DFMR,
|
|
1310
1383
|
0,
|
|
1311
1384
|
[_FAi],
|
|
@@ -1373,7 +1446,7 @@ var DescribeProxyRequest$ = [3, n0, _DPRes,
|
|
|
1373
1446
|
];
|
|
1374
1447
|
var DescribeProxyResource$ = [3, n0, _DPResc,
|
|
1375
1448
|
0,
|
|
1376
|
-
[_PN, _PA, _PCN, _PCA, _NGI, _PS, _PMS, _LP, _TIP, _VESN, _PDNSN, _CT, _DT, _UTp, _FC, _FM,
|
|
1449
|
+
[_PN, _PA, _PCN, _PCA, _NGI, _PS, _PMS, _LP, _TIP, _VESN, _PDNSN, _CT, _DT, _UTp, _FC, _FM, _Ta],
|
|
1377
1450
|
[0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties$, 0, 0, 4, 4, 4, 0, 0, () => TagList]
|
|
1378
1451
|
];
|
|
1379
1452
|
var DescribeProxyResponse$ = [3, n0, _DPRescr,
|
|
@@ -1413,17 +1486,17 @@ var DescribeResourcePolicyResponse$ = [3, n0, _DRPResc,
|
|
|
1413
1486
|
];
|
|
1414
1487
|
var DescribeRuleGroupMetadataRequest$ = [3, n0, _DRGMR,
|
|
1415
1488
|
0,
|
|
1416
|
-
[_RGNu, _RGAu,
|
|
1489
|
+
[_RGNu, _RGAu, _T],
|
|
1417
1490
|
[0, 0, 0]
|
|
1418
1491
|
];
|
|
1419
1492
|
var DescribeRuleGroupMetadataResponse$ = [3, n0, _DRGMRe,
|
|
1420
1493
|
0,
|
|
1421
|
-
[_RGAu, _RGNu, _De,
|
|
1494
|
+
[_RGAu, _RGNu, _De, _T, _Ca, _SRO, _LMT, _VN, _PI, _LN],
|
|
1422
1495
|
[0, 0, 0, 0, 1, () => StatefulRuleOptions$, 4, 0, 0, 0], 2
|
|
1423
1496
|
];
|
|
1424
1497
|
var DescribeRuleGroupRequest$ = [3, n0, _DRGRes,
|
|
1425
1498
|
0,
|
|
1426
|
-
[_RGNu, _RGAu,
|
|
1499
|
+
[_RGNu, _RGAu, _T, _ARG],
|
|
1427
1500
|
[0, 0, 0, 2]
|
|
1428
1501
|
];
|
|
1429
1502
|
var DescribeRuleGroupResponse$ = [3, n0, _DRGResc,
|
|
@@ -1433,7 +1506,7 @@ var DescribeRuleGroupResponse$ = [3, n0, _DRGResc,
|
|
|
1433
1506
|
];
|
|
1434
1507
|
var DescribeRuleGroupSummaryRequest$ = [3, n0, _DRGSR,
|
|
1435
1508
|
0,
|
|
1436
|
-
[_RGNu, _RGAu,
|
|
1509
|
+
[_RGNu, _RGAu, _T],
|
|
1437
1510
|
[0, 0, 0]
|
|
1438
1511
|
];
|
|
1439
1512
|
var DescribeRuleGroupSummaryResponse$ = [3, n0, _DRGSRe,
|
|
@@ -1498,12 +1571,12 @@ var DisassociateSubnetsResponse$ = [3, n0, _DSRi,
|
|
|
1498
1571
|
];
|
|
1499
1572
|
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
1500
1573
|
0,
|
|
1501
|
-
[
|
|
1574
|
+
[_T, _KI],
|
|
1502
1575
|
[0, 0], 1
|
|
1503
1576
|
];
|
|
1504
1577
|
var Firewall$ = [3, n0, _F,
|
|
1505
1578
|
0,
|
|
1506
|
-
[_FPA, _VI, _SM, _FI, _FN, _FAi, _DP, _SCP, _FPCP, _De,
|
|
1579
|
+
[_FPA, _VI, _SM, _FI, _FN, _FAi, _DP, _SCP, _FPCP, _De, _Ta, _EC, _NOA, _EAT, _TGI, _TGOAI, _AZM, _AZCP],
|
|
1507
1580
|
[0, 0, () => SubnetMappings, 0, 0, 0, 2, 2, 2, 0, () => TagList, () => EncryptionConfiguration$, 1, 64 | 0, 0, 0, () => AvailabilityZoneMappings, 2], 4
|
|
1508
1581
|
];
|
|
1509
1582
|
var FirewallMetadata$ = [3, n0, _FMi,
|
|
@@ -1523,7 +1596,7 @@ var FirewallPolicyMetadata$ = [3, n0, _FPM,
|
|
|
1523
1596
|
];
|
|
1524
1597
|
var FirewallPolicyResponse$ = [3, n0, _FPR,
|
|
1525
1598
|
0,
|
|
1526
|
-
[_FPN, _FPA, _FPI, _De, _FPS,
|
|
1599
|
+
[_FPN, _FPA, _FPI, _De, _FPS, _Ta, _CSRC, _CSRCo, _CSDC, _NOA, _EC, _LMT],
|
|
1527
1600
|
[0, 0, 0, 0, 0, () => TagList, 1, 1, 1, 1, () => EncryptionConfiguration$, 4], 3
|
|
1528
1601
|
];
|
|
1529
1602
|
var FirewallStatus$ = [3, n0, _FS,
|
|
@@ -1601,14 +1674,24 @@ var ListAnalysisReportsResponse$ = [3, n0, _LARRi,
|
|
|
1601
1674
|
[_ARna, _NT],
|
|
1602
1675
|
[() => AnalysisReports, 0]
|
|
1603
1676
|
];
|
|
1677
|
+
var ListContainerAssociationsRequest$ = [3, n0, _LCAR,
|
|
1678
|
+
0,
|
|
1679
|
+
[_MR, _NT],
|
|
1680
|
+
[1, 0]
|
|
1681
|
+
];
|
|
1682
|
+
var ListContainerAssociationsResponse$ = [3, n0, _LCARi,
|
|
1683
|
+
0,
|
|
1684
|
+
[_CAo, _NT],
|
|
1685
|
+
[() => ContainerAssociations, 0]
|
|
1686
|
+
];
|
|
1604
1687
|
var ListenerProperty$ = [3, n0, _LPi,
|
|
1605
1688
|
0,
|
|
1606
|
-
[_Por,
|
|
1689
|
+
[_Por, _T],
|
|
1607
1690
|
[1, 0]
|
|
1608
1691
|
];
|
|
1609
1692
|
var ListenerPropertyRequest$ = [3, n0, _LPR,
|
|
1610
1693
|
0,
|
|
1611
|
-
[_Por,
|
|
1694
|
+
[_Por, _T],
|
|
1612
1695
|
[1, 0], 2
|
|
1613
1696
|
];
|
|
1614
1697
|
var ListFirewallPoliciesRequest$ = [3, n0, _LFPR,
|
|
@@ -1683,7 +1766,7 @@ var ListProxyRuleGroupsResponse$ = [3, n0, _LPRGRi,
|
|
|
1683
1766
|
];
|
|
1684
1767
|
var ListRuleGroupsRequest$ = [3, n0, _LRGR,
|
|
1685
1768
|
0,
|
|
1686
|
-
[_NT, _MR, _Sc, _MT, _SSu,
|
|
1769
|
+
[_NT, _MR, _Sc, _MT, _SSu, _T],
|
|
1687
1770
|
[0, 1, 0, 0, 0, 0]
|
|
1688
1771
|
];
|
|
1689
1772
|
var ListRuleGroupsResponse$ = [3, n0, _LRGRi,
|
|
@@ -1698,7 +1781,7 @@ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
|
1698
1781
|
];
|
|
1699
1782
|
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1700
1783
|
0,
|
|
1701
|
-
[_NT,
|
|
1784
|
+
[_NT, _Ta],
|
|
1702
1785
|
[0, () => TagList]
|
|
1703
1786
|
];
|
|
1704
1787
|
var ListTLSInspectionConfigurationsRequest$ = [3, n0, _LTLSICR,
|
|
@@ -1758,7 +1841,7 @@ var PortSet$ = [3, n0, _PSo,
|
|
|
1758
1841
|
];
|
|
1759
1842
|
var Proxy$ = [3, n0, _Pr,
|
|
1760
1843
|
0,
|
|
1761
|
-
[_CT, _DT, _UTp, _FC, _FM, _PS, _PMS, _NGI, _PCN, _PCA, _PN, _PA, _LP, _TIP,
|
|
1844
|
+
[_CT, _DT, _UTp, _FC, _FM, _PS, _PMS, _NGI, _PCN, _PCA, _PN, _PA, _LP, _TIP, _Ta],
|
|
1762
1845
|
[4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties$, () => TagList]
|
|
1763
1846
|
];
|
|
1764
1847
|
var ProxyConfigDefaultRulePhaseActionsRequest$ = [3, n0, _PCDRPAR,
|
|
@@ -1768,12 +1851,12 @@ var ProxyConfigDefaultRulePhaseActionsRequest$ = [3, n0, _PCDRPAR,
|
|
|
1768
1851
|
];
|
|
1769
1852
|
var ProxyConfigRuleGroup$ = [3, n0, _PCRG,
|
|
1770
1853
|
0,
|
|
1771
|
-
[_PRGN, _PRGA,
|
|
1854
|
+
[_PRGN, _PRGA, _T, _Pri],
|
|
1772
1855
|
[0, 0, 0, 1]
|
|
1773
1856
|
];
|
|
1774
1857
|
var ProxyConfiguration$ = [3, n0, _PC,
|
|
1775
1858
|
0,
|
|
1776
|
-
[_PCN, _PCA, _De, _CT, _DT, _RG, _DRPA,
|
|
1859
|
+
[_PCN, _PCA, _De, _CT, _DT, _RG, _DRPA, _Ta],
|
|
1777
1860
|
[0, 0, 0, 4, 4, () => ProxyConfigRuleGroupSet, () => ProxyConfigDefaultRulePhaseActionsRequest$, () => TagList]
|
|
1778
1861
|
];
|
|
1779
1862
|
var ProxyConfigurationMetadata$ = [3, n0, _PCM,
|
|
@@ -1798,7 +1881,7 @@ var ProxyRuleCondition$ = [3, n0, _PRC,
|
|
|
1798
1881
|
];
|
|
1799
1882
|
var ProxyRuleGroup$ = [3, n0, _PRG,
|
|
1800
1883
|
0,
|
|
1801
|
-
[_PRGN, _PRGA, _CT, _DT, _R, _De,
|
|
1884
|
+
[_PRGN, _PRGA, _CT, _DT, _R, _De, _Ta],
|
|
1802
1885
|
[0, 0, 4, 4, () => ProxyRulesByRequestPhase$, 0, () => TagList]
|
|
1803
1886
|
];
|
|
1804
1887
|
var ProxyRuleGroupAttachment$ = [3, n0, _PRGAr,
|
|
@@ -1878,12 +1961,12 @@ var RuleGroupMetadata$ = [3, n0, _RGM,
|
|
|
1878
1961
|
];
|
|
1879
1962
|
var RuleGroupResponse$ = [3, n0, _RGR,
|
|
1880
1963
|
0,
|
|
1881
|
-
[_RGAu, _RGNu, _RGI, _De,
|
|
1964
|
+
[_RGAu, _RGNu, _RGI, _De, _T, _Ca, _RGS, _Ta, _CC, _NOA, _EC, _SMo, _STn, _LMT, _ARnal, _SC],
|
|
1882
1965
|
[0, 0, 0, 0, 0, 1, 0, () => TagList, 1, 1, () => EncryptionConfiguration$, () => SourceMetadata$, 0, 4, () => AnalysisResultList, () => SummaryConfiguration$], 3
|
|
1883
1966
|
];
|
|
1884
1967
|
var RuleOption$ = [3, n0, _RO,
|
|
1885
1968
|
0,
|
|
1886
|
-
[
|
|
1969
|
+
[_Ke, _Se],
|
|
1887
1970
|
[0, 64 | 0], 1
|
|
1888
1971
|
];
|
|
1889
1972
|
var RulesSource$ = [3, n0, _RSu,
|
|
@@ -1893,7 +1976,7 @@ var RulesSource$ = [3, n0, _RSu,
|
|
|
1893
1976
|
];
|
|
1894
1977
|
var RulesSourceList$ = [3, n0, _RSL,
|
|
1895
1978
|
0,
|
|
1896
|
-
[
|
|
1979
|
+
[_Tar, _TT, _GRT],
|
|
1897
1980
|
[64 | 0, 64 | 0, 0], 3
|
|
1898
1981
|
];
|
|
1899
1982
|
var RuleSummary$ = [3, n0, _RSule,
|
|
@@ -1913,7 +1996,7 @@ var ServerCertificate$ = [3, n0, _SCe,
|
|
|
1913
1996
|
];
|
|
1914
1997
|
var ServerCertificateConfiguration$ = [3, n0, _SCC,
|
|
1915
1998
|
0,
|
|
1916
|
-
[_SCer, _Sco,
|
|
1999
|
+
[_SCer, _Sco, _CAAe, _CCRS],
|
|
1917
2000
|
[() => ServerCertificates, () => ServerCertificateScopes, 0, () => CheckCertificateRevocationStatusActions$]
|
|
1918
2001
|
];
|
|
1919
2002
|
var ServerCertificateScope$ = [3, n0, _SCS,
|
|
@@ -1993,7 +2076,7 @@ var StatelessRuleGroupReference$ = [3, n0, _SRGRtat,
|
|
|
1993
2076
|
];
|
|
1994
2077
|
var StatelessRulesAndCustomActions$ = [3, n0, _SRACA,
|
|
1995
2078
|
0,
|
|
1996
|
-
[_SRtat,
|
|
2079
|
+
[_SRtat, _CAus],
|
|
1997
2080
|
[() => StatelessRules, () => CustomActions], 1
|
|
1998
2081
|
];
|
|
1999
2082
|
var SubnetMapping$ = [3, n0, _SMu,
|
|
@@ -2018,12 +2101,12 @@ var SyncState$ = [3, n0, _SSyn,
|
|
|
2018
2101
|
];
|
|
2019
2102
|
var Tag$ = [3, n0, _Tag,
|
|
2020
2103
|
0,
|
|
2021
|
-
[
|
|
2104
|
+
[_K, _V],
|
|
2022
2105
|
[0, 0], 2
|
|
2023
2106
|
];
|
|
2024
2107
|
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2025
2108
|
0,
|
|
2026
|
-
[_RA,
|
|
2109
|
+
[_RA, _Ta],
|
|
2027
2110
|
[0, () => TagList], 2
|
|
2028
2111
|
];
|
|
2029
2112
|
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
@@ -2053,7 +2136,7 @@ var TLSInspectionConfigurationMetadata$ = [3, n0, _TLSICM,
|
|
|
2053
2136
|
];
|
|
2054
2137
|
var TLSInspectionConfigurationResponse$ = [3, n0, _TLSICR,
|
|
2055
2138
|
0,
|
|
2056
|
-
[_TLSICA, _TLSICN, _TLSICI, _TLSICS, _De,
|
|
2139
|
+
[_TLSICA, _TLSICN, _TLSICI, _TLSICS, _De, _Ta, _LMT, _NOA, _EC, _Ce, _CAer],
|
|
2057
2140
|
[0, 0, 0, 0, 0, () => TagList, 4, 1, () => EncryptionConfiguration$, () => Certificates, () => TlsCertificateData$], 3
|
|
2058
2141
|
];
|
|
2059
2142
|
var TlsInterceptProperties$ = [3, n0, _TIP,
|
|
@@ -2096,6 +2179,16 @@ var UpdateAvailabilityZoneChangeProtectionResponse$ = [3, n0, _UAZCPRp,
|
|
|
2096
2179
|
[_UT, _FAi, _FN, _AZCP],
|
|
2097
2180
|
[0, 0, 0, 2]
|
|
2098
2181
|
];
|
|
2182
|
+
var UpdateContainerAssociationRequest$ = [3, n0, _UCAR,
|
|
2183
|
+
0,
|
|
2184
|
+
[_T, _CMCo, _UT, _CAN, _CAA, _De, _Ta],
|
|
2185
|
+
[0, () => ContainerMonitoringConfigurations, 0, 0, 0, 0, () => TagList], 3
|
|
2186
|
+
];
|
|
2187
|
+
var UpdateContainerAssociationResponse$ = [3, n0, _UCARp,
|
|
2188
|
+
0,
|
|
2189
|
+
[_CAN, _CAA, _De, _T, _CMCo, _S, _Ta, _UT],
|
|
2190
|
+
[0, 0, 0, 0, () => ContainerMonitoringConfigurations, 0, () => TagList, 0]
|
|
2191
|
+
];
|
|
2099
2192
|
var UpdateFirewallAnalysisSettingsRequest$ = [3, n0, _UFASR,
|
|
2100
2193
|
0,
|
|
2101
2194
|
[_EAT, _FAi, _FN, _UT],
|
|
@@ -2218,7 +2311,7 @@ var UpdateProxyRuleResponse$ = [3, n0, _UPRRp,
|
|
|
2218
2311
|
];
|
|
2219
2312
|
var UpdateRuleGroupRequest$ = [3, n0, _URGR,
|
|
2220
2313
|
0,
|
|
2221
|
-
[_UT, _RGAu, _RGNu, _RGu, _R,
|
|
2314
|
+
[_UT, _RGAu, _RGNu, _RGu, _R, _T, _De, _DR, _EC, _SMo, _ARG, _SC],
|
|
2222
2315
|
[0, 0, 0, () => RuleGroup$, 0, 0, 0, 2, () => EncryptionConfiguration$, () => SourceMetadata$, 2, () => SummaryConfiguration$], 1
|
|
2223
2316
|
];
|
|
2224
2317
|
var UpdateRuleGroupResponse$ = [3, n0, _URGRp,
|
|
@@ -2248,7 +2341,7 @@ var UpdateTLSInspectionConfigurationResponse$ = [3, n0, _UTLSICRp,
|
|
|
2248
2341
|
];
|
|
2249
2342
|
var VpcEndpointAssociation$ = [3, n0, _VEA,
|
|
2250
2343
|
0,
|
|
2251
|
-
[_VEAA, _FAi, _VI, _SMu, _VEAI, _De,
|
|
2344
|
+
[_VEAA, _FAi, _VI, _SMu, _VEAI, _De, _Ta],
|
|
2252
2345
|
[0, 0, 0, () => SubnetMapping$, 0, 0, () => TagList], 4
|
|
2253
2346
|
];
|
|
2254
2347
|
var VpcEndpointAssociationMetadata$ = [3, n0, _VEAM,
|
|
@@ -2279,10 +2372,19 @@ var AvailabilityZoneMappings = [1, n0, _AZM,
|
|
|
2279
2372
|
var Certificates = [1, n0, _Ce,
|
|
2280
2373
|
0, () => TlsCertificateData$
|
|
2281
2374
|
];
|
|
2375
|
+
var ContainerAssociations = [1, n0, _CAo,
|
|
2376
|
+
0, () => ContainerAssociationSummary$
|
|
2377
|
+
];
|
|
2378
|
+
var ContainerAttributes = [1, n0, _CAon,
|
|
2379
|
+
0, () => ContainerAttribute$
|
|
2380
|
+
];
|
|
2381
|
+
var ContainerMonitoringConfigurations = [1, n0, _CMCo,
|
|
2382
|
+
0, () => ContainerMonitoringConfiguration$
|
|
2383
|
+
];
|
|
2282
2384
|
var CreateProxyRuleList = [1, n0, _CPRL,
|
|
2283
2385
|
0, () => CreateProxyRule$
|
|
2284
2386
|
];
|
|
2285
|
-
var CustomActions = [1, n0,
|
|
2387
|
+
var CustomActions = [1, n0, _CAus,
|
|
2286
2388
|
0, () => CustomAction$
|
|
2287
2389
|
];
|
|
2288
2390
|
var Dimensions = [1, n0, _Dim,
|
|
@@ -2429,6 +2531,9 @@ var AssociateSubnets$ = [9, n0, _AS,
|
|
|
2429
2531
|
var AttachRuleGroupsToProxyConfiguration$ = [9, n0, _ARGTPC,
|
|
2430
2532
|
0, () => AttachRuleGroupsToProxyConfigurationRequest$, () => AttachRuleGroupsToProxyConfigurationResponse$
|
|
2431
2533
|
];
|
|
2534
|
+
var CreateContainerAssociation$ = [9, n0, _CCA,
|
|
2535
|
+
0, () => CreateContainerAssociationRequest$, () => CreateContainerAssociationResponse$
|
|
2536
|
+
];
|
|
2432
2537
|
var CreateFirewall$ = [9, n0, _CF,
|
|
2433
2538
|
0, () => CreateFirewallRequest$, () => CreateFirewallResponse$
|
|
2434
2539
|
];
|
|
@@ -2456,6 +2561,9 @@ var CreateTLSInspectionConfiguration$ = [9, n0, _CTLSIC,
|
|
|
2456
2561
|
var CreateVpcEndpointAssociation$ = [9, n0, _CVEA,
|
|
2457
2562
|
0, () => CreateVpcEndpointAssociationRequest$, () => CreateVpcEndpointAssociationResponse$
|
|
2458
2563
|
];
|
|
2564
|
+
var DeleteContainerAssociation$ = [9, n0, _DCA,
|
|
2565
|
+
0, () => DeleteContainerAssociationRequest$, () => DeleteContainerAssociationResponse$
|
|
2566
|
+
];
|
|
2459
2567
|
var DeleteFirewall$ = [9, n0, _DF,
|
|
2460
2568
|
0, () => DeleteFirewallRequest$, () => DeleteFirewallResponse$
|
|
2461
2569
|
];
|
|
@@ -2489,6 +2597,9 @@ var DeleteTLSInspectionConfiguration$ = [9, n0, _DTLSIC,
|
|
|
2489
2597
|
var DeleteVpcEndpointAssociation$ = [9, n0, _DVEA,
|
|
2490
2598
|
0, () => DeleteVpcEndpointAssociationRequest$, () => DeleteVpcEndpointAssociationResponse$
|
|
2491
2599
|
];
|
|
2600
|
+
var DescribeContainerAssociation$ = [9, n0, _DCAe,
|
|
2601
|
+
0, () => DescribeContainerAssociationRequest$, () => DescribeContainerAssociationResponse$
|
|
2602
|
+
];
|
|
2492
2603
|
var DescribeFirewall$ = [9, n0, _DFe,
|
|
2493
2604
|
0, () => DescribeFirewallRequest$, () => DescribeFirewallResponse$
|
|
2494
2605
|
];
|
|
@@ -2549,6 +2660,9 @@ var GetAnalysisReportResults$ = [9, n0, _GARR,
|
|
|
2549
2660
|
var ListAnalysisReports$ = [9, n0, _LAR,
|
|
2550
2661
|
0, () => ListAnalysisReportsRequest$, () => ListAnalysisReportsResponse$
|
|
2551
2662
|
];
|
|
2663
|
+
var ListContainerAssociations$ = [9, n0, _LCA,
|
|
2664
|
+
0, () => ListContainerAssociationsRequest$, () => ListContainerAssociationsResponse$
|
|
2665
|
+
];
|
|
2552
2666
|
var ListFirewallPolicies$ = [9, n0, _LFP,
|
|
2553
2667
|
0, () => ListFirewallPoliciesRequest$, () => ListFirewallPoliciesResponse$
|
|
2554
2668
|
];
|
|
@@ -2606,6 +2720,9 @@ var UntagResource$ = [9, n0, _UR,
|
|
|
2606
2720
|
var UpdateAvailabilityZoneChangeProtection$ = [9, n0, _UAZCP,
|
|
2607
2721
|
0, () => UpdateAvailabilityZoneChangeProtectionRequest$, () => UpdateAvailabilityZoneChangeProtectionResponse$
|
|
2608
2722
|
];
|
|
2723
|
+
var UpdateContainerAssociation$ = [9, n0, _UCA,
|
|
2724
|
+
0, () => UpdateContainerAssociationRequest$, () => UpdateContainerAssociationResponse$
|
|
2725
|
+
];
|
|
2609
2726
|
var UpdateFirewallAnalysisSettings$ = [9, n0, _UFAS,
|
|
2610
2727
|
0, () => UpdateFirewallAnalysisSettingsRequest$, () => UpdateFirewallAnalysisSettingsResponse$
|
|
2611
2728
|
];
|
|
@@ -2677,6 +2794,7 @@ const getRuntimeConfig$1 = (config) => {
|
|
|
2677
2794
|
serviceTarget: "NetworkFirewall_20201112",
|
|
2678
2795
|
},
|
|
2679
2796
|
serviceId: config?.serviceId ?? "Network Firewall",
|
|
2797
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2680
2798
|
urlParser: config?.urlParser ?? parseUrl,
|
|
2681
2799
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2682
2800
|
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
@@ -2710,7 +2828,6 @@ const getRuntimeConfig = (config) => {
|
|
|
2710
2828
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2711
2829
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2712
2830
|
}, config),
|
|
2713
|
-
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2714
2831
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2715
2832
|
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2716
2833
|
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -2858,6 +2975,18 @@ class AttachRuleGroupsToProxyConfigurationCommand extends Command
|
|
|
2858
2975
|
.build() {
|
|
2859
2976
|
}
|
|
2860
2977
|
|
|
2978
|
+
class CreateContainerAssociationCommand extends Command
|
|
2979
|
+
.classBuilder()
|
|
2980
|
+
.ep(commonParams)
|
|
2981
|
+
.m(function (Command, cs, config, o) {
|
|
2982
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2983
|
+
})
|
|
2984
|
+
.s("NetworkFirewall_20201112", "CreateContainerAssociation", {})
|
|
2985
|
+
.n("NetworkFirewallClient", "CreateContainerAssociationCommand")
|
|
2986
|
+
.sc(CreateContainerAssociation$)
|
|
2987
|
+
.build() {
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2861
2990
|
class CreateFirewallCommand extends Command
|
|
2862
2991
|
.classBuilder()
|
|
2863
2992
|
.ep(commonParams)
|
|
@@ -2966,6 +3095,18 @@ class CreateVpcEndpointAssociationCommand extends Command
|
|
|
2966
3095
|
.build() {
|
|
2967
3096
|
}
|
|
2968
3097
|
|
|
3098
|
+
class DeleteContainerAssociationCommand extends Command
|
|
3099
|
+
.classBuilder()
|
|
3100
|
+
.ep(commonParams)
|
|
3101
|
+
.m(function (Command, cs, config, o) {
|
|
3102
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3103
|
+
})
|
|
3104
|
+
.s("NetworkFirewall_20201112", "DeleteContainerAssociation", {})
|
|
3105
|
+
.n("NetworkFirewallClient", "DeleteContainerAssociationCommand")
|
|
3106
|
+
.sc(DeleteContainerAssociation$)
|
|
3107
|
+
.build() {
|
|
3108
|
+
}
|
|
3109
|
+
|
|
2969
3110
|
class DeleteFirewallCommand extends Command
|
|
2970
3111
|
.classBuilder()
|
|
2971
3112
|
.ep(commonParams)
|
|
@@ -3098,6 +3239,18 @@ class DeleteVpcEndpointAssociationCommand extends Command
|
|
|
3098
3239
|
.build() {
|
|
3099
3240
|
}
|
|
3100
3241
|
|
|
3242
|
+
class DescribeContainerAssociationCommand extends Command
|
|
3243
|
+
.classBuilder()
|
|
3244
|
+
.ep(commonParams)
|
|
3245
|
+
.m(function (Command, cs, config, o) {
|
|
3246
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3247
|
+
})
|
|
3248
|
+
.s("NetworkFirewall_20201112", "DescribeContainerAssociation", {})
|
|
3249
|
+
.n("NetworkFirewallClient", "DescribeContainerAssociationCommand")
|
|
3250
|
+
.sc(DescribeContainerAssociation$)
|
|
3251
|
+
.build() {
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3101
3254
|
class DescribeFirewallCommand extends Command
|
|
3102
3255
|
.classBuilder()
|
|
3103
3256
|
.ep(commonParams)
|
|
@@ -3338,6 +3491,18 @@ class ListAnalysisReportsCommand extends Command
|
|
|
3338
3491
|
.build() {
|
|
3339
3492
|
}
|
|
3340
3493
|
|
|
3494
|
+
class ListContainerAssociationsCommand extends Command
|
|
3495
|
+
.classBuilder()
|
|
3496
|
+
.ep(commonParams)
|
|
3497
|
+
.m(function (Command, cs, config, o) {
|
|
3498
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3499
|
+
})
|
|
3500
|
+
.s("NetworkFirewall_20201112", "ListContainerAssociations", {})
|
|
3501
|
+
.n("NetworkFirewallClient", "ListContainerAssociationsCommand")
|
|
3502
|
+
.sc(ListContainerAssociations$)
|
|
3503
|
+
.build() {
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3341
3506
|
class ListFirewallPoliciesCommand extends Command
|
|
3342
3507
|
.classBuilder()
|
|
3343
3508
|
.ep(commonParams)
|
|
@@ -3566,6 +3731,18 @@ class UpdateAvailabilityZoneChangeProtectionCommand extends Command
|
|
|
3566
3731
|
.build() {
|
|
3567
3732
|
}
|
|
3568
3733
|
|
|
3734
|
+
class UpdateContainerAssociationCommand extends Command
|
|
3735
|
+
.classBuilder()
|
|
3736
|
+
.ep(commonParams)
|
|
3737
|
+
.m(function (Command, cs, config, o) {
|
|
3738
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3739
|
+
})
|
|
3740
|
+
.s("NetworkFirewall_20201112", "UpdateContainerAssociation", {})
|
|
3741
|
+
.n("NetworkFirewallClient", "UpdateContainerAssociationCommand")
|
|
3742
|
+
.sc(UpdateContainerAssociation$)
|
|
3743
|
+
.build() {
|
|
3744
|
+
}
|
|
3745
|
+
|
|
3569
3746
|
class UpdateFirewallAnalysisSettingsCommand extends Command
|
|
3570
3747
|
.classBuilder()
|
|
3571
3748
|
.ep(commonParams)
|
|
@@ -3750,6 +3927,8 @@ const paginateGetAnalysisReportResults = createPaginator(NetworkFirewallClient,
|
|
|
3750
3927
|
|
|
3751
3928
|
const paginateListAnalysisReports = createPaginator(NetworkFirewallClient, ListAnalysisReportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3752
3929
|
|
|
3930
|
+
const paginateListContainerAssociations = createPaginator(NetworkFirewallClient, ListContainerAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3931
|
+
|
|
3753
3932
|
const paginateListFirewallPolicies = createPaginator(NetworkFirewallClient, ListFirewallPoliciesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3754
3933
|
|
|
3755
3934
|
const paginateListFirewalls = createPaginator(NetworkFirewallClient, ListFirewallsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -3778,6 +3957,7 @@ const commands = {
|
|
|
3778
3957
|
AssociateFirewallPolicyCommand,
|
|
3779
3958
|
AssociateSubnetsCommand,
|
|
3780
3959
|
AttachRuleGroupsToProxyConfigurationCommand,
|
|
3960
|
+
CreateContainerAssociationCommand,
|
|
3781
3961
|
CreateFirewallCommand,
|
|
3782
3962
|
CreateFirewallPolicyCommand,
|
|
3783
3963
|
CreateProxyCommand,
|
|
@@ -3787,6 +3967,7 @@ const commands = {
|
|
|
3787
3967
|
CreateRuleGroupCommand,
|
|
3788
3968
|
CreateTLSInspectionConfigurationCommand,
|
|
3789
3969
|
CreateVpcEndpointAssociationCommand,
|
|
3970
|
+
DeleteContainerAssociationCommand,
|
|
3790
3971
|
DeleteFirewallCommand,
|
|
3791
3972
|
DeleteFirewallPolicyCommand,
|
|
3792
3973
|
DeleteNetworkFirewallTransitGatewayAttachmentCommand,
|
|
@@ -3798,6 +3979,7 @@ const commands = {
|
|
|
3798
3979
|
DeleteRuleGroupCommand,
|
|
3799
3980
|
DeleteTLSInspectionConfigurationCommand,
|
|
3800
3981
|
DeleteVpcEndpointAssociationCommand,
|
|
3982
|
+
DescribeContainerAssociationCommand,
|
|
3801
3983
|
DescribeFirewallCommand,
|
|
3802
3984
|
DescribeFirewallMetadataCommand,
|
|
3803
3985
|
DescribeFirewallPolicyCommand,
|
|
@@ -3818,6 +4000,7 @@ const commands = {
|
|
|
3818
4000
|
DisassociateSubnetsCommand,
|
|
3819
4001
|
GetAnalysisReportResultsCommand,
|
|
3820
4002
|
ListAnalysisReportsCommand,
|
|
4003
|
+
ListContainerAssociationsCommand,
|
|
3821
4004
|
ListFirewallPoliciesCommand,
|
|
3822
4005
|
ListFirewallsCommand,
|
|
3823
4006
|
ListFlowOperationResultsCommand,
|
|
@@ -3837,6 +4020,7 @@ const commands = {
|
|
|
3837
4020
|
TagResourceCommand,
|
|
3838
4021
|
UntagResourceCommand,
|
|
3839
4022
|
UpdateAvailabilityZoneChangeProtectionCommand,
|
|
4023
|
+
UpdateContainerAssociationCommand,
|
|
3840
4024
|
UpdateFirewallAnalysisSettingsCommand,
|
|
3841
4025
|
UpdateFirewallDeleteProtectionCommand,
|
|
3842
4026
|
UpdateFirewallDescriptionCommand,
|
|
@@ -3856,6 +4040,7 @@ const commands = {
|
|
|
3856
4040
|
const paginators = {
|
|
3857
4041
|
paginateGetAnalysisReportResults,
|
|
3858
4042
|
paginateListAnalysisReports,
|
|
4043
|
+
paginateListContainerAssociations,
|
|
3859
4044
|
paginateListFirewallPolicies,
|
|
3860
4045
|
paginateListFirewalls,
|
|
3861
4046
|
paginateListFlowOperationResults,
|
|
@@ -3919,6 +4104,15 @@ const ConfigurationSyncState = {
|
|
|
3919
4104
|
IN_SYNC: "IN_SYNC",
|
|
3920
4105
|
PENDING: "PENDING",
|
|
3921
4106
|
};
|
|
4107
|
+
const ContainerAssociationStatus = {
|
|
4108
|
+
ACTIVE: "ACTIVE",
|
|
4109
|
+
CREATING: "CREATING",
|
|
4110
|
+
DELETING: "DELETING",
|
|
4111
|
+
};
|
|
4112
|
+
const ContainerMonitoringType = {
|
|
4113
|
+
ECS: "ECS",
|
|
4114
|
+
EKS: "EKS",
|
|
4115
|
+
};
|
|
3922
4116
|
const EncryptionType = {
|
|
3923
4117
|
AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY",
|
|
3924
4118
|
CUSTOMER_KMS: "CUSTOMER_KMS",
|
|
@@ -4110,6 +4304,15 @@ exports.CIDRSummary$ = CIDRSummary$;
|
|
|
4110
4304
|
exports.CapacityUsageSummary$ = CapacityUsageSummary$;
|
|
4111
4305
|
exports.CheckCertificateRevocationStatusActions$ = CheckCertificateRevocationStatusActions$;
|
|
4112
4306
|
exports.ConfigurationSyncState = ConfigurationSyncState;
|
|
4307
|
+
exports.ContainerAssociationStatus = ContainerAssociationStatus;
|
|
4308
|
+
exports.ContainerAssociationSummary$ = ContainerAssociationSummary$;
|
|
4309
|
+
exports.ContainerAttribute$ = ContainerAttribute$;
|
|
4310
|
+
exports.ContainerMonitoringConfiguration$ = ContainerMonitoringConfiguration$;
|
|
4311
|
+
exports.ContainerMonitoringType = ContainerMonitoringType;
|
|
4312
|
+
exports.CreateContainerAssociation$ = CreateContainerAssociation$;
|
|
4313
|
+
exports.CreateContainerAssociationCommand = CreateContainerAssociationCommand;
|
|
4314
|
+
exports.CreateContainerAssociationRequest$ = CreateContainerAssociationRequest$;
|
|
4315
|
+
exports.CreateContainerAssociationResponse$ = CreateContainerAssociationResponse$;
|
|
4113
4316
|
exports.CreateFirewall$ = CreateFirewall$;
|
|
4114
4317
|
exports.CreateFirewallCommand = CreateFirewallCommand;
|
|
4115
4318
|
exports.CreateFirewallPolicy$ = CreateFirewallPolicy$;
|
|
@@ -4149,6 +4352,10 @@ exports.CreateVpcEndpointAssociationCommand = CreateVpcEndpointAssociationComman
|
|
|
4149
4352
|
exports.CreateVpcEndpointAssociationRequest$ = CreateVpcEndpointAssociationRequest$;
|
|
4150
4353
|
exports.CreateVpcEndpointAssociationResponse$ = CreateVpcEndpointAssociationResponse$;
|
|
4151
4354
|
exports.CustomAction$ = CustomAction$;
|
|
4355
|
+
exports.DeleteContainerAssociation$ = DeleteContainerAssociation$;
|
|
4356
|
+
exports.DeleteContainerAssociationCommand = DeleteContainerAssociationCommand;
|
|
4357
|
+
exports.DeleteContainerAssociationRequest$ = DeleteContainerAssociationRequest$;
|
|
4358
|
+
exports.DeleteContainerAssociationResponse$ = DeleteContainerAssociationResponse$;
|
|
4152
4359
|
exports.DeleteFirewall$ = DeleteFirewall$;
|
|
4153
4360
|
exports.DeleteFirewallCommand = DeleteFirewallCommand;
|
|
4154
4361
|
exports.DeleteFirewallPolicy$ = DeleteFirewallPolicy$;
|
|
@@ -4193,6 +4400,10 @@ exports.DeleteVpcEndpointAssociation$ = DeleteVpcEndpointAssociation$;
|
|
|
4193
4400
|
exports.DeleteVpcEndpointAssociationCommand = DeleteVpcEndpointAssociationCommand;
|
|
4194
4401
|
exports.DeleteVpcEndpointAssociationRequest$ = DeleteVpcEndpointAssociationRequest$;
|
|
4195
4402
|
exports.DeleteVpcEndpointAssociationResponse$ = DeleteVpcEndpointAssociationResponse$;
|
|
4403
|
+
exports.DescribeContainerAssociation$ = DescribeContainerAssociation$;
|
|
4404
|
+
exports.DescribeContainerAssociationCommand = DescribeContainerAssociationCommand;
|
|
4405
|
+
exports.DescribeContainerAssociationRequest$ = DescribeContainerAssociationRequest$;
|
|
4406
|
+
exports.DescribeContainerAssociationResponse$ = DescribeContainerAssociationResponse$;
|
|
4196
4407
|
exports.DescribeFirewall$ = DescribeFirewall$;
|
|
4197
4408
|
exports.DescribeFirewallCommand = DescribeFirewallCommand;
|
|
4198
4409
|
exports.DescribeFirewallMetadata$ = DescribeFirewallMetadata$;
|
|
@@ -4314,6 +4525,10 @@ exports.ListAnalysisReports$ = ListAnalysisReports$;
|
|
|
4314
4525
|
exports.ListAnalysisReportsCommand = ListAnalysisReportsCommand;
|
|
4315
4526
|
exports.ListAnalysisReportsRequest$ = ListAnalysisReportsRequest$;
|
|
4316
4527
|
exports.ListAnalysisReportsResponse$ = ListAnalysisReportsResponse$;
|
|
4528
|
+
exports.ListContainerAssociations$ = ListContainerAssociations$;
|
|
4529
|
+
exports.ListContainerAssociationsCommand = ListContainerAssociationsCommand;
|
|
4530
|
+
exports.ListContainerAssociationsRequest$ = ListContainerAssociationsRequest$;
|
|
4531
|
+
exports.ListContainerAssociationsResponse$ = ListContainerAssociationsResponse$;
|
|
4317
4532
|
exports.ListFirewallPolicies$ = ListFirewallPolicies$;
|
|
4318
4533
|
exports.ListFirewallPoliciesCommand = ListFirewallPoliciesCommand;
|
|
4319
4534
|
exports.ListFirewallPoliciesRequest$ = ListFirewallPoliciesRequest$;
|
|
@@ -4490,6 +4705,10 @@ exports.UpdateAvailabilityZoneChangeProtection$ = UpdateAvailabilityZoneChangePr
|
|
|
4490
4705
|
exports.UpdateAvailabilityZoneChangeProtectionCommand = UpdateAvailabilityZoneChangeProtectionCommand;
|
|
4491
4706
|
exports.UpdateAvailabilityZoneChangeProtectionRequest$ = UpdateAvailabilityZoneChangeProtectionRequest$;
|
|
4492
4707
|
exports.UpdateAvailabilityZoneChangeProtectionResponse$ = UpdateAvailabilityZoneChangeProtectionResponse$;
|
|
4708
|
+
exports.UpdateContainerAssociation$ = UpdateContainerAssociation$;
|
|
4709
|
+
exports.UpdateContainerAssociationCommand = UpdateContainerAssociationCommand;
|
|
4710
|
+
exports.UpdateContainerAssociationRequest$ = UpdateContainerAssociationRequest$;
|
|
4711
|
+
exports.UpdateContainerAssociationResponse$ = UpdateContainerAssociationResponse$;
|
|
4493
4712
|
exports.UpdateFirewallAnalysisSettings$ = UpdateFirewallAnalysisSettings$;
|
|
4494
4713
|
exports.UpdateFirewallAnalysisSettingsCommand = UpdateFirewallAnalysisSettingsCommand;
|
|
4495
4714
|
exports.UpdateFirewallAnalysisSettingsRequest$ = UpdateFirewallAnalysisSettingsRequest$;
|
|
@@ -4556,6 +4775,7 @@ exports.VpcEndpointAssociationStatus$ = VpcEndpointAssociationStatus$;
|
|
|
4556
4775
|
exports.errorTypeRegistries = errorTypeRegistries;
|
|
4557
4776
|
exports.paginateGetAnalysisReportResults = paginateGetAnalysisReportResults;
|
|
4558
4777
|
exports.paginateListAnalysisReports = paginateListAnalysisReports;
|
|
4778
|
+
exports.paginateListContainerAssociations = paginateListContainerAssociations;
|
|
4559
4779
|
exports.paginateListFirewallPolicies = paginateListFirewallPolicies;
|
|
4560
4780
|
exports.paginateListFirewalls = paginateListFirewalls;
|
|
4561
4781
|
exports.paginateListFlowOperationResults = paginateListFlowOperationResults;
|