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