@aws-sdk/client-network-firewall 3.1074.0 → 3.1076.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 +3064 -15
- 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/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/NetworkFirewallServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -169
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2637
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultNetworkFirewallHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "network-firewall",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultNetworkFirewallHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,2657 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://network-firewall-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://network-firewall-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://network-firewall.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://network-firewall.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class NetworkFirewallServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, NetworkFirewallServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class InternalServerError extends NetworkFirewallServiceException {
|
|
140
|
+
name = "InternalServerError";
|
|
141
|
+
$fault = "server";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "InternalServerError",
|
|
146
|
+
$fault: "server",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidRequestException extends NetworkFirewallServiceException {
|
|
154
|
+
name = "InvalidRequestException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InvalidRequestException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ResourceNotFoundException extends NetworkFirewallServiceException {
|
|
168
|
+
name = "ResourceNotFoundException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "ResourceNotFoundException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class ThrottlingException extends NetworkFirewallServiceException {
|
|
182
|
+
name = "ThrottlingException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ThrottlingException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class InsufficientCapacityException extends NetworkFirewallServiceException {
|
|
196
|
+
name = "InsufficientCapacityException";
|
|
197
|
+
$fault = "server";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "InsufficientCapacityException",
|
|
202
|
+
$fault: "server",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, InsufficientCapacityException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class InvalidOperationException extends NetworkFirewallServiceException {
|
|
210
|
+
name = "InvalidOperationException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "InvalidOperationException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class InvalidTokenException extends NetworkFirewallServiceException {
|
|
224
|
+
name = "InvalidTokenException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "InvalidTokenException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class LimitExceededException extends NetworkFirewallServiceException {
|
|
238
|
+
name = "LimitExceededException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "LimitExceededException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class UnsupportedOperationException extends NetworkFirewallServiceException {
|
|
252
|
+
name = "UnsupportedOperationException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Message;
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "UnsupportedOperationException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
262
|
+
this.Message = opts.Message;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class InvalidResourcePolicyException extends NetworkFirewallServiceException {
|
|
266
|
+
name = "InvalidResourcePolicyException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
Message;
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "InvalidResourcePolicyException",
|
|
272
|
+
$fault: "client",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, InvalidResourcePolicyException.prototype);
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
class LogDestinationPermissionException extends NetworkFirewallServiceException {
|
|
280
|
+
name = "LogDestinationPermissionException";
|
|
281
|
+
$fault = "client";
|
|
282
|
+
Message;
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "LogDestinationPermissionException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, LogDestinationPermissionException.prototype);
|
|
290
|
+
this.Message = opts.Message;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
class ResourceOwnerCheckException extends NetworkFirewallServiceException {
|
|
294
|
+
name = "ResourceOwnerCheckException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Message;
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "ResourceOwnerCheckException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
Object.setPrototypeOf(this, ResourceOwnerCheckException.prototype);
|
|
304
|
+
this.Message = opts.Message;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
const _A = "Address";
|
|
309
|
+
const _AAZ = "AssociateAvailabilityZones";
|
|
310
|
+
const _AAZR = "AssociateAvailabilityZonesRequest";
|
|
311
|
+
const _AAZRs = "AssociateAvailabilityZonesResponse";
|
|
312
|
+
const _AC = "AddConditions";
|
|
313
|
+
const _ACIDRC = "AvailableCIDRCount";
|
|
314
|
+
const _AD = "ActionDefinition";
|
|
315
|
+
const _ADd = "AddressDefinition";
|
|
316
|
+
const _ADn = "AnalysisDetail";
|
|
317
|
+
const _AFP = "AssociateFirewallPolicy";
|
|
318
|
+
const _AFPR = "AssociateFirewallPolicyRequest";
|
|
319
|
+
const _AFPRs = "AssociateFirewallPolicyResponse";
|
|
320
|
+
const _AI = "AttachmentId";
|
|
321
|
+
const _AN = "ActionName";
|
|
322
|
+
const _ANFTGA = "AcceptNetworkFirewallTransitGatewayAttachment";
|
|
323
|
+
const _ANFTGAR = "AcceptNetworkFirewallTransitGatewayAttachmentRequest";
|
|
324
|
+
const _ANFTGARc = "AcceptNetworkFirewallTransitGatewayAttachmentResponse";
|
|
325
|
+
const _AR = "AnalysisReport";
|
|
326
|
+
const _ARG = "AnalyzeRuleGroup";
|
|
327
|
+
const _ARGTPC = "AttachRuleGroupsToProxyConfiguration";
|
|
328
|
+
const _ARGTPCR = "AttachRuleGroupsToProxyConfigurationRequest";
|
|
329
|
+
const _ARGTPCRt = "AttachRuleGroupsToProxyConfigurationResponse";
|
|
330
|
+
const _ARI = "AnalysisReportId";
|
|
331
|
+
const _ARL = "AnalysisResultList";
|
|
332
|
+
const _ARR = "AnalysisReportResults";
|
|
333
|
+
const _ARn = "AnalysisResult";
|
|
334
|
+
const _ARna = "AnalysisReports";
|
|
335
|
+
const _ARnal = "AnalysisResults";
|
|
336
|
+
const _AS = "AssociateSubnets";
|
|
337
|
+
const _ASR = "AssociateSubnetsRequest";
|
|
338
|
+
const _ASRs = "AssociateSubnetsResponse";
|
|
339
|
+
const _ASS = "AssociationSyncState";
|
|
340
|
+
const _AT = "AnalysisType";
|
|
341
|
+
const _ATRR = "AnalysisTypeReportResult";
|
|
342
|
+
const _AZ = "AvailabilityZone";
|
|
343
|
+
const _AZCP = "AvailabilityZoneChangeProtection";
|
|
344
|
+
const _AZM = "AvailabilityZoneMappings";
|
|
345
|
+
const _AZMv = "AvailabilityZoneMapping";
|
|
346
|
+
const _AZMva = "AvailabilityZoneMetadata";
|
|
347
|
+
const _AZSS = "AZSyncState";
|
|
348
|
+
const _Ac = "Action";
|
|
349
|
+
const _Act = "Actions";
|
|
350
|
+
const _Ad = "Addresses";
|
|
351
|
+
const _Ag = "Age";
|
|
352
|
+
const _Ar = "Arn";
|
|
353
|
+
const _At = "Attachment";
|
|
354
|
+
const _BC = "ByteCount";
|
|
355
|
+
const _C = "Conditions";
|
|
356
|
+
const _CA = "CustomAction";
|
|
357
|
+
const _CAA = "CertificateAuthorityArn";
|
|
358
|
+
const _CAe = "CertificateArn";
|
|
359
|
+
const _CAer = "CertificateAuthority";
|
|
360
|
+
const _CAu = "CustomActions";
|
|
361
|
+
const _CC = "ConsumedCapacity";
|
|
362
|
+
const _CCRS = "CheckCertificateRevocationStatus";
|
|
363
|
+
const _CCRSA = "CheckCertificateRevocationStatusActions";
|
|
364
|
+
const _CF = "CreateFirewall";
|
|
365
|
+
const _CFP = "CreateFirewallPolicy";
|
|
366
|
+
const _CFPR = "CreateFirewallPolicyRequest";
|
|
367
|
+
const _CFPRr = "CreateFirewallPolicyResponse";
|
|
368
|
+
const _CFR = "CreateFirewallRequest";
|
|
369
|
+
const _CFRr = "CreateFirewallResponse";
|
|
370
|
+
const _CIDR = "CIDRs";
|
|
371
|
+
const _CIDRS = "CIDRSummary";
|
|
372
|
+
const _CK = "ConditionKey";
|
|
373
|
+
const _CO = "ConditionOperator";
|
|
374
|
+
const _CP = "CreateProxy";
|
|
375
|
+
const _CPC = "CreateProxyConfiguration";
|
|
376
|
+
const _CPCR = "CreateProxyConfigurationRequest";
|
|
377
|
+
const _CPCRr = "CreateProxyConfigurationResponse";
|
|
378
|
+
const _CPR = "CreateProxyRequest";
|
|
379
|
+
const _CPRBRP = "CreateProxyRulesByRequestPhase";
|
|
380
|
+
const _CPRG = "CreateProxyRuleGroup";
|
|
381
|
+
const _CPRGR = "CreateProxyRuleGroupRequest";
|
|
382
|
+
const _CPRGRr = "CreateProxyRuleGroupResponse";
|
|
383
|
+
const _CPRL = "CreateProxyRuleList";
|
|
384
|
+
const _CPRR = "CreateProxyRulesRequest";
|
|
385
|
+
const _CPRRr = "CreateProxyRulesResponse";
|
|
386
|
+
const _CPRr = "CreateProxyResponse";
|
|
387
|
+
const _CPRre = "CreateProxyRule";
|
|
388
|
+
const _CPRrea = "CreateProxyRules";
|
|
389
|
+
const _CRG = "CreateRuleGroup";
|
|
390
|
+
const _CRGR = "CreateRuleGroupRequest";
|
|
391
|
+
const _CRGRr = "CreateRuleGroupResponse";
|
|
392
|
+
const _CS = "CertificateSerial";
|
|
393
|
+
const _CSDC = "ConsumedStatefulDomainCapacity";
|
|
394
|
+
const _CSRC = "ConsumedStatelessRuleCapacity";
|
|
395
|
+
const _CSRCo = "ConsumedStatefulRuleCapacity";
|
|
396
|
+
const _CSSS = "ConfigurationSyncStateSummary";
|
|
397
|
+
const _CT = "CreateTime";
|
|
398
|
+
const _CTLSIC = "CreateTLSInspectionConfiguration";
|
|
399
|
+
const _CTLSICR = "CreateTLSInspectionConfigurationRequest";
|
|
400
|
+
const _CTLSICRr = "CreateTLSInspectionConfigurationResponse";
|
|
401
|
+
const _CUS = "CapacityUsageSummary";
|
|
402
|
+
const _CV = "ConditionValues";
|
|
403
|
+
const _CVEA = "CreateVpcEndpointAssociation";
|
|
404
|
+
const _CVEAR = "CreateVpcEndpointAssociationRequest";
|
|
405
|
+
const _CVEARr = "CreateVpcEndpointAssociationResponse";
|
|
406
|
+
const _Ca = "Capacity";
|
|
407
|
+
const _Ce = "Certificates";
|
|
408
|
+
const _Co = "Count";
|
|
409
|
+
const _Con = "Config";
|
|
410
|
+
const _D = "Domain";
|
|
411
|
+
const _DA = "DestinationAddress";
|
|
412
|
+
const _DAZ = "DisassociateAvailabilityZones";
|
|
413
|
+
const _DAZR = "DisassociateAvailabilityZonesRequest";
|
|
414
|
+
const _DAZRi = "DisassociateAvailabilityZonesResponse";
|
|
415
|
+
const _DF = "DeleteFirewall";
|
|
416
|
+
const _DFM = "DescribeFirewallMetadata";
|
|
417
|
+
const _DFMR = "DescribeFirewallMetadataRequest";
|
|
418
|
+
const _DFMRe = "DescribeFirewallMetadataResponse";
|
|
419
|
+
const _DFO = "DescribeFlowOperation";
|
|
420
|
+
const _DFOR = "DescribeFlowOperationRequest";
|
|
421
|
+
const _DFORe = "DescribeFlowOperationResponse";
|
|
422
|
+
const _DFP = "DeleteFirewallPolicy";
|
|
423
|
+
const _DFPR = "DeleteFirewallPolicyRequest";
|
|
424
|
+
const _DFPRe = "DeleteFirewallPolicyResponse";
|
|
425
|
+
const _DFPRes = "DescribeFirewallPolicyRequest";
|
|
426
|
+
const _DFPResc = "DescribeFirewallPolicyResponse";
|
|
427
|
+
const _DFPe = "DescribeFirewallPolicy";
|
|
428
|
+
const _DFR = "DeleteFirewallRequest";
|
|
429
|
+
const _DFRe = "DeleteFirewallResponse";
|
|
430
|
+
const _DFRes = "DescribeFirewallRequest";
|
|
431
|
+
const _DFResc = "DescribeFirewallResponse";
|
|
432
|
+
const _DFe = "DescribeFirewall";
|
|
433
|
+
const _DLC = "DescribeLoggingConfiguration";
|
|
434
|
+
const _DLCR = "DescribeLoggingConfigurationRequest";
|
|
435
|
+
const _DLCRe = "DescribeLoggingConfigurationResponse";
|
|
436
|
+
const _DNFTGA = "DeleteNetworkFirewallTransitGatewayAttachment";
|
|
437
|
+
const _DNFTGAR = "DeleteNetworkFirewallTransitGatewayAttachmentRequest";
|
|
438
|
+
const _DNFTGARe = "DeleteNetworkFirewallTransitGatewayAttachmentResponse";
|
|
439
|
+
const _DP = "DeleteProtection";
|
|
440
|
+
const _DPC = "DeleteProxyConfiguration";
|
|
441
|
+
const _DPCR = "DeleteProxyConfigurationRequest";
|
|
442
|
+
const _DPCRe = "DeleteProxyConfigurationResponse";
|
|
443
|
+
const _DPCRes = "DescribeProxyConfigurationRequest";
|
|
444
|
+
const _DPCResc = "DescribeProxyConfigurationResponse";
|
|
445
|
+
const _DPCe = "DescribeProxyConfiguration";
|
|
446
|
+
const _DPR = "DeleteProxyRequest";
|
|
447
|
+
const _DPRG = "DeleteProxyRuleGroup";
|
|
448
|
+
const _DPRGR = "DeleteProxyRuleGroupRequest";
|
|
449
|
+
const _DPRGRe = "DeleteProxyRuleGroupResponse";
|
|
450
|
+
const _DPRGRes = "DescribeProxyRuleGroupRequest";
|
|
451
|
+
const _DPRGResc = "DescribeProxyRuleGroupResponse";
|
|
452
|
+
const _DPRGe = "DescribeProxyRuleGroup";
|
|
453
|
+
const _DPRR = "DeleteProxyRulesRequest";
|
|
454
|
+
const _DPRRe = "DeleteProxyRulesResponse";
|
|
455
|
+
const _DPRRes = "DescribeProxyRuleRequest";
|
|
456
|
+
const _DPRResc = "DescribeProxyRuleResponse";
|
|
457
|
+
const _DPRe = "DeleteProxyResponse";
|
|
458
|
+
const _DPRel = "DeleteProxyRules";
|
|
459
|
+
const _DPRes = "DescribeProxyRequest";
|
|
460
|
+
const _DPResc = "DescribeProxyResource";
|
|
461
|
+
const _DPRescr = "DescribeProxyResponse";
|
|
462
|
+
const _DPRescri = "DescribeProxyRule";
|
|
463
|
+
const _DPe = "DestinationPort";
|
|
464
|
+
const _DPel = "DeleteProxy";
|
|
465
|
+
const _DPes = "DestinationPorts";
|
|
466
|
+
const _DPesc = "DescribeProxy";
|
|
467
|
+
const _DR = "DryRun";
|
|
468
|
+
const _DRG = "DeleteRuleGroup";
|
|
469
|
+
const _DRGFPC = "DetachRuleGroupsFromProxyConfiguration";
|
|
470
|
+
const _DRGFPCR = "DetachRuleGroupsFromProxyConfigurationRequest";
|
|
471
|
+
const _DRGFPCRe = "DetachRuleGroupsFromProxyConfigurationResponse";
|
|
472
|
+
const _DRGM = "DescribeRuleGroupMetadata";
|
|
473
|
+
const _DRGMR = "DescribeRuleGroupMetadataRequest";
|
|
474
|
+
const _DRGMRe = "DescribeRuleGroupMetadataResponse";
|
|
475
|
+
const _DRGR = "DeleteRuleGroupRequest";
|
|
476
|
+
const _DRGRe = "DeleteRuleGroupResponse";
|
|
477
|
+
const _DRGRes = "DescribeRuleGroupRequest";
|
|
478
|
+
const _DRGResc = "DescribeRuleGroupResponse";
|
|
479
|
+
const _DRGS = "DescribeRuleGroupSummary";
|
|
480
|
+
const _DRGSR = "DescribeRuleGroupSummaryRequest";
|
|
481
|
+
const _DRGSRe = "DescribeRuleGroupSummaryResponse";
|
|
482
|
+
const _DRGe = "DescribeRuleGroup";
|
|
483
|
+
const _DRP = "DeleteResourcePolicy";
|
|
484
|
+
const _DRPA = "DefaultRulePhaseActions";
|
|
485
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
486
|
+
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
487
|
+
const _DRPRes = "DescribeResourcePolicyRequest";
|
|
488
|
+
const _DRPResc = "DescribeResourcePolicyResponse";
|
|
489
|
+
const _DRPe = "DescribeResourcePolicy";
|
|
490
|
+
const _DS = "DisassociateSubnets";
|
|
491
|
+
const _DSR = "DisassociateSubnetsRequest";
|
|
492
|
+
const _DSRi = "DisassociateSubnetsResponse";
|
|
493
|
+
const _DT = "DeleteTime";
|
|
494
|
+
const _DTI = "DeepThreatInspection";
|
|
495
|
+
const _DTLSIC = "DeleteTLSInspectionConfiguration";
|
|
496
|
+
const _DTLSICR = "DeleteTLSInspectionConfigurationRequest";
|
|
497
|
+
const _DTLSICRe = "DeleteTLSInspectionConfigurationResponse";
|
|
498
|
+
const _DTLSICRes = "DescribeTLSInspectionConfigurationRequest";
|
|
499
|
+
const _DTLSICResc = "DescribeTLSInspectionConfigurationResponse";
|
|
500
|
+
const _DTLSICe = "DescribeTLSInspectionConfiguration";
|
|
501
|
+
const _DVEA = "DeleteVpcEndpointAssociation";
|
|
502
|
+
const _DVEAR = "DeleteVpcEndpointAssociationRequest";
|
|
503
|
+
const _DVEARe = "DeleteVpcEndpointAssociationResponse";
|
|
504
|
+
const _DVEARes = "DescribeVpcEndpointAssociationRequest";
|
|
505
|
+
const _DVEAResc = "DescribeVpcEndpointAssociationResponse";
|
|
506
|
+
const _DVEAe = "DescribeVpcEndpointAssociation";
|
|
507
|
+
const _De = "Description";
|
|
508
|
+
const _Def = "Definition";
|
|
509
|
+
const _Des = "Destination";
|
|
510
|
+
const _Dest = "Destinations";
|
|
511
|
+
const _Di = "Dimension";
|
|
512
|
+
const _Dim = "Dimensions";
|
|
513
|
+
const _Dir = "Direction";
|
|
514
|
+
const _EAT = "EnabledAnalysisTypes";
|
|
515
|
+
const _EC = "EncryptionConfiguration";
|
|
516
|
+
const _EI = "EndpointId";
|
|
517
|
+
const _EMD = "EnableMonitoringDashboard";
|
|
518
|
+
const _ET = "EndTime";
|
|
519
|
+
const _ETLSSH = "EnableTLSSessionHolding";
|
|
520
|
+
const _F = "Firewall";
|
|
521
|
+
const _FA = "FirstAccessed";
|
|
522
|
+
const _FAi = "FirewallArn";
|
|
523
|
+
const _FC = "FailureCode";
|
|
524
|
+
const _FF = "FlowFilter";
|
|
525
|
+
const _FFl = "FlowFilters";
|
|
526
|
+
const _FI = "FirewallId";
|
|
527
|
+
const _FM = "FailureMessage";
|
|
528
|
+
const _FMi = "FirewallMetadata";
|
|
529
|
+
const _FN = "FirewallName";
|
|
530
|
+
const _FO = "FlowOperation";
|
|
531
|
+
const _FOI = "FlowOperationId";
|
|
532
|
+
const _FOM = "FlowOperationMetadata";
|
|
533
|
+
const _FOS = "FlowOperationStatus";
|
|
534
|
+
const _FOT = "FlowOperationType";
|
|
535
|
+
const _FOl = "FlowOperations";
|
|
536
|
+
const _FP = "FirewallPolicy";
|
|
537
|
+
const _FPA = "FirewallPolicyArn";
|
|
538
|
+
const _FPCP = "FirewallPolicyChangeProtection";
|
|
539
|
+
const _FPI = "FirewallPolicyId";
|
|
540
|
+
const _FPM = "FirewallPolicyMetadata";
|
|
541
|
+
const _FPN = "FirewallPolicyName";
|
|
542
|
+
const _FPR = "FirewallPolicyResponse";
|
|
543
|
+
const _FPS = "FirewallPolicyStatus";
|
|
544
|
+
const _FPi = "FirewallPolicies";
|
|
545
|
+
const _FPr = "FromPort";
|
|
546
|
+
const _FRT = "FlowRequestTimestamp";
|
|
547
|
+
const _FS = "FirewallStatus";
|
|
548
|
+
const _FT = "FlowTimeouts";
|
|
549
|
+
const _Fi = "Firewalls";
|
|
550
|
+
const _Fl = "Flow";
|
|
551
|
+
const _Fla = "Flags";
|
|
552
|
+
const _Flo = "Flows";
|
|
553
|
+
const _GARR = "GetAnalysisReportResults";
|
|
554
|
+
const _GARRR = "GetAnalysisReportResultsRequest";
|
|
555
|
+
const _GARRRe = "GetAnalysisReportResultsResponse";
|
|
556
|
+
const _GRT = "GeneratedRulesType";
|
|
557
|
+
const _H = "Hits";
|
|
558
|
+
const _He = "Header";
|
|
559
|
+
const _ICE = "InsufficientCapacityException";
|
|
560
|
+
const _IOE = "InvalidOperationException";
|
|
561
|
+
const _IP = "InsertPosition";
|
|
562
|
+
const _IPAT = "IPAddressType";
|
|
563
|
+
const _IPS = "IPSet";
|
|
564
|
+
const _IPSM = "IPSetMetadata";
|
|
565
|
+
const _IPSMM = "IPSetMetadataMap";
|
|
566
|
+
const _IPSR = "IPSetReferences";
|
|
567
|
+
const _IPSRM = "IPSetReferenceMap";
|
|
568
|
+
const _IPSRe = "IPSetReference";
|
|
569
|
+
const _IPSe = "IPSets";
|
|
570
|
+
const _IRE = "InvalidRequestException";
|
|
571
|
+
const _IRI = "IdentifiedRuleIds";
|
|
572
|
+
const _IRPE = "InvalidResourcePolicyException";
|
|
573
|
+
const _ISE = "InternalServerError";
|
|
574
|
+
const _IT = "IdentifiedType";
|
|
575
|
+
const _ITE = "InvalidTokenException";
|
|
576
|
+
const _K = "Keyword";
|
|
577
|
+
const _KI = "KeyId";
|
|
578
|
+
const _Ke = "Key";
|
|
579
|
+
const _LA = "LastAccessed";
|
|
580
|
+
const _LAR = "ListAnalysisReports";
|
|
581
|
+
const _LARR = "ListAnalysisReportsRequest";
|
|
582
|
+
const _LARRi = "ListAnalysisReportsResponse";
|
|
583
|
+
const _LC = "LoggingConfiguration";
|
|
584
|
+
const _LD = "LogDestination";
|
|
585
|
+
const _LDC = "LogDestinationConfig";
|
|
586
|
+
const _LDCo = "LogDestinationConfigs";
|
|
587
|
+
const _LDPE = "LogDestinationPermissionException";
|
|
588
|
+
const _LDT = "LogDestinationType";
|
|
589
|
+
const _LEE = "LimitExceededException";
|
|
590
|
+
const _LF = "ListFirewalls";
|
|
591
|
+
const _LFO = "ListFlowOperations";
|
|
592
|
+
const _LFOR = "ListFlowOperationsRequest";
|
|
593
|
+
const _LFORR = "ListFlowOperationResultsRequest";
|
|
594
|
+
const _LFORRi = "ListFlowOperationResultsResponse";
|
|
595
|
+
const _LFORi = "ListFlowOperationsResponse";
|
|
596
|
+
const _LFORis = "ListFlowOperationResults";
|
|
597
|
+
const _LFP = "ListFirewallPolicies";
|
|
598
|
+
const _LFPR = "ListFirewallPoliciesRequest";
|
|
599
|
+
const _LFPRi = "ListFirewallPoliciesResponse";
|
|
600
|
+
const _LFR = "ListFirewallsRequest";
|
|
601
|
+
const _LFRi = "ListFirewallsResponse";
|
|
602
|
+
const _LMT = "LastModifiedTime";
|
|
603
|
+
const _LN = "ListingName";
|
|
604
|
+
const _LP = "ListenerProperties";
|
|
605
|
+
const _LPC = "ListProxyConfigurations";
|
|
606
|
+
const _LPCR = "ListProxyConfigurationsRequest";
|
|
607
|
+
const _LPCRi = "ListProxyConfigurationsResponse";
|
|
608
|
+
const _LPR = "ListenerPropertyRequest";
|
|
609
|
+
const _LPRG = "ListProxyRuleGroups";
|
|
610
|
+
const _LPRGR = "ListProxyRuleGroupsRequest";
|
|
611
|
+
const _LPRGRi = "ListProxyRuleGroupsResponse";
|
|
612
|
+
const _LPRi = "ListProxiesRequest";
|
|
613
|
+
const _LPRis = "ListProxiesResponse";
|
|
614
|
+
const _LPRist = "ListenerPropertiesRequest";
|
|
615
|
+
const _LPTA = "ListenerPropertiesToAdd";
|
|
616
|
+
const _LPTR = "ListenerPropertiesToRemove";
|
|
617
|
+
const _LPi = "ListenerProperty";
|
|
618
|
+
const _LPis = "ListProxies";
|
|
619
|
+
const _LRG = "ListRuleGroups";
|
|
620
|
+
const _LRGR = "ListRuleGroupsRequest";
|
|
621
|
+
const _LRGRi = "ListRuleGroupsResponse";
|
|
622
|
+
const _LT = "LogType";
|
|
623
|
+
const _LTFR = "ListTagsForResource";
|
|
624
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
625
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
626
|
+
const _LTLSIC = "ListTLSInspectionConfigurations";
|
|
627
|
+
const _LTLSICR = "ListTLSInspectionConfigurationsRequest";
|
|
628
|
+
const _LTLSICRi = "ListTLSInspectionConfigurationsResponse";
|
|
629
|
+
const _LVEA = "ListVpcEndpointAssociations";
|
|
630
|
+
const _LVEAR = "ListVpcEndpointAssociationsRequest";
|
|
631
|
+
const _LVEARi = "ListVpcEndpointAssociationsResponse";
|
|
632
|
+
const _M = "Message";
|
|
633
|
+
const _MA = "MatchAttributes";
|
|
634
|
+
const _MFAIS = "MinimumFlowAgeInSeconds";
|
|
635
|
+
const _MR = "MaxResults";
|
|
636
|
+
const _MT = "ManagedType";
|
|
637
|
+
const _Ma = "Masks";
|
|
638
|
+
const _Me = "Metadata";
|
|
639
|
+
const _Ms = "Msg";
|
|
640
|
+
const _N = "Name";
|
|
641
|
+
const _NGI = "NatGatewayId";
|
|
642
|
+
const _NOA = "NumberOfAssociations";
|
|
643
|
+
const _NP = "NewPosition";
|
|
644
|
+
const _NT = "NextToken";
|
|
645
|
+
const _O = "Override";
|
|
646
|
+
const _P = "Protocol";
|
|
647
|
+
const _PA = "ProxyArn";
|
|
648
|
+
const _PAc = "PcaArn";
|
|
649
|
+
const _PC = "ProxyConfiguration";
|
|
650
|
+
const _PCA = "ProxyConfigurationArn";
|
|
651
|
+
const _PCDRPAR = "ProxyConfigDefaultRulePhaseActionsRequest";
|
|
652
|
+
const _PCM = "ProxyConfigurationMetadata";
|
|
653
|
+
const _PCN = "ProxyConfigurationName";
|
|
654
|
+
const _PCRG = "ProxyConfigRuleGroup";
|
|
655
|
+
const _PCRGS = "ProxyConfigRuleGroupSet";
|
|
656
|
+
const _PCa = "PacketCount";
|
|
657
|
+
const _PCr = "ProxyConfigurations";
|
|
658
|
+
const _PDNS = "PreDNS";
|
|
659
|
+
const _PDNSN = "PrivateDNSName";
|
|
660
|
+
const _PI = "ProductId";
|
|
661
|
+
const _PM = "ProxyMetadata";
|
|
662
|
+
const _PMA = "PublishMetricAction";
|
|
663
|
+
const _PMS = "ProxyModifyState";
|
|
664
|
+
const _PN = "ProxyName";
|
|
665
|
+
const _POS = "PerObjectStatus";
|
|
666
|
+
const _PR = "ProxyRule";
|
|
667
|
+
const _PRBRP = "ProxyRulesByRequestPhase";
|
|
668
|
+
const _PRC = "ProxyRuleCondition";
|
|
669
|
+
const _PRCL = "ProxyRuleConditionList";
|
|
670
|
+
const _PREQUEST = "PreREQUEST";
|
|
671
|
+
const _PRESPONSE = "PostRESPONSE";
|
|
672
|
+
const _PRG = "ProxyRuleGroup";
|
|
673
|
+
const _PRGA = "ProxyRuleGroupArn";
|
|
674
|
+
const _PRGAL = "ProxyRuleGroupAttachmentList";
|
|
675
|
+
const _PRGAr = "ProxyRuleGroupAttachment";
|
|
676
|
+
const _PRGM = "ProxyRuleGroupMetadata";
|
|
677
|
+
const _PRGN = "ProxyRuleGroupName";
|
|
678
|
+
const _PRGP = "ProxyRuleGroupPriority";
|
|
679
|
+
const _PRGPL = "ProxyRuleGroupPriorityList";
|
|
680
|
+
const _PRGPR = "ProxyRuleGroupPriorityResult";
|
|
681
|
+
const _PRGPRL = "ProxyRuleGroupPriorityResultList";
|
|
682
|
+
const _PRGr = "ProxyRuleGroups";
|
|
683
|
+
const _PRL = "ProxyRuleList";
|
|
684
|
+
const _PRN = "ProxyRuleName";
|
|
685
|
+
const _PRP = "ProxyRulePriority";
|
|
686
|
+
const _PRPL = "ProxyRulePriorityList";
|
|
687
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
688
|
+
const _PRPRu = "PutResourcePolicyResponse";
|
|
689
|
+
const _PRPu = "PutResourcePolicy";
|
|
690
|
+
const _PRo = "PortRange";
|
|
691
|
+
const _PRor = "PortRanges";
|
|
692
|
+
const _PS = "ProxyState";
|
|
693
|
+
const _PSo = "PortSet";
|
|
694
|
+
const _PSor = "PortSets";
|
|
695
|
+
const _PV = "PolicyVariables";
|
|
696
|
+
const _Po = "Policy";
|
|
697
|
+
const _Por = "Port";
|
|
698
|
+
const _Pr = "Proxy";
|
|
699
|
+
const _Pri = "Priority";
|
|
700
|
+
const _Pro = "Protocols";
|
|
701
|
+
const _Prox = "Proxies";
|
|
702
|
+
const _R = "Rules";
|
|
703
|
+
const _RA = "ResourceArn";
|
|
704
|
+
const _RAe = "ReferenceArn";
|
|
705
|
+
const _RC = "RemoveConditions";
|
|
706
|
+
const _RCIDRC = "ResolvedCIDRCount";
|
|
707
|
+
const _RCe = "RemovedConditions";
|
|
708
|
+
const _RD = "RuleDefinition";
|
|
709
|
+
const _RG = "RuleGroups";
|
|
710
|
+
const _RGA = "RuleGroupArns";
|
|
711
|
+
const _RGAu = "RuleGroupArn";
|
|
712
|
+
const _RGI = "RuleGroupId";
|
|
713
|
+
const _RGM = "RuleGroupMetadata";
|
|
714
|
+
const _RGN = "RuleGroupNames";
|
|
715
|
+
const _RGNu = "RuleGroupName";
|
|
716
|
+
const _RGR = "RuleGroupResponse";
|
|
717
|
+
const _RGRP = "RuleGroupRequestPhase";
|
|
718
|
+
const _RGS = "RuleGroupStatus";
|
|
719
|
+
const _RGu = "RuleGroup";
|
|
720
|
+
const _RNFE = "ResourceNotFoundException";
|
|
721
|
+
const _RNFTGA = "RejectNetworkFirewallTransitGatewayAttachment";
|
|
722
|
+
const _RNFTGAR = "RejectNetworkFirewallTransitGatewayAttachmentRequest";
|
|
723
|
+
const _RNFTGARe = "RejectNetworkFirewallTransitGatewayAttachmentResponse";
|
|
724
|
+
const _RO = "RuleOption";
|
|
725
|
+
const _ROCE = "ResourceOwnerCheckException";
|
|
726
|
+
const _ROu = "RuleOrder";
|
|
727
|
+
const _ROul = "RuleOptions";
|
|
728
|
+
const _RS = "ReferenceSets";
|
|
729
|
+
const _RSA = "RevokedStatusAction";
|
|
730
|
+
const _RSL = "RulesSourceList";
|
|
731
|
+
const _RSu = "RulesSource";
|
|
732
|
+
const _RSul = "RulesString";
|
|
733
|
+
const _RSule = "RuleSummary";
|
|
734
|
+
const _RSuleu = "RuleSummaries";
|
|
735
|
+
const _RT = "ReportTime";
|
|
736
|
+
const _RV = "RuleVariables";
|
|
737
|
+
const _S = "Status";
|
|
738
|
+
const _SA = "SourceAddress";
|
|
739
|
+
const _SAR = "StartAnalysisReport";
|
|
740
|
+
const _SARR = "StartAnalysisReportRequest";
|
|
741
|
+
const _SARRt = "StartAnalysisReportResponse";
|
|
742
|
+
const _SAZ = "SupportedAvailabilityZones";
|
|
743
|
+
const _SAo = "SourceArn";
|
|
744
|
+
const _SC = "SummaryConfiguration";
|
|
745
|
+
const _SCA = "StatelessCustomActions";
|
|
746
|
+
const _SCC = "ServerCertificateConfiguration";
|
|
747
|
+
const _SCCe = "ServerCertificateConfigurations";
|
|
748
|
+
const _SCP = "SubnetChangeProtection";
|
|
749
|
+
const _SCS = "ServerCertificateScope";
|
|
750
|
+
const _SCSe = "ServerCertificateScopes";
|
|
751
|
+
const _SCe = "ServerCertificate";
|
|
752
|
+
const _SCer = "ServerCertificates";
|
|
753
|
+
const _SDA = "StatelessDefaultActions";
|
|
754
|
+
const _SDAt = "StatefulDefaultActions";
|
|
755
|
+
const _SEO = "StatefulEngineOptions";
|
|
756
|
+
const _SEP = "StreamExceptionPolicy";
|
|
757
|
+
const _SFC = "StartFlowCapture";
|
|
758
|
+
const _SFCR = "StartFlowCaptureRequest";
|
|
759
|
+
const _SFCRt = "StartFlowCaptureResponse";
|
|
760
|
+
const _SFDA = "StatelessFragmentDefaultActions";
|
|
761
|
+
const _SFF = "StartFlowFlush";
|
|
762
|
+
const _SFFR = "StartFlowFlushRequest";
|
|
763
|
+
const _SFFRt = "StartFlowFlushResponse";
|
|
764
|
+
const _SI = "SubnetId";
|
|
765
|
+
const _SID = "SID";
|
|
766
|
+
const _SIu = "SubnetIds";
|
|
767
|
+
const _SM = "SubnetMappings";
|
|
768
|
+
const _SMo = "SourceMetadata";
|
|
769
|
+
const _SMt = "StatusMessage";
|
|
770
|
+
const _SMu = "SubnetMapping";
|
|
771
|
+
const _SP = "SourcePort";
|
|
772
|
+
const _SPo = "SourcePorts";
|
|
773
|
+
const _SR = "StatefulRules";
|
|
774
|
+
const _SRACA = "StatelessRulesAndCustomActions";
|
|
775
|
+
const _SRGO = "StatefulRuleGroupOverride";
|
|
776
|
+
const _SRGR = "StatelessRuleGroupReferences";
|
|
777
|
+
const _SRGRt = "StatefulRuleGroupReferences";
|
|
778
|
+
const _SRGRta = "StatefulRuleGroupReference";
|
|
779
|
+
const _SRGRtat = "StatelessRuleGroupReference";
|
|
780
|
+
const _SRO = "StatefulRuleOptions";
|
|
781
|
+
const _SRt = "StatefulRule";
|
|
782
|
+
const _SRta = "StatelessRule";
|
|
783
|
+
const _SRtat = "StatelessRules";
|
|
784
|
+
const _SS = "SyncStates";
|
|
785
|
+
const _SSC = "SyncStateConfig";
|
|
786
|
+
const _SSu = "SubscriptionStatus";
|
|
787
|
+
const _SSy = "SyncStatus";
|
|
788
|
+
const _SSyn = "SyncState";
|
|
789
|
+
const _ST = "StartTime";
|
|
790
|
+
const _STn = "SnsTopic";
|
|
791
|
+
const _SUT = "SourceUpdateToken";
|
|
792
|
+
const _Sc = "Scope";
|
|
793
|
+
const _Sco = "Scopes";
|
|
794
|
+
const _Se = "Settings";
|
|
795
|
+
const _So = "Source";
|
|
796
|
+
const _Sou = "Sources";
|
|
797
|
+
const _Su = "Summary";
|
|
798
|
+
const _T = "Tags";
|
|
799
|
+
const _TCD = "TlsCertificateData";
|
|
800
|
+
const _TCPF = "TCPFlags";
|
|
801
|
+
const _TCPFF = "TCPFlagField";
|
|
802
|
+
const _TE = "ThrottlingException";
|
|
803
|
+
const _TGAI = "TransitGatewayAttachmentId";
|
|
804
|
+
const _TGAS = "TransitGatewayAttachmentStatus";
|
|
805
|
+
const _TGASS = "TransitGatewayAttachmentSyncState";
|
|
806
|
+
const _TGI = "TransitGatewayId";
|
|
807
|
+
const _TGOAI = "TransitGatewayOwnerAccountId";
|
|
808
|
+
const _TIM = "TlsInterceptMode";
|
|
809
|
+
const _TIP = "TlsInterceptProperties";
|
|
810
|
+
const _TIPR = "TlsInterceptPropertiesRequest";
|
|
811
|
+
const _TITS = "TcpIdleTimeoutSeconds";
|
|
812
|
+
const _TK = "TagKeys";
|
|
813
|
+
const _TL = "TagList";
|
|
814
|
+
const _TLSIC = "TLSInspectionConfiguration";
|
|
815
|
+
const _TLSICA = "TLSInspectionConfigurationArn";
|
|
816
|
+
const _TLSICI = "TLSInspectionConfigurationId";
|
|
817
|
+
const _TLSICM = "TLSInspectionConfigurationMetadata";
|
|
818
|
+
const _TLSICN = "TLSInspectionConfigurationName";
|
|
819
|
+
const _TLSICR = "TLSInspectionConfigurationResponse";
|
|
820
|
+
const _TLSICS = "TLSInspectionConfigurationStatus";
|
|
821
|
+
const _TLSICn = "TLSInspectionConfigurations";
|
|
822
|
+
const _TP = "ToPort";
|
|
823
|
+
const _TR = "TagResource";
|
|
824
|
+
const _TRR = "TagResourceRequest";
|
|
825
|
+
const _TRRa = "TagResourceResponse";
|
|
826
|
+
const _TT = "TargetTypes";
|
|
827
|
+
const _Ta = "Targets";
|
|
828
|
+
const _Tag = "Tag";
|
|
829
|
+
const _Ty = "Type";
|
|
830
|
+
const _UAZCP = "UpdateAvailabilityZoneChangeProtection";
|
|
831
|
+
const _UAZCPR = "UpdateAvailabilityZoneChangeProtectionRequest";
|
|
832
|
+
const _UAZCPRp = "UpdateAvailabilityZoneChangeProtectionResponse";
|
|
833
|
+
const _UCIDRC = "UtilizedCIDRCount";
|
|
834
|
+
const _UFAS = "UpdateFirewallAnalysisSettings";
|
|
835
|
+
const _UFASR = "UpdateFirewallAnalysisSettingsRequest";
|
|
836
|
+
const _UFASRp = "UpdateFirewallAnalysisSettingsResponse";
|
|
837
|
+
const _UFD = "UpdateFirewallDescription";
|
|
838
|
+
const _UFDP = "UpdateFirewallDeleteProtection";
|
|
839
|
+
const _UFDPR = "UpdateFirewallDeleteProtectionRequest";
|
|
840
|
+
const _UFDPRp = "UpdateFirewallDeleteProtectionResponse";
|
|
841
|
+
const _UFDR = "UpdateFirewallDescriptionRequest";
|
|
842
|
+
const _UFDRp = "UpdateFirewallDescriptionResponse";
|
|
843
|
+
const _UFEC = "UpdateFirewallEncryptionConfiguration";
|
|
844
|
+
const _UFECR = "UpdateFirewallEncryptionConfigurationRequest";
|
|
845
|
+
const _UFECRp = "UpdateFirewallEncryptionConfigurationResponse";
|
|
846
|
+
const _UFP = "UpdateFirewallPolicy";
|
|
847
|
+
const _UFPCP = "UpdateFirewallPolicyChangeProtection";
|
|
848
|
+
const _UFPCPR = "UpdateFirewallPolicyChangeProtectionRequest";
|
|
849
|
+
const _UFPCPRp = "UpdateFirewallPolicyChangeProtectionResponse";
|
|
850
|
+
const _UFPR = "UpdateFirewallPolicyRequest";
|
|
851
|
+
const _UFPRp = "UpdateFirewallPolicyResponse";
|
|
852
|
+
const _ULC = "UpdateLoggingConfiguration";
|
|
853
|
+
const _ULCR = "UpdateLoggingConfigurationRequest";
|
|
854
|
+
const _ULCRp = "UpdateLoggingConfigurationResponse";
|
|
855
|
+
const _UOE = "UnsupportedOperationException";
|
|
856
|
+
const _UP = "UpdateProxy";
|
|
857
|
+
const _UPC = "UpdateProxyConfiguration";
|
|
858
|
+
const _UPCR = "UpdateProxyConfigurationRequest";
|
|
859
|
+
const _UPCRp = "UpdateProxyConfigurationResponse";
|
|
860
|
+
const _UPR = "UpdateProxyRequest";
|
|
861
|
+
const _UPRGP = "UpdateProxyRuleGroupPriorities";
|
|
862
|
+
const _UPRGPR = "UpdateProxyRuleGroupPrioritiesRequest";
|
|
863
|
+
const _UPRGPRp = "UpdateProxyRuleGroupPrioritiesResponse";
|
|
864
|
+
const _UPRP = "UpdateProxyRulePriorities";
|
|
865
|
+
const _UPRPR = "UpdateProxyRulePrioritiesRequest";
|
|
866
|
+
const _UPRPRp = "UpdateProxyRulePrioritiesResponse";
|
|
867
|
+
const _UPRR = "UpdateProxyRuleRequest";
|
|
868
|
+
const _UPRRp = "UpdateProxyRuleResponse";
|
|
869
|
+
const _UPRp = "UpdateProxyResponse";
|
|
870
|
+
const _UPRpd = "UpdateProxyRule";
|
|
871
|
+
const _UR = "UntagResource";
|
|
872
|
+
const _URG = "UpdateRuleGroup";
|
|
873
|
+
const _URGR = "UpdateRuleGroupRequest";
|
|
874
|
+
const _URGRp = "UpdateRuleGroupResponse";
|
|
875
|
+
const _URR = "UntagResourceRequest";
|
|
876
|
+
const _URRn = "UntagResourceResponse";
|
|
877
|
+
const _US = "UniqueSources";
|
|
878
|
+
const _USA = "UnknownStatusAction";
|
|
879
|
+
const _USCP = "UpdateSubnetChangeProtection";
|
|
880
|
+
const _USCPR = "UpdateSubnetChangeProtectionRequest";
|
|
881
|
+
const _USCPRp = "UpdateSubnetChangeProtectionResponse";
|
|
882
|
+
const _UT = "UpdateToken";
|
|
883
|
+
const _UTLSIC = "UpdateTLSInspectionConfiguration";
|
|
884
|
+
const _UTLSICR = "UpdateTLSInspectionConfigurationRequest";
|
|
885
|
+
const _UTLSICRp = "UpdateTLSInspectionConfigurationResponse";
|
|
886
|
+
const _UTp = "UpdateTime";
|
|
887
|
+
const _V = "Value";
|
|
888
|
+
const _VEA = "VpcEndpointAssociation";
|
|
889
|
+
const _VEAA = "VpcEndpointAssociationArn";
|
|
890
|
+
const _VEAI = "VpcEndpointAssociationId";
|
|
891
|
+
const _VEAM = "VpcEndpointAssociationMetadata";
|
|
892
|
+
const _VEAS = "VpcEndpointAssociationStatus";
|
|
893
|
+
const _VEAp = "VpcEndpointAssociations";
|
|
894
|
+
const _VEI = "VpcEndpointId";
|
|
895
|
+
const _VESN = "VpcEndpointServiceName";
|
|
896
|
+
const _VI = "VpcId";
|
|
897
|
+
const _VIp = "VpcIds";
|
|
898
|
+
const _VN = "VendorName";
|
|
899
|
+
const _c = "client";
|
|
900
|
+
const _e = "error";
|
|
901
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.networkfirewall";
|
|
902
|
+
const _se = "server";
|
|
903
|
+
const n0 = "com.amazonaws.networkfirewall";
|
|
904
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
905
|
+
var NetworkFirewallServiceException$ = [-3, _s, "NetworkFirewallServiceException", 0, [], []];
|
|
906
|
+
_s_registry.registerError(NetworkFirewallServiceException$, NetworkFirewallServiceException);
|
|
907
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
908
|
+
var InsufficientCapacityException$ = [-3, n0, _ICE,
|
|
909
|
+
{ [_e]: _se },
|
|
910
|
+
[_M],
|
|
911
|
+
[0]
|
|
912
|
+
];
|
|
913
|
+
n0_registry.registerError(InsufficientCapacityException$, InsufficientCapacityException);
|
|
914
|
+
var InternalServerError$ = [-3, n0, _ISE,
|
|
915
|
+
{ [_e]: _se },
|
|
916
|
+
[_M],
|
|
917
|
+
[0]
|
|
918
|
+
];
|
|
919
|
+
n0_registry.registerError(InternalServerError$, InternalServerError);
|
|
920
|
+
var InvalidOperationException$ = [-3, n0, _IOE,
|
|
921
|
+
{ [_e]: _c },
|
|
922
|
+
[_M],
|
|
923
|
+
[0]
|
|
924
|
+
];
|
|
925
|
+
n0_registry.registerError(InvalidOperationException$, InvalidOperationException);
|
|
926
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
927
|
+
{ [_e]: _c },
|
|
928
|
+
[_M],
|
|
929
|
+
[0]
|
|
930
|
+
];
|
|
931
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
932
|
+
var InvalidResourcePolicyException$ = [-3, n0, _IRPE,
|
|
933
|
+
{ [_e]: _c },
|
|
934
|
+
[_M],
|
|
935
|
+
[0]
|
|
936
|
+
];
|
|
937
|
+
n0_registry.registerError(InvalidResourcePolicyException$, InvalidResourcePolicyException);
|
|
938
|
+
var InvalidTokenException$ = [-3, n0, _ITE,
|
|
939
|
+
{ [_e]: _c },
|
|
940
|
+
[_M],
|
|
941
|
+
[0]
|
|
942
|
+
];
|
|
943
|
+
n0_registry.registerError(InvalidTokenException$, InvalidTokenException);
|
|
944
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
945
|
+
{ [_e]: _c },
|
|
946
|
+
[_M],
|
|
947
|
+
[0]
|
|
948
|
+
];
|
|
949
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
950
|
+
var LogDestinationPermissionException$ = [-3, n0, _LDPE,
|
|
951
|
+
{ [_e]: _c },
|
|
952
|
+
[_M],
|
|
953
|
+
[0]
|
|
954
|
+
];
|
|
955
|
+
n0_registry.registerError(LogDestinationPermissionException$, LogDestinationPermissionException);
|
|
956
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
957
|
+
{ [_e]: _c },
|
|
958
|
+
[_M],
|
|
959
|
+
[0]
|
|
960
|
+
];
|
|
961
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
962
|
+
var ResourceOwnerCheckException$ = [-3, n0, _ROCE,
|
|
963
|
+
{ [_e]: _c },
|
|
964
|
+
[_M],
|
|
965
|
+
[0]
|
|
966
|
+
];
|
|
967
|
+
n0_registry.registerError(ResourceOwnerCheckException$, ResourceOwnerCheckException);
|
|
968
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
969
|
+
{ [_e]: _c },
|
|
970
|
+
[_M],
|
|
971
|
+
[0]
|
|
972
|
+
];
|
|
973
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
974
|
+
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
975
|
+
{ [_e]: _c },
|
|
976
|
+
[_M],
|
|
977
|
+
[0]
|
|
978
|
+
];
|
|
979
|
+
n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
980
|
+
const errorTypeRegistries = [
|
|
981
|
+
_s_registry,
|
|
982
|
+
n0_registry,
|
|
983
|
+
];
|
|
984
|
+
var AcceptNetworkFirewallTransitGatewayAttachmentRequest$ = [3, n0, _ANFTGAR,
|
|
985
|
+
0,
|
|
986
|
+
[_TGAI],
|
|
987
|
+
[0], 1
|
|
988
|
+
];
|
|
989
|
+
var AcceptNetworkFirewallTransitGatewayAttachmentResponse$ = [3, n0, _ANFTGARc,
|
|
990
|
+
0,
|
|
991
|
+
[_TGAI, _TGAS],
|
|
992
|
+
[0, 0], 2
|
|
993
|
+
];
|
|
994
|
+
var ActionDefinition$ = [3, n0, _AD,
|
|
995
|
+
0,
|
|
996
|
+
[_PMA],
|
|
997
|
+
[() => PublishMetricAction$]
|
|
998
|
+
];
|
|
999
|
+
var Address$ = [3, n0, _A,
|
|
1000
|
+
0,
|
|
1001
|
+
[_ADd],
|
|
1002
|
+
[0], 1
|
|
1003
|
+
];
|
|
1004
|
+
var AnalysisReport$ = [3, n0, _AR,
|
|
1005
|
+
0,
|
|
1006
|
+
[_ARI, _AT, _RT, _S],
|
|
1007
|
+
[0, 0, 4, 0]
|
|
1008
|
+
];
|
|
1009
|
+
var AnalysisResult$ = [3, n0, _ARn,
|
|
1010
|
+
0,
|
|
1011
|
+
[_IRI, _IT, _ADn],
|
|
1012
|
+
[64 | 0, 0, 0]
|
|
1013
|
+
];
|
|
1014
|
+
var AnalysisTypeReportResult$ = [3, n0, _ATRR,
|
|
1015
|
+
0,
|
|
1016
|
+
[_P, _FA, _LA, _D, _H, _US],
|
|
1017
|
+
[0, 4, 4, 0, () => Hits$, () => UniqueSources$]
|
|
1018
|
+
];
|
|
1019
|
+
var AssociateAvailabilityZonesRequest$ = [3, n0, _AAZR,
|
|
1020
|
+
0,
|
|
1021
|
+
[_AZM, _UT, _FAi, _FN],
|
|
1022
|
+
[() => AvailabilityZoneMappings, 0, 0, 0], 1
|
|
1023
|
+
];
|
|
1024
|
+
var AssociateAvailabilityZonesResponse$ = [3, n0, _AAZRs,
|
|
1025
|
+
0,
|
|
1026
|
+
[_FAi, _FN, _AZM, _UT],
|
|
1027
|
+
[0, 0, () => AvailabilityZoneMappings, 0]
|
|
1028
|
+
];
|
|
1029
|
+
var AssociateFirewallPolicyRequest$ = [3, n0, _AFPR,
|
|
1030
|
+
0,
|
|
1031
|
+
[_FPA, _UT, _FAi, _FN],
|
|
1032
|
+
[0, 0, 0, 0], 1
|
|
1033
|
+
];
|
|
1034
|
+
var AssociateFirewallPolicyResponse$ = [3, n0, _AFPRs,
|
|
1035
|
+
0,
|
|
1036
|
+
[_FAi, _FN, _FPA, _UT],
|
|
1037
|
+
[0, 0, 0, 0]
|
|
1038
|
+
];
|
|
1039
|
+
var AssociateSubnetsRequest$ = [3, n0, _ASR,
|
|
1040
|
+
0,
|
|
1041
|
+
[_SM, _UT, _FAi, _FN],
|
|
1042
|
+
[() => SubnetMappings, 0, 0, 0], 1
|
|
1043
|
+
];
|
|
1044
|
+
var AssociateSubnetsResponse$ = [3, n0, _ASRs,
|
|
1045
|
+
0,
|
|
1046
|
+
[_FAi, _FN, _SM, _UT],
|
|
1047
|
+
[0, 0, () => SubnetMappings, 0]
|
|
1048
|
+
];
|
|
1049
|
+
var Attachment$ = [3, n0, _At,
|
|
1050
|
+
0,
|
|
1051
|
+
[_SI, _EI, _S, _SMt],
|
|
1052
|
+
[0, 0, 0, 0]
|
|
1053
|
+
];
|
|
1054
|
+
var AttachRuleGroupsToProxyConfigurationRequest$ = [3, n0, _ARGTPCR,
|
|
1055
|
+
0,
|
|
1056
|
+
[_RG, _UT, _PCN, _PCA],
|
|
1057
|
+
[() => ProxyRuleGroupAttachmentList, 0, 0, 0], 2
|
|
1058
|
+
];
|
|
1059
|
+
var AttachRuleGroupsToProxyConfigurationResponse$ = [3, n0, _ARGTPCRt,
|
|
1060
|
+
0,
|
|
1061
|
+
[_PC, _UT],
|
|
1062
|
+
[() => ProxyConfiguration$, 0]
|
|
1063
|
+
];
|
|
1064
|
+
var AvailabilityZoneMapping$ = [3, n0, _AZMv,
|
|
1065
|
+
0,
|
|
1066
|
+
[_AZ],
|
|
1067
|
+
[0], 1
|
|
1068
|
+
];
|
|
1069
|
+
var AvailabilityZoneMetadata$ = [3, n0, _AZMva,
|
|
1070
|
+
0,
|
|
1071
|
+
[_IPAT],
|
|
1072
|
+
[0]
|
|
1073
|
+
];
|
|
1074
|
+
var AZSyncState$ = [3, n0, _AZSS,
|
|
1075
|
+
0,
|
|
1076
|
+
[_At],
|
|
1077
|
+
[() => Attachment$]
|
|
1078
|
+
];
|
|
1079
|
+
var CapacityUsageSummary$ = [3, n0, _CUS,
|
|
1080
|
+
0,
|
|
1081
|
+
[_CIDR],
|
|
1082
|
+
[() => CIDRSummary$]
|
|
1083
|
+
];
|
|
1084
|
+
var CheckCertificateRevocationStatusActions$ = [3, n0, _CCRSA,
|
|
1085
|
+
0,
|
|
1086
|
+
[_RSA, _USA],
|
|
1087
|
+
[0, 0]
|
|
1088
|
+
];
|
|
1089
|
+
var CIDRSummary$ = [3, n0, _CIDRS,
|
|
1090
|
+
0,
|
|
1091
|
+
[_ACIDRC, _UCIDRC, _IPSR],
|
|
1092
|
+
[1, 1, () => IPSetMetadataMap]
|
|
1093
|
+
];
|
|
1094
|
+
var CreateFirewallPolicyRequest$ = [3, n0, _CFPR,
|
|
1095
|
+
0,
|
|
1096
|
+
[_FPN, _FP, _De, _T, _DR, _EC],
|
|
1097
|
+
[0, () => FirewallPolicy$, 0, () => TagList, 2, () => EncryptionConfiguration$], 2
|
|
1098
|
+
];
|
|
1099
|
+
var CreateFirewallPolicyResponse$ = [3, n0, _CFPRr,
|
|
1100
|
+
0,
|
|
1101
|
+
[_UT, _FPR],
|
|
1102
|
+
[0, () => FirewallPolicyResponse$], 2
|
|
1103
|
+
];
|
|
1104
|
+
var CreateFirewallRequest$ = [3, n0, _CFR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_FN, _FPA, _VI, _SM, _DP, _SCP, _FPCP, _De, _T, _EC, _EAT, _TGI, _AZM, _AZCP],
|
|
1107
|
+
[0, 0, 0, () => SubnetMappings, 2, 2, 2, 0, () => TagList, () => EncryptionConfiguration$, 64 | 0, 0, () => AvailabilityZoneMappings, 2], 2
|
|
1108
|
+
];
|
|
1109
|
+
var CreateFirewallResponse$ = [3, n0, _CFRr,
|
|
1110
|
+
0,
|
|
1111
|
+
[_F, _FS],
|
|
1112
|
+
[() => Firewall$, () => FirewallStatus$]
|
|
1113
|
+
];
|
|
1114
|
+
var CreateProxyConfigurationRequest$ = [3, n0, _CPCR,
|
|
1115
|
+
0,
|
|
1116
|
+
[_PCN, _DRPA, _De, _RGN, _RGA, _T],
|
|
1117
|
+
[0, () => ProxyConfigDefaultRulePhaseActionsRequest$, 0, 64 | 0, 64 | 0, () => TagList], 2
|
|
1118
|
+
];
|
|
1119
|
+
var CreateProxyConfigurationResponse$ = [3, n0, _CPCRr,
|
|
1120
|
+
0,
|
|
1121
|
+
[_PC, _UT],
|
|
1122
|
+
[() => ProxyConfiguration$, 0]
|
|
1123
|
+
];
|
|
1124
|
+
var CreateProxyRequest$ = [3, n0, _CPR,
|
|
1125
|
+
0,
|
|
1126
|
+
[_PN, _NGI, _TIP, _PCN, _PCA, _LP, _T],
|
|
1127
|
+
[0, 0, () => TlsInterceptPropertiesRequest$, 0, 0, () => ListenerPropertiesRequest, () => TagList], 3
|
|
1128
|
+
];
|
|
1129
|
+
var CreateProxyResponse$ = [3, n0, _CPRr,
|
|
1130
|
+
0,
|
|
1131
|
+
[_Pr, _UT],
|
|
1132
|
+
[() => Proxy$, 0]
|
|
1133
|
+
];
|
|
1134
|
+
var CreateProxyRule$ = [3, n0, _CPRre,
|
|
1135
|
+
0,
|
|
1136
|
+
[_PRN, _De, _Ac, _C, _IP],
|
|
1137
|
+
[0, 0, 0, () => ProxyRuleConditionList, 1]
|
|
1138
|
+
];
|
|
1139
|
+
var CreateProxyRuleGroupRequest$ = [3, n0, _CPRGR,
|
|
1140
|
+
0,
|
|
1141
|
+
[_PRGN, _De, _R, _T],
|
|
1142
|
+
[0, 0, () => ProxyRulesByRequestPhase$, () => TagList], 1
|
|
1143
|
+
];
|
|
1144
|
+
var CreateProxyRuleGroupResponse$ = [3, n0, _CPRGRr,
|
|
1145
|
+
0,
|
|
1146
|
+
[_PRG, _UT],
|
|
1147
|
+
[() => ProxyRuleGroup$, 0]
|
|
1148
|
+
];
|
|
1149
|
+
var CreateProxyRulesByRequestPhase$ = [3, n0, _CPRBRP,
|
|
1150
|
+
0,
|
|
1151
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1152
|
+
[() => CreateProxyRuleList, () => CreateProxyRuleList, () => CreateProxyRuleList]
|
|
1153
|
+
];
|
|
1154
|
+
var CreateProxyRulesRequest$ = [3, n0, _CPRR,
|
|
1155
|
+
0,
|
|
1156
|
+
[_R, _PRGA, _PRGN],
|
|
1157
|
+
[() => CreateProxyRulesByRequestPhase$, 0, 0], 1
|
|
1158
|
+
];
|
|
1159
|
+
var CreateProxyRulesResponse$ = [3, n0, _CPRRr,
|
|
1160
|
+
0,
|
|
1161
|
+
[_PRG, _UT],
|
|
1162
|
+
[() => ProxyRuleGroup$, 0]
|
|
1163
|
+
];
|
|
1164
|
+
var CreateRuleGroupRequest$ = [3, n0, _CRGR,
|
|
1165
|
+
0,
|
|
1166
|
+
[_RGNu, _Ty, _Ca, _RGu, _R, _De, _T, _DR, _EC, _SMo, _ARG, _SC],
|
|
1167
|
+
[0, 0, 1, () => RuleGroup$, 0, 0, () => TagList, 2, () => EncryptionConfiguration$, () => SourceMetadata$, 2, () => SummaryConfiguration$], 3
|
|
1168
|
+
];
|
|
1169
|
+
var CreateRuleGroupResponse$ = [3, n0, _CRGRr,
|
|
1170
|
+
0,
|
|
1171
|
+
[_UT, _RGR],
|
|
1172
|
+
[0, () => RuleGroupResponse$], 2
|
|
1173
|
+
];
|
|
1174
|
+
var CreateTLSInspectionConfigurationRequest$ = [3, n0, _CTLSICR,
|
|
1175
|
+
0,
|
|
1176
|
+
[_TLSICN, _TLSIC, _De, _T, _EC],
|
|
1177
|
+
[0, () => TLSInspectionConfiguration$, 0, () => TagList, () => EncryptionConfiguration$], 2
|
|
1178
|
+
];
|
|
1179
|
+
var CreateTLSInspectionConfigurationResponse$ = [3, n0, _CTLSICRr,
|
|
1180
|
+
0,
|
|
1181
|
+
[_UT, _TLSICR],
|
|
1182
|
+
[0, () => TLSInspectionConfigurationResponse$], 2
|
|
1183
|
+
];
|
|
1184
|
+
var CreateVpcEndpointAssociationRequest$ = [3, n0, _CVEAR,
|
|
1185
|
+
0,
|
|
1186
|
+
[_FAi, _VI, _SMu, _De, _T],
|
|
1187
|
+
[0, 0, () => SubnetMapping$, 0, () => TagList], 3
|
|
1188
|
+
];
|
|
1189
|
+
var CreateVpcEndpointAssociationResponse$ = [3, n0, _CVEARr,
|
|
1190
|
+
0,
|
|
1191
|
+
[_VEA, _VEAS],
|
|
1192
|
+
[() => VpcEndpointAssociation$, () => VpcEndpointAssociationStatus$]
|
|
1193
|
+
];
|
|
1194
|
+
var CustomAction$ = [3, n0, _CA,
|
|
1195
|
+
0,
|
|
1196
|
+
[_AN, _AD],
|
|
1197
|
+
[0, () => ActionDefinition$], 2
|
|
1198
|
+
];
|
|
1199
|
+
var DeleteFirewallPolicyRequest$ = [3, n0, _DFPR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_FPN, _FPA],
|
|
1202
|
+
[0, 0]
|
|
1203
|
+
];
|
|
1204
|
+
var DeleteFirewallPolicyResponse$ = [3, n0, _DFPRe,
|
|
1205
|
+
0,
|
|
1206
|
+
[_FPR],
|
|
1207
|
+
[() => FirewallPolicyResponse$], 1
|
|
1208
|
+
];
|
|
1209
|
+
var DeleteFirewallRequest$ = [3, n0, _DFR,
|
|
1210
|
+
0,
|
|
1211
|
+
[_FN, _FAi],
|
|
1212
|
+
[0, 0]
|
|
1213
|
+
];
|
|
1214
|
+
var DeleteFirewallResponse$ = [3, n0, _DFRe,
|
|
1215
|
+
0,
|
|
1216
|
+
[_F, _FS],
|
|
1217
|
+
[() => Firewall$, () => FirewallStatus$]
|
|
1218
|
+
];
|
|
1219
|
+
var DeleteNetworkFirewallTransitGatewayAttachmentRequest$ = [3, n0, _DNFTGAR,
|
|
1220
|
+
0,
|
|
1221
|
+
[_TGAI],
|
|
1222
|
+
[0], 1
|
|
1223
|
+
];
|
|
1224
|
+
var DeleteNetworkFirewallTransitGatewayAttachmentResponse$ = [3, n0, _DNFTGARe,
|
|
1225
|
+
0,
|
|
1226
|
+
[_TGAI, _TGAS],
|
|
1227
|
+
[0, 0], 2
|
|
1228
|
+
];
|
|
1229
|
+
var DeleteProxyConfigurationRequest$ = [3, n0, _DPCR,
|
|
1230
|
+
0,
|
|
1231
|
+
[_PCN, _PCA],
|
|
1232
|
+
[0, 0]
|
|
1233
|
+
];
|
|
1234
|
+
var DeleteProxyConfigurationResponse$ = [3, n0, _DPCRe,
|
|
1235
|
+
0,
|
|
1236
|
+
[_PCN, _PCA],
|
|
1237
|
+
[0, 0]
|
|
1238
|
+
];
|
|
1239
|
+
var DeleteProxyRequest$ = [3, n0, _DPR,
|
|
1240
|
+
0,
|
|
1241
|
+
[_NGI, _PN, _PA],
|
|
1242
|
+
[0, 0, 0], 1
|
|
1243
|
+
];
|
|
1244
|
+
var DeleteProxyResponse$ = [3, n0, _DPRe,
|
|
1245
|
+
0,
|
|
1246
|
+
[_NGI, _PN, _PA],
|
|
1247
|
+
[0, 0, 0]
|
|
1248
|
+
];
|
|
1249
|
+
var DeleteProxyRuleGroupRequest$ = [3, n0, _DPRGR,
|
|
1250
|
+
0,
|
|
1251
|
+
[_PRGN, _PRGA],
|
|
1252
|
+
[0, 0]
|
|
1253
|
+
];
|
|
1254
|
+
var DeleteProxyRuleGroupResponse$ = [3, n0, _DPRGRe,
|
|
1255
|
+
0,
|
|
1256
|
+
[_PRGN, _PRGA],
|
|
1257
|
+
[0, 0]
|
|
1258
|
+
];
|
|
1259
|
+
var DeleteProxyRulesRequest$ = [3, n0, _DPRR,
|
|
1260
|
+
0,
|
|
1261
|
+
[_R, _PRGA, _PRGN],
|
|
1262
|
+
[64 | 0, 0, 0], 1
|
|
1263
|
+
];
|
|
1264
|
+
var DeleteProxyRulesResponse$ = [3, n0, _DPRRe,
|
|
1265
|
+
0,
|
|
1266
|
+
[_PRG],
|
|
1267
|
+
[() => ProxyRuleGroup$]
|
|
1268
|
+
];
|
|
1269
|
+
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
1270
|
+
0,
|
|
1271
|
+
[_RA],
|
|
1272
|
+
[0], 1
|
|
1273
|
+
];
|
|
1274
|
+
var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
|
|
1275
|
+
0,
|
|
1276
|
+
[],
|
|
1277
|
+
[]
|
|
1278
|
+
];
|
|
1279
|
+
var DeleteRuleGroupRequest$ = [3, n0, _DRGR,
|
|
1280
|
+
0,
|
|
1281
|
+
[_RGNu, _RGAu, _Ty],
|
|
1282
|
+
[0, 0, 0]
|
|
1283
|
+
];
|
|
1284
|
+
var DeleteRuleGroupResponse$ = [3, n0, _DRGRe,
|
|
1285
|
+
0,
|
|
1286
|
+
[_RGR],
|
|
1287
|
+
[() => RuleGroupResponse$], 1
|
|
1288
|
+
];
|
|
1289
|
+
var DeleteTLSInspectionConfigurationRequest$ = [3, n0, _DTLSICR,
|
|
1290
|
+
0,
|
|
1291
|
+
[_TLSICA, _TLSICN],
|
|
1292
|
+
[0, 0]
|
|
1293
|
+
];
|
|
1294
|
+
var DeleteTLSInspectionConfigurationResponse$ = [3, n0, _DTLSICRe,
|
|
1295
|
+
0,
|
|
1296
|
+
[_TLSICR],
|
|
1297
|
+
[() => TLSInspectionConfigurationResponse$], 1
|
|
1298
|
+
];
|
|
1299
|
+
var DeleteVpcEndpointAssociationRequest$ = [3, n0, _DVEAR,
|
|
1300
|
+
0,
|
|
1301
|
+
[_VEAA],
|
|
1302
|
+
[0], 1
|
|
1303
|
+
];
|
|
1304
|
+
var DeleteVpcEndpointAssociationResponse$ = [3, n0, _DVEARe,
|
|
1305
|
+
0,
|
|
1306
|
+
[_VEA, _VEAS],
|
|
1307
|
+
[() => VpcEndpointAssociation$, () => VpcEndpointAssociationStatus$]
|
|
1308
|
+
];
|
|
1309
|
+
var DescribeFirewallMetadataRequest$ = [3, n0, _DFMR,
|
|
1310
|
+
0,
|
|
1311
|
+
[_FAi],
|
|
1312
|
+
[0]
|
|
1313
|
+
];
|
|
1314
|
+
var DescribeFirewallMetadataResponse$ = [3, n0, _DFMRe,
|
|
1315
|
+
0,
|
|
1316
|
+
[_FAi, _FPA, _De, _S, _SAZ, _TGAI],
|
|
1317
|
+
[0, 0, 0, 0, () => SupportedAvailabilityZones, 0]
|
|
1318
|
+
];
|
|
1319
|
+
var DescribeFirewallPolicyRequest$ = [3, n0, _DFPRes,
|
|
1320
|
+
0,
|
|
1321
|
+
[_FPN, _FPA],
|
|
1322
|
+
[0, 0]
|
|
1323
|
+
];
|
|
1324
|
+
var DescribeFirewallPolicyResponse$ = [3, n0, _DFPResc,
|
|
1325
|
+
0,
|
|
1326
|
+
[_UT, _FPR, _FP],
|
|
1327
|
+
[0, () => FirewallPolicyResponse$, () => FirewallPolicy$], 2
|
|
1328
|
+
];
|
|
1329
|
+
var DescribeFirewallRequest$ = [3, n0, _DFRes,
|
|
1330
|
+
0,
|
|
1331
|
+
[_FN, _FAi],
|
|
1332
|
+
[0, 0]
|
|
1333
|
+
];
|
|
1334
|
+
var DescribeFirewallResponse$ = [3, n0, _DFResc,
|
|
1335
|
+
0,
|
|
1336
|
+
[_UT, _F, _FS],
|
|
1337
|
+
[0, () => Firewall$, () => FirewallStatus$]
|
|
1338
|
+
];
|
|
1339
|
+
var DescribeFlowOperationRequest$ = [3, n0, _DFOR,
|
|
1340
|
+
0,
|
|
1341
|
+
[_FAi, _FOI, _AZ, _VEAA, _VEI],
|
|
1342
|
+
[0, 0, 0, 0, 0], 2
|
|
1343
|
+
];
|
|
1344
|
+
var DescribeFlowOperationResponse$ = [3, n0, _DFORe,
|
|
1345
|
+
0,
|
|
1346
|
+
[_FAi, _AZ, _VEAA, _VEI, _FOI, _FOT, _FOS, _SMt, _FRT, _FO],
|
|
1347
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4, () => FlowOperation$]
|
|
1348
|
+
];
|
|
1349
|
+
var DescribeLoggingConfigurationRequest$ = [3, n0, _DLCR,
|
|
1350
|
+
0,
|
|
1351
|
+
[_FAi, _FN],
|
|
1352
|
+
[0, 0]
|
|
1353
|
+
];
|
|
1354
|
+
var DescribeLoggingConfigurationResponse$ = [3, n0, _DLCRe,
|
|
1355
|
+
0,
|
|
1356
|
+
[_FAi, _LC, _EMD],
|
|
1357
|
+
[0, () => LoggingConfiguration$, 2]
|
|
1358
|
+
];
|
|
1359
|
+
var DescribeProxyConfigurationRequest$ = [3, n0, _DPCRes,
|
|
1360
|
+
0,
|
|
1361
|
+
[_PCN, _PCA],
|
|
1362
|
+
[0, 0]
|
|
1363
|
+
];
|
|
1364
|
+
var DescribeProxyConfigurationResponse$ = [3, n0, _DPCResc,
|
|
1365
|
+
0,
|
|
1366
|
+
[_PC, _UT],
|
|
1367
|
+
[() => ProxyConfiguration$, 0]
|
|
1368
|
+
];
|
|
1369
|
+
var DescribeProxyRequest$ = [3, n0, _DPRes,
|
|
1370
|
+
0,
|
|
1371
|
+
[_PN, _PA],
|
|
1372
|
+
[0, 0]
|
|
1373
|
+
];
|
|
1374
|
+
var DescribeProxyResource$ = [3, n0, _DPResc,
|
|
1375
|
+
0,
|
|
1376
|
+
[_PN, _PA, _PCN, _PCA, _NGI, _PS, _PMS, _LP, _TIP, _VESN, _PDNSN, _CT, _DT, _UTp, _FC, _FM, _T],
|
|
1377
|
+
[0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties$, 0, 0, 4, 4, 4, 0, 0, () => TagList]
|
|
1378
|
+
];
|
|
1379
|
+
var DescribeProxyResponse$ = [3, n0, _DPRescr,
|
|
1380
|
+
0,
|
|
1381
|
+
[_Pr, _UT],
|
|
1382
|
+
[() => DescribeProxyResource$, 0]
|
|
1383
|
+
];
|
|
1384
|
+
var DescribeProxyRuleGroupRequest$ = [3, n0, _DPRGRes,
|
|
1385
|
+
0,
|
|
1386
|
+
[_PRGN, _PRGA],
|
|
1387
|
+
[0, 0]
|
|
1388
|
+
];
|
|
1389
|
+
var DescribeProxyRuleGroupResponse$ = [3, n0, _DPRGResc,
|
|
1390
|
+
0,
|
|
1391
|
+
[_PRG, _UT],
|
|
1392
|
+
[() => ProxyRuleGroup$, 0]
|
|
1393
|
+
];
|
|
1394
|
+
var DescribeProxyRuleRequest$ = [3, n0, _DPRRes,
|
|
1395
|
+
0,
|
|
1396
|
+
[_PRN, _PRGN, _PRGA],
|
|
1397
|
+
[0, 0, 0], 1
|
|
1398
|
+
];
|
|
1399
|
+
var DescribeProxyRuleResponse$ = [3, n0, _DPRResc,
|
|
1400
|
+
0,
|
|
1401
|
+
[_PR, _UT],
|
|
1402
|
+
[() => ProxyRule$, 0]
|
|
1403
|
+
];
|
|
1404
|
+
var DescribeResourcePolicyRequest$ = [3, n0, _DRPRes,
|
|
1405
|
+
0,
|
|
1406
|
+
[_RA],
|
|
1407
|
+
[0], 1
|
|
1408
|
+
];
|
|
1409
|
+
var DescribeResourcePolicyResponse$ = [3, n0, _DRPResc,
|
|
1410
|
+
0,
|
|
1411
|
+
[_Po],
|
|
1412
|
+
[0]
|
|
1413
|
+
];
|
|
1414
|
+
var DescribeRuleGroupMetadataRequest$ = [3, n0, _DRGMR,
|
|
1415
|
+
0,
|
|
1416
|
+
[_RGNu, _RGAu, _Ty],
|
|
1417
|
+
[0, 0, 0]
|
|
1418
|
+
];
|
|
1419
|
+
var DescribeRuleGroupMetadataResponse$ = [3, n0, _DRGMRe,
|
|
1420
|
+
0,
|
|
1421
|
+
[_RGAu, _RGNu, _De, _Ty, _Ca, _SRO, _LMT, _VN, _PI, _LN],
|
|
1422
|
+
[0, 0, 0, 0, 1, () => StatefulRuleOptions$, 4, 0, 0, 0], 2
|
|
1423
|
+
];
|
|
1424
|
+
var DescribeRuleGroupRequest$ = [3, n0, _DRGRes,
|
|
1425
|
+
0,
|
|
1426
|
+
[_RGNu, _RGAu, _Ty, _ARG],
|
|
1427
|
+
[0, 0, 0, 2]
|
|
1428
|
+
];
|
|
1429
|
+
var DescribeRuleGroupResponse$ = [3, n0, _DRGResc,
|
|
1430
|
+
0,
|
|
1431
|
+
[_UT, _RGR, _RGu],
|
|
1432
|
+
[0, () => RuleGroupResponse$, () => RuleGroup$], 2
|
|
1433
|
+
];
|
|
1434
|
+
var DescribeRuleGroupSummaryRequest$ = [3, n0, _DRGSR,
|
|
1435
|
+
0,
|
|
1436
|
+
[_RGNu, _RGAu, _Ty],
|
|
1437
|
+
[0, 0, 0]
|
|
1438
|
+
];
|
|
1439
|
+
var DescribeRuleGroupSummaryResponse$ = [3, n0, _DRGSRe,
|
|
1440
|
+
0,
|
|
1441
|
+
[_RGNu, _De, _Su],
|
|
1442
|
+
[0, 0, () => Summary$], 1
|
|
1443
|
+
];
|
|
1444
|
+
var DescribeTLSInspectionConfigurationRequest$ = [3, n0, _DTLSICRes,
|
|
1445
|
+
0,
|
|
1446
|
+
[_TLSICA, _TLSICN],
|
|
1447
|
+
[0, 0]
|
|
1448
|
+
];
|
|
1449
|
+
var DescribeTLSInspectionConfigurationResponse$ = [3, n0, _DTLSICResc,
|
|
1450
|
+
0,
|
|
1451
|
+
[_UT, _TLSICR, _TLSIC],
|
|
1452
|
+
[0, () => TLSInspectionConfigurationResponse$, () => TLSInspectionConfiguration$], 2
|
|
1453
|
+
];
|
|
1454
|
+
var DescribeVpcEndpointAssociationRequest$ = [3, n0, _DVEARes,
|
|
1455
|
+
0,
|
|
1456
|
+
[_VEAA],
|
|
1457
|
+
[0], 1
|
|
1458
|
+
];
|
|
1459
|
+
var DescribeVpcEndpointAssociationResponse$ = [3, n0, _DVEAResc,
|
|
1460
|
+
0,
|
|
1461
|
+
[_VEA, _VEAS],
|
|
1462
|
+
[() => VpcEndpointAssociation$, () => VpcEndpointAssociationStatus$]
|
|
1463
|
+
];
|
|
1464
|
+
var DetachRuleGroupsFromProxyConfigurationRequest$ = [3, n0, _DRGFPCR,
|
|
1465
|
+
0,
|
|
1466
|
+
[_UT, _PCN, _PCA, _RGN, _RGA],
|
|
1467
|
+
[0, 0, 0, 64 | 0, 64 | 0], 1
|
|
1468
|
+
];
|
|
1469
|
+
var DetachRuleGroupsFromProxyConfigurationResponse$ = [3, n0, _DRGFPCRe,
|
|
1470
|
+
0,
|
|
1471
|
+
[_PC, _UT],
|
|
1472
|
+
[() => ProxyConfiguration$, 0]
|
|
1473
|
+
];
|
|
1474
|
+
var Dimension$ = [3, n0, _Di,
|
|
1475
|
+
0,
|
|
1476
|
+
[_V],
|
|
1477
|
+
[0], 1
|
|
1478
|
+
];
|
|
1479
|
+
var DisassociateAvailabilityZonesRequest$ = [3, n0, _DAZR,
|
|
1480
|
+
0,
|
|
1481
|
+
[_AZM, _UT, _FAi, _FN],
|
|
1482
|
+
[() => AvailabilityZoneMappings, 0, 0, 0], 1
|
|
1483
|
+
];
|
|
1484
|
+
var DisassociateAvailabilityZonesResponse$ = [3, n0, _DAZRi,
|
|
1485
|
+
0,
|
|
1486
|
+
[_FAi, _FN, _AZM, _UT],
|
|
1487
|
+
[0, 0, () => AvailabilityZoneMappings, 0]
|
|
1488
|
+
];
|
|
1489
|
+
var DisassociateSubnetsRequest$ = [3, n0, _DSR,
|
|
1490
|
+
0,
|
|
1491
|
+
[_SIu, _UT, _FAi, _FN],
|
|
1492
|
+
[64 | 0, 0, 0, 0], 1
|
|
1493
|
+
];
|
|
1494
|
+
var DisassociateSubnetsResponse$ = [3, n0, _DSRi,
|
|
1495
|
+
0,
|
|
1496
|
+
[_FAi, _FN, _SM, _UT],
|
|
1497
|
+
[0, 0, () => SubnetMappings, 0]
|
|
1498
|
+
];
|
|
1499
|
+
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
1500
|
+
0,
|
|
1501
|
+
[_Ty, _KI],
|
|
1502
|
+
[0, 0], 1
|
|
1503
|
+
];
|
|
1504
|
+
var Firewall$ = [3, n0, _F,
|
|
1505
|
+
0,
|
|
1506
|
+
[_FPA, _VI, _SM, _FI, _FN, _FAi, _DP, _SCP, _FPCP, _De, _T, _EC, _NOA, _EAT, _TGI, _TGOAI, _AZM, _AZCP],
|
|
1507
|
+
[0, 0, () => SubnetMappings, 0, 0, 0, 2, 2, 2, 0, () => TagList, () => EncryptionConfiguration$, 1, 64 | 0, 0, 0, () => AvailabilityZoneMappings, 2], 4
|
|
1508
|
+
];
|
|
1509
|
+
var FirewallMetadata$ = [3, n0, _FMi,
|
|
1510
|
+
0,
|
|
1511
|
+
[_FN, _FAi, _TGAI],
|
|
1512
|
+
[0, 0, 0]
|
|
1513
|
+
];
|
|
1514
|
+
var FirewallPolicy$ = [3, n0, _FP,
|
|
1515
|
+
0,
|
|
1516
|
+
[_SDA, _SFDA, _SRGR, _SCA, _SRGRt, _SDAt, _SEO, _TLSICA, _PV, _ETLSSH],
|
|
1517
|
+
[64 | 0, 64 | 0, () => StatelessRuleGroupReferences, () => CustomActions, () => StatefulRuleGroupReferences, 64 | 0, () => StatefulEngineOptions$, 0, () => PolicyVariables$, 2], 2
|
|
1518
|
+
];
|
|
1519
|
+
var FirewallPolicyMetadata$ = [3, n0, _FPM,
|
|
1520
|
+
0,
|
|
1521
|
+
[_N, _Ar],
|
|
1522
|
+
[0, 0]
|
|
1523
|
+
];
|
|
1524
|
+
var FirewallPolicyResponse$ = [3, n0, _FPR,
|
|
1525
|
+
0,
|
|
1526
|
+
[_FPN, _FPA, _FPI, _De, _FPS, _T, _CSRC, _CSRCo, _CSDC, _NOA, _EC, _LMT],
|
|
1527
|
+
[0, 0, 0, 0, 0, () => TagList, 1, 1, 1, 1, () => EncryptionConfiguration$, 4], 3
|
|
1528
|
+
];
|
|
1529
|
+
var FirewallStatus$ = [3, n0, _FS,
|
|
1530
|
+
0,
|
|
1531
|
+
[_S, _CSSS, _SS, _CUS, _TGASS],
|
|
1532
|
+
[0, 0, () => SyncStates, () => CapacityUsageSummary$, () => TransitGatewayAttachmentSyncState$], 2
|
|
1533
|
+
];
|
|
1534
|
+
var Flow$ = [3, n0, _Fl,
|
|
1535
|
+
0,
|
|
1536
|
+
[_SA, _DA, _SP, _DPe, _P, _Ag, _PCa, _BC],
|
|
1537
|
+
[() => Address$, () => Address$, 0, 0, 0, 1, 1, 1]
|
|
1538
|
+
];
|
|
1539
|
+
var FlowFilter$ = [3, n0, _FF,
|
|
1540
|
+
0,
|
|
1541
|
+
[_SA, _DA, _SP, _DPe, _Pro],
|
|
1542
|
+
[() => Address$, () => Address$, 0, 0, 64 | 0]
|
|
1543
|
+
];
|
|
1544
|
+
var FlowOperation$ = [3, n0, _FO,
|
|
1545
|
+
0,
|
|
1546
|
+
[_MFAIS, _FFl],
|
|
1547
|
+
[1, () => FlowFilters]
|
|
1548
|
+
];
|
|
1549
|
+
var FlowOperationMetadata$ = [3, n0, _FOM,
|
|
1550
|
+
0,
|
|
1551
|
+
[_FOI, _FOT, _FRT, _FOS],
|
|
1552
|
+
[0, 0, 4, 0]
|
|
1553
|
+
];
|
|
1554
|
+
var FlowTimeouts$ = [3, n0, _FT,
|
|
1555
|
+
0,
|
|
1556
|
+
[_TITS],
|
|
1557
|
+
[1]
|
|
1558
|
+
];
|
|
1559
|
+
var GetAnalysisReportResultsRequest$ = [3, n0, _GARRR,
|
|
1560
|
+
0,
|
|
1561
|
+
[_ARI, _FN, _FAi, _NT, _MR],
|
|
1562
|
+
[0, 0, 0, 0, 1], 1
|
|
1563
|
+
];
|
|
1564
|
+
var GetAnalysisReportResultsResponse$ = [3, n0, _GARRRe,
|
|
1565
|
+
0,
|
|
1566
|
+
[_S, _ST, _ET, _RT, _AT, _NT, _ARR],
|
|
1567
|
+
[0, 4, 4, 4, 0, 0, () => AnalysisReportResults]
|
|
1568
|
+
];
|
|
1569
|
+
var Header$ = [3, n0, _He,
|
|
1570
|
+
0,
|
|
1571
|
+
[_P, _So, _SP, _Dir, _Des, _DPe],
|
|
1572
|
+
[0, 0, 0, 0, 0, 0], 6
|
|
1573
|
+
];
|
|
1574
|
+
var Hits$ = [3, n0, _H,
|
|
1575
|
+
0,
|
|
1576
|
+
[_Co],
|
|
1577
|
+
[1]
|
|
1578
|
+
];
|
|
1579
|
+
var IPSet$ = [3, n0, _IPS,
|
|
1580
|
+
0,
|
|
1581
|
+
[_Def],
|
|
1582
|
+
[64 | 0], 1
|
|
1583
|
+
];
|
|
1584
|
+
var IPSetMetadata$ = [3, n0, _IPSM,
|
|
1585
|
+
0,
|
|
1586
|
+
[_RCIDRC],
|
|
1587
|
+
[1]
|
|
1588
|
+
];
|
|
1589
|
+
var IPSetReference$ = [3, n0, _IPSRe,
|
|
1590
|
+
0,
|
|
1591
|
+
[_RAe],
|
|
1592
|
+
[0]
|
|
1593
|
+
];
|
|
1594
|
+
var ListAnalysisReportsRequest$ = [3, n0, _LARR,
|
|
1595
|
+
0,
|
|
1596
|
+
[_FN, _FAi, _NT, _MR],
|
|
1597
|
+
[0, 0, 0, 1]
|
|
1598
|
+
];
|
|
1599
|
+
var ListAnalysisReportsResponse$ = [3, n0, _LARRi,
|
|
1600
|
+
0,
|
|
1601
|
+
[_ARna, _NT],
|
|
1602
|
+
[() => AnalysisReports, 0]
|
|
1603
|
+
];
|
|
1604
|
+
var ListenerProperty$ = [3, n0, _LPi,
|
|
1605
|
+
0,
|
|
1606
|
+
[_Por, _Ty],
|
|
1607
|
+
[1, 0]
|
|
1608
|
+
];
|
|
1609
|
+
var ListenerPropertyRequest$ = [3, n0, _LPR,
|
|
1610
|
+
0,
|
|
1611
|
+
[_Por, _Ty],
|
|
1612
|
+
[1, 0], 2
|
|
1613
|
+
];
|
|
1614
|
+
var ListFirewallPoliciesRequest$ = [3, n0, _LFPR,
|
|
1615
|
+
0,
|
|
1616
|
+
[_NT, _MR],
|
|
1617
|
+
[0, 1]
|
|
1618
|
+
];
|
|
1619
|
+
var ListFirewallPoliciesResponse$ = [3, n0, _LFPRi,
|
|
1620
|
+
0,
|
|
1621
|
+
[_NT, _FPi],
|
|
1622
|
+
[0, () => FirewallPolicies]
|
|
1623
|
+
];
|
|
1624
|
+
var ListFirewallsRequest$ = [3, n0, _LFR,
|
|
1625
|
+
0,
|
|
1626
|
+
[_NT, _VIp, _MR],
|
|
1627
|
+
[0, 64 | 0, 1]
|
|
1628
|
+
];
|
|
1629
|
+
var ListFirewallsResponse$ = [3, n0, _LFRi,
|
|
1630
|
+
0,
|
|
1631
|
+
[_NT, _Fi],
|
|
1632
|
+
[0, () => Firewalls]
|
|
1633
|
+
];
|
|
1634
|
+
var ListFlowOperationResultsRequest$ = [3, n0, _LFORR,
|
|
1635
|
+
0,
|
|
1636
|
+
[_FAi, _FOI, _NT, _MR, _AZ, _VEI, _VEAA],
|
|
1637
|
+
[0, 0, 0, 1, 0, 0, 0], 2
|
|
1638
|
+
];
|
|
1639
|
+
var ListFlowOperationResultsResponse$ = [3, n0, _LFORRi,
|
|
1640
|
+
0,
|
|
1641
|
+
[_FAi, _AZ, _VEAA, _VEI, _FOI, _FOS, _SMt, _FRT, _Flo, _NT],
|
|
1642
|
+
[0, 0, 0, 0, 0, 0, 0, 4, () => Flows, 0]
|
|
1643
|
+
];
|
|
1644
|
+
var ListFlowOperationsRequest$ = [3, n0, _LFOR,
|
|
1645
|
+
0,
|
|
1646
|
+
[_FAi, _AZ, _VEAA, _VEI, _FOT, _NT, _MR],
|
|
1647
|
+
[0, 0, 0, 0, 0, 0, 1], 1
|
|
1648
|
+
];
|
|
1649
|
+
var ListFlowOperationsResponse$ = [3, n0, _LFORi,
|
|
1650
|
+
0,
|
|
1651
|
+
[_FOl, _NT],
|
|
1652
|
+
[() => FlowOperations, 0]
|
|
1653
|
+
];
|
|
1654
|
+
var ListProxiesRequest$ = [3, n0, _LPRi,
|
|
1655
|
+
0,
|
|
1656
|
+
[_NT, _MR],
|
|
1657
|
+
[0, 1]
|
|
1658
|
+
];
|
|
1659
|
+
var ListProxiesResponse$ = [3, n0, _LPRis,
|
|
1660
|
+
0,
|
|
1661
|
+
[_Prox, _NT],
|
|
1662
|
+
[() => Proxies, 0]
|
|
1663
|
+
];
|
|
1664
|
+
var ListProxyConfigurationsRequest$ = [3, n0, _LPCR,
|
|
1665
|
+
0,
|
|
1666
|
+
[_NT, _MR],
|
|
1667
|
+
[0, 1]
|
|
1668
|
+
];
|
|
1669
|
+
var ListProxyConfigurationsResponse$ = [3, n0, _LPCRi,
|
|
1670
|
+
0,
|
|
1671
|
+
[_PCr, _NT],
|
|
1672
|
+
[() => ProxyConfigurations, 0]
|
|
1673
|
+
];
|
|
1674
|
+
var ListProxyRuleGroupsRequest$ = [3, n0, _LPRGR,
|
|
1675
|
+
0,
|
|
1676
|
+
[_NT, _MR],
|
|
1677
|
+
[0, 1]
|
|
1678
|
+
];
|
|
1679
|
+
var ListProxyRuleGroupsResponse$ = [3, n0, _LPRGRi,
|
|
1680
|
+
0,
|
|
1681
|
+
[_PRGr, _NT],
|
|
1682
|
+
[() => ProxyRuleGroups, 0]
|
|
1683
|
+
];
|
|
1684
|
+
var ListRuleGroupsRequest$ = [3, n0, _LRGR,
|
|
1685
|
+
0,
|
|
1686
|
+
[_NT, _MR, _Sc, _MT, _SSu, _Ty],
|
|
1687
|
+
[0, 1, 0, 0, 0, 0]
|
|
1688
|
+
];
|
|
1689
|
+
var ListRuleGroupsResponse$ = [3, n0, _LRGRi,
|
|
1690
|
+
0,
|
|
1691
|
+
[_NT, _RG],
|
|
1692
|
+
[0, () => RuleGroups]
|
|
1693
|
+
];
|
|
1694
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1695
|
+
0,
|
|
1696
|
+
[_RA, _NT, _MR],
|
|
1697
|
+
[0, 0, 1], 1
|
|
1698
|
+
];
|
|
1699
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1700
|
+
0,
|
|
1701
|
+
[_NT, _T],
|
|
1702
|
+
[0, () => TagList]
|
|
1703
|
+
];
|
|
1704
|
+
var ListTLSInspectionConfigurationsRequest$ = [3, n0, _LTLSICR,
|
|
1705
|
+
0,
|
|
1706
|
+
[_NT, _MR],
|
|
1707
|
+
[0, 1]
|
|
1708
|
+
];
|
|
1709
|
+
var ListTLSInspectionConfigurationsResponse$ = [3, n0, _LTLSICRi,
|
|
1710
|
+
0,
|
|
1711
|
+
[_NT, _TLSICn],
|
|
1712
|
+
[0, () => TLSInspectionConfigurations]
|
|
1713
|
+
];
|
|
1714
|
+
var ListVpcEndpointAssociationsRequest$ = [3, n0, _LVEAR,
|
|
1715
|
+
0,
|
|
1716
|
+
[_NT, _MR, _FAi],
|
|
1717
|
+
[0, 1, 0]
|
|
1718
|
+
];
|
|
1719
|
+
var ListVpcEndpointAssociationsResponse$ = [3, n0, _LVEARi,
|
|
1720
|
+
0,
|
|
1721
|
+
[_NT, _VEAp],
|
|
1722
|
+
[0, () => VpcEndpointAssociations]
|
|
1723
|
+
];
|
|
1724
|
+
var LogDestinationConfig$ = [3, n0, _LDC,
|
|
1725
|
+
0,
|
|
1726
|
+
[_LT, _LDT, _LD],
|
|
1727
|
+
[0, 0, 128 | 0], 3
|
|
1728
|
+
];
|
|
1729
|
+
var LoggingConfiguration$ = [3, n0, _LC,
|
|
1730
|
+
0,
|
|
1731
|
+
[_LDCo],
|
|
1732
|
+
[() => LogDestinationConfigs], 1
|
|
1733
|
+
];
|
|
1734
|
+
var MatchAttributes$ = [3, n0, _MA,
|
|
1735
|
+
0,
|
|
1736
|
+
[_Sou, _Dest, _SPo, _DPes, _Pro, _TCPF],
|
|
1737
|
+
[() => Addresses, () => Addresses, () => PortRanges, () => PortRanges, 64 | 1, () => TCPFlags]
|
|
1738
|
+
];
|
|
1739
|
+
var PerObjectStatus$ = [3, n0, _POS,
|
|
1740
|
+
0,
|
|
1741
|
+
[_SSy, _UT],
|
|
1742
|
+
[0, 0]
|
|
1743
|
+
];
|
|
1744
|
+
var PolicyVariables$ = [3, n0, _PV,
|
|
1745
|
+
0,
|
|
1746
|
+
[_RV],
|
|
1747
|
+
[() => IPSets]
|
|
1748
|
+
];
|
|
1749
|
+
var PortRange$ = [3, n0, _PRo,
|
|
1750
|
+
0,
|
|
1751
|
+
[_FPr, _TP],
|
|
1752
|
+
[1, 1], 2
|
|
1753
|
+
];
|
|
1754
|
+
var PortSet$ = [3, n0, _PSo,
|
|
1755
|
+
0,
|
|
1756
|
+
[_Def],
|
|
1757
|
+
[64 | 0]
|
|
1758
|
+
];
|
|
1759
|
+
var Proxy$ = [3, n0, _Pr,
|
|
1760
|
+
0,
|
|
1761
|
+
[_CT, _DT, _UTp, _FC, _FM, _PS, _PMS, _NGI, _PCN, _PCA, _PN, _PA, _LP, _TIP, _T],
|
|
1762
|
+
[4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties$, () => TagList]
|
|
1763
|
+
];
|
|
1764
|
+
var ProxyConfigDefaultRulePhaseActionsRequest$ = [3, n0, _PCDRPAR,
|
|
1765
|
+
0,
|
|
1766
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1767
|
+
[0, 0, 0]
|
|
1768
|
+
];
|
|
1769
|
+
var ProxyConfigRuleGroup$ = [3, n0, _PCRG,
|
|
1770
|
+
0,
|
|
1771
|
+
[_PRGN, _PRGA, _Ty, _Pri],
|
|
1772
|
+
[0, 0, 0, 1]
|
|
1773
|
+
];
|
|
1774
|
+
var ProxyConfiguration$ = [3, n0, _PC,
|
|
1775
|
+
0,
|
|
1776
|
+
[_PCN, _PCA, _De, _CT, _DT, _RG, _DRPA, _T],
|
|
1777
|
+
[0, 0, 0, 4, 4, () => ProxyConfigRuleGroupSet, () => ProxyConfigDefaultRulePhaseActionsRequest$, () => TagList]
|
|
1778
|
+
];
|
|
1779
|
+
var ProxyConfigurationMetadata$ = [3, n0, _PCM,
|
|
1780
|
+
0,
|
|
1781
|
+
[_N, _Ar],
|
|
1782
|
+
[0, 0]
|
|
1783
|
+
];
|
|
1784
|
+
var ProxyMetadata$ = [3, n0, _PM,
|
|
1785
|
+
0,
|
|
1786
|
+
[_N, _Ar],
|
|
1787
|
+
[0, 0]
|
|
1788
|
+
];
|
|
1789
|
+
var ProxyRule$ = [3, n0, _PR,
|
|
1790
|
+
0,
|
|
1791
|
+
[_PRN, _De, _Ac, _C],
|
|
1792
|
+
[0, 0, 0, () => ProxyRuleConditionList]
|
|
1793
|
+
];
|
|
1794
|
+
var ProxyRuleCondition$ = [3, n0, _PRC,
|
|
1795
|
+
0,
|
|
1796
|
+
[_CO, _CK, _CV],
|
|
1797
|
+
[0, 0, 64 | 0]
|
|
1798
|
+
];
|
|
1799
|
+
var ProxyRuleGroup$ = [3, n0, _PRG,
|
|
1800
|
+
0,
|
|
1801
|
+
[_PRGN, _PRGA, _CT, _DT, _R, _De, _T],
|
|
1802
|
+
[0, 0, 4, 4, () => ProxyRulesByRequestPhase$, 0, () => TagList]
|
|
1803
|
+
];
|
|
1804
|
+
var ProxyRuleGroupAttachment$ = [3, n0, _PRGAr,
|
|
1805
|
+
0,
|
|
1806
|
+
[_PRGN, _IP],
|
|
1807
|
+
[0, 1]
|
|
1808
|
+
];
|
|
1809
|
+
var ProxyRuleGroupMetadata$ = [3, n0, _PRGM,
|
|
1810
|
+
0,
|
|
1811
|
+
[_N, _Ar],
|
|
1812
|
+
[0, 0]
|
|
1813
|
+
];
|
|
1814
|
+
var ProxyRuleGroupPriority$ = [3, n0, _PRGP,
|
|
1815
|
+
0,
|
|
1816
|
+
[_PRGN, _NP],
|
|
1817
|
+
[0, 1]
|
|
1818
|
+
];
|
|
1819
|
+
var ProxyRuleGroupPriorityResult$ = [3, n0, _PRGPR,
|
|
1820
|
+
0,
|
|
1821
|
+
[_PRGN, _Pri],
|
|
1822
|
+
[0, 1]
|
|
1823
|
+
];
|
|
1824
|
+
var ProxyRulePriority$ = [3, n0, _PRP,
|
|
1825
|
+
0,
|
|
1826
|
+
[_PRN, _NP],
|
|
1827
|
+
[0, 1]
|
|
1828
|
+
];
|
|
1829
|
+
var ProxyRulesByRequestPhase$ = [3, n0, _PRBRP,
|
|
1830
|
+
0,
|
|
1831
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1832
|
+
[() => ProxyRuleList, () => ProxyRuleList, () => ProxyRuleList]
|
|
1833
|
+
];
|
|
1834
|
+
var PublishMetricAction$ = [3, n0, _PMA,
|
|
1835
|
+
0,
|
|
1836
|
+
[_Dim],
|
|
1837
|
+
[() => Dimensions], 1
|
|
1838
|
+
];
|
|
1839
|
+
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
1840
|
+
0,
|
|
1841
|
+
[_RA, _Po],
|
|
1842
|
+
[0, 0], 2
|
|
1843
|
+
];
|
|
1844
|
+
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
1845
|
+
0,
|
|
1846
|
+
[],
|
|
1847
|
+
[]
|
|
1848
|
+
];
|
|
1849
|
+
var ReferenceSets$ = [3, n0, _RS,
|
|
1850
|
+
0,
|
|
1851
|
+
[_IPSR],
|
|
1852
|
+
[() => IPSetReferenceMap]
|
|
1853
|
+
];
|
|
1854
|
+
var RejectNetworkFirewallTransitGatewayAttachmentRequest$ = [3, n0, _RNFTGAR,
|
|
1855
|
+
0,
|
|
1856
|
+
[_TGAI],
|
|
1857
|
+
[0], 1
|
|
1858
|
+
];
|
|
1859
|
+
var RejectNetworkFirewallTransitGatewayAttachmentResponse$ = [3, n0, _RNFTGARe,
|
|
1860
|
+
0,
|
|
1861
|
+
[_TGAI, _TGAS],
|
|
1862
|
+
[0, 0], 2
|
|
1863
|
+
];
|
|
1864
|
+
var RuleDefinition$ = [3, n0, _RD,
|
|
1865
|
+
0,
|
|
1866
|
+
[_MA, _Act],
|
|
1867
|
+
[() => MatchAttributes$, 64 | 0], 2
|
|
1868
|
+
];
|
|
1869
|
+
var RuleGroup$ = [3, n0, _RGu,
|
|
1870
|
+
0,
|
|
1871
|
+
[_RSu, _RV, _RS, _SRO],
|
|
1872
|
+
[() => RulesSource$, () => RuleVariables$, () => ReferenceSets$, () => StatefulRuleOptions$], 1
|
|
1873
|
+
];
|
|
1874
|
+
var RuleGroupMetadata$ = [3, n0, _RGM,
|
|
1875
|
+
0,
|
|
1876
|
+
[_N, _Ar, _VN],
|
|
1877
|
+
[0, 0, 0]
|
|
1878
|
+
];
|
|
1879
|
+
var RuleGroupResponse$ = [3, n0, _RGR,
|
|
1880
|
+
0,
|
|
1881
|
+
[_RGAu, _RGNu, _RGI, _De, _Ty, _Ca, _RGS, _T, _CC, _NOA, _EC, _SMo, _STn, _LMT, _ARnal, _SC],
|
|
1882
|
+
[0, 0, 0, 0, 0, 1, 0, () => TagList, 1, 1, () => EncryptionConfiguration$, () => SourceMetadata$, 0, 4, () => AnalysisResultList, () => SummaryConfiguration$], 3
|
|
1883
|
+
];
|
|
1884
|
+
var RuleOption$ = [3, n0, _RO,
|
|
1885
|
+
0,
|
|
1886
|
+
[_K, _Se],
|
|
1887
|
+
[0, 64 | 0], 1
|
|
1888
|
+
];
|
|
1889
|
+
var RulesSource$ = [3, n0, _RSu,
|
|
1890
|
+
0,
|
|
1891
|
+
[_RSul, _RSL, _SR, _SRACA],
|
|
1892
|
+
[0, () => RulesSourceList$, () => StatefulRules, () => StatelessRulesAndCustomActions$]
|
|
1893
|
+
];
|
|
1894
|
+
var RulesSourceList$ = [3, n0, _RSL,
|
|
1895
|
+
0,
|
|
1896
|
+
[_Ta, _TT, _GRT],
|
|
1897
|
+
[64 | 0, 64 | 0, 0], 3
|
|
1898
|
+
];
|
|
1899
|
+
var RuleSummary$ = [3, n0, _RSule,
|
|
1900
|
+
0,
|
|
1901
|
+
[_SID, _Ms, _Me],
|
|
1902
|
+
[0, 0, 0]
|
|
1903
|
+
];
|
|
1904
|
+
var RuleVariables$ = [3, n0, _RV,
|
|
1905
|
+
0,
|
|
1906
|
+
[_IPSe, _PSor],
|
|
1907
|
+
[() => IPSets, () => PortSets]
|
|
1908
|
+
];
|
|
1909
|
+
var ServerCertificate$ = [3, n0, _SCe,
|
|
1910
|
+
0,
|
|
1911
|
+
[_RA],
|
|
1912
|
+
[0]
|
|
1913
|
+
];
|
|
1914
|
+
var ServerCertificateConfiguration$ = [3, n0, _SCC,
|
|
1915
|
+
0,
|
|
1916
|
+
[_SCer, _Sco, _CAA, _CCRS],
|
|
1917
|
+
[() => ServerCertificates, () => ServerCertificateScopes, 0, () => CheckCertificateRevocationStatusActions$]
|
|
1918
|
+
];
|
|
1919
|
+
var ServerCertificateScope$ = [3, n0, _SCS,
|
|
1920
|
+
0,
|
|
1921
|
+
[_Sou, _Dest, _SPo, _DPes, _Pro],
|
|
1922
|
+
[() => Addresses, () => Addresses, () => PortRanges, () => PortRanges, 64 | 1]
|
|
1923
|
+
];
|
|
1924
|
+
var SourceMetadata$ = [3, n0, _SMo,
|
|
1925
|
+
0,
|
|
1926
|
+
[_SAo, _SUT],
|
|
1927
|
+
[0, 0]
|
|
1928
|
+
];
|
|
1929
|
+
var StartAnalysisReportRequest$ = [3, n0, _SARR,
|
|
1930
|
+
0,
|
|
1931
|
+
[_AT, _FN, _FAi],
|
|
1932
|
+
[0, 0, 0], 1
|
|
1933
|
+
];
|
|
1934
|
+
var StartAnalysisReportResponse$ = [3, n0, _SARRt,
|
|
1935
|
+
0,
|
|
1936
|
+
[_ARI],
|
|
1937
|
+
[0], 1
|
|
1938
|
+
];
|
|
1939
|
+
var StartFlowCaptureRequest$ = [3, n0, _SFCR,
|
|
1940
|
+
0,
|
|
1941
|
+
[_FAi, _FFl, _AZ, _VEAA, _VEI, _MFAIS],
|
|
1942
|
+
[0, () => FlowFilters, 0, 0, 0, 1], 2
|
|
1943
|
+
];
|
|
1944
|
+
var StartFlowCaptureResponse$ = [3, n0, _SFCRt,
|
|
1945
|
+
0,
|
|
1946
|
+
[_FAi, _FOI, _FOS],
|
|
1947
|
+
[0, 0, 0]
|
|
1948
|
+
];
|
|
1949
|
+
var StartFlowFlushRequest$ = [3, n0, _SFFR,
|
|
1950
|
+
0,
|
|
1951
|
+
[_FAi, _FFl, _AZ, _VEAA, _VEI, _MFAIS],
|
|
1952
|
+
[0, () => FlowFilters, 0, 0, 0, 1], 2
|
|
1953
|
+
];
|
|
1954
|
+
var StartFlowFlushResponse$ = [3, n0, _SFFRt,
|
|
1955
|
+
0,
|
|
1956
|
+
[_FAi, _FOI, _FOS],
|
|
1957
|
+
[0, 0, 0]
|
|
1958
|
+
];
|
|
1959
|
+
var StatefulEngineOptions$ = [3, n0, _SEO,
|
|
1960
|
+
0,
|
|
1961
|
+
[_ROu, _SEP, _FT],
|
|
1962
|
+
[0, 0, () => FlowTimeouts$]
|
|
1963
|
+
];
|
|
1964
|
+
var StatefulRule$ = [3, n0, _SRt,
|
|
1965
|
+
0,
|
|
1966
|
+
[_Ac, _He, _ROul],
|
|
1967
|
+
[0, () => Header$, () => RuleOptions], 3
|
|
1968
|
+
];
|
|
1969
|
+
var StatefulRuleGroupOverride$ = [3, n0, _SRGO,
|
|
1970
|
+
0,
|
|
1971
|
+
[_Ac],
|
|
1972
|
+
[0]
|
|
1973
|
+
];
|
|
1974
|
+
var StatefulRuleGroupReference$ = [3, n0, _SRGRta,
|
|
1975
|
+
0,
|
|
1976
|
+
[_RA, _Pri, _O, _DTI],
|
|
1977
|
+
[0, 1, () => StatefulRuleGroupOverride$, 2], 1
|
|
1978
|
+
];
|
|
1979
|
+
var StatefulRuleOptions$ = [3, n0, _SRO,
|
|
1980
|
+
0,
|
|
1981
|
+
[_ROu],
|
|
1982
|
+
[0]
|
|
1983
|
+
];
|
|
1984
|
+
var StatelessRule$ = [3, n0, _SRta,
|
|
1985
|
+
0,
|
|
1986
|
+
[_RD, _Pri],
|
|
1987
|
+
[() => RuleDefinition$, 1], 2
|
|
1988
|
+
];
|
|
1989
|
+
var StatelessRuleGroupReference$ = [3, n0, _SRGRtat,
|
|
1990
|
+
0,
|
|
1991
|
+
[_RA, _Pri],
|
|
1992
|
+
[0, 1], 2
|
|
1993
|
+
];
|
|
1994
|
+
var StatelessRulesAndCustomActions$ = [3, n0, _SRACA,
|
|
1995
|
+
0,
|
|
1996
|
+
[_SRtat, _CAu],
|
|
1997
|
+
[() => StatelessRules, () => CustomActions], 1
|
|
1998
|
+
];
|
|
1999
|
+
var SubnetMapping$ = [3, n0, _SMu,
|
|
2000
|
+
0,
|
|
2001
|
+
[_SI, _IPAT],
|
|
2002
|
+
[0, 0], 1
|
|
2003
|
+
];
|
|
2004
|
+
var Summary$ = [3, n0, _Su,
|
|
2005
|
+
0,
|
|
2006
|
+
[_RSuleu],
|
|
2007
|
+
[() => RuleSummaries]
|
|
2008
|
+
];
|
|
2009
|
+
var SummaryConfiguration$ = [3, n0, _SC,
|
|
2010
|
+
0,
|
|
2011
|
+
[_ROul],
|
|
2012
|
+
[64 | 0]
|
|
2013
|
+
];
|
|
2014
|
+
var SyncState$ = [3, n0, _SSyn,
|
|
2015
|
+
0,
|
|
2016
|
+
[_At, _Con],
|
|
2017
|
+
[() => Attachment$, () => SyncStateConfig]
|
|
2018
|
+
];
|
|
2019
|
+
var Tag$ = [3, n0, _Tag,
|
|
2020
|
+
0,
|
|
2021
|
+
[_Ke, _V],
|
|
2022
|
+
[0, 0], 2
|
|
2023
|
+
];
|
|
2024
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2025
|
+
0,
|
|
2026
|
+
[_RA, _T],
|
|
2027
|
+
[0, () => TagList], 2
|
|
2028
|
+
];
|
|
2029
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2030
|
+
0,
|
|
2031
|
+
[],
|
|
2032
|
+
[]
|
|
2033
|
+
];
|
|
2034
|
+
var TCPFlagField$ = [3, n0, _TCPFF,
|
|
2035
|
+
0,
|
|
2036
|
+
[_Fla, _Ma],
|
|
2037
|
+
[64 | 0, 64 | 0], 1
|
|
2038
|
+
];
|
|
2039
|
+
var TlsCertificateData$ = [3, n0, _TCD,
|
|
2040
|
+
0,
|
|
2041
|
+
[_CAe, _CS, _S, _SMt],
|
|
2042
|
+
[0, 0, 0, 0]
|
|
2043
|
+
];
|
|
2044
|
+
var TLSInspectionConfiguration$ = [3, n0, _TLSIC,
|
|
2045
|
+
0,
|
|
2046
|
+
[_SCCe],
|
|
2047
|
+
[() => ServerCertificateConfigurations]
|
|
2048
|
+
];
|
|
2049
|
+
var TLSInspectionConfigurationMetadata$ = [3, n0, _TLSICM,
|
|
2050
|
+
0,
|
|
2051
|
+
[_N, _Ar],
|
|
2052
|
+
[0, 0]
|
|
2053
|
+
];
|
|
2054
|
+
var TLSInspectionConfigurationResponse$ = [3, n0, _TLSICR,
|
|
2055
|
+
0,
|
|
2056
|
+
[_TLSICA, _TLSICN, _TLSICI, _TLSICS, _De, _T, _LMT, _NOA, _EC, _Ce, _CAer],
|
|
2057
|
+
[0, 0, 0, 0, 0, () => TagList, 4, 1, () => EncryptionConfiguration$, () => Certificates, () => TlsCertificateData$], 3
|
|
2058
|
+
];
|
|
2059
|
+
var TlsInterceptProperties$ = [3, n0, _TIP,
|
|
2060
|
+
0,
|
|
2061
|
+
[_PAc, _TIM],
|
|
2062
|
+
[0, 0]
|
|
2063
|
+
];
|
|
2064
|
+
var TlsInterceptPropertiesRequest$ = [3, n0, _TIPR,
|
|
2065
|
+
0,
|
|
2066
|
+
[_PAc, _TIM],
|
|
2067
|
+
[0, 0]
|
|
2068
|
+
];
|
|
2069
|
+
var TransitGatewayAttachmentSyncState$ = [3, n0, _TGASS,
|
|
2070
|
+
0,
|
|
2071
|
+
[_AI, _TGAS, _SMt],
|
|
2072
|
+
[0, 0, 0]
|
|
2073
|
+
];
|
|
2074
|
+
var UniqueSources$ = [3, n0, _US,
|
|
2075
|
+
0,
|
|
2076
|
+
[_Co],
|
|
2077
|
+
[1]
|
|
2078
|
+
];
|
|
2079
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2080
|
+
0,
|
|
2081
|
+
[_RA, _TK],
|
|
2082
|
+
[0, 64 | 0], 2
|
|
2083
|
+
];
|
|
2084
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2085
|
+
0,
|
|
2086
|
+
[],
|
|
2087
|
+
[]
|
|
2088
|
+
];
|
|
2089
|
+
var UpdateAvailabilityZoneChangeProtectionRequest$ = [3, n0, _UAZCPR,
|
|
2090
|
+
0,
|
|
2091
|
+
[_AZCP, _UT, _FAi, _FN],
|
|
2092
|
+
[2, 0, 0, 0], 1
|
|
2093
|
+
];
|
|
2094
|
+
var UpdateAvailabilityZoneChangeProtectionResponse$ = [3, n0, _UAZCPRp,
|
|
2095
|
+
0,
|
|
2096
|
+
[_UT, _FAi, _FN, _AZCP],
|
|
2097
|
+
[0, 0, 0, 2]
|
|
2098
|
+
];
|
|
2099
|
+
var UpdateFirewallAnalysisSettingsRequest$ = [3, n0, _UFASR,
|
|
2100
|
+
0,
|
|
2101
|
+
[_EAT, _FAi, _FN, _UT],
|
|
2102
|
+
[64 | 0, 0, 0, 0]
|
|
2103
|
+
];
|
|
2104
|
+
var UpdateFirewallAnalysisSettingsResponse$ = [3, n0, _UFASRp,
|
|
2105
|
+
0,
|
|
2106
|
+
[_EAT, _FAi, _FN, _UT],
|
|
2107
|
+
[64 | 0, 0, 0, 0]
|
|
2108
|
+
];
|
|
2109
|
+
var UpdateFirewallDeleteProtectionRequest$ = [3, n0, _UFDPR,
|
|
2110
|
+
0,
|
|
2111
|
+
[_DP, _UT, _FAi, _FN],
|
|
2112
|
+
[2, 0, 0, 0], 1
|
|
2113
|
+
];
|
|
2114
|
+
var UpdateFirewallDeleteProtectionResponse$ = [3, n0, _UFDPRp,
|
|
2115
|
+
0,
|
|
2116
|
+
[_FAi, _FN, _DP, _UT],
|
|
2117
|
+
[0, 0, 2, 0]
|
|
2118
|
+
];
|
|
2119
|
+
var UpdateFirewallDescriptionRequest$ = [3, n0, _UFDR,
|
|
2120
|
+
0,
|
|
2121
|
+
[_UT, _FAi, _FN, _De],
|
|
2122
|
+
[0, 0, 0, 0]
|
|
2123
|
+
];
|
|
2124
|
+
var UpdateFirewallDescriptionResponse$ = [3, n0, _UFDRp,
|
|
2125
|
+
0,
|
|
2126
|
+
[_FAi, _FN, _De, _UT],
|
|
2127
|
+
[0, 0, 0, 0]
|
|
2128
|
+
];
|
|
2129
|
+
var UpdateFirewallEncryptionConfigurationRequest$ = [3, n0, _UFECR,
|
|
2130
|
+
0,
|
|
2131
|
+
[_UT, _FAi, _FN, _EC],
|
|
2132
|
+
[0, 0, 0, () => EncryptionConfiguration$]
|
|
2133
|
+
];
|
|
2134
|
+
var UpdateFirewallEncryptionConfigurationResponse$ = [3, n0, _UFECRp,
|
|
2135
|
+
0,
|
|
2136
|
+
[_FAi, _FN, _UT, _EC],
|
|
2137
|
+
[0, 0, 0, () => EncryptionConfiguration$]
|
|
2138
|
+
];
|
|
2139
|
+
var UpdateFirewallPolicyChangeProtectionRequest$ = [3, n0, _UFPCPR,
|
|
2140
|
+
0,
|
|
2141
|
+
[_FPCP, _UT, _FAi, _FN],
|
|
2142
|
+
[2, 0, 0, 0], 1
|
|
2143
|
+
];
|
|
2144
|
+
var UpdateFirewallPolicyChangeProtectionResponse$ = [3, n0, _UFPCPRp,
|
|
2145
|
+
0,
|
|
2146
|
+
[_UT, _FAi, _FN, _FPCP],
|
|
2147
|
+
[0, 0, 0, 2]
|
|
2148
|
+
];
|
|
2149
|
+
var UpdateFirewallPolicyRequest$ = [3, n0, _UFPR,
|
|
2150
|
+
0,
|
|
2151
|
+
[_UT, _FP, _FPA, _FPN, _De, _DR, _EC],
|
|
2152
|
+
[0, () => FirewallPolicy$, 0, 0, 0, 2, () => EncryptionConfiguration$], 2
|
|
2153
|
+
];
|
|
2154
|
+
var UpdateFirewallPolicyResponse$ = [3, n0, _UFPRp,
|
|
2155
|
+
0,
|
|
2156
|
+
[_UT, _FPR],
|
|
2157
|
+
[0, () => FirewallPolicyResponse$], 2
|
|
2158
|
+
];
|
|
2159
|
+
var UpdateLoggingConfigurationRequest$ = [3, n0, _ULCR,
|
|
2160
|
+
0,
|
|
2161
|
+
[_FAi, _FN, _LC, _EMD],
|
|
2162
|
+
[0, 0, () => LoggingConfiguration$, 2]
|
|
2163
|
+
];
|
|
2164
|
+
var UpdateLoggingConfigurationResponse$ = [3, n0, _ULCRp,
|
|
2165
|
+
0,
|
|
2166
|
+
[_FAi, _FN, _LC, _EMD],
|
|
2167
|
+
[0, 0, () => LoggingConfiguration$, 2]
|
|
2168
|
+
];
|
|
2169
|
+
var UpdateProxyConfigurationRequest$ = [3, n0, _UPCR,
|
|
2170
|
+
0,
|
|
2171
|
+
[_DRPA, _UT, _PCN, _PCA],
|
|
2172
|
+
[() => ProxyConfigDefaultRulePhaseActionsRequest$, 0, 0, 0], 2
|
|
2173
|
+
];
|
|
2174
|
+
var UpdateProxyConfigurationResponse$ = [3, n0, _UPCRp,
|
|
2175
|
+
0,
|
|
2176
|
+
[_PC, _UT],
|
|
2177
|
+
[() => ProxyConfiguration$, 0]
|
|
2178
|
+
];
|
|
2179
|
+
var UpdateProxyRequest$ = [3, n0, _UPR,
|
|
2180
|
+
0,
|
|
2181
|
+
[_NGI, _UT, _PN, _PA, _LPTA, _LPTR, _TIP],
|
|
2182
|
+
[0, 0, 0, 0, () => ListenerPropertiesRequest, () => ListenerPropertiesRequest, () => TlsInterceptPropertiesRequest$], 2
|
|
2183
|
+
];
|
|
2184
|
+
var UpdateProxyResponse$ = [3, n0, _UPRp,
|
|
2185
|
+
0,
|
|
2186
|
+
[_Pr, _UT],
|
|
2187
|
+
[() => Proxy$, 0]
|
|
2188
|
+
];
|
|
2189
|
+
var UpdateProxyRuleGroupPrioritiesRequest$ = [3, n0, _UPRGPR,
|
|
2190
|
+
0,
|
|
2191
|
+
[_RG, _UT, _PCN, _PCA],
|
|
2192
|
+
[() => ProxyRuleGroupPriorityList, 0, 0, 0], 2
|
|
2193
|
+
];
|
|
2194
|
+
var UpdateProxyRuleGroupPrioritiesResponse$ = [3, n0, _UPRGPRp,
|
|
2195
|
+
0,
|
|
2196
|
+
[_PRGr, _UT],
|
|
2197
|
+
[() => ProxyRuleGroupPriorityResultList, 0]
|
|
2198
|
+
];
|
|
2199
|
+
var UpdateProxyRulePrioritiesRequest$ = [3, n0, _UPRPR,
|
|
2200
|
+
0,
|
|
2201
|
+
[_RGRP, _R, _UT, _PRGN, _PRGA],
|
|
2202
|
+
[0, () => ProxyRulePriorityList, 0, 0, 0], 3
|
|
2203
|
+
];
|
|
2204
|
+
var UpdateProxyRulePrioritiesResponse$ = [3, n0, _UPRPRp,
|
|
2205
|
+
0,
|
|
2206
|
+
[_PRGN, _PRGA, _RGRP, _R, _UT],
|
|
2207
|
+
[0, 0, 0, () => ProxyRulePriorityList, 0]
|
|
2208
|
+
];
|
|
2209
|
+
var UpdateProxyRuleRequest$ = [3, n0, _UPRR,
|
|
2210
|
+
0,
|
|
2211
|
+
[_PRN, _UT, _PRGN, _PRGA, _De, _Ac, _AC, _RC],
|
|
2212
|
+
[0, 0, 0, 0, 0, 0, () => ProxyRuleConditionList, () => ProxyRuleConditionList], 2
|
|
2213
|
+
];
|
|
2214
|
+
var UpdateProxyRuleResponse$ = [3, n0, _UPRRp,
|
|
2215
|
+
0,
|
|
2216
|
+
[_PR, _RCe, _UT],
|
|
2217
|
+
[() => ProxyRule$, () => ProxyRuleConditionList, 0]
|
|
2218
|
+
];
|
|
2219
|
+
var UpdateRuleGroupRequest$ = [3, n0, _URGR,
|
|
2220
|
+
0,
|
|
2221
|
+
[_UT, _RGAu, _RGNu, _RGu, _R, _Ty, _De, _DR, _EC, _SMo, _ARG, _SC],
|
|
2222
|
+
[0, 0, 0, () => RuleGroup$, 0, 0, 0, 2, () => EncryptionConfiguration$, () => SourceMetadata$, 2, () => SummaryConfiguration$], 1
|
|
2223
|
+
];
|
|
2224
|
+
var UpdateRuleGroupResponse$ = [3, n0, _URGRp,
|
|
2225
|
+
0,
|
|
2226
|
+
[_UT, _RGR],
|
|
2227
|
+
[0, () => RuleGroupResponse$], 2
|
|
2228
|
+
];
|
|
2229
|
+
var UpdateSubnetChangeProtectionRequest$ = [3, n0, _USCPR,
|
|
2230
|
+
0,
|
|
2231
|
+
[_SCP, _UT, _FAi, _FN],
|
|
2232
|
+
[2, 0, 0, 0], 1
|
|
2233
|
+
];
|
|
2234
|
+
var UpdateSubnetChangeProtectionResponse$ = [3, n0, _USCPRp,
|
|
2235
|
+
0,
|
|
2236
|
+
[_UT, _FAi, _FN, _SCP],
|
|
2237
|
+
[0, 0, 0, 2]
|
|
2238
|
+
];
|
|
2239
|
+
var UpdateTLSInspectionConfigurationRequest$ = [3, n0, _UTLSICR,
|
|
2240
|
+
0,
|
|
2241
|
+
[_TLSIC, _UT, _TLSICA, _TLSICN, _De, _EC],
|
|
2242
|
+
[() => TLSInspectionConfiguration$, 0, 0, 0, 0, () => EncryptionConfiguration$], 2
|
|
2243
|
+
];
|
|
2244
|
+
var UpdateTLSInspectionConfigurationResponse$ = [3, n0, _UTLSICRp,
|
|
2245
|
+
0,
|
|
2246
|
+
[_UT, _TLSICR],
|
|
2247
|
+
[0, () => TLSInspectionConfigurationResponse$], 2
|
|
2248
|
+
];
|
|
2249
|
+
var VpcEndpointAssociation$ = [3, n0, _VEA,
|
|
2250
|
+
0,
|
|
2251
|
+
[_VEAA, _FAi, _VI, _SMu, _VEAI, _De, _T],
|
|
2252
|
+
[0, 0, 0, () => SubnetMapping$, 0, 0, () => TagList], 4
|
|
2253
|
+
];
|
|
2254
|
+
var VpcEndpointAssociationMetadata$ = [3, n0, _VEAM,
|
|
2255
|
+
0,
|
|
2256
|
+
[_VEAA],
|
|
2257
|
+
[0]
|
|
2258
|
+
];
|
|
2259
|
+
var VpcEndpointAssociationStatus$ = [3, n0, _VEAS,
|
|
2260
|
+
0,
|
|
2261
|
+
[_S, _ASS],
|
|
2262
|
+
[0, () => AssociationSyncState], 1
|
|
2263
|
+
];
|
|
2264
|
+
var Addresses = [1, n0, _Ad,
|
|
2265
|
+
0, () => Address$
|
|
2266
|
+
];
|
|
2267
|
+
var AnalysisReportResults = [1, n0, _ARR,
|
|
2268
|
+
0, () => AnalysisTypeReportResult$
|
|
2269
|
+
];
|
|
2270
|
+
var AnalysisReports = [1, n0, _ARna,
|
|
2271
|
+
0, () => AnalysisReport$
|
|
2272
|
+
];
|
|
2273
|
+
var AnalysisResultList = [1, n0, _ARL,
|
|
2274
|
+
0, () => AnalysisResult$
|
|
2275
|
+
];
|
|
2276
|
+
var AvailabilityZoneMappings = [1, n0, _AZM,
|
|
2277
|
+
0, () => AvailabilityZoneMapping$
|
|
2278
|
+
];
|
|
2279
|
+
var Certificates = [1, n0, _Ce,
|
|
2280
|
+
0, () => TlsCertificateData$
|
|
2281
|
+
];
|
|
2282
|
+
var CreateProxyRuleList = [1, n0, _CPRL,
|
|
2283
|
+
0, () => CreateProxyRule$
|
|
2284
|
+
];
|
|
2285
|
+
var CustomActions = [1, n0, _CAu,
|
|
2286
|
+
0, () => CustomAction$
|
|
2287
|
+
];
|
|
2288
|
+
var Dimensions = [1, n0, _Dim,
|
|
2289
|
+
0, () => Dimension$
|
|
2290
|
+
];
|
|
2291
|
+
var FirewallPolicies = [1, n0, _FPi,
|
|
2292
|
+
0, () => FirewallPolicyMetadata$
|
|
2293
|
+
];
|
|
2294
|
+
var Firewalls = [1, n0, _Fi,
|
|
2295
|
+
0, () => FirewallMetadata$
|
|
2296
|
+
];
|
|
2297
|
+
var FlowFilters = [1, n0, _FFl,
|
|
2298
|
+
0, () => FlowFilter$
|
|
2299
|
+
];
|
|
2300
|
+
var FlowOperations = [1, n0, _FOl,
|
|
2301
|
+
0, () => FlowOperationMetadata$
|
|
2302
|
+
];
|
|
2303
|
+
var Flows = [1, n0, _Flo,
|
|
2304
|
+
0, () => Flow$
|
|
2305
|
+
];
|
|
2306
|
+
var ListenerProperties = [1, n0, _LP,
|
|
2307
|
+
0, () => ListenerProperty$
|
|
2308
|
+
];
|
|
2309
|
+
var ListenerPropertiesRequest = [1, n0, _LPRist,
|
|
2310
|
+
0, () => ListenerPropertyRequest$
|
|
2311
|
+
];
|
|
2312
|
+
var LogDestinationConfigs = [1, n0, _LDCo,
|
|
2313
|
+
0, () => LogDestinationConfig$
|
|
2314
|
+
];
|
|
2315
|
+
var PortRanges = [1, n0, _PRor,
|
|
2316
|
+
0, () => PortRange$
|
|
2317
|
+
];
|
|
2318
|
+
var Proxies = [1, n0, _Prox,
|
|
2319
|
+
0, () => ProxyMetadata$
|
|
2320
|
+
];
|
|
2321
|
+
var ProxyConfigRuleGroupSet = [1, n0, _PCRGS,
|
|
2322
|
+
0, () => ProxyConfigRuleGroup$
|
|
2323
|
+
];
|
|
2324
|
+
var ProxyConfigurations = [1, n0, _PCr,
|
|
2325
|
+
0, () => ProxyConfigurationMetadata$
|
|
2326
|
+
];
|
|
2327
|
+
var ProxyRuleConditionList = [1, n0, _PRCL,
|
|
2328
|
+
0, () => ProxyRuleCondition$
|
|
2329
|
+
];
|
|
2330
|
+
var ProxyRuleGroupAttachmentList = [1, n0, _PRGAL,
|
|
2331
|
+
0, () => ProxyRuleGroupAttachment$
|
|
2332
|
+
];
|
|
2333
|
+
var ProxyRuleGroupPriorityList = [1, n0, _PRGPL,
|
|
2334
|
+
0, () => ProxyRuleGroupPriority$
|
|
2335
|
+
];
|
|
2336
|
+
var ProxyRuleGroupPriorityResultList = [1, n0, _PRGPRL,
|
|
2337
|
+
0, () => ProxyRuleGroupPriorityResult$
|
|
2338
|
+
];
|
|
2339
|
+
var ProxyRuleGroups = [1, n0, _PRGr,
|
|
2340
|
+
0, () => ProxyRuleGroupMetadata$
|
|
2341
|
+
];
|
|
2342
|
+
var ProxyRuleList = [1, n0, _PRL,
|
|
2343
|
+
0, () => ProxyRule$
|
|
2344
|
+
];
|
|
2345
|
+
var ProxyRulePriorityList = [1, n0, _PRPL,
|
|
2346
|
+
0, () => ProxyRulePriority$
|
|
2347
|
+
];
|
|
2348
|
+
var RuleGroups = [1, n0, _RG,
|
|
2349
|
+
0, () => RuleGroupMetadata$
|
|
2350
|
+
];
|
|
2351
|
+
var RuleOptions = [1, n0, _ROul,
|
|
2352
|
+
0, () => RuleOption$
|
|
2353
|
+
];
|
|
2354
|
+
var RuleSummaries = [1, n0, _RSuleu,
|
|
2355
|
+
0, () => RuleSummary$
|
|
2356
|
+
];
|
|
2357
|
+
var ServerCertificateConfigurations = [1, n0, _SCCe,
|
|
2358
|
+
0, () => ServerCertificateConfiguration$
|
|
2359
|
+
];
|
|
2360
|
+
var ServerCertificates = [1, n0, _SCer,
|
|
2361
|
+
0, () => ServerCertificate$
|
|
2362
|
+
];
|
|
2363
|
+
var ServerCertificateScopes = [1, n0, _SCSe,
|
|
2364
|
+
0, () => ServerCertificateScope$
|
|
2365
|
+
];
|
|
2366
|
+
var StatefulRuleGroupReferences = [1, n0, _SRGRt,
|
|
2367
|
+
0, () => StatefulRuleGroupReference$
|
|
2368
|
+
];
|
|
2369
|
+
var StatefulRules = [1, n0, _SR,
|
|
2370
|
+
0, () => StatefulRule$
|
|
2371
|
+
];
|
|
2372
|
+
var StatelessRuleGroupReferences = [1, n0, _SRGR,
|
|
2373
|
+
0, () => StatelessRuleGroupReference$
|
|
2374
|
+
];
|
|
2375
|
+
var StatelessRules = [1, n0, _SRtat,
|
|
2376
|
+
0, () => StatelessRule$
|
|
2377
|
+
];
|
|
2378
|
+
var SubnetMappings = [1, n0, _SM,
|
|
2379
|
+
0, () => SubnetMapping$
|
|
2380
|
+
];
|
|
2381
|
+
var TagList = [1, n0, _TL,
|
|
2382
|
+
0, () => Tag$
|
|
2383
|
+
];
|
|
2384
|
+
var TCPFlags = [1, n0, _TCPF,
|
|
2385
|
+
0, () => TCPFlagField$
|
|
2386
|
+
];
|
|
2387
|
+
var TLSInspectionConfigurations = [1, n0, _TLSICn,
|
|
2388
|
+
0, () => TLSInspectionConfigurationMetadata$
|
|
2389
|
+
];
|
|
2390
|
+
var VpcEndpointAssociations = [1, n0, _VEAp,
|
|
2391
|
+
0, () => VpcEndpointAssociationMetadata$
|
|
2392
|
+
];
|
|
2393
|
+
var AssociationSyncState = [2, n0, _ASS,
|
|
2394
|
+
0, 0, () => AZSyncState$
|
|
2395
|
+
];
|
|
2396
|
+
var IPSetMetadataMap = [2, n0, _IPSMM,
|
|
2397
|
+
0, 0, () => IPSetMetadata$
|
|
2398
|
+
];
|
|
2399
|
+
var IPSetReferenceMap = [2, n0, _IPSRM,
|
|
2400
|
+
0, 0, () => IPSetReference$
|
|
2401
|
+
];
|
|
2402
|
+
var IPSets = [2, n0, _IPSe,
|
|
2403
|
+
0, 0, () => IPSet$
|
|
2404
|
+
];
|
|
2405
|
+
var PortSets = [2, n0, _PSor,
|
|
2406
|
+
0, 0, () => PortSet$
|
|
2407
|
+
];
|
|
2408
|
+
var SupportedAvailabilityZones = [2, n0, _SAZ,
|
|
2409
|
+
0, 0, () => AvailabilityZoneMetadata$
|
|
2410
|
+
];
|
|
2411
|
+
var SyncStateConfig = [2, n0, _SSC,
|
|
2412
|
+
0, 0, () => PerObjectStatus$
|
|
2413
|
+
];
|
|
2414
|
+
var SyncStates = [2, n0, _SS,
|
|
2415
|
+
0, 0, () => SyncState$
|
|
2416
|
+
];
|
|
2417
|
+
var AcceptNetworkFirewallTransitGatewayAttachment$ = [9, n0, _ANFTGA,
|
|
2418
|
+
0, () => AcceptNetworkFirewallTransitGatewayAttachmentRequest$, () => AcceptNetworkFirewallTransitGatewayAttachmentResponse$
|
|
2419
|
+
];
|
|
2420
|
+
var AssociateAvailabilityZones$ = [9, n0, _AAZ,
|
|
2421
|
+
0, () => AssociateAvailabilityZonesRequest$, () => AssociateAvailabilityZonesResponse$
|
|
2422
|
+
];
|
|
2423
|
+
var AssociateFirewallPolicy$ = [9, n0, _AFP,
|
|
2424
|
+
0, () => AssociateFirewallPolicyRequest$, () => AssociateFirewallPolicyResponse$
|
|
2425
|
+
];
|
|
2426
|
+
var AssociateSubnets$ = [9, n0, _AS,
|
|
2427
|
+
0, () => AssociateSubnetsRequest$, () => AssociateSubnetsResponse$
|
|
2428
|
+
];
|
|
2429
|
+
var AttachRuleGroupsToProxyConfiguration$ = [9, n0, _ARGTPC,
|
|
2430
|
+
0, () => AttachRuleGroupsToProxyConfigurationRequest$, () => AttachRuleGroupsToProxyConfigurationResponse$
|
|
2431
|
+
];
|
|
2432
|
+
var CreateFirewall$ = [9, n0, _CF,
|
|
2433
|
+
0, () => CreateFirewallRequest$, () => CreateFirewallResponse$
|
|
2434
|
+
];
|
|
2435
|
+
var CreateFirewallPolicy$ = [9, n0, _CFP,
|
|
2436
|
+
0, () => CreateFirewallPolicyRequest$, () => CreateFirewallPolicyResponse$
|
|
2437
|
+
];
|
|
2438
|
+
var CreateProxy$ = [9, n0, _CP,
|
|
2439
|
+
0, () => CreateProxyRequest$, () => CreateProxyResponse$
|
|
2440
|
+
];
|
|
2441
|
+
var CreateProxyConfiguration$ = [9, n0, _CPC,
|
|
2442
|
+
0, () => CreateProxyConfigurationRequest$, () => CreateProxyConfigurationResponse$
|
|
2443
|
+
];
|
|
2444
|
+
var CreateProxyRuleGroup$ = [9, n0, _CPRG,
|
|
2445
|
+
0, () => CreateProxyRuleGroupRequest$, () => CreateProxyRuleGroupResponse$
|
|
2446
|
+
];
|
|
2447
|
+
var CreateProxyRules$ = [9, n0, _CPRrea,
|
|
2448
|
+
0, () => CreateProxyRulesRequest$, () => CreateProxyRulesResponse$
|
|
2449
|
+
];
|
|
2450
|
+
var CreateRuleGroup$ = [9, n0, _CRG,
|
|
2451
|
+
0, () => CreateRuleGroupRequest$, () => CreateRuleGroupResponse$
|
|
2452
|
+
];
|
|
2453
|
+
var CreateTLSInspectionConfiguration$ = [9, n0, _CTLSIC,
|
|
2454
|
+
0, () => CreateTLSInspectionConfigurationRequest$, () => CreateTLSInspectionConfigurationResponse$
|
|
2455
|
+
];
|
|
2456
|
+
var CreateVpcEndpointAssociation$ = [9, n0, _CVEA,
|
|
2457
|
+
0, () => CreateVpcEndpointAssociationRequest$, () => CreateVpcEndpointAssociationResponse$
|
|
2458
|
+
];
|
|
2459
|
+
var DeleteFirewall$ = [9, n0, _DF,
|
|
2460
|
+
0, () => DeleteFirewallRequest$, () => DeleteFirewallResponse$
|
|
2461
|
+
];
|
|
2462
|
+
var DeleteFirewallPolicy$ = [9, n0, _DFP,
|
|
2463
|
+
0, () => DeleteFirewallPolicyRequest$, () => DeleteFirewallPolicyResponse$
|
|
2464
|
+
];
|
|
2465
|
+
var DeleteNetworkFirewallTransitGatewayAttachment$ = [9, n0, _DNFTGA,
|
|
2466
|
+
0, () => DeleteNetworkFirewallTransitGatewayAttachmentRequest$, () => DeleteNetworkFirewallTransitGatewayAttachmentResponse$
|
|
2467
|
+
];
|
|
2468
|
+
var DeleteProxy$ = [9, n0, _DPel,
|
|
2469
|
+
0, () => DeleteProxyRequest$, () => DeleteProxyResponse$
|
|
2470
|
+
];
|
|
2471
|
+
var DeleteProxyConfiguration$ = [9, n0, _DPC,
|
|
2472
|
+
0, () => DeleteProxyConfigurationRequest$, () => DeleteProxyConfigurationResponse$
|
|
2473
|
+
];
|
|
2474
|
+
var DeleteProxyRuleGroup$ = [9, n0, _DPRG,
|
|
2475
|
+
0, () => DeleteProxyRuleGroupRequest$, () => DeleteProxyRuleGroupResponse$
|
|
2476
|
+
];
|
|
2477
|
+
var DeleteProxyRules$ = [9, n0, _DPRel,
|
|
2478
|
+
0, () => DeleteProxyRulesRequest$, () => DeleteProxyRulesResponse$
|
|
2479
|
+
];
|
|
2480
|
+
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
2481
|
+
0, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
|
|
2482
|
+
];
|
|
2483
|
+
var DeleteRuleGroup$ = [9, n0, _DRG,
|
|
2484
|
+
0, () => DeleteRuleGroupRequest$, () => DeleteRuleGroupResponse$
|
|
2485
|
+
];
|
|
2486
|
+
var DeleteTLSInspectionConfiguration$ = [9, n0, _DTLSIC,
|
|
2487
|
+
0, () => DeleteTLSInspectionConfigurationRequest$, () => DeleteTLSInspectionConfigurationResponse$
|
|
2488
|
+
];
|
|
2489
|
+
var DeleteVpcEndpointAssociation$ = [9, n0, _DVEA,
|
|
2490
|
+
0, () => DeleteVpcEndpointAssociationRequest$, () => DeleteVpcEndpointAssociationResponse$
|
|
2491
|
+
];
|
|
2492
|
+
var DescribeFirewall$ = [9, n0, _DFe,
|
|
2493
|
+
0, () => DescribeFirewallRequest$, () => DescribeFirewallResponse$
|
|
2494
|
+
];
|
|
2495
|
+
var DescribeFirewallMetadata$ = [9, n0, _DFM,
|
|
2496
|
+
0, () => DescribeFirewallMetadataRequest$, () => DescribeFirewallMetadataResponse$
|
|
2497
|
+
];
|
|
2498
|
+
var DescribeFirewallPolicy$ = [9, n0, _DFPe,
|
|
2499
|
+
0, () => DescribeFirewallPolicyRequest$, () => DescribeFirewallPolicyResponse$
|
|
2500
|
+
];
|
|
2501
|
+
var DescribeFlowOperation$ = [9, n0, _DFO,
|
|
2502
|
+
0, () => DescribeFlowOperationRequest$, () => DescribeFlowOperationResponse$
|
|
2503
|
+
];
|
|
2504
|
+
var DescribeLoggingConfiguration$ = [9, n0, _DLC,
|
|
2505
|
+
0, () => DescribeLoggingConfigurationRequest$, () => DescribeLoggingConfigurationResponse$
|
|
2506
|
+
];
|
|
2507
|
+
var DescribeProxy$ = [9, n0, _DPesc,
|
|
2508
|
+
0, () => DescribeProxyRequest$, () => DescribeProxyResponse$
|
|
2509
|
+
];
|
|
2510
|
+
var DescribeProxyConfiguration$ = [9, n0, _DPCe,
|
|
2511
|
+
0, () => DescribeProxyConfigurationRequest$, () => DescribeProxyConfigurationResponse$
|
|
2512
|
+
];
|
|
2513
|
+
var DescribeProxyRule$ = [9, n0, _DPRescri,
|
|
2514
|
+
0, () => DescribeProxyRuleRequest$, () => DescribeProxyRuleResponse$
|
|
2515
|
+
];
|
|
2516
|
+
var DescribeProxyRuleGroup$ = [9, n0, _DPRGe,
|
|
2517
|
+
0, () => DescribeProxyRuleGroupRequest$, () => DescribeProxyRuleGroupResponse$
|
|
2518
|
+
];
|
|
2519
|
+
var DescribeResourcePolicy$ = [9, n0, _DRPe,
|
|
2520
|
+
0, () => DescribeResourcePolicyRequest$, () => DescribeResourcePolicyResponse$
|
|
2521
|
+
];
|
|
2522
|
+
var DescribeRuleGroup$ = [9, n0, _DRGe,
|
|
2523
|
+
0, () => DescribeRuleGroupRequest$, () => DescribeRuleGroupResponse$
|
|
2524
|
+
];
|
|
2525
|
+
var DescribeRuleGroupMetadata$ = [9, n0, _DRGM,
|
|
2526
|
+
0, () => DescribeRuleGroupMetadataRequest$, () => DescribeRuleGroupMetadataResponse$
|
|
2527
|
+
];
|
|
2528
|
+
var DescribeRuleGroupSummary$ = [9, n0, _DRGS,
|
|
2529
|
+
0, () => DescribeRuleGroupSummaryRequest$, () => DescribeRuleGroupSummaryResponse$
|
|
2530
|
+
];
|
|
2531
|
+
var DescribeTLSInspectionConfiguration$ = [9, n0, _DTLSICe,
|
|
2532
|
+
0, () => DescribeTLSInspectionConfigurationRequest$, () => DescribeTLSInspectionConfigurationResponse$
|
|
2533
|
+
];
|
|
2534
|
+
var DescribeVpcEndpointAssociation$ = [9, n0, _DVEAe,
|
|
2535
|
+
0, () => DescribeVpcEndpointAssociationRequest$, () => DescribeVpcEndpointAssociationResponse$
|
|
2536
|
+
];
|
|
2537
|
+
var DetachRuleGroupsFromProxyConfiguration$ = [9, n0, _DRGFPC,
|
|
2538
|
+
0, () => DetachRuleGroupsFromProxyConfigurationRequest$, () => DetachRuleGroupsFromProxyConfigurationResponse$
|
|
2539
|
+
];
|
|
2540
|
+
var DisassociateAvailabilityZones$ = [9, n0, _DAZ,
|
|
2541
|
+
0, () => DisassociateAvailabilityZonesRequest$, () => DisassociateAvailabilityZonesResponse$
|
|
2542
|
+
];
|
|
2543
|
+
var DisassociateSubnets$ = [9, n0, _DS,
|
|
2544
|
+
0, () => DisassociateSubnetsRequest$, () => DisassociateSubnetsResponse$
|
|
2545
|
+
];
|
|
2546
|
+
var GetAnalysisReportResults$ = [9, n0, _GARR,
|
|
2547
|
+
0, () => GetAnalysisReportResultsRequest$, () => GetAnalysisReportResultsResponse$
|
|
2548
|
+
];
|
|
2549
|
+
var ListAnalysisReports$ = [9, n0, _LAR,
|
|
2550
|
+
0, () => ListAnalysisReportsRequest$, () => ListAnalysisReportsResponse$
|
|
2551
|
+
];
|
|
2552
|
+
var ListFirewallPolicies$ = [9, n0, _LFP,
|
|
2553
|
+
0, () => ListFirewallPoliciesRequest$, () => ListFirewallPoliciesResponse$
|
|
2554
|
+
];
|
|
2555
|
+
var ListFirewalls$ = [9, n0, _LF,
|
|
2556
|
+
0, () => ListFirewallsRequest$, () => ListFirewallsResponse$
|
|
2557
|
+
];
|
|
2558
|
+
var ListFlowOperationResults$ = [9, n0, _LFORis,
|
|
2559
|
+
0, () => ListFlowOperationResultsRequest$, () => ListFlowOperationResultsResponse$
|
|
2560
|
+
];
|
|
2561
|
+
var ListFlowOperations$ = [9, n0, _LFO,
|
|
2562
|
+
0, () => ListFlowOperationsRequest$, () => ListFlowOperationsResponse$
|
|
2563
|
+
];
|
|
2564
|
+
var ListProxies$ = [9, n0, _LPis,
|
|
2565
|
+
0, () => ListProxiesRequest$, () => ListProxiesResponse$
|
|
2566
|
+
];
|
|
2567
|
+
var ListProxyConfigurations$ = [9, n0, _LPC,
|
|
2568
|
+
0, () => ListProxyConfigurationsRequest$, () => ListProxyConfigurationsResponse$
|
|
2569
|
+
];
|
|
2570
|
+
var ListProxyRuleGroups$ = [9, n0, _LPRG,
|
|
2571
|
+
0, () => ListProxyRuleGroupsRequest$, () => ListProxyRuleGroupsResponse$
|
|
2572
|
+
];
|
|
2573
|
+
var ListRuleGroups$ = [9, n0, _LRG,
|
|
2574
|
+
0, () => ListRuleGroupsRequest$, () => ListRuleGroupsResponse$
|
|
2575
|
+
];
|
|
2576
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2577
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2578
|
+
];
|
|
2579
|
+
var ListTLSInspectionConfigurations$ = [9, n0, _LTLSIC,
|
|
2580
|
+
0, () => ListTLSInspectionConfigurationsRequest$, () => ListTLSInspectionConfigurationsResponse$
|
|
2581
|
+
];
|
|
2582
|
+
var ListVpcEndpointAssociations$ = [9, n0, _LVEA,
|
|
2583
|
+
0, () => ListVpcEndpointAssociationsRequest$, () => ListVpcEndpointAssociationsResponse$
|
|
2584
|
+
];
|
|
2585
|
+
var PutResourcePolicy$ = [9, n0, _PRPu,
|
|
2586
|
+
0, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
2587
|
+
];
|
|
2588
|
+
var RejectNetworkFirewallTransitGatewayAttachment$ = [9, n0, _RNFTGA,
|
|
2589
|
+
0, () => RejectNetworkFirewallTransitGatewayAttachmentRequest$, () => RejectNetworkFirewallTransitGatewayAttachmentResponse$
|
|
2590
|
+
];
|
|
2591
|
+
var StartAnalysisReport$ = [9, n0, _SAR,
|
|
2592
|
+
0, () => StartAnalysisReportRequest$, () => StartAnalysisReportResponse$
|
|
2593
|
+
];
|
|
2594
|
+
var StartFlowCapture$ = [9, n0, _SFC,
|
|
2595
|
+
0, () => StartFlowCaptureRequest$, () => StartFlowCaptureResponse$
|
|
2596
|
+
];
|
|
2597
|
+
var StartFlowFlush$ = [9, n0, _SFF,
|
|
2598
|
+
0, () => StartFlowFlushRequest$, () => StartFlowFlushResponse$
|
|
2599
|
+
];
|
|
2600
|
+
var TagResource$ = [9, n0, _TR,
|
|
2601
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2602
|
+
];
|
|
2603
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2604
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2605
|
+
];
|
|
2606
|
+
var UpdateAvailabilityZoneChangeProtection$ = [9, n0, _UAZCP,
|
|
2607
|
+
0, () => UpdateAvailabilityZoneChangeProtectionRequest$, () => UpdateAvailabilityZoneChangeProtectionResponse$
|
|
2608
|
+
];
|
|
2609
|
+
var UpdateFirewallAnalysisSettings$ = [9, n0, _UFAS,
|
|
2610
|
+
0, () => UpdateFirewallAnalysisSettingsRequest$, () => UpdateFirewallAnalysisSettingsResponse$
|
|
2611
|
+
];
|
|
2612
|
+
var UpdateFirewallDeleteProtection$ = [9, n0, _UFDP,
|
|
2613
|
+
0, () => UpdateFirewallDeleteProtectionRequest$, () => UpdateFirewallDeleteProtectionResponse$
|
|
2614
|
+
];
|
|
2615
|
+
var UpdateFirewallDescription$ = [9, n0, _UFD,
|
|
2616
|
+
0, () => UpdateFirewallDescriptionRequest$, () => UpdateFirewallDescriptionResponse$
|
|
2617
|
+
];
|
|
2618
|
+
var UpdateFirewallEncryptionConfiguration$ = [9, n0, _UFEC,
|
|
2619
|
+
0, () => UpdateFirewallEncryptionConfigurationRequest$, () => UpdateFirewallEncryptionConfigurationResponse$
|
|
2620
|
+
];
|
|
2621
|
+
var UpdateFirewallPolicy$ = [9, n0, _UFP,
|
|
2622
|
+
0, () => UpdateFirewallPolicyRequest$, () => UpdateFirewallPolicyResponse$
|
|
2623
|
+
];
|
|
2624
|
+
var UpdateFirewallPolicyChangeProtection$ = [9, n0, _UFPCP,
|
|
2625
|
+
0, () => UpdateFirewallPolicyChangeProtectionRequest$, () => UpdateFirewallPolicyChangeProtectionResponse$
|
|
2626
|
+
];
|
|
2627
|
+
var UpdateLoggingConfiguration$ = [9, n0, _ULC,
|
|
2628
|
+
0, () => UpdateLoggingConfigurationRequest$, () => UpdateLoggingConfigurationResponse$
|
|
2629
|
+
];
|
|
2630
|
+
var UpdateProxy$ = [9, n0, _UP,
|
|
2631
|
+
0, () => UpdateProxyRequest$, () => UpdateProxyResponse$
|
|
2632
|
+
];
|
|
2633
|
+
var UpdateProxyConfiguration$ = [9, n0, _UPC,
|
|
2634
|
+
0, () => UpdateProxyConfigurationRequest$, () => UpdateProxyConfigurationResponse$
|
|
2635
|
+
];
|
|
2636
|
+
var UpdateProxyRule$ = [9, n0, _UPRpd,
|
|
2637
|
+
0, () => UpdateProxyRuleRequest$, () => UpdateProxyRuleResponse$
|
|
2638
|
+
];
|
|
2639
|
+
var UpdateProxyRuleGroupPriorities$ = [9, n0, _UPRGP,
|
|
2640
|
+
0, () => UpdateProxyRuleGroupPrioritiesRequest$, () => UpdateProxyRuleGroupPrioritiesResponse$
|
|
2641
|
+
];
|
|
2642
|
+
var UpdateProxyRulePriorities$ = [9, n0, _UPRP,
|
|
2643
|
+
0, () => UpdateProxyRulePrioritiesRequest$, () => UpdateProxyRulePrioritiesResponse$
|
|
2644
|
+
];
|
|
2645
|
+
var UpdateRuleGroup$ = [9, n0, _URG,
|
|
2646
|
+
0, () => UpdateRuleGroupRequest$, () => UpdateRuleGroupResponse$
|
|
2647
|
+
];
|
|
2648
|
+
var UpdateSubnetChangeProtection$ = [9, n0, _USCP,
|
|
2649
|
+
0, () => UpdateSubnetChangeProtectionRequest$, () => UpdateSubnetChangeProtectionResponse$
|
|
2650
|
+
];
|
|
2651
|
+
var UpdateTLSInspectionConfiguration$ = [9, n0, _UTLSIC,
|
|
2652
|
+
0, () => UpdateTLSInspectionConfigurationRequest$, () => UpdateTLSInspectionConfigurationResponse$
|
|
2653
|
+
];
|
|
2654
|
+
|
|
2655
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2656
|
+
return {
|
|
2657
|
+
apiVersion: "2020-11-12",
|
|
2658
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2659
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2660
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2661
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2662
|
+
extensions: config?.extensions ?? [],
|
|
2663
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultNetworkFirewallHttpAuthSchemeProvider,
|
|
2664
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2665
|
+
{
|
|
2666
|
+
schemeId: "aws.auth#sigv4",
|
|
2667
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2668
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2669
|
+
},
|
|
2670
|
+
],
|
|
2671
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2672
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
2673
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2674
|
+
defaultNamespace: "com.amazonaws.networkfirewall",
|
|
2675
|
+
errorTypeRegistries,
|
|
2676
|
+
version: "2020-11-12",
|
|
2677
|
+
serviceTarget: "NetworkFirewall_20201112",
|
|
2678
|
+
},
|
|
2679
|
+
serviceId: config?.serviceId ?? "Network Firewall",
|
|
2680
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2681
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2682
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2683
|
+
};
|
|
2684
|
+
};
|
|
2685
|
+
|
|
2686
|
+
const getRuntimeConfig = (config) => {
|
|
2687
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2688
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2689
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2690
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2691
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2692
|
+
const loaderConfig = {
|
|
2693
|
+
profile: config?.profile,
|
|
2694
|
+
logger: clientSharedValues.logger,
|
|
2695
|
+
};
|
|
2696
|
+
return {
|
|
2697
|
+
...clientSharedValues,
|
|
2698
|
+
...config,
|
|
2699
|
+
runtime: "node",
|
|
2700
|
+
defaultsMode,
|
|
2701
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2702
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2703
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2704
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2705
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2706
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2707
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2708
|
+
retryMode: config?.retryMode ??
|
|
2709
|
+
loadConfig({
|
|
2710
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2711
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2712
|
+
}, config),
|
|
2713
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2714
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2715
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2716
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2717
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2718
|
+
};
|
|
2719
|
+
};
|
|
2720
|
+
|
|
34
2721
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2722
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2723
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1389,122 +4076,484 @@ const RuleGroupRequestPhase = {
|
|
|
1389
4076
|
PRE_REQ: "PRE_REQ",
|
|
1390
4077
|
};
|
|
1391
4078
|
|
|
4079
|
+
exports.AZSyncState$ = AZSyncState$;
|
|
4080
|
+
exports.AcceptNetworkFirewallTransitGatewayAttachment$ = AcceptNetworkFirewallTransitGatewayAttachment$;
|
|
1392
4081
|
exports.AcceptNetworkFirewallTransitGatewayAttachmentCommand = AcceptNetworkFirewallTransitGatewayAttachmentCommand;
|
|
4082
|
+
exports.AcceptNetworkFirewallTransitGatewayAttachmentRequest$ = AcceptNetworkFirewallTransitGatewayAttachmentRequest$;
|
|
4083
|
+
exports.AcceptNetworkFirewallTransitGatewayAttachmentResponse$ = AcceptNetworkFirewallTransitGatewayAttachmentResponse$;
|
|
4084
|
+
exports.ActionDefinition$ = ActionDefinition$;
|
|
4085
|
+
exports.Address$ = Address$;
|
|
4086
|
+
exports.AnalysisReport$ = AnalysisReport$;
|
|
4087
|
+
exports.AnalysisResult$ = AnalysisResult$;
|
|
4088
|
+
exports.AnalysisTypeReportResult$ = AnalysisTypeReportResult$;
|
|
4089
|
+
exports.AssociateAvailabilityZones$ = AssociateAvailabilityZones$;
|
|
1393
4090
|
exports.AssociateAvailabilityZonesCommand = AssociateAvailabilityZonesCommand;
|
|
4091
|
+
exports.AssociateAvailabilityZonesRequest$ = AssociateAvailabilityZonesRequest$;
|
|
4092
|
+
exports.AssociateAvailabilityZonesResponse$ = AssociateAvailabilityZonesResponse$;
|
|
4093
|
+
exports.AssociateFirewallPolicy$ = AssociateFirewallPolicy$;
|
|
1394
4094
|
exports.AssociateFirewallPolicyCommand = AssociateFirewallPolicyCommand;
|
|
4095
|
+
exports.AssociateFirewallPolicyRequest$ = AssociateFirewallPolicyRequest$;
|
|
4096
|
+
exports.AssociateFirewallPolicyResponse$ = AssociateFirewallPolicyResponse$;
|
|
4097
|
+
exports.AssociateSubnets$ = AssociateSubnets$;
|
|
1395
4098
|
exports.AssociateSubnetsCommand = AssociateSubnetsCommand;
|
|
4099
|
+
exports.AssociateSubnetsRequest$ = AssociateSubnetsRequest$;
|
|
4100
|
+
exports.AssociateSubnetsResponse$ = AssociateSubnetsResponse$;
|
|
4101
|
+
exports.AttachRuleGroupsToProxyConfiguration$ = AttachRuleGroupsToProxyConfiguration$;
|
|
1396
4102
|
exports.AttachRuleGroupsToProxyConfigurationCommand = AttachRuleGroupsToProxyConfigurationCommand;
|
|
4103
|
+
exports.AttachRuleGroupsToProxyConfigurationRequest$ = AttachRuleGroupsToProxyConfigurationRequest$;
|
|
4104
|
+
exports.AttachRuleGroupsToProxyConfigurationResponse$ = AttachRuleGroupsToProxyConfigurationResponse$;
|
|
4105
|
+
exports.Attachment$ = Attachment$;
|
|
1397
4106
|
exports.AttachmentStatus = AttachmentStatus;
|
|
4107
|
+
exports.AvailabilityZoneMapping$ = AvailabilityZoneMapping$;
|
|
4108
|
+
exports.AvailabilityZoneMetadata$ = AvailabilityZoneMetadata$;
|
|
4109
|
+
exports.CIDRSummary$ = CIDRSummary$;
|
|
4110
|
+
exports.CapacityUsageSummary$ = CapacityUsageSummary$;
|
|
4111
|
+
exports.CheckCertificateRevocationStatusActions$ = CheckCertificateRevocationStatusActions$;
|
|
1398
4112
|
exports.ConfigurationSyncState = ConfigurationSyncState;
|
|
4113
|
+
exports.CreateFirewall$ = CreateFirewall$;
|
|
1399
4114
|
exports.CreateFirewallCommand = CreateFirewallCommand;
|
|
4115
|
+
exports.CreateFirewallPolicy$ = CreateFirewallPolicy$;
|
|
1400
4116
|
exports.CreateFirewallPolicyCommand = CreateFirewallPolicyCommand;
|
|
4117
|
+
exports.CreateFirewallPolicyRequest$ = CreateFirewallPolicyRequest$;
|
|
4118
|
+
exports.CreateFirewallPolicyResponse$ = CreateFirewallPolicyResponse$;
|
|
4119
|
+
exports.CreateFirewallRequest$ = CreateFirewallRequest$;
|
|
4120
|
+
exports.CreateFirewallResponse$ = CreateFirewallResponse$;
|
|
4121
|
+
exports.CreateProxy$ = CreateProxy$;
|
|
1401
4122
|
exports.CreateProxyCommand = CreateProxyCommand;
|
|
4123
|
+
exports.CreateProxyConfiguration$ = CreateProxyConfiguration$;
|
|
1402
4124
|
exports.CreateProxyConfigurationCommand = CreateProxyConfigurationCommand;
|
|
4125
|
+
exports.CreateProxyConfigurationRequest$ = CreateProxyConfigurationRequest$;
|
|
4126
|
+
exports.CreateProxyConfigurationResponse$ = CreateProxyConfigurationResponse$;
|
|
4127
|
+
exports.CreateProxyRequest$ = CreateProxyRequest$;
|
|
4128
|
+
exports.CreateProxyResponse$ = CreateProxyResponse$;
|
|
4129
|
+
exports.CreateProxyRule$ = CreateProxyRule$;
|
|
4130
|
+
exports.CreateProxyRuleGroup$ = CreateProxyRuleGroup$;
|
|
1403
4131
|
exports.CreateProxyRuleGroupCommand = CreateProxyRuleGroupCommand;
|
|
4132
|
+
exports.CreateProxyRuleGroupRequest$ = CreateProxyRuleGroupRequest$;
|
|
4133
|
+
exports.CreateProxyRuleGroupResponse$ = CreateProxyRuleGroupResponse$;
|
|
4134
|
+
exports.CreateProxyRules$ = CreateProxyRules$;
|
|
4135
|
+
exports.CreateProxyRulesByRequestPhase$ = CreateProxyRulesByRequestPhase$;
|
|
1404
4136
|
exports.CreateProxyRulesCommand = CreateProxyRulesCommand;
|
|
4137
|
+
exports.CreateProxyRulesRequest$ = CreateProxyRulesRequest$;
|
|
4138
|
+
exports.CreateProxyRulesResponse$ = CreateProxyRulesResponse$;
|
|
4139
|
+
exports.CreateRuleGroup$ = CreateRuleGroup$;
|
|
1405
4140
|
exports.CreateRuleGroupCommand = CreateRuleGroupCommand;
|
|
4141
|
+
exports.CreateRuleGroupRequest$ = CreateRuleGroupRequest$;
|
|
4142
|
+
exports.CreateRuleGroupResponse$ = CreateRuleGroupResponse$;
|
|
4143
|
+
exports.CreateTLSInspectionConfiguration$ = CreateTLSInspectionConfiguration$;
|
|
1406
4144
|
exports.CreateTLSInspectionConfigurationCommand = CreateTLSInspectionConfigurationCommand;
|
|
4145
|
+
exports.CreateTLSInspectionConfigurationRequest$ = CreateTLSInspectionConfigurationRequest$;
|
|
4146
|
+
exports.CreateTLSInspectionConfigurationResponse$ = CreateTLSInspectionConfigurationResponse$;
|
|
4147
|
+
exports.CreateVpcEndpointAssociation$ = CreateVpcEndpointAssociation$;
|
|
1407
4148
|
exports.CreateVpcEndpointAssociationCommand = CreateVpcEndpointAssociationCommand;
|
|
4149
|
+
exports.CreateVpcEndpointAssociationRequest$ = CreateVpcEndpointAssociationRequest$;
|
|
4150
|
+
exports.CreateVpcEndpointAssociationResponse$ = CreateVpcEndpointAssociationResponse$;
|
|
4151
|
+
exports.CustomAction$ = CustomAction$;
|
|
4152
|
+
exports.DeleteFirewall$ = DeleteFirewall$;
|
|
1408
4153
|
exports.DeleteFirewallCommand = DeleteFirewallCommand;
|
|
4154
|
+
exports.DeleteFirewallPolicy$ = DeleteFirewallPolicy$;
|
|
1409
4155
|
exports.DeleteFirewallPolicyCommand = DeleteFirewallPolicyCommand;
|
|
4156
|
+
exports.DeleteFirewallPolicyRequest$ = DeleteFirewallPolicyRequest$;
|
|
4157
|
+
exports.DeleteFirewallPolicyResponse$ = DeleteFirewallPolicyResponse$;
|
|
4158
|
+
exports.DeleteFirewallRequest$ = DeleteFirewallRequest$;
|
|
4159
|
+
exports.DeleteFirewallResponse$ = DeleteFirewallResponse$;
|
|
4160
|
+
exports.DeleteNetworkFirewallTransitGatewayAttachment$ = DeleteNetworkFirewallTransitGatewayAttachment$;
|
|
1410
4161
|
exports.DeleteNetworkFirewallTransitGatewayAttachmentCommand = DeleteNetworkFirewallTransitGatewayAttachmentCommand;
|
|
4162
|
+
exports.DeleteNetworkFirewallTransitGatewayAttachmentRequest$ = DeleteNetworkFirewallTransitGatewayAttachmentRequest$;
|
|
4163
|
+
exports.DeleteNetworkFirewallTransitGatewayAttachmentResponse$ = DeleteNetworkFirewallTransitGatewayAttachmentResponse$;
|
|
4164
|
+
exports.DeleteProxy$ = DeleteProxy$;
|
|
1411
4165
|
exports.DeleteProxyCommand = DeleteProxyCommand;
|
|
4166
|
+
exports.DeleteProxyConfiguration$ = DeleteProxyConfiguration$;
|
|
1412
4167
|
exports.DeleteProxyConfigurationCommand = DeleteProxyConfigurationCommand;
|
|
4168
|
+
exports.DeleteProxyConfigurationRequest$ = DeleteProxyConfigurationRequest$;
|
|
4169
|
+
exports.DeleteProxyConfigurationResponse$ = DeleteProxyConfigurationResponse$;
|
|
4170
|
+
exports.DeleteProxyRequest$ = DeleteProxyRequest$;
|
|
4171
|
+
exports.DeleteProxyResponse$ = DeleteProxyResponse$;
|
|
4172
|
+
exports.DeleteProxyRuleGroup$ = DeleteProxyRuleGroup$;
|
|
1413
4173
|
exports.DeleteProxyRuleGroupCommand = DeleteProxyRuleGroupCommand;
|
|
4174
|
+
exports.DeleteProxyRuleGroupRequest$ = DeleteProxyRuleGroupRequest$;
|
|
4175
|
+
exports.DeleteProxyRuleGroupResponse$ = DeleteProxyRuleGroupResponse$;
|
|
4176
|
+
exports.DeleteProxyRules$ = DeleteProxyRules$;
|
|
1414
4177
|
exports.DeleteProxyRulesCommand = DeleteProxyRulesCommand;
|
|
4178
|
+
exports.DeleteProxyRulesRequest$ = DeleteProxyRulesRequest$;
|
|
4179
|
+
exports.DeleteProxyRulesResponse$ = DeleteProxyRulesResponse$;
|
|
4180
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
1415
4181
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
4182
|
+
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
4183
|
+
exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
|
|
4184
|
+
exports.DeleteRuleGroup$ = DeleteRuleGroup$;
|
|
1416
4185
|
exports.DeleteRuleGroupCommand = DeleteRuleGroupCommand;
|
|
4186
|
+
exports.DeleteRuleGroupRequest$ = DeleteRuleGroupRequest$;
|
|
4187
|
+
exports.DeleteRuleGroupResponse$ = DeleteRuleGroupResponse$;
|
|
4188
|
+
exports.DeleteTLSInspectionConfiguration$ = DeleteTLSInspectionConfiguration$;
|
|
1417
4189
|
exports.DeleteTLSInspectionConfigurationCommand = DeleteTLSInspectionConfigurationCommand;
|
|
4190
|
+
exports.DeleteTLSInspectionConfigurationRequest$ = DeleteTLSInspectionConfigurationRequest$;
|
|
4191
|
+
exports.DeleteTLSInspectionConfigurationResponse$ = DeleteTLSInspectionConfigurationResponse$;
|
|
4192
|
+
exports.DeleteVpcEndpointAssociation$ = DeleteVpcEndpointAssociation$;
|
|
1418
4193
|
exports.DeleteVpcEndpointAssociationCommand = DeleteVpcEndpointAssociationCommand;
|
|
4194
|
+
exports.DeleteVpcEndpointAssociationRequest$ = DeleteVpcEndpointAssociationRequest$;
|
|
4195
|
+
exports.DeleteVpcEndpointAssociationResponse$ = DeleteVpcEndpointAssociationResponse$;
|
|
4196
|
+
exports.DescribeFirewall$ = DescribeFirewall$;
|
|
1419
4197
|
exports.DescribeFirewallCommand = DescribeFirewallCommand;
|
|
4198
|
+
exports.DescribeFirewallMetadata$ = DescribeFirewallMetadata$;
|
|
1420
4199
|
exports.DescribeFirewallMetadataCommand = DescribeFirewallMetadataCommand;
|
|
4200
|
+
exports.DescribeFirewallMetadataRequest$ = DescribeFirewallMetadataRequest$;
|
|
4201
|
+
exports.DescribeFirewallMetadataResponse$ = DescribeFirewallMetadataResponse$;
|
|
4202
|
+
exports.DescribeFirewallPolicy$ = DescribeFirewallPolicy$;
|
|
1421
4203
|
exports.DescribeFirewallPolicyCommand = DescribeFirewallPolicyCommand;
|
|
4204
|
+
exports.DescribeFirewallPolicyRequest$ = DescribeFirewallPolicyRequest$;
|
|
4205
|
+
exports.DescribeFirewallPolicyResponse$ = DescribeFirewallPolicyResponse$;
|
|
4206
|
+
exports.DescribeFirewallRequest$ = DescribeFirewallRequest$;
|
|
4207
|
+
exports.DescribeFirewallResponse$ = DescribeFirewallResponse$;
|
|
4208
|
+
exports.DescribeFlowOperation$ = DescribeFlowOperation$;
|
|
1422
4209
|
exports.DescribeFlowOperationCommand = DescribeFlowOperationCommand;
|
|
4210
|
+
exports.DescribeFlowOperationRequest$ = DescribeFlowOperationRequest$;
|
|
4211
|
+
exports.DescribeFlowOperationResponse$ = DescribeFlowOperationResponse$;
|
|
4212
|
+
exports.DescribeLoggingConfiguration$ = DescribeLoggingConfiguration$;
|
|
1423
4213
|
exports.DescribeLoggingConfigurationCommand = DescribeLoggingConfigurationCommand;
|
|
4214
|
+
exports.DescribeLoggingConfigurationRequest$ = DescribeLoggingConfigurationRequest$;
|
|
4215
|
+
exports.DescribeLoggingConfigurationResponse$ = DescribeLoggingConfigurationResponse$;
|
|
4216
|
+
exports.DescribeProxy$ = DescribeProxy$;
|
|
1424
4217
|
exports.DescribeProxyCommand = DescribeProxyCommand;
|
|
4218
|
+
exports.DescribeProxyConfiguration$ = DescribeProxyConfiguration$;
|
|
1425
4219
|
exports.DescribeProxyConfigurationCommand = DescribeProxyConfigurationCommand;
|
|
4220
|
+
exports.DescribeProxyConfigurationRequest$ = DescribeProxyConfigurationRequest$;
|
|
4221
|
+
exports.DescribeProxyConfigurationResponse$ = DescribeProxyConfigurationResponse$;
|
|
4222
|
+
exports.DescribeProxyRequest$ = DescribeProxyRequest$;
|
|
4223
|
+
exports.DescribeProxyResource$ = DescribeProxyResource$;
|
|
4224
|
+
exports.DescribeProxyResponse$ = DescribeProxyResponse$;
|
|
4225
|
+
exports.DescribeProxyRule$ = DescribeProxyRule$;
|
|
1426
4226
|
exports.DescribeProxyRuleCommand = DescribeProxyRuleCommand;
|
|
4227
|
+
exports.DescribeProxyRuleGroup$ = DescribeProxyRuleGroup$;
|
|
1427
4228
|
exports.DescribeProxyRuleGroupCommand = DescribeProxyRuleGroupCommand;
|
|
4229
|
+
exports.DescribeProxyRuleGroupRequest$ = DescribeProxyRuleGroupRequest$;
|
|
4230
|
+
exports.DescribeProxyRuleGroupResponse$ = DescribeProxyRuleGroupResponse$;
|
|
4231
|
+
exports.DescribeProxyRuleRequest$ = DescribeProxyRuleRequest$;
|
|
4232
|
+
exports.DescribeProxyRuleResponse$ = DescribeProxyRuleResponse$;
|
|
4233
|
+
exports.DescribeResourcePolicy$ = DescribeResourcePolicy$;
|
|
1428
4234
|
exports.DescribeResourcePolicyCommand = DescribeResourcePolicyCommand;
|
|
4235
|
+
exports.DescribeResourcePolicyRequest$ = DescribeResourcePolicyRequest$;
|
|
4236
|
+
exports.DescribeResourcePolicyResponse$ = DescribeResourcePolicyResponse$;
|
|
4237
|
+
exports.DescribeRuleGroup$ = DescribeRuleGroup$;
|
|
1429
4238
|
exports.DescribeRuleGroupCommand = DescribeRuleGroupCommand;
|
|
4239
|
+
exports.DescribeRuleGroupMetadata$ = DescribeRuleGroupMetadata$;
|
|
1430
4240
|
exports.DescribeRuleGroupMetadataCommand = DescribeRuleGroupMetadataCommand;
|
|
4241
|
+
exports.DescribeRuleGroupMetadataRequest$ = DescribeRuleGroupMetadataRequest$;
|
|
4242
|
+
exports.DescribeRuleGroupMetadataResponse$ = DescribeRuleGroupMetadataResponse$;
|
|
4243
|
+
exports.DescribeRuleGroupRequest$ = DescribeRuleGroupRequest$;
|
|
4244
|
+
exports.DescribeRuleGroupResponse$ = DescribeRuleGroupResponse$;
|
|
4245
|
+
exports.DescribeRuleGroupSummary$ = DescribeRuleGroupSummary$;
|
|
1431
4246
|
exports.DescribeRuleGroupSummaryCommand = DescribeRuleGroupSummaryCommand;
|
|
4247
|
+
exports.DescribeRuleGroupSummaryRequest$ = DescribeRuleGroupSummaryRequest$;
|
|
4248
|
+
exports.DescribeRuleGroupSummaryResponse$ = DescribeRuleGroupSummaryResponse$;
|
|
4249
|
+
exports.DescribeTLSInspectionConfiguration$ = DescribeTLSInspectionConfiguration$;
|
|
1432
4250
|
exports.DescribeTLSInspectionConfigurationCommand = DescribeTLSInspectionConfigurationCommand;
|
|
4251
|
+
exports.DescribeTLSInspectionConfigurationRequest$ = DescribeTLSInspectionConfigurationRequest$;
|
|
4252
|
+
exports.DescribeTLSInspectionConfigurationResponse$ = DescribeTLSInspectionConfigurationResponse$;
|
|
4253
|
+
exports.DescribeVpcEndpointAssociation$ = DescribeVpcEndpointAssociation$;
|
|
1433
4254
|
exports.DescribeVpcEndpointAssociationCommand = DescribeVpcEndpointAssociationCommand;
|
|
4255
|
+
exports.DescribeVpcEndpointAssociationRequest$ = DescribeVpcEndpointAssociationRequest$;
|
|
4256
|
+
exports.DescribeVpcEndpointAssociationResponse$ = DescribeVpcEndpointAssociationResponse$;
|
|
4257
|
+
exports.DetachRuleGroupsFromProxyConfiguration$ = DetachRuleGroupsFromProxyConfiguration$;
|
|
1434
4258
|
exports.DetachRuleGroupsFromProxyConfigurationCommand = DetachRuleGroupsFromProxyConfigurationCommand;
|
|
4259
|
+
exports.DetachRuleGroupsFromProxyConfigurationRequest$ = DetachRuleGroupsFromProxyConfigurationRequest$;
|
|
4260
|
+
exports.DetachRuleGroupsFromProxyConfigurationResponse$ = DetachRuleGroupsFromProxyConfigurationResponse$;
|
|
4261
|
+
exports.Dimension$ = Dimension$;
|
|
4262
|
+
exports.DisassociateAvailabilityZones$ = DisassociateAvailabilityZones$;
|
|
1435
4263
|
exports.DisassociateAvailabilityZonesCommand = DisassociateAvailabilityZonesCommand;
|
|
4264
|
+
exports.DisassociateAvailabilityZonesRequest$ = DisassociateAvailabilityZonesRequest$;
|
|
4265
|
+
exports.DisassociateAvailabilityZonesResponse$ = DisassociateAvailabilityZonesResponse$;
|
|
4266
|
+
exports.DisassociateSubnets$ = DisassociateSubnets$;
|
|
1436
4267
|
exports.DisassociateSubnetsCommand = DisassociateSubnetsCommand;
|
|
4268
|
+
exports.DisassociateSubnetsRequest$ = DisassociateSubnetsRequest$;
|
|
4269
|
+
exports.DisassociateSubnetsResponse$ = DisassociateSubnetsResponse$;
|
|
1437
4270
|
exports.EnabledAnalysisType = EnabledAnalysisType;
|
|
4271
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
1438
4272
|
exports.EncryptionType = EncryptionType;
|
|
4273
|
+
exports.Firewall$ = Firewall$;
|
|
4274
|
+
exports.FirewallMetadata$ = FirewallMetadata$;
|
|
4275
|
+
exports.FirewallPolicy$ = FirewallPolicy$;
|
|
4276
|
+
exports.FirewallPolicyMetadata$ = FirewallPolicyMetadata$;
|
|
4277
|
+
exports.FirewallPolicyResponse$ = FirewallPolicyResponse$;
|
|
4278
|
+
exports.FirewallStatus$ = FirewallStatus$;
|
|
1439
4279
|
exports.FirewallStatusValue = FirewallStatusValue;
|
|
4280
|
+
exports.Flow$ = Flow$;
|
|
4281
|
+
exports.FlowFilter$ = FlowFilter$;
|
|
4282
|
+
exports.FlowOperation$ = FlowOperation$;
|
|
4283
|
+
exports.FlowOperationMetadata$ = FlowOperationMetadata$;
|
|
1440
4284
|
exports.FlowOperationStatus = FlowOperationStatus;
|
|
1441
4285
|
exports.FlowOperationType = FlowOperationType;
|
|
4286
|
+
exports.FlowTimeouts$ = FlowTimeouts$;
|
|
1442
4287
|
exports.GeneratedRulesType = GeneratedRulesType;
|
|
4288
|
+
exports.GetAnalysisReportResults$ = GetAnalysisReportResults$;
|
|
1443
4289
|
exports.GetAnalysisReportResultsCommand = GetAnalysisReportResultsCommand;
|
|
4290
|
+
exports.GetAnalysisReportResultsRequest$ = GetAnalysisReportResultsRequest$;
|
|
4291
|
+
exports.GetAnalysisReportResultsResponse$ = GetAnalysisReportResultsResponse$;
|
|
4292
|
+
exports.Header$ = Header$;
|
|
4293
|
+
exports.Hits$ = Hits$;
|
|
1444
4294
|
exports.IPAddressType = IPAddressType;
|
|
4295
|
+
exports.IPSet$ = IPSet$;
|
|
4296
|
+
exports.IPSetMetadata$ = IPSetMetadata$;
|
|
4297
|
+
exports.IPSetReference$ = IPSetReference$;
|
|
1445
4298
|
exports.IdentifiedType = IdentifiedType;
|
|
4299
|
+
exports.InsufficientCapacityException = InsufficientCapacityException;
|
|
4300
|
+
exports.InsufficientCapacityException$ = InsufficientCapacityException$;
|
|
4301
|
+
exports.InternalServerError = InternalServerError;
|
|
4302
|
+
exports.InternalServerError$ = InternalServerError$;
|
|
4303
|
+
exports.InvalidOperationException = InvalidOperationException;
|
|
4304
|
+
exports.InvalidOperationException$ = InvalidOperationException$;
|
|
4305
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
4306
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
4307
|
+
exports.InvalidResourcePolicyException = InvalidResourcePolicyException;
|
|
4308
|
+
exports.InvalidResourcePolicyException$ = InvalidResourcePolicyException$;
|
|
4309
|
+
exports.InvalidTokenException = InvalidTokenException;
|
|
4310
|
+
exports.InvalidTokenException$ = InvalidTokenException$;
|
|
4311
|
+
exports.LimitExceededException = LimitExceededException;
|
|
4312
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
4313
|
+
exports.ListAnalysisReports$ = ListAnalysisReports$;
|
|
1446
4314
|
exports.ListAnalysisReportsCommand = ListAnalysisReportsCommand;
|
|
4315
|
+
exports.ListAnalysisReportsRequest$ = ListAnalysisReportsRequest$;
|
|
4316
|
+
exports.ListAnalysisReportsResponse$ = ListAnalysisReportsResponse$;
|
|
4317
|
+
exports.ListFirewallPolicies$ = ListFirewallPolicies$;
|
|
1447
4318
|
exports.ListFirewallPoliciesCommand = ListFirewallPoliciesCommand;
|
|
4319
|
+
exports.ListFirewallPoliciesRequest$ = ListFirewallPoliciesRequest$;
|
|
4320
|
+
exports.ListFirewallPoliciesResponse$ = ListFirewallPoliciesResponse$;
|
|
4321
|
+
exports.ListFirewalls$ = ListFirewalls$;
|
|
1448
4322
|
exports.ListFirewallsCommand = ListFirewallsCommand;
|
|
4323
|
+
exports.ListFirewallsRequest$ = ListFirewallsRequest$;
|
|
4324
|
+
exports.ListFirewallsResponse$ = ListFirewallsResponse$;
|
|
4325
|
+
exports.ListFlowOperationResults$ = ListFlowOperationResults$;
|
|
1449
4326
|
exports.ListFlowOperationResultsCommand = ListFlowOperationResultsCommand;
|
|
4327
|
+
exports.ListFlowOperationResultsRequest$ = ListFlowOperationResultsRequest$;
|
|
4328
|
+
exports.ListFlowOperationResultsResponse$ = ListFlowOperationResultsResponse$;
|
|
4329
|
+
exports.ListFlowOperations$ = ListFlowOperations$;
|
|
1450
4330
|
exports.ListFlowOperationsCommand = ListFlowOperationsCommand;
|
|
4331
|
+
exports.ListFlowOperationsRequest$ = ListFlowOperationsRequest$;
|
|
4332
|
+
exports.ListFlowOperationsResponse$ = ListFlowOperationsResponse$;
|
|
4333
|
+
exports.ListProxies$ = ListProxies$;
|
|
1451
4334
|
exports.ListProxiesCommand = ListProxiesCommand;
|
|
4335
|
+
exports.ListProxiesRequest$ = ListProxiesRequest$;
|
|
4336
|
+
exports.ListProxiesResponse$ = ListProxiesResponse$;
|
|
4337
|
+
exports.ListProxyConfigurations$ = ListProxyConfigurations$;
|
|
1452
4338
|
exports.ListProxyConfigurationsCommand = ListProxyConfigurationsCommand;
|
|
4339
|
+
exports.ListProxyConfigurationsRequest$ = ListProxyConfigurationsRequest$;
|
|
4340
|
+
exports.ListProxyConfigurationsResponse$ = ListProxyConfigurationsResponse$;
|
|
4341
|
+
exports.ListProxyRuleGroups$ = ListProxyRuleGroups$;
|
|
1453
4342
|
exports.ListProxyRuleGroupsCommand = ListProxyRuleGroupsCommand;
|
|
4343
|
+
exports.ListProxyRuleGroupsRequest$ = ListProxyRuleGroupsRequest$;
|
|
4344
|
+
exports.ListProxyRuleGroupsResponse$ = ListProxyRuleGroupsResponse$;
|
|
4345
|
+
exports.ListRuleGroups$ = ListRuleGroups$;
|
|
1454
4346
|
exports.ListRuleGroupsCommand = ListRuleGroupsCommand;
|
|
4347
|
+
exports.ListRuleGroupsRequest$ = ListRuleGroupsRequest$;
|
|
4348
|
+
exports.ListRuleGroupsResponse$ = ListRuleGroupsResponse$;
|
|
4349
|
+
exports.ListTLSInspectionConfigurations$ = ListTLSInspectionConfigurations$;
|
|
1455
4350
|
exports.ListTLSInspectionConfigurationsCommand = ListTLSInspectionConfigurationsCommand;
|
|
4351
|
+
exports.ListTLSInspectionConfigurationsRequest$ = ListTLSInspectionConfigurationsRequest$;
|
|
4352
|
+
exports.ListTLSInspectionConfigurationsResponse$ = ListTLSInspectionConfigurationsResponse$;
|
|
4353
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1456
4354
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4355
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4356
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4357
|
+
exports.ListVpcEndpointAssociations$ = ListVpcEndpointAssociations$;
|
|
1457
4358
|
exports.ListVpcEndpointAssociationsCommand = ListVpcEndpointAssociationsCommand;
|
|
4359
|
+
exports.ListVpcEndpointAssociationsRequest$ = ListVpcEndpointAssociationsRequest$;
|
|
4360
|
+
exports.ListVpcEndpointAssociationsResponse$ = ListVpcEndpointAssociationsResponse$;
|
|
4361
|
+
exports.ListenerProperty$ = ListenerProperty$;
|
|
4362
|
+
exports.ListenerPropertyRequest$ = ListenerPropertyRequest$;
|
|
1458
4363
|
exports.ListenerPropertyType = ListenerPropertyType;
|
|
4364
|
+
exports.LogDestinationConfig$ = LogDestinationConfig$;
|
|
4365
|
+
exports.LogDestinationPermissionException = LogDestinationPermissionException;
|
|
4366
|
+
exports.LogDestinationPermissionException$ = LogDestinationPermissionException$;
|
|
1459
4367
|
exports.LogDestinationType = LogDestinationType;
|
|
1460
4368
|
exports.LogType = LogType;
|
|
4369
|
+
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
4370
|
+
exports.MatchAttributes$ = MatchAttributes$;
|
|
1461
4371
|
exports.NetworkFirewall = NetworkFirewall;
|
|
1462
4372
|
exports.NetworkFirewallClient = NetworkFirewallClient;
|
|
4373
|
+
exports.NetworkFirewallServiceException = NetworkFirewallServiceException;
|
|
4374
|
+
exports.NetworkFirewallServiceException$ = NetworkFirewallServiceException$;
|
|
1463
4375
|
exports.OverrideAction = OverrideAction;
|
|
4376
|
+
exports.PerObjectStatus$ = PerObjectStatus$;
|
|
1464
4377
|
exports.PerObjectSyncStatus = PerObjectSyncStatus;
|
|
4378
|
+
exports.PolicyVariables$ = PolicyVariables$;
|
|
4379
|
+
exports.PortRange$ = PortRange$;
|
|
4380
|
+
exports.PortSet$ = PortSet$;
|
|
4381
|
+
exports.Proxy$ = Proxy$;
|
|
4382
|
+
exports.ProxyConfigDefaultRulePhaseActionsRequest$ = ProxyConfigDefaultRulePhaseActionsRequest$;
|
|
4383
|
+
exports.ProxyConfigRuleGroup$ = ProxyConfigRuleGroup$;
|
|
4384
|
+
exports.ProxyConfiguration$ = ProxyConfiguration$;
|
|
4385
|
+
exports.ProxyConfigurationMetadata$ = ProxyConfigurationMetadata$;
|
|
4386
|
+
exports.ProxyMetadata$ = ProxyMetadata$;
|
|
1465
4387
|
exports.ProxyModifyState = ProxyModifyState;
|
|
4388
|
+
exports.ProxyRule$ = ProxyRule$;
|
|
4389
|
+
exports.ProxyRuleCondition$ = ProxyRuleCondition$;
|
|
4390
|
+
exports.ProxyRuleGroup$ = ProxyRuleGroup$;
|
|
4391
|
+
exports.ProxyRuleGroupAttachment$ = ProxyRuleGroupAttachment$;
|
|
4392
|
+
exports.ProxyRuleGroupMetadata$ = ProxyRuleGroupMetadata$;
|
|
4393
|
+
exports.ProxyRuleGroupPriority$ = ProxyRuleGroupPriority$;
|
|
4394
|
+
exports.ProxyRuleGroupPriorityResult$ = ProxyRuleGroupPriorityResult$;
|
|
1466
4395
|
exports.ProxyRulePhaseAction = ProxyRulePhaseAction;
|
|
4396
|
+
exports.ProxyRulePriority$ = ProxyRulePriority$;
|
|
4397
|
+
exports.ProxyRulesByRequestPhase$ = ProxyRulesByRequestPhase$;
|
|
1467
4398
|
exports.ProxyState = ProxyState;
|
|
4399
|
+
exports.PublishMetricAction$ = PublishMetricAction$;
|
|
4400
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
1468
4401
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
4402
|
+
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
4403
|
+
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
4404
|
+
exports.ReferenceSets$ = ReferenceSets$;
|
|
4405
|
+
exports.RejectNetworkFirewallTransitGatewayAttachment$ = RejectNetworkFirewallTransitGatewayAttachment$;
|
|
1469
4406
|
exports.RejectNetworkFirewallTransitGatewayAttachmentCommand = RejectNetworkFirewallTransitGatewayAttachmentCommand;
|
|
4407
|
+
exports.RejectNetworkFirewallTransitGatewayAttachmentRequest$ = RejectNetworkFirewallTransitGatewayAttachmentRequest$;
|
|
4408
|
+
exports.RejectNetworkFirewallTransitGatewayAttachmentResponse$ = RejectNetworkFirewallTransitGatewayAttachmentResponse$;
|
|
1470
4409
|
exports.ResourceManagedStatus = ResourceManagedStatus;
|
|
1471
4410
|
exports.ResourceManagedType = ResourceManagedType;
|
|
4411
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
4412
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
4413
|
+
exports.ResourceOwnerCheckException = ResourceOwnerCheckException;
|
|
4414
|
+
exports.ResourceOwnerCheckException$ = ResourceOwnerCheckException$;
|
|
1472
4415
|
exports.ResourceStatus = ResourceStatus;
|
|
1473
4416
|
exports.RevocationCheckAction = RevocationCheckAction;
|
|
4417
|
+
exports.RuleDefinition$ = RuleDefinition$;
|
|
4418
|
+
exports.RuleGroup$ = RuleGroup$;
|
|
4419
|
+
exports.RuleGroupMetadata$ = RuleGroupMetadata$;
|
|
1474
4420
|
exports.RuleGroupRequestPhase = RuleGroupRequestPhase;
|
|
4421
|
+
exports.RuleGroupResponse$ = RuleGroupResponse$;
|
|
1475
4422
|
exports.RuleGroupType = RuleGroupType;
|
|
4423
|
+
exports.RuleOption$ = RuleOption$;
|
|
1476
4424
|
exports.RuleOrder = RuleOrder;
|
|
4425
|
+
exports.RuleSummary$ = RuleSummary$;
|
|
4426
|
+
exports.RuleVariables$ = RuleVariables$;
|
|
4427
|
+
exports.RulesSource$ = RulesSource$;
|
|
4428
|
+
exports.RulesSourceList$ = RulesSourceList$;
|
|
4429
|
+
exports.ServerCertificate$ = ServerCertificate$;
|
|
4430
|
+
exports.ServerCertificateConfiguration$ = ServerCertificateConfiguration$;
|
|
4431
|
+
exports.ServerCertificateScope$ = ServerCertificateScope$;
|
|
4432
|
+
exports.SourceMetadata$ = SourceMetadata$;
|
|
4433
|
+
exports.StartAnalysisReport$ = StartAnalysisReport$;
|
|
1477
4434
|
exports.StartAnalysisReportCommand = StartAnalysisReportCommand;
|
|
4435
|
+
exports.StartAnalysisReportRequest$ = StartAnalysisReportRequest$;
|
|
4436
|
+
exports.StartAnalysisReportResponse$ = StartAnalysisReportResponse$;
|
|
4437
|
+
exports.StartFlowCapture$ = StartFlowCapture$;
|
|
1478
4438
|
exports.StartFlowCaptureCommand = StartFlowCaptureCommand;
|
|
4439
|
+
exports.StartFlowCaptureRequest$ = StartFlowCaptureRequest$;
|
|
4440
|
+
exports.StartFlowCaptureResponse$ = StartFlowCaptureResponse$;
|
|
4441
|
+
exports.StartFlowFlush$ = StartFlowFlush$;
|
|
1479
4442
|
exports.StartFlowFlushCommand = StartFlowFlushCommand;
|
|
4443
|
+
exports.StartFlowFlushRequest$ = StartFlowFlushRequest$;
|
|
4444
|
+
exports.StartFlowFlushResponse$ = StartFlowFlushResponse$;
|
|
1480
4445
|
exports.StatefulAction = StatefulAction;
|
|
4446
|
+
exports.StatefulEngineOptions$ = StatefulEngineOptions$;
|
|
4447
|
+
exports.StatefulRule$ = StatefulRule$;
|
|
1481
4448
|
exports.StatefulRuleDirection = StatefulRuleDirection;
|
|
4449
|
+
exports.StatefulRuleGroupOverride$ = StatefulRuleGroupOverride$;
|
|
4450
|
+
exports.StatefulRuleGroupReference$ = StatefulRuleGroupReference$;
|
|
4451
|
+
exports.StatefulRuleOptions$ = StatefulRuleOptions$;
|
|
1482
4452
|
exports.StatefulRuleProtocol = StatefulRuleProtocol;
|
|
4453
|
+
exports.StatelessRule$ = StatelessRule$;
|
|
4454
|
+
exports.StatelessRuleGroupReference$ = StatelessRuleGroupReference$;
|
|
4455
|
+
exports.StatelessRulesAndCustomActions$ = StatelessRulesAndCustomActions$;
|
|
1483
4456
|
exports.StreamExceptionPolicy = StreamExceptionPolicy;
|
|
4457
|
+
exports.SubnetMapping$ = SubnetMapping$;
|
|
1484
4458
|
exports.SubscriptionStatus = SubscriptionStatus;
|
|
4459
|
+
exports.Summary$ = Summary$;
|
|
4460
|
+
exports.SummaryConfiguration$ = SummaryConfiguration$;
|
|
1485
4461
|
exports.SummaryRuleOption = SummaryRuleOption;
|
|
4462
|
+
exports.SyncState$ = SyncState$;
|
|
1486
4463
|
exports.TCPFlag = TCPFlag;
|
|
4464
|
+
exports.TCPFlagField$ = TCPFlagField$;
|
|
4465
|
+
exports.TLSInspectionConfiguration$ = TLSInspectionConfiguration$;
|
|
4466
|
+
exports.TLSInspectionConfigurationMetadata$ = TLSInspectionConfigurationMetadata$;
|
|
4467
|
+
exports.TLSInspectionConfigurationResponse$ = TLSInspectionConfigurationResponse$;
|
|
4468
|
+
exports.Tag$ = Tag$;
|
|
4469
|
+
exports.TagResource$ = TagResource$;
|
|
1487
4470
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4471
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4472
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1488
4473
|
exports.TargetType = TargetType;
|
|
4474
|
+
exports.ThrottlingException = ThrottlingException;
|
|
4475
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
4476
|
+
exports.TlsCertificateData$ = TlsCertificateData$;
|
|
1489
4477
|
exports.TlsInterceptMode = TlsInterceptMode;
|
|
4478
|
+
exports.TlsInterceptProperties$ = TlsInterceptProperties$;
|
|
4479
|
+
exports.TlsInterceptPropertiesRequest$ = TlsInterceptPropertiesRequest$;
|
|
1490
4480
|
exports.TransitGatewayAttachmentStatus = TransitGatewayAttachmentStatus;
|
|
4481
|
+
exports.TransitGatewayAttachmentSyncState$ = TransitGatewayAttachmentSyncState$;
|
|
4482
|
+
exports.UniqueSources$ = UniqueSources$;
|
|
4483
|
+
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
4484
|
+
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
4485
|
+
exports.UntagResource$ = UntagResource$;
|
|
1491
4486
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4487
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4488
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4489
|
+
exports.UpdateAvailabilityZoneChangeProtection$ = UpdateAvailabilityZoneChangeProtection$;
|
|
1492
4490
|
exports.UpdateAvailabilityZoneChangeProtectionCommand = UpdateAvailabilityZoneChangeProtectionCommand;
|
|
4491
|
+
exports.UpdateAvailabilityZoneChangeProtectionRequest$ = UpdateAvailabilityZoneChangeProtectionRequest$;
|
|
4492
|
+
exports.UpdateAvailabilityZoneChangeProtectionResponse$ = UpdateAvailabilityZoneChangeProtectionResponse$;
|
|
4493
|
+
exports.UpdateFirewallAnalysisSettings$ = UpdateFirewallAnalysisSettings$;
|
|
1493
4494
|
exports.UpdateFirewallAnalysisSettingsCommand = UpdateFirewallAnalysisSettingsCommand;
|
|
4495
|
+
exports.UpdateFirewallAnalysisSettingsRequest$ = UpdateFirewallAnalysisSettingsRequest$;
|
|
4496
|
+
exports.UpdateFirewallAnalysisSettingsResponse$ = UpdateFirewallAnalysisSettingsResponse$;
|
|
4497
|
+
exports.UpdateFirewallDeleteProtection$ = UpdateFirewallDeleteProtection$;
|
|
1494
4498
|
exports.UpdateFirewallDeleteProtectionCommand = UpdateFirewallDeleteProtectionCommand;
|
|
4499
|
+
exports.UpdateFirewallDeleteProtectionRequest$ = UpdateFirewallDeleteProtectionRequest$;
|
|
4500
|
+
exports.UpdateFirewallDeleteProtectionResponse$ = UpdateFirewallDeleteProtectionResponse$;
|
|
4501
|
+
exports.UpdateFirewallDescription$ = UpdateFirewallDescription$;
|
|
1495
4502
|
exports.UpdateFirewallDescriptionCommand = UpdateFirewallDescriptionCommand;
|
|
4503
|
+
exports.UpdateFirewallDescriptionRequest$ = UpdateFirewallDescriptionRequest$;
|
|
4504
|
+
exports.UpdateFirewallDescriptionResponse$ = UpdateFirewallDescriptionResponse$;
|
|
4505
|
+
exports.UpdateFirewallEncryptionConfiguration$ = UpdateFirewallEncryptionConfiguration$;
|
|
1496
4506
|
exports.UpdateFirewallEncryptionConfigurationCommand = UpdateFirewallEncryptionConfigurationCommand;
|
|
4507
|
+
exports.UpdateFirewallEncryptionConfigurationRequest$ = UpdateFirewallEncryptionConfigurationRequest$;
|
|
4508
|
+
exports.UpdateFirewallEncryptionConfigurationResponse$ = UpdateFirewallEncryptionConfigurationResponse$;
|
|
4509
|
+
exports.UpdateFirewallPolicy$ = UpdateFirewallPolicy$;
|
|
4510
|
+
exports.UpdateFirewallPolicyChangeProtection$ = UpdateFirewallPolicyChangeProtection$;
|
|
1497
4511
|
exports.UpdateFirewallPolicyChangeProtectionCommand = UpdateFirewallPolicyChangeProtectionCommand;
|
|
4512
|
+
exports.UpdateFirewallPolicyChangeProtectionRequest$ = UpdateFirewallPolicyChangeProtectionRequest$;
|
|
4513
|
+
exports.UpdateFirewallPolicyChangeProtectionResponse$ = UpdateFirewallPolicyChangeProtectionResponse$;
|
|
1498
4514
|
exports.UpdateFirewallPolicyCommand = UpdateFirewallPolicyCommand;
|
|
4515
|
+
exports.UpdateFirewallPolicyRequest$ = UpdateFirewallPolicyRequest$;
|
|
4516
|
+
exports.UpdateFirewallPolicyResponse$ = UpdateFirewallPolicyResponse$;
|
|
4517
|
+
exports.UpdateLoggingConfiguration$ = UpdateLoggingConfiguration$;
|
|
1499
4518
|
exports.UpdateLoggingConfigurationCommand = UpdateLoggingConfigurationCommand;
|
|
4519
|
+
exports.UpdateLoggingConfigurationRequest$ = UpdateLoggingConfigurationRequest$;
|
|
4520
|
+
exports.UpdateLoggingConfigurationResponse$ = UpdateLoggingConfigurationResponse$;
|
|
4521
|
+
exports.UpdateProxy$ = UpdateProxy$;
|
|
1500
4522
|
exports.UpdateProxyCommand = UpdateProxyCommand;
|
|
4523
|
+
exports.UpdateProxyConfiguration$ = UpdateProxyConfiguration$;
|
|
1501
4524
|
exports.UpdateProxyConfigurationCommand = UpdateProxyConfigurationCommand;
|
|
4525
|
+
exports.UpdateProxyConfigurationRequest$ = UpdateProxyConfigurationRequest$;
|
|
4526
|
+
exports.UpdateProxyConfigurationResponse$ = UpdateProxyConfigurationResponse$;
|
|
4527
|
+
exports.UpdateProxyRequest$ = UpdateProxyRequest$;
|
|
4528
|
+
exports.UpdateProxyResponse$ = UpdateProxyResponse$;
|
|
4529
|
+
exports.UpdateProxyRule$ = UpdateProxyRule$;
|
|
1502
4530
|
exports.UpdateProxyRuleCommand = UpdateProxyRuleCommand;
|
|
4531
|
+
exports.UpdateProxyRuleGroupPriorities$ = UpdateProxyRuleGroupPriorities$;
|
|
1503
4532
|
exports.UpdateProxyRuleGroupPrioritiesCommand = UpdateProxyRuleGroupPrioritiesCommand;
|
|
4533
|
+
exports.UpdateProxyRuleGroupPrioritiesRequest$ = UpdateProxyRuleGroupPrioritiesRequest$;
|
|
4534
|
+
exports.UpdateProxyRuleGroupPrioritiesResponse$ = UpdateProxyRuleGroupPrioritiesResponse$;
|
|
4535
|
+
exports.UpdateProxyRulePriorities$ = UpdateProxyRulePriorities$;
|
|
1504
4536
|
exports.UpdateProxyRulePrioritiesCommand = UpdateProxyRulePrioritiesCommand;
|
|
4537
|
+
exports.UpdateProxyRulePrioritiesRequest$ = UpdateProxyRulePrioritiesRequest$;
|
|
4538
|
+
exports.UpdateProxyRulePrioritiesResponse$ = UpdateProxyRulePrioritiesResponse$;
|
|
4539
|
+
exports.UpdateProxyRuleRequest$ = UpdateProxyRuleRequest$;
|
|
4540
|
+
exports.UpdateProxyRuleResponse$ = UpdateProxyRuleResponse$;
|
|
4541
|
+
exports.UpdateRuleGroup$ = UpdateRuleGroup$;
|
|
1505
4542
|
exports.UpdateRuleGroupCommand = UpdateRuleGroupCommand;
|
|
4543
|
+
exports.UpdateRuleGroupRequest$ = UpdateRuleGroupRequest$;
|
|
4544
|
+
exports.UpdateRuleGroupResponse$ = UpdateRuleGroupResponse$;
|
|
4545
|
+
exports.UpdateSubnetChangeProtection$ = UpdateSubnetChangeProtection$;
|
|
1506
4546
|
exports.UpdateSubnetChangeProtectionCommand = UpdateSubnetChangeProtectionCommand;
|
|
4547
|
+
exports.UpdateSubnetChangeProtectionRequest$ = UpdateSubnetChangeProtectionRequest$;
|
|
4548
|
+
exports.UpdateSubnetChangeProtectionResponse$ = UpdateSubnetChangeProtectionResponse$;
|
|
4549
|
+
exports.UpdateTLSInspectionConfiguration$ = UpdateTLSInspectionConfiguration$;
|
|
1507
4550
|
exports.UpdateTLSInspectionConfigurationCommand = UpdateTLSInspectionConfigurationCommand;
|
|
4551
|
+
exports.UpdateTLSInspectionConfigurationRequest$ = UpdateTLSInspectionConfigurationRequest$;
|
|
4552
|
+
exports.UpdateTLSInspectionConfigurationResponse$ = UpdateTLSInspectionConfigurationResponse$;
|
|
4553
|
+
exports.VpcEndpointAssociation$ = VpcEndpointAssociation$;
|
|
4554
|
+
exports.VpcEndpointAssociationMetadata$ = VpcEndpointAssociationMetadata$;
|
|
4555
|
+
exports.VpcEndpointAssociationStatus$ = VpcEndpointAssociationStatus$;
|
|
4556
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1508
4557
|
exports.paginateGetAnalysisReportResults = paginateGetAnalysisReportResults;
|
|
1509
4558
|
exports.paginateListAnalysisReports = paginateListAnalysisReports;
|
|
1510
4559
|
exports.paginateListFirewallPolicies = paginateListFirewallPolicies;
|