@aws-sdk/client-route53resolver 3.1075.0 → 3.1076.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +2457 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -52
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/Route53ResolverServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -251
- 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 -1930
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultRoute53ResolverHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "route53resolver",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultRoute53ResolverHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,2123 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const m = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { [m]: "Region" }, k = {}, l = [j];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [h]],
|
|
79
|
+
[c, l],
|
|
80
|
+
["aws.partition", l, d],
|
|
81
|
+
[e, [{ [m]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [m]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
|
|
85
|
+
[g, [j, "us-gov-east-1"]],
|
|
86
|
+
[g, [j, "us-gov-west-1"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[h, k],
|
|
93
|
+
["https://route53resolver-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://route53resolver.us-gov-east-1.amazonaws.com", k],
|
|
96
|
+
["https://route53resolver.us-gov-west-1.amazonaws.com", k],
|
|
97
|
+
["https://route53resolver-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
98
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
99
|
+
["https://route53resolver.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
100
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
101
|
+
["https://route53resolver.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
102
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
103
|
+
]
|
|
104
|
+
};
|
|
105
|
+
const root = 2;
|
|
106
|
+
const r = 100_000_000;
|
|
107
|
+
const nodes = new Int32Array([
|
|
108
|
+
-1, 1, -1,
|
|
109
|
+
0, 14, 3,
|
|
110
|
+
1, 4, r + 13,
|
|
111
|
+
2, 5, r + 13,
|
|
112
|
+
3, 8, 6,
|
|
113
|
+
4, 7, r + 12,
|
|
114
|
+
5, r + 10, r + 11,
|
|
115
|
+
4, 12, 9,
|
|
116
|
+
6, 10, r + 9,
|
|
117
|
+
7, r + 6, 11,
|
|
118
|
+
8, r + 7, r + 8,
|
|
119
|
+
5, 13, r + 5,
|
|
120
|
+
6, r + 4, r + 5,
|
|
121
|
+
3, r + 1, 15,
|
|
122
|
+
4, r + 2, r + 3,
|
|
123
|
+
]);
|
|
124
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
125
|
+
|
|
126
|
+
const cache = new EndpointCache({
|
|
127
|
+
size: 50,
|
|
128
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
129
|
+
});
|
|
130
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
131
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
132
|
+
endpointParams: endpointParams,
|
|
133
|
+
logger: context.logger,
|
|
134
|
+
}));
|
|
135
|
+
};
|
|
136
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
137
|
+
|
|
138
|
+
class Route53ResolverServiceException extends ServiceException {
|
|
139
|
+
constructor(options) {
|
|
140
|
+
super(options);
|
|
141
|
+
Object.setPrototypeOf(this, Route53ResolverServiceException.prototype);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
class AccessDeniedException extends Route53ResolverServiceException {
|
|
146
|
+
name = "AccessDeniedException";
|
|
147
|
+
$fault = "client";
|
|
148
|
+
Message;
|
|
149
|
+
constructor(opts) {
|
|
150
|
+
super({
|
|
151
|
+
name: "AccessDeniedException",
|
|
152
|
+
$fault: "client",
|
|
153
|
+
...opts,
|
|
154
|
+
});
|
|
155
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
156
|
+
this.Message = opts.Message;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
class ConflictException extends Route53ResolverServiceException {
|
|
160
|
+
name = "ConflictException";
|
|
161
|
+
$fault = "client";
|
|
162
|
+
Message;
|
|
163
|
+
constructor(opts) {
|
|
164
|
+
super({
|
|
165
|
+
name: "ConflictException",
|
|
166
|
+
$fault: "client",
|
|
167
|
+
...opts,
|
|
168
|
+
});
|
|
169
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
170
|
+
this.Message = opts.Message;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
class InternalServiceErrorException extends Route53ResolverServiceException {
|
|
174
|
+
name = "InternalServiceErrorException";
|
|
175
|
+
$fault = "client";
|
|
176
|
+
Message;
|
|
177
|
+
constructor(opts) {
|
|
178
|
+
super({
|
|
179
|
+
name: "InternalServiceErrorException",
|
|
180
|
+
$fault: "client",
|
|
181
|
+
...opts,
|
|
182
|
+
});
|
|
183
|
+
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
184
|
+
this.Message = opts.Message;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class LimitExceededException extends Route53ResolverServiceException {
|
|
188
|
+
name = "LimitExceededException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
Message;
|
|
191
|
+
ResourceType;
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "LimitExceededException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
199
|
+
this.Message = opts.Message;
|
|
200
|
+
this.ResourceType = opts.ResourceType;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class ResourceNotFoundException extends Route53ResolverServiceException {
|
|
204
|
+
name = "ResourceNotFoundException";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
Message;
|
|
207
|
+
ResourceType;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "ResourceNotFoundException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
215
|
+
this.Message = opts.Message;
|
|
216
|
+
this.ResourceType = opts.ResourceType;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
class ThrottlingException extends Route53ResolverServiceException {
|
|
220
|
+
name = "ThrottlingException";
|
|
221
|
+
$fault = "client";
|
|
222
|
+
Message;
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "ThrottlingException",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
230
|
+
this.Message = opts.Message;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
class ValidationException extends Route53ResolverServiceException {
|
|
234
|
+
name = "ValidationException";
|
|
235
|
+
$fault = "client";
|
|
236
|
+
Message;
|
|
237
|
+
constructor(opts) {
|
|
238
|
+
super({
|
|
239
|
+
name: "ValidationException",
|
|
240
|
+
$fault: "client",
|
|
241
|
+
...opts,
|
|
242
|
+
});
|
|
243
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
244
|
+
this.Message = opts.Message;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
class InvalidParameterException extends Route53ResolverServiceException {
|
|
248
|
+
name = "InvalidParameterException";
|
|
249
|
+
$fault = "client";
|
|
250
|
+
Message;
|
|
251
|
+
FieldName;
|
|
252
|
+
constructor(opts) {
|
|
253
|
+
super({
|
|
254
|
+
name: "InvalidParameterException",
|
|
255
|
+
$fault: "client",
|
|
256
|
+
...opts,
|
|
257
|
+
});
|
|
258
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
259
|
+
this.Message = opts.Message;
|
|
260
|
+
this.FieldName = opts.FieldName;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class InvalidRequestException extends Route53ResolverServiceException {
|
|
264
|
+
name = "InvalidRequestException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
Message;
|
|
267
|
+
constructor(opts) {
|
|
268
|
+
super({
|
|
269
|
+
name: "InvalidRequestException",
|
|
270
|
+
$fault: "client",
|
|
271
|
+
...opts,
|
|
272
|
+
});
|
|
273
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
274
|
+
this.Message = opts.Message;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
class ResourceExistsException extends Route53ResolverServiceException {
|
|
278
|
+
name = "ResourceExistsException";
|
|
279
|
+
$fault = "client";
|
|
280
|
+
Message;
|
|
281
|
+
ResourceType;
|
|
282
|
+
constructor(opts) {
|
|
283
|
+
super({
|
|
284
|
+
name: "ResourceExistsException",
|
|
285
|
+
$fault: "client",
|
|
286
|
+
...opts,
|
|
287
|
+
});
|
|
288
|
+
Object.setPrototypeOf(this, ResourceExistsException.prototype);
|
|
289
|
+
this.Message = opts.Message;
|
|
290
|
+
this.ResourceType = opts.ResourceType;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
class ResourceUnavailableException extends Route53ResolverServiceException {
|
|
294
|
+
name = "ResourceUnavailableException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Message;
|
|
297
|
+
ResourceType;
|
|
298
|
+
constructor(opts) {
|
|
299
|
+
super({
|
|
300
|
+
name: "ResourceUnavailableException",
|
|
301
|
+
$fault: "client",
|
|
302
|
+
...opts,
|
|
303
|
+
});
|
|
304
|
+
Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
|
|
305
|
+
this.Message = opts.Message;
|
|
306
|
+
this.ResourceType = opts.ResourceType;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
class ServiceQuotaExceededException extends Route53ResolverServiceException {
|
|
310
|
+
name = "ServiceQuotaExceededException";
|
|
311
|
+
$fault = "client";
|
|
312
|
+
Message;
|
|
313
|
+
constructor(opts) {
|
|
314
|
+
super({
|
|
315
|
+
name: "ServiceQuotaExceededException",
|
|
316
|
+
$fault: "client",
|
|
317
|
+
...opts,
|
|
318
|
+
});
|
|
319
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
320
|
+
this.Message = opts.Message;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
class ResourceInUseException extends Route53ResolverServiceException {
|
|
324
|
+
name = "ResourceInUseException";
|
|
325
|
+
$fault = "client";
|
|
326
|
+
Message;
|
|
327
|
+
ResourceType;
|
|
328
|
+
constructor(opts) {
|
|
329
|
+
super({
|
|
330
|
+
name: "ResourceInUseException",
|
|
331
|
+
$fault: "client",
|
|
332
|
+
...opts,
|
|
333
|
+
});
|
|
334
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
335
|
+
this.Message = opts.Message;
|
|
336
|
+
this.ResourceType = opts.ResourceType;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
class UnknownResourceException extends Route53ResolverServiceException {
|
|
340
|
+
name = "UnknownResourceException";
|
|
341
|
+
$fault = "client";
|
|
342
|
+
Message;
|
|
343
|
+
constructor(opts) {
|
|
344
|
+
super({
|
|
345
|
+
name: "UnknownResourceException",
|
|
346
|
+
$fault: "client",
|
|
347
|
+
...opts,
|
|
348
|
+
});
|
|
349
|
+
Object.setPrototypeOf(this, UnknownResourceException.prototype);
|
|
350
|
+
this.Message = opts.Message;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
class InvalidNextTokenException extends Route53ResolverServiceException {
|
|
354
|
+
name = "InvalidNextTokenException";
|
|
355
|
+
$fault = "client";
|
|
356
|
+
Message;
|
|
357
|
+
constructor(opts) {
|
|
358
|
+
super({
|
|
359
|
+
name: "InvalidNextTokenException",
|
|
360
|
+
$fault: "client",
|
|
361
|
+
...opts,
|
|
362
|
+
});
|
|
363
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
364
|
+
this.Message = opts.Message;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
class InvalidPolicyDocument extends Route53ResolverServiceException {
|
|
368
|
+
name = "InvalidPolicyDocument";
|
|
369
|
+
$fault = "client";
|
|
370
|
+
Message;
|
|
371
|
+
constructor(opts) {
|
|
372
|
+
super({
|
|
373
|
+
name: "InvalidPolicyDocument",
|
|
374
|
+
$fault: "client",
|
|
375
|
+
...opts,
|
|
376
|
+
});
|
|
377
|
+
Object.setPrototypeOf(this, InvalidPolicyDocument.prototype);
|
|
378
|
+
this.Message = opts.Message;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
class InvalidTagException extends Route53ResolverServiceException {
|
|
382
|
+
name = "InvalidTagException";
|
|
383
|
+
$fault = "client";
|
|
384
|
+
Message;
|
|
385
|
+
constructor(opts) {
|
|
386
|
+
super({
|
|
387
|
+
name: "InvalidTagException",
|
|
388
|
+
$fault: "client",
|
|
389
|
+
...opts,
|
|
390
|
+
});
|
|
391
|
+
Object.setPrototypeOf(this, InvalidTagException.prototype);
|
|
392
|
+
this.Message = opts.Message;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
const _A = "Action";
|
|
397
|
+
const _AC = "AssociationCount";
|
|
398
|
+
const _ADE = "AccessDeniedException";
|
|
399
|
+
const _AFRG = "AssociateFirewallRuleGroup";
|
|
400
|
+
const _AFRGR = "AssociateFirewallRuleGroupRequest";
|
|
401
|
+
const _AFRGRs = "AssociateFirewallRuleGroupResponse";
|
|
402
|
+
const _AR = "AutodefinedReverse";
|
|
403
|
+
const _AREIA = "AssociateResolverEndpointIpAddress";
|
|
404
|
+
const _AREIAR = "AssociateResolverEndpointIpAddressRequest";
|
|
405
|
+
const _AREIARs = "AssociateResolverEndpointIpAddressResponse";
|
|
406
|
+
const _ARF = "AutodefinedReverseFlag";
|
|
407
|
+
const _ARQLC = "AssociateResolverQueryLogConfig";
|
|
408
|
+
const _ARQLCR = "AssociateResolverQueryLogConfigRequest";
|
|
409
|
+
const _ARQLCRs = "AssociateResolverQueryLogConfigResponse";
|
|
410
|
+
const _ARR = "AssociateResolverRule";
|
|
411
|
+
const _ARRR = "AssociateResolverRuleRequest";
|
|
412
|
+
const _ARRRs = "AssociateResolverRuleResponse";
|
|
413
|
+
const _Ar = "Arn";
|
|
414
|
+
const _BCFR = "BatchCreateFirewallRule";
|
|
415
|
+
const _BCFRE = "BatchCreateFirewallRuleError";
|
|
416
|
+
const _BCFREa = "BatchCreateFirewallRuleErrors";
|
|
417
|
+
const _BCFRR = "BatchCreateFirewallRuleRequest";
|
|
418
|
+
const _BCFRRa = "BatchCreateFirewallRuleResponse";
|
|
419
|
+
const _BDFR = "BatchDeleteFirewallRule";
|
|
420
|
+
const _BDFRE = "BatchDeleteFirewallRuleError";
|
|
421
|
+
const _BDFREa = "BatchDeleteFirewallRuleErrors";
|
|
422
|
+
const _BDFRR = "BatchDeleteFirewallRuleRequest";
|
|
423
|
+
const _BDFRRa = "BatchDeleteFirewallRuleResponse";
|
|
424
|
+
const _BOD = "BlockOverrideDomain";
|
|
425
|
+
const _BODT = "BlockOverrideDnsType";
|
|
426
|
+
const _BOT = "BlockOverrideTtl";
|
|
427
|
+
const _BR = "BlockResponse";
|
|
428
|
+
const _BUFR = "BatchUpdateFirewallRule";
|
|
429
|
+
const _BUFRE = "BatchUpdateFirewallRuleError";
|
|
430
|
+
const _BUFREa = "BatchUpdateFirewallRuleErrors";
|
|
431
|
+
const _BUFRR = "BatchUpdateFirewallRuleRequest";
|
|
432
|
+
const _BUFRRa = "BatchUpdateFirewallRuleResponse";
|
|
433
|
+
const _C = "Code";
|
|
434
|
+
const _CE = "ConflictException";
|
|
435
|
+
const _CEr = "CreateErrors";
|
|
436
|
+
const _CFDL = "CreateFirewallDomainList";
|
|
437
|
+
const _CFDLR = "CreateFirewallDomainListRequest";
|
|
438
|
+
const _CFDLRr = "CreateFirewallDomainListResponse";
|
|
439
|
+
const _CFR = "CreatedFirewallRules";
|
|
440
|
+
const _CFRE = "CreateFirewallRuleEntries";
|
|
441
|
+
const _CFREr = "CreateFirewallRuleEntry";
|
|
442
|
+
const _CFRG = "CreateFirewallRuleGroup";
|
|
443
|
+
const _CFRGR = "CreateFirewallRuleGroupRequest";
|
|
444
|
+
const _CFRGRr = "CreateFirewallRuleGroupResponse";
|
|
445
|
+
const _CFRR = "CreateFirewallRuleRequest";
|
|
446
|
+
const _CFRRr = "CreateFirewallRuleResponse";
|
|
447
|
+
const _CFRr = "CreateFirewallRule";
|
|
448
|
+
const _COR = "CreateOutpostResolver";
|
|
449
|
+
const _CORR = "CreateOutpostResolverRequest";
|
|
450
|
+
const _CORRr = "CreateOutpostResolverResponse";
|
|
451
|
+
const _CRE = "CreateResolverEndpoint";
|
|
452
|
+
const _CRER = "CreateResolverEndpointRequest";
|
|
453
|
+
const _CRERr = "CreateResolverEndpointResponse";
|
|
454
|
+
const _CRI = "CreatorRequestId";
|
|
455
|
+
const _CRQLC = "CreateResolverQueryLogConfig";
|
|
456
|
+
const _CRQLCR = "CreateResolverQueryLogConfigRequest";
|
|
457
|
+
const _CRQLCRr = "CreateResolverQueryLogConfigResponse";
|
|
458
|
+
const _CRR = "CreateResolverRule";
|
|
459
|
+
const _CRRR = "CreateResolverRuleRequest";
|
|
460
|
+
const _CRRRr = "CreateResolverRuleResponse";
|
|
461
|
+
const _CT = "ConfidenceThreshold";
|
|
462
|
+
const _CTr = "CreationTime";
|
|
463
|
+
const _Ca = "Category";
|
|
464
|
+
const _Co = "Config";
|
|
465
|
+
const _D = "Direction";
|
|
466
|
+
const _DA = "DestinationArn";
|
|
467
|
+
const _DC = "DomainCount";
|
|
468
|
+
const _DE = "DeleteErrors";
|
|
469
|
+
const _DEn = "Dns64Enabled";
|
|
470
|
+
const _DFDL = "DeleteFirewallDomainList";
|
|
471
|
+
const _DFDLR = "DeleteFirewallDomainListRequest";
|
|
472
|
+
const _DFDLRe = "DeleteFirewallDomainListResponse";
|
|
473
|
+
const _DFR = "DeletedFirewallRules";
|
|
474
|
+
const _DFRE = "DeleteFirewallRuleEntries";
|
|
475
|
+
const _DFREe = "DeleteFirewallRuleEntry";
|
|
476
|
+
const _DFRG = "DeleteFirewallRuleGroup";
|
|
477
|
+
const _DFRGR = "DeleteFirewallRuleGroupRequest";
|
|
478
|
+
const _DFRGRe = "DeleteFirewallRuleGroupResponse";
|
|
479
|
+
const _DFRGRi = "DisassociateFirewallRuleGroupRequest";
|
|
480
|
+
const _DFRGRis = "DisassociateFirewallRuleGroupResponse";
|
|
481
|
+
const _DFRGi = "DisassociateFirewallRuleGroup";
|
|
482
|
+
const _DFRR = "DeleteFirewallRuleRequest";
|
|
483
|
+
const _DFRRe = "DeleteFirewallRuleResponse";
|
|
484
|
+
const _DFRe = "DeleteFirewallRule";
|
|
485
|
+
const _DFU = "DomainFileUrl";
|
|
486
|
+
const _DN = "DomainName";
|
|
487
|
+
const _DNi = "DisplayName";
|
|
488
|
+
const _DOR = "DeleteOutpostResolver";
|
|
489
|
+
const _DORR = "DeleteOutpostResolverRequest";
|
|
490
|
+
const _DORRe = "DeleteOutpostResolverResponse";
|
|
491
|
+
const _DR = "DelegationRecord";
|
|
492
|
+
const _DRE = "DeleteResolverEndpoint";
|
|
493
|
+
const _DREIA = "DisassociateResolverEndpointIpAddress";
|
|
494
|
+
const _DREIAR = "DisassociateResolverEndpointIpAddressRequest";
|
|
495
|
+
const _DREIARi = "DisassociateResolverEndpointIpAddressResponse";
|
|
496
|
+
const _DRER = "DeleteResolverEndpointRequest";
|
|
497
|
+
const _DRERe = "DeleteResolverEndpointResponse";
|
|
498
|
+
const _DRQLC = "DeleteResolverQueryLogConfig";
|
|
499
|
+
const _DRQLCR = "DeleteResolverQueryLogConfigRequest";
|
|
500
|
+
const _DRQLCRe = "DeleteResolverQueryLogConfigResponse";
|
|
501
|
+
const _DRQLCRi = "DisassociateResolverQueryLogConfigRequest";
|
|
502
|
+
const _DRQLCRis = "DisassociateResolverQueryLogConfigResponse";
|
|
503
|
+
const _DRQLCi = "DisassociateResolverQueryLogConfig";
|
|
504
|
+
const _DRR = "DeleteResolverRule";
|
|
505
|
+
const _DRRR = "DeleteResolverRuleRequest";
|
|
506
|
+
const _DRRRe = "DeleteResolverRuleResponse";
|
|
507
|
+
const _DRRRi = "DisassociateResolverRuleRequest";
|
|
508
|
+
const _DRRRis = "DisassociateResolverRuleResponse";
|
|
509
|
+
const _DRRi = "DisassociateResolverRule";
|
|
510
|
+
const _DTP = "DnsThreatProtection";
|
|
511
|
+
const _DTPRTC = "DnsThreatProtectionRuleTypeConfig";
|
|
512
|
+
const _De = "Description";
|
|
513
|
+
const _Do = "Domains";
|
|
514
|
+
const _E = "Error";
|
|
515
|
+
const _EM = "ErrorMessage";
|
|
516
|
+
const _F = "Filter";
|
|
517
|
+
const _FACC = "FirewallAdvancedContentCategory";
|
|
518
|
+
const _FACCC = "FirewallAdvancedContentCategoryConfig";
|
|
519
|
+
const _FATC = "FirewallAdvancedThreatCategory";
|
|
520
|
+
const _FATCC = "FirewallAdvancedThreatCategoryConfig";
|
|
521
|
+
const _FC = "FirewallConfig";
|
|
522
|
+
const _FCL = "FirewallConfigList";
|
|
523
|
+
const _FCi = "FirewallConfigs";
|
|
524
|
+
const _FDL = "FirewallDomainList";
|
|
525
|
+
const _FDLI = "FirewallDomainListId";
|
|
526
|
+
const _FDLM = "FirewallDomainListMetadata";
|
|
527
|
+
const _FDLML = "FirewallDomainListMetadataList";
|
|
528
|
+
const _FDLi = "FirewallDomainLists";
|
|
529
|
+
const _FDRA = "FirewallDomainRedirectionAction";
|
|
530
|
+
const _FFO = "FirewallFailOpen";
|
|
531
|
+
const _FN = "FieldName";
|
|
532
|
+
const _FR = "FirewallRule";
|
|
533
|
+
const _FRG = "FirewallRuleGroup";
|
|
534
|
+
const _FRGA = "FirewallRuleGroupAssociation";
|
|
535
|
+
const _FRGAI = "FirewallRuleGroupAssociationId";
|
|
536
|
+
const _FRGAi = "FirewallRuleGroupAssociations";
|
|
537
|
+
const _FRGI = "FirewallRuleGroupId";
|
|
538
|
+
const _FRGM = "FirewallRuleGroupMetadata";
|
|
539
|
+
const _FRGML = "FirewallRuleGroupMetadataList";
|
|
540
|
+
const _FRGP = "FirewallRuleGroupPolicy";
|
|
541
|
+
const _FRGi = "FirewallRuleGroups";
|
|
542
|
+
const _FRT = "FirewallRuleType";
|
|
543
|
+
const _FRTD = "FirewallRuleTypeDefinition";
|
|
544
|
+
const _FRTDi = "FirewallRuleTypeDefinitions";
|
|
545
|
+
const _FRTi = "FirewallRuleTypes";
|
|
546
|
+
const _FRi = "FirewallRules";
|
|
547
|
+
const _FTPI = "FirewallThreatProtectionId";
|
|
548
|
+
const _Fi = "Filters";
|
|
549
|
+
const _GFC = "GetFirewallConfig";
|
|
550
|
+
const _GFCR = "GetFirewallConfigRequest";
|
|
551
|
+
const _GFCRe = "GetFirewallConfigResponse";
|
|
552
|
+
const _GFDL = "GetFirewallDomainList";
|
|
553
|
+
const _GFDLR = "GetFirewallDomainListRequest";
|
|
554
|
+
const _GFDLRe = "GetFirewallDomainListResponse";
|
|
555
|
+
const _GFRG = "GetFirewallRuleGroup";
|
|
556
|
+
const _GFRGA = "GetFirewallRuleGroupAssociation";
|
|
557
|
+
const _GFRGAR = "GetFirewallRuleGroupAssociationRequest";
|
|
558
|
+
const _GFRGARe = "GetFirewallRuleGroupAssociationResponse";
|
|
559
|
+
const _GFRGP = "GetFirewallRuleGroupPolicy";
|
|
560
|
+
const _GFRGPR = "GetFirewallRuleGroupPolicyRequest";
|
|
561
|
+
const _GFRGPRe = "GetFirewallRuleGroupPolicyResponse";
|
|
562
|
+
const _GFRGR = "GetFirewallRuleGroupRequest";
|
|
563
|
+
const _GFRGRe = "GetFirewallRuleGroupResponse";
|
|
564
|
+
const _GOR = "GetOutpostResolver";
|
|
565
|
+
const _GORR = "GetOutpostResolverRequest";
|
|
566
|
+
const _GORRe = "GetOutpostResolverResponse";
|
|
567
|
+
const _GRC = "GetResolverConfig";
|
|
568
|
+
const _GRCR = "GetResolverConfigRequest";
|
|
569
|
+
const _GRCRe = "GetResolverConfigResponse";
|
|
570
|
+
const _GRDC = "GetResolverDnssecConfig";
|
|
571
|
+
const _GRDCR = "GetResolverDnssecConfigRequest";
|
|
572
|
+
const _GRDCRe = "GetResolverDnssecConfigResponse";
|
|
573
|
+
const _GRE = "GetResolverEndpoint";
|
|
574
|
+
const _GRER = "GetResolverEndpointRequest";
|
|
575
|
+
const _GRERe = "GetResolverEndpointResponse";
|
|
576
|
+
const _GRQLC = "GetResolverQueryLogConfig";
|
|
577
|
+
const _GRQLCA = "GetResolverQueryLogConfigAssociation";
|
|
578
|
+
const _GRQLCAR = "GetResolverQueryLogConfigAssociationRequest";
|
|
579
|
+
const _GRQLCARe = "GetResolverQueryLogConfigAssociationResponse";
|
|
580
|
+
const _GRQLCP = "GetResolverQueryLogConfigPolicy";
|
|
581
|
+
const _GRQLCPR = "GetResolverQueryLogConfigPolicyRequest";
|
|
582
|
+
const _GRQLCPRe = "GetResolverQueryLogConfigPolicyResponse";
|
|
583
|
+
const _GRQLCR = "GetResolverQueryLogConfigRequest";
|
|
584
|
+
const _GRQLCRe = "GetResolverQueryLogConfigResponse";
|
|
585
|
+
const _GRR = "GetResolverRule";
|
|
586
|
+
const _GRRA = "GetResolverRuleAssociation";
|
|
587
|
+
const _GRRAR = "GetResolverRuleAssociationRequest";
|
|
588
|
+
const _GRRARe = "GetResolverRuleAssociationResponse";
|
|
589
|
+
const _GRRP = "GetResolverRulePolicy";
|
|
590
|
+
const _GRRPR = "GetResolverRulePolicyRequest";
|
|
591
|
+
const _GRRPRe = "GetResolverRulePolicyResponse";
|
|
592
|
+
const _GRRR = "GetResolverRuleRequest";
|
|
593
|
+
const _GRRRe = "GetResolverRuleResponse";
|
|
594
|
+
const _HVPCI = "HostVPCId";
|
|
595
|
+
const _I = "Id";
|
|
596
|
+
const _IA = "IpAddress";
|
|
597
|
+
const _IAC = "IpAddressCount";
|
|
598
|
+
const _IAR = "IpAddressRequest";
|
|
599
|
+
const _IARp = "IpAddressResponse";
|
|
600
|
+
const _IARpd = "IpAddressesRequest";
|
|
601
|
+
const _IARpdd = "IpAddressesResponse";
|
|
602
|
+
const _IAU = "IpAddressUpdate";
|
|
603
|
+
const _IAp = "IpAddresses";
|
|
604
|
+
const _IC = "InstanceCount";
|
|
605
|
+
const _IFD = "ImportFirewallDomains";
|
|
606
|
+
const _IFDR = "ImportFirewallDomainsRequest";
|
|
607
|
+
const _IFDRm = "ImportFirewallDomainsResponse";
|
|
608
|
+
const _II = "IpId";
|
|
609
|
+
const _IIAE = "Ipv6InternetAccessEnabled";
|
|
610
|
+
const _INTE = "InvalidNextTokenException";
|
|
611
|
+
const _IPD = "InvalidPolicyDocument";
|
|
612
|
+
const _IPE = "InvalidParameterException";
|
|
613
|
+
const _IRE = "InvalidRequestException";
|
|
614
|
+
const _ISEE = "InternalServiceErrorException";
|
|
615
|
+
const _ITE = "InvalidTagException";
|
|
616
|
+
const _Ip = "Ip";
|
|
617
|
+
const _Ipv = "Ipv6";
|
|
618
|
+
const _K = "Key";
|
|
619
|
+
const _LEE = "LimitExceededException";
|
|
620
|
+
const _LFC = "ListFirewallConfigs";
|
|
621
|
+
const _LFCR = "ListFirewallConfigsRequest";
|
|
622
|
+
const _LFCRi = "ListFirewallConfigsResponse";
|
|
623
|
+
const _LFD = "ListFirewallDomains";
|
|
624
|
+
const _LFDL = "ListFirewallDomainLists";
|
|
625
|
+
const _LFDLR = "ListFirewallDomainListsRequest";
|
|
626
|
+
const _LFDLRi = "ListFirewallDomainListsResponse";
|
|
627
|
+
const _LFDR = "ListFirewallDomainsRequest";
|
|
628
|
+
const _LFDRi = "ListFirewallDomainsResponse";
|
|
629
|
+
const _LFR = "ListFirewallRules";
|
|
630
|
+
const _LFRG = "ListFirewallRuleGroups";
|
|
631
|
+
const _LFRGA = "ListFirewallRuleGroupAssociations";
|
|
632
|
+
const _LFRGAR = "ListFirewallRuleGroupAssociationsRequest";
|
|
633
|
+
const _LFRGARi = "ListFirewallRuleGroupAssociationsResponse";
|
|
634
|
+
const _LFRGR = "ListFirewallRuleGroupsRequest";
|
|
635
|
+
const _LFRGRi = "ListFirewallRuleGroupsResponse";
|
|
636
|
+
const _LFRR = "ListFirewallRulesRequest";
|
|
637
|
+
const _LFRRi = "ListFirewallRulesResponse";
|
|
638
|
+
const _LFRT = "ListFirewallRuleTypes";
|
|
639
|
+
const _LFRTR = "ListFirewallRuleTypesRequest";
|
|
640
|
+
const _LFRTRi = "ListFirewallRuleTypesResponse";
|
|
641
|
+
const _LOR = "ListOutpostResolvers";
|
|
642
|
+
const _LORR = "ListOutpostResolversRequest";
|
|
643
|
+
const _LORRi = "ListOutpostResolversResponse";
|
|
644
|
+
const _LRC = "ListResolverConfigs";
|
|
645
|
+
const _LRCR = "ListResolverConfigsRequest";
|
|
646
|
+
const _LRCRi = "ListResolverConfigsResponse";
|
|
647
|
+
const _LRDC = "ListResolverDnssecConfigs";
|
|
648
|
+
const _LRDCR = "ListResolverDnssecConfigsRequest";
|
|
649
|
+
const _LRDCRi = "ListResolverDnssecConfigsResponse";
|
|
650
|
+
const _LRE = "ListResolverEndpoints";
|
|
651
|
+
const _LREIA = "ListResolverEndpointIpAddresses";
|
|
652
|
+
const _LREIAR = "ListResolverEndpointIpAddressesRequest";
|
|
653
|
+
const _LREIARi = "ListResolverEndpointIpAddressesResponse";
|
|
654
|
+
const _LRER = "ListResolverEndpointsRequest";
|
|
655
|
+
const _LRERi = "ListResolverEndpointsResponse";
|
|
656
|
+
const _LRQLC = "ListResolverQueryLogConfigs";
|
|
657
|
+
const _LRQLCA = "ListResolverQueryLogConfigAssociations";
|
|
658
|
+
const _LRQLCAR = "ListResolverQueryLogConfigAssociationsRequest";
|
|
659
|
+
const _LRQLCARi = "ListResolverQueryLogConfigAssociationsResponse";
|
|
660
|
+
const _LRQLCR = "ListResolverQueryLogConfigsRequest";
|
|
661
|
+
const _LRQLCRi = "ListResolverQueryLogConfigsResponse";
|
|
662
|
+
const _LRR = "ListResolverRules";
|
|
663
|
+
const _LRRA = "ListResolverRuleAssociations";
|
|
664
|
+
const _LRRAR = "ListResolverRuleAssociationsRequest";
|
|
665
|
+
const _LRRARi = "ListResolverRuleAssociationsResponse";
|
|
666
|
+
const _LRRR = "ListResolverRulesRequest";
|
|
667
|
+
const _LRRRi = "ListResolverRulesResponse";
|
|
668
|
+
const _LTFR = "ListTagsForResource";
|
|
669
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
670
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
671
|
+
const _M = "Message";
|
|
672
|
+
const _MLT = "ManagedListType";
|
|
673
|
+
const _MON = "ManagedOwnerName";
|
|
674
|
+
const _MP = "MutationProtection";
|
|
675
|
+
const _MR = "MaxResults";
|
|
676
|
+
const _MT = "ModificationTime";
|
|
677
|
+
const _N = "Name";
|
|
678
|
+
const _NT = "NextToken";
|
|
679
|
+
const _O = "Operation";
|
|
680
|
+
const _OA = "OutpostArn";
|
|
681
|
+
const _OI = "OwnerId";
|
|
682
|
+
const _OR = "OutpostResolver";
|
|
683
|
+
const _ORL = "OutpostResolverList";
|
|
684
|
+
const _ORu = "OutpostResolvers";
|
|
685
|
+
const _P = "Priority";
|
|
686
|
+
const _PFRGP = "PutFirewallRuleGroupPolicy";
|
|
687
|
+
const _PFRGPR = "PutFirewallRuleGroupPolicyRequest";
|
|
688
|
+
const _PFRGPRu = "PutFirewallRuleGroupPolicyResponse";
|
|
689
|
+
const _PI = "ProductId";
|
|
690
|
+
const _PIT = "PreferredInstanceType";
|
|
691
|
+
const _PRQLCP = "PutResolverQueryLogConfigPolicy";
|
|
692
|
+
const _PRQLCPR = "PutResolverQueryLogConfigPolicyRequest";
|
|
693
|
+
const _PRQLCPRu = "PutResolverQueryLogConfigPolicyResponse";
|
|
694
|
+
const _PRRP = "PutResolverRulePolicy";
|
|
695
|
+
const _PRRPR = "PutResolverRulePolicyRequest";
|
|
696
|
+
const _PRRPRu = "PutResolverRulePolicyResponse";
|
|
697
|
+
const _PTP = "PartnerThreatProtection";
|
|
698
|
+
const _PTPC = "PartnerThreatProtectionConfig";
|
|
699
|
+
const _Pa = "Partner";
|
|
700
|
+
const _Po = "Port";
|
|
701
|
+
const _Pr = "Protocols";
|
|
702
|
+
const _Pro = "Protocol";
|
|
703
|
+
const _Q = "Qtype";
|
|
704
|
+
const _RA = "ResourceArn";
|
|
705
|
+
const _RC = "RuleCount";
|
|
706
|
+
const _RCL = "ResolverConfigList";
|
|
707
|
+
const _RCe = "ResolverConfig";
|
|
708
|
+
const _RCes = "ResolverConfigs";
|
|
709
|
+
const _RDC = "ResolverDnssecConfigs";
|
|
710
|
+
const _RDCL = "ResolverDnssecConfigList";
|
|
711
|
+
const _RDCe = "ResolverDnssecConfig";
|
|
712
|
+
const _RDNSSECC = "ResolverDNSSECConfig";
|
|
713
|
+
const _RE = "ResolverEndpoint";
|
|
714
|
+
const _REE = "ResourceExistsException";
|
|
715
|
+
const _REI = "ResolverEndpointId";
|
|
716
|
+
const _REME = "RniEnhancedMetricsEnabled";
|
|
717
|
+
const _RET = "ResolverEndpointType";
|
|
718
|
+
const _REe = "ResolverEndpoints";
|
|
719
|
+
const _RI = "ResourceId";
|
|
720
|
+
const _RIUE = "ResourceInUseException";
|
|
721
|
+
const _RNFE = "ResourceNotFoundException";
|
|
722
|
+
const _RQLC = "ResolverQueryLogConfig";
|
|
723
|
+
const _RQLCA = "ResolverQueryLogConfigAssociation";
|
|
724
|
+
const _RQLCAI = "ResolverQueryLogConfigAssociationId";
|
|
725
|
+
const _RQLCAL = "ResolverQueryLogConfigAssociationList";
|
|
726
|
+
const _RQLCAe = "ResolverQueryLogConfigAssociations";
|
|
727
|
+
const _RQLCI = "ResolverQueryLogConfigId";
|
|
728
|
+
const _RQLCL = "ResolverQueryLogConfigList";
|
|
729
|
+
const _RQLCP = "ResolverQueryLogConfigPolicy";
|
|
730
|
+
const _RQLCe = "ResolverQueryLogConfigs";
|
|
731
|
+
const _RR = "ResolverRule";
|
|
732
|
+
const _RRA = "ResolverRuleAssociation";
|
|
733
|
+
const _RRAI = "ResolverRuleAssociationId";
|
|
734
|
+
const _RRAe = "ResolverRuleAssociations";
|
|
735
|
+
const _RRC = "ResolverRuleConfig";
|
|
736
|
+
const _RRI = "ResolverRuleId";
|
|
737
|
+
const _RRP = "ResolverRulePolicy";
|
|
738
|
+
const _RRe = "ResolverRules";
|
|
739
|
+
const _RT = "ResourceType";
|
|
740
|
+
const _RTu = "RuleType";
|
|
741
|
+
const _RUE = "ResourceUnavailableException";
|
|
742
|
+
const _RV = "ReturnValue";
|
|
743
|
+
const _S = "Status";
|
|
744
|
+
const _SB = "SortBy";
|
|
745
|
+
const _SGI = "SecurityGroupIds";
|
|
746
|
+
const _SI = "SubscriptionInfo";
|
|
747
|
+
const _SIu = "SubnetId";
|
|
748
|
+
const _SM = "StatusMessage";
|
|
749
|
+
const _SNI = "ServerNameIndication";
|
|
750
|
+
const _SO = "SortOrder";
|
|
751
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
752
|
+
const _SS = "ShareStatus";
|
|
753
|
+
const _T = "Tags";
|
|
754
|
+
const _TA = "TargetAddress";
|
|
755
|
+
const _TC = "TotalCount";
|
|
756
|
+
const _TE = "ThrottlingException";
|
|
757
|
+
const _TFC = "TotalFilteredCount";
|
|
758
|
+
const _TI = "TargetIps";
|
|
759
|
+
const _TK = "TagKeys";
|
|
760
|
+
const _TL = "TagList";
|
|
761
|
+
const _TLa = "TargetList";
|
|
762
|
+
const _TNSME = "TargetNameServerMetricsEnabled";
|
|
763
|
+
const _TR = "TagResource";
|
|
764
|
+
const _TRR = "TagResourceRequest";
|
|
765
|
+
const _TRRa = "TagResourceResponse";
|
|
766
|
+
const _Ta = "Tag";
|
|
767
|
+
const _UE = "UpdateErrors";
|
|
768
|
+
const _UFC = "UpdateFirewallConfig";
|
|
769
|
+
const _UFCR = "UpdateFirewallConfigRequest";
|
|
770
|
+
const _UFCRp = "UpdateFirewallConfigResponse";
|
|
771
|
+
const _UFD = "UpdateFirewallDomains";
|
|
772
|
+
const _UFDR = "UpdateFirewallDomainsRequest";
|
|
773
|
+
const _UFDRp = "UpdateFirewallDomainsResponse";
|
|
774
|
+
const _UFR = "UpdatedFirewallRules";
|
|
775
|
+
const _UFRE = "UpdateFirewallRuleEntries";
|
|
776
|
+
const _UFREp = "UpdateFirewallRuleEntry";
|
|
777
|
+
const _UFRGA = "UpdateFirewallRuleGroupAssociation";
|
|
778
|
+
const _UFRGAR = "UpdateFirewallRuleGroupAssociationRequest";
|
|
779
|
+
const _UFRGARp = "UpdateFirewallRuleGroupAssociationResponse";
|
|
780
|
+
const _UFRR = "UpdateFirewallRuleRequest";
|
|
781
|
+
const _UFRRp = "UpdateFirewallRuleResponse";
|
|
782
|
+
const _UFRp = "UpdateFirewallRule";
|
|
783
|
+
const _UIA = "UpdateIpAddress";
|
|
784
|
+
const _UIAp = "UpdateIpAddresses";
|
|
785
|
+
const _UOR = "UpdateOutpostResolver";
|
|
786
|
+
const _UORR = "UpdateOutpostResolverRequest";
|
|
787
|
+
const _UORRp = "UpdateOutpostResolverResponse";
|
|
788
|
+
const _UR = "UntagResource";
|
|
789
|
+
const _URC = "UpdateResolverConfig";
|
|
790
|
+
const _URCR = "UpdateResolverConfigRequest";
|
|
791
|
+
const _URCRp = "UpdateResolverConfigResponse";
|
|
792
|
+
const _URDC = "UpdateResolverDnssecConfig";
|
|
793
|
+
const _URDCR = "UpdateResolverDnssecConfigRequest";
|
|
794
|
+
const _URDCRp = "UpdateResolverDnssecConfigResponse";
|
|
795
|
+
const _URE = "UnknownResourceException";
|
|
796
|
+
const _URER = "UpdateResolverEndpointRequest";
|
|
797
|
+
const _URERp = "UpdateResolverEndpointResponse";
|
|
798
|
+
const _UREp = "UpdateResolverEndpoint";
|
|
799
|
+
const _URR = "UntagResourceRequest";
|
|
800
|
+
const _URRR = "UpdateResolverRuleRequest";
|
|
801
|
+
const _URRRp = "UpdateResolverRuleResponse";
|
|
802
|
+
const _URRn = "UntagResourceResponse";
|
|
803
|
+
const _URRp = "UpdateResolverRule";
|
|
804
|
+
const _V = "Value";
|
|
805
|
+
const _VE = "ValidationException";
|
|
806
|
+
const _VI = "VpcId";
|
|
807
|
+
const _VN = "VendorName";
|
|
808
|
+
const _VPCI = "VPCId";
|
|
809
|
+
const _VS = "ValidationStatus";
|
|
810
|
+
const _Va = "Values";
|
|
811
|
+
const _Val = "Validation";
|
|
812
|
+
const _c = "client";
|
|
813
|
+
const _e = "error";
|
|
814
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53resolver";
|
|
815
|
+
const n0 = "com.amazonaws.route53resolver";
|
|
816
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
817
|
+
var Route53ResolverServiceException$ = [-3, _s, "Route53ResolverServiceException", 0, [], []];
|
|
818
|
+
_s_registry.registerError(Route53ResolverServiceException$, Route53ResolverServiceException);
|
|
819
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
820
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
821
|
+
{ [_e]: _c },
|
|
822
|
+
[_M],
|
|
823
|
+
[0]
|
|
824
|
+
];
|
|
825
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
826
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
827
|
+
{ [_e]: _c },
|
|
828
|
+
[_M],
|
|
829
|
+
[0]
|
|
830
|
+
];
|
|
831
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
832
|
+
var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
833
|
+
{ [_e]: _c },
|
|
834
|
+
[_M],
|
|
835
|
+
[0]
|
|
836
|
+
];
|
|
837
|
+
n0_registry.registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
838
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
839
|
+
{ [_e]: _c },
|
|
840
|
+
[_M],
|
|
841
|
+
[0]
|
|
842
|
+
];
|
|
843
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
844
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
845
|
+
{ [_e]: _c },
|
|
846
|
+
[_M, _FN],
|
|
847
|
+
[0, 0], 1
|
|
848
|
+
];
|
|
849
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
850
|
+
var InvalidPolicyDocument$ = [-3, n0, _IPD,
|
|
851
|
+
{ [_e]: _c },
|
|
852
|
+
[_M],
|
|
853
|
+
[0]
|
|
854
|
+
];
|
|
855
|
+
n0_registry.registerError(InvalidPolicyDocument$, InvalidPolicyDocument);
|
|
856
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
857
|
+
{ [_e]: _c },
|
|
858
|
+
[_M],
|
|
859
|
+
[0]
|
|
860
|
+
];
|
|
861
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
862
|
+
var InvalidTagException$ = [-3, n0, _ITE,
|
|
863
|
+
{ [_e]: _c },
|
|
864
|
+
[_M],
|
|
865
|
+
[0]
|
|
866
|
+
];
|
|
867
|
+
n0_registry.registerError(InvalidTagException$, InvalidTagException);
|
|
868
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
869
|
+
{ [_e]: _c },
|
|
870
|
+
[_M, _RT],
|
|
871
|
+
[0, 0]
|
|
872
|
+
];
|
|
873
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
874
|
+
var ResourceExistsException$ = [-3, n0, _REE,
|
|
875
|
+
{ [_e]: _c },
|
|
876
|
+
[_M, _RT],
|
|
877
|
+
[0, 0]
|
|
878
|
+
];
|
|
879
|
+
n0_registry.registerError(ResourceExistsException$, ResourceExistsException);
|
|
880
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
881
|
+
{ [_e]: _c },
|
|
882
|
+
[_M, _RT],
|
|
883
|
+
[0, 0]
|
|
884
|
+
];
|
|
885
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
886
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
887
|
+
{ [_e]: _c },
|
|
888
|
+
[_M, _RT],
|
|
889
|
+
[0, 0]
|
|
890
|
+
];
|
|
891
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
892
|
+
var ResourceUnavailableException$ = [-3, n0, _RUE,
|
|
893
|
+
{ [_e]: _c },
|
|
894
|
+
[_M, _RT],
|
|
895
|
+
[0, 0]
|
|
896
|
+
];
|
|
897
|
+
n0_registry.registerError(ResourceUnavailableException$, ResourceUnavailableException);
|
|
898
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
899
|
+
{ [_e]: _c },
|
|
900
|
+
[_M],
|
|
901
|
+
[0]
|
|
902
|
+
];
|
|
903
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
904
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
905
|
+
{ [_e]: _c },
|
|
906
|
+
[_M],
|
|
907
|
+
[0]
|
|
908
|
+
];
|
|
909
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
910
|
+
var UnknownResourceException$ = [-3, n0, _URE,
|
|
911
|
+
{ [_e]: _c },
|
|
912
|
+
[_M],
|
|
913
|
+
[0]
|
|
914
|
+
];
|
|
915
|
+
n0_registry.registerError(UnknownResourceException$, UnknownResourceException);
|
|
916
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
917
|
+
{ [_e]: _c },
|
|
918
|
+
[_M],
|
|
919
|
+
[0]
|
|
920
|
+
];
|
|
921
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
922
|
+
const errorTypeRegistries = [
|
|
923
|
+
_s_registry,
|
|
924
|
+
n0_registry,
|
|
925
|
+
];
|
|
926
|
+
var AssociateFirewallRuleGroupRequest$ = [3, n0, _AFRGR,
|
|
927
|
+
0,
|
|
928
|
+
[_FRGI, _VI, _P, _N, _CRI, _MP, _T],
|
|
929
|
+
[0, 0, 1, 0, [0, 4], 0, () => TagList], 4
|
|
930
|
+
];
|
|
931
|
+
var AssociateFirewallRuleGroupResponse$ = [3, n0, _AFRGRs,
|
|
932
|
+
0,
|
|
933
|
+
[_FRGA],
|
|
934
|
+
[() => FirewallRuleGroupAssociation$]
|
|
935
|
+
];
|
|
936
|
+
var AssociateResolverEndpointIpAddressRequest$ = [3, n0, _AREIAR,
|
|
937
|
+
0,
|
|
938
|
+
[_REI, _IA],
|
|
939
|
+
[0, () => IpAddressUpdate$], 2
|
|
940
|
+
];
|
|
941
|
+
var AssociateResolverEndpointIpAddressResponse$ = [3, n0, _AREIARs,
|
|
942
|
+
0,
|
|
943
|
+
[_RE],
|
|
944
|
+
[() => ResolverEndpoint$]
|
|
945
|
+
];
|
|
946
|
+
var AssociateResolverQueryLogConfigRequest$ = [3, n0, _ARQLCR,
|
|
947
|
+
0,
|
|
948
|
+
[_RQLCI, _RI],
|
|
949
|
+
[0, 0], 2
|
|
950
|
+
];
|
|
951
|
+
var AssociateResolverQueryLogConfigResponse$ = [3, n0, _ARQLCRs,
|
|
952
|
+
0,
|
|
953
|
+
[_RQLCA],
|
|
954
|
+
[() => ResolverQueryLogConfigAssociation$]
|
|
955
|
+
];
|
|
956
|
+
var AssociateResolverRuleRequest$ = [3, n0, _ARRR,
|
|
957
|
+
0,
|
|
958
|
+
[_RRI, _VPCI, _N],
|
|
959
|
+
[0, 0, 0], 2
|
|
960
|
+
];
|
|
961
|
+
var AssociateResolverRuleResponse$ = [3, n0, _ARRRs,
|
|
962
|
+
0,
|
|
963
|
+
[_RRA],
|
|
964
|
+
[() => ResolverRuleAssociation$]
|
|
965
|
+
];
|
|
966
|
+
var BatchCreateFirewallRuleError$ = [3, n0, _BCFRE,
|
|
967
|
+
0,
|
|
968
|
+
[_FR, _C, _M],
|
|
969
|
+
[() => CreateFirewallRuleEntry$, 0, 0]
|
|
970
|
+
];
|
|
971
|
+
var BatchCreateFirewallRuleRequest$ = [3, n0, _BCFRR,
|
|
972
|
+
0,
|
|
973
|
+
[_CFRE],
|
|
974
|
+
[() => CreateFirewallRuleEntries], 1
|
|
975
|
+
];
|
|
976
|
+
var BatchCreateFirewallRuleResponse$ = [3, n0, _BCFRRa,
|
|
977
|
+
0,
|
|
978
|
+
[_CFR, _CEr],
|
|
979
|
+
[() => FirewallRules, () => BatchCreateFirewallRuleErrors]
|
|
980
|
+
];
|
|
981
|
+
var BatchDeleteFirewallRuleError$ = [3, n0, _BDFRE,
|
|
982
|
+
0,
|
|
983
|
+
[_FR, _C, _M],
|
|
984
|
+
[() => DeleteFirewallRuleEntry$, 0, 0]
|
|
985
|
+
];
|
|
986
|
+
var BatchDeleteFirewallRuleRequest$ = [3, n0, _BDFRR,
|
|
987
|
+
0,
|
|
988
|
+
[_DFRE],
|
|
989
|
+
[() => DeleteFirewallRuleEntries], 1
|
|
990
|
+
];
|
|
991
|
+
var BatchDeleteFirewallRuleResponse$ = [3, n0, _BDFRRa,
|
|
992
|
+
0,
|
|
993
|
+
[_DFR, _DE],
|
|
994
|
+
[() => FirewallRules, () => BatchDeleteFirewallRuleErrors]
|
|
995
|
+
];
|
|
996
|
+
var BatchUpdateFirewallRuleError$ = [3, n0, _BUFRE,
|
|
997
|
+
0,
|
|
998
|
+
[_FR, _C, _M],
|
|
999
|
+
[() => UpdateFirewallRuleEntry$, 0, 0]
|
|
1000
|
+
];
|
|
1001
|
+
var BatchUpdateFirewallRuleRequest$ = [3, n0, _BUFRR,
|
|
1002
|
+
0,
|
|
1003
|
+
[_UFRE],
|
|
1004
|
+
[() => UpdateFirewallRuleEntries], 1
|
|
1005
|
+
];
|
|
1006
|
+
var BatchUpdateFirewallRuleResponse$ = [3, n0, _BUFRRa,
|
|
1007
|
+
0,
|
|
1008
|
+
[_UFR, _UE],
|
|
1009
|
+
[() => FirewallRules, () => BatchUpdateFirewallRuleErrors]
|
|
1010
|
+
];
|
|
1011
|
+
var CreateFirewallDomainListRequest$ = [3, n0, _CFDLR,
|
|
1012
|
+
0,
|
|
1013
|
+
[_N, _CRI, _T],
|
|
1014
|
+
[0, [0, 4], () => TagList], 1
|
|
1015
|
+
];
|
|
1016
|
+
var CreateFirewallDomainListResponse$ = [3, n0, _CFDLRr,
|
|
1017
|
+
0,
|
|
1018
|
+
[_FDL],
|
|
1019
|
+
[() => FirewallDomainList$]
|
|
1020
|
+
];
|
|
1021
|
+
var CreateFirewallRuleEntry$ = [3, n0, _CFREr,
|
|
1022
|
+
0,
|
|
1023
|
+
[_CRI, _FRGI, _P, _A, _N, _FDLI, _BR, _BOD, _BODT, _BOT, _FDRA, _Q, _DTP, _CT, _FRT],
|
|
1024
|
+
[0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, () => FirewallRuleType$], 5
|
|
1025
|
+
];
|
|
1026
|
+
var CreateFirewallRuleGroupRequest$ = [3, n0, _CFRGR,
|
|
1027
|
+
0,
|
|
1028
|
+
[_N, _CRI, _T],
|
|
1029
|
+
[0, [0, 4], () => TagList], 1
|
|
1030
|
+
];
|
|
1031
|
+
var CreateFirewallRuleGroupResponse$ = [3, n0, _CFRGRr,
|
|
1032
|
+
0,
|
|
1033
|
+
[_FRG],
|
|
1034
|
+
[() => FirewallRuleGroup$]
|
|
1035
|
+
];
|
|
1036
|
+
var CreateFirewallRuleRequest$ = [3, n0, _CFRR,
|
|
1037
|
+
0,
|
|
1038
|
+
[_FRGI, _P, _A, _N, _CRI, _FDLI, _BR, _BOD, _BODT, _BOT, _FDRA, _Q, _DTP, _CT, _FRT],
|
|
1039
|
+
[0, 1, 0, 0, [0, 4], 0, 0, 0, 0, 1, 0, 0, 0, 0, () => FirewallRuleType$], 4
|
|
1040
|
+
];
|
|
1041
|
+
var CreateFirewallRuleResponse$ = [3, n0, _CFRRr,
|
|
1042
|
+
0,
|
|
1043
|
+
[_FR],
|
|
1044
|
+
[() => FirewallRule$]
|
|
1045
|
+
];
|
|
1046
|
+
var CreateOutpostResolverRequest$ = [3, n0, _CORR,
|
|
1047
|
+
0,
|
|
1048
|
+
[_CRI, _N, _PIT, _OA, _IC, _T],
|
|
1049
|
+
[0, 0, 0, 0, 1, () => TagList], 4
|
|
1050
|
+
];
|
|
1051
|
+
var CreateOutpostResolverResponse$ = [3, n0, _CORRr,
|
|
1052
|
+
0,
|
|
1053
|
+
[_OR],
|
|
1054
|
+
[() => OutpostResolver$]
|
|
1055
|
+
];
|
|
1056
|
+
var CreateResolverEndpointRequest$ = [3, n0, _CRER,
|
|
1057
|
+
0,
|
|
1058
|
+
[_CRI, _SGI, _D, _IAp, _N, _OA, _PIT, _T, _RET, _Pr, _REME, _TNSME, _DEn, _IIAE],
|
|
1059
|
+
[0, 64 | 0, 0, () => IpAddressesRequest, 0, 0, 0, () => TagList, 0, 64 | 0, 2, 2, 2, 2], 4
|
|
1060
|
+
];
|
|
1061
|
+
var CreateResolverEndpointResponse$ = [3, n0, _CRERr,
|
|
1062
|
+
0,
|
|
1063
|
+
[_RE],
|
|
1064
|
+
[() => ResolverEndpoint$]
|
|
1065
|
+
];
|
|
1066
|
+
var CreateResolverQueryLogConfigRequest$ = [3, n0, _CRQLCR,
|
|
1067
|
+
0,
|
|
1068
|
+
[_N, _DA, _CRI, _T],
|
|
1069
|
+
[0, 0, [0, 4], () => TagList], 2
|
|
1070
|
+
];
|
|
1071
|
+
var CreateResolverQueryLogConfigResponse$ = [3, n0, _CRQLCRr,
|
|
1072
|
+
0,
|
|
1073
|
+
[_RQLC],
|
|
1074
|
+
[() => ResolverQueryLogConfig$]
|
|
1075
|
+
];
|
|
1076
|
+
var CreateResolverRuleRequest$ = [3, n0, _CRRR,
|
|
1077
|
+
0,
|
|
1078
|
+
[_CRI, _RTu, _N, _DN, _TI, _REI, _T, _DR],
|
|
1079
|
+
[0, 0, 0, 0, () => TargetList, 0, () => TagList, 0], 2
|
|
1080
|
+
];
|
|
1081
|
+
var CreateResolverRuleResponse$ = [3, n0, _CRRRr,
|
|
1082
|
+
0,
|
|
1083
|
+
[_RR],
|
|
1084
|
+
[() => ResolverRule$]
|
|
1085
|
+
];
|
|
1086
|
+
var DeleteFirewallDomainListRequest$ = [3, n0, _DFDLR,
|
|
1087
|
+
0,
|
|
1088
|
+
[_FDLI],
|
|
1089
|
+
[0], 1
|
|
1090
|
+
];
|
|
1091
|
+
var DeleteFirewallDomainListResponse$ = [3, n0, _DFDLRe,
|
|
1092
|
+
0,
|
|
1093
|
+
[_FDL],
|
|
1094
|
+
[() => FirewallDomainList$]
|
|
1095
|
+
];
|
|
1096
|
+
var DeleteFirewallRuleEntry$ = [3, n0, _DFREe,
|
|
1097
|
+
0,
|
|
1098
|
+
[_FRGI, _FDLI, _FTPI, _Q],
|
|
1099
|
+
[0, 0, 0, 0], 1
|
|
1100
|
+
];
|
|
1101
|
+
var DeleteFirewallRuleGroupRequest$ = [3, n0, _DFRGR,
|
|
1102
|
+
0,
|
|
1103
|
+
[_FRGI],
|
|
1104
|
+
[0], 1
|
|
1105
|
+
];
|
|
1106
|
+
var DeleteFirewallRuleGroupResponse$ = [3, n0, _DFRGRe,
|
|
1107
|
+
0,
|
|
1108
|
+
[_FRG],
|
|
1109
|
+
[() => FirewallRuleGroup$]
|
|
1110
|
+
];
|
|
1111
|
+
var DeleteFirewallRuleRequest$ = [3, n0, _DFRR,
|
|
1112
|
+
0,
|
|
1113
|
+
[_FRGI, _FDLI, _FTPI, _Q],
|
|
1114
|
+
[0, 0, 0, 0], 1
|
|
1115
|
+
];
|
|
1116
|
+
var DeleteFirewallRuleResponse$ = [3, n0, _DFRRe,
|
|
1117
|
+
0,
|
|
1118
|
+
[_FR],
|
|
1119
|
+
[() => FirewallRule$]
|
|
1120
|
+
];
|
|
1121
|
+
var DeleteOutpostResolverRequest$ = [3, n0, _DORR,
|
|
1122
|
+
0,
|
|
1123
|
+
[_I],
|
|
1124
|
+
[0], 1
|
|
1125
|
+
];
|
|
1126
|
+
var DeleteOutpostResolverResponse$ = [3, n0, _DORRe,
|
|
1127
|
+
0,
|
|
1128
|
+
[_OR],
|
|
1129
|
+
[() => OutpostResolver$]
|
|
1130
|
+
];
|
|
1131
|
+
var DeleteResolverEndpointRequest$ = [3, n0, _DRER,
|
|
1132
|
+
0,
|
|
1133
|
+
[_REI],
|
|
1134
|
+
[0], 1
|
|
1135
|
+
];
|
|
1136
|
+
var DeleteResolverEndpointResponse$ = [3, n0, _DRERe,
|
|
1137
|
+
0,
|
|
1138
|
+
[_RE],
|
|
1139
|
+
[() => ResolverEndpoint$]
|
|
1140
|
+
];
|
|
1141
|
+
var DeleteResolverQueryLogConfigRequest$ = [3, n0, _DRQLCR,
|
|
1142
|
+
0,
|
|
1143
|
+
[_RQLCI],
|
|
1144
|
+
[0], 1
|
|
1145
|
+
];
|
|
1146
|
+
var DeleteResolverQueryLogConfigResponse$ = [3, n0, _DRQLCRe,
|
|
1147
|
+
0,
|
|
1148
|
+
[_RQLC],
|
|
1149
|
+
[() => ResolverQueryLogConfig$]
|
|
1150
|
+
];
|
|
1151
|
+
var DeleteResolverRuleRequest$ = [3, n0, _DRRR,
|
|
1152
|
+
0,
|
|
1153
|
+
[_RRI],
|
|
1154
|
+
[0], 1
|
|
1155
|
+
];
|
|
1156
|
+
var DeleteResolverRuleResponse$ = [3, n0, _DRRRe,
|
|
1157
|
+
0,
|
|
1158
|
+
[_RR],
|
|
1159
|
+
[() => ResolverRule$]
|
|
1160
|
+
];
|
|
1161
|
+
var DisassociateFirewallRuleGroupRequest$ = [3, n0, _DFRGRi,
|
|
1162
|
+
0,
|
|
1163
|
+
[_FRGAI],
|
|
1164
|
+
[0], 1
|
|
1165
|
+
];
|
|
1166
|
+
var DisassociateFirewallRuleGroupResponse$ = [3, n0, _DFRGRis,
|
|
1167
|
+
0,
|
|
1168
|
+
[_FRGA],
|
|
1169
|
+
[() => FirewallRuleGroupAssociation$]
|
|
1170
|
+
];
|
|
1171
|
+
var DisassociateResolverEndpointIpAddressRequest$ = [3, n0, _DREIAR,
|
|
1172
|
+
0,
|
|
1173
|
+
[_REI, _IA],
|
|
1174
|
+
[0, () => IpAddressUpdate$], 2
|
|
1175
|
+
];
|
|
1176
|
+
var DisassociateResolverEndpointIpAddressResponse$ = [3, n0, _DREIARi,
|
|
1177
|
+
0,
|
|
1178
|
+
[_RE],
|
|
1179
|
+
[() => ResolverEndpoint$]
|
|
1180
|
+
];
|
|
1181
|
+
var DisassociateResolverQueryLogConfigRequest$ = [3, n0, _DRQLCRi,
|
|
1182
|
+
0,
|
|
1183
|
+
[_RQLCI, _RI],
|
|
1184
|
+
[0, 0], 2
|
|
1185
|
+
];
|
|
1186
|
+
var DisassociateResolverQueryLogConfigResponse$ = [3, n0, _DRQLCRis,
|
|
1187
|
+
0,
|
|
1188
|
+
[_RQLCA],
|
|
1189
|
+
[() => ResolverQueryLogConfigAssociation$]
|
|
1190
|
+
];
|
|
1191
|
+
var DisassociateResolverRuleRequest$ = [3, n0, _DRRRi,
|
|
1192
|
+
0,
|
|
1193
|
+
[_VPCI, _RRI],
|
|
1194
|
+
[0, 0], 2
|
|
1195
|
+
];
|
|
1196
|
+
var DisassociateResolverRuleResponse$ = [3, n0, _DRRRis,
|
|
1197
|
+
0,
|
|
1198
|
+
[_RRA],
|
|
1199
|
+
[() => ResolverRuleAssociation$]
|
|
1200
|
+
];
|
|
1201
|
+
var DnsThreatProtectionRuleTypeConfig$ = [3, n0, _DTPRTC,
|
|
1202
|
+
0,
|
|
1203
|
+
[_V, _CT],
|
|
1204
|
+
[0, 0], 2
|
|
1205
|
+
];
|
|
1206
|
+
var Filter$ = [3, n0, _F,
|
|
1207
|
+
0,
|
|
1208
|
+
[_N, _Va],
|
|
1209
|
+
[0, 64 | 0]
|
|
1210
|
+
];
|
|
1211
|
+
var FirewallAdvancedContentCategoryConfig$ = [3, n0, _FACCC,
|
|
1212
|
+
0,
|
|
1213
|
+
[_Ca],
|
|
1214
|
+
[0], 1
|
|
1215
|
+
];
|
|
1216
|
+
var FirewallAdvancedThreatCategoryConfig$ = [3, n0, _FATCC,
|
|
1217
|
+
0,
|
|
1218
|
+
[_Ca],
|
|
1219
|
+
[0], 1
|
|
1220
|
+
];
|
|
1221
|
+
var FirewallConfig$ = [3, n0, _FC,
|
|
1222
|
+
0,
|
|
1223
|
+
[_I, _RI, _OI, _FFO],
|
|
1224
|
+
[0, 0, 0, 0]
|
|
1225
|
+
];
|
|
1226
|
+
var FirewallDomainList$ = [3, n0, _FDL,
|
|
1227
|
+
0,
|
|
1228
|
+
[_I, _Ar, _N, _DC, _S, _SM, _MON, _CRI, _CTr, _MT, _Ca, _MLT],
|
|
1229
|
+
[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1230
|
+
];
|
|
1231
|
+
var FirewallDomainListMetadata$ = [3, n0, _FDLM,
|
|
1232
|
+
0,
|
|
1233
|
+
[_I, _Ar, _N, _CRI, _MON, _MLT, _Ca],
|
|
1234
|
+
[0, 0, 0, 0, 0, 0, 0]
|
|
1235
|
+
];
|
|
1236
|
+
var FirewallRule$ = [3, n0, _FR,
|
|
1237
|
+
0,
|
|
1238
|
+
[_FRGI, _FDLI, _FTPI, _N, _P, _A, _BR, _BOD, _BODT, _BOT, _CRI, _CTr, _MT, _FDRA, _Q, _DTP, _CT, _FRT, _S, _SM],
|
|
1239
|
+
[0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, () => FirewallRuleType$, 0, 0]
|
|
1240
|
+
];
|
|
1241
|
+
var FirewallRuleGroup$ = [3, n0, _FRG,
|
|
1242
|
+
0,
|
|
1243
|
+
[_I, _Ar, _N, _RC, _S, _SM, _OI, _CRI, _SS, _CTr, _MT],
|
|
1244
|
+
[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]
|
|
1245
|
+
];
|
|
1246
|
+
var FirewallRuleGroupAssociation$ = [3, n0, _FRGA,
|
|
1247
|
+
0,
|
|
1248
|
+
[_I, _Ar, _FRGI, _VI, _N, _P, _MP, _MON, _S, _SM, _CRI, _CTr, _MT],
|
|
1249
|
+
[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]
|
|
1250
|
+
];
|
|
1251
|
+
var FirewallRuleGroupMetadata$ = [3, n0, _FRGM,
|
|
1252
|
+
0,
|
|
1253
|
+
[_I, _Ar, _N, _OI, _CRI, _SS],
|
|
1254
|
+
[0, 0, 0, 0, 0, 0]
|
|
1255
|
+
];
|
|
1256
|
+
var FirewallRuleType$ = [3, n0, _FRT,
|
|
1257
|
+
0,
|
|
1258
|
+
[_PTP, _FACC, _FATC, _DTP],
|
|
1259
|
+
[() => PartnerThreatProtectionConfig$, () => FirewallAdvancedContentCategoryConfig$, () => FirewallAdvancedThreatCategoryConfig$, () => DnsThreatProtectionRuleTypeConfig$]
|
|
1260
|
+
];
|
|
1261
|
+
var FirewallRuleTypeDefinition$ = [3, n0, _FRTD,
|
|
1262
|
+
0,
|
|
1263
|
+
[_RTu, _V, _DNi, _De, _SI],
|
|
1264
|
+
[0, 0, 0, 0, () => SubscriptionInfo$]
|
|
1265
|
+
];
|
|
1266
|
+
var GetFirewallConfigRequest$ = [3, n0, _GFCR,
|
|
1267
|
+
0,
|
|
1268
|
+
[_RI],
|
|
1269
|
+
[0], 1
|
|
1270
|
+
];
|
|
1271
|
+
var GetFirewallConfigResponse$ = [3, n0, _GFCRe,
|
|
1272
|
+
0,
|
|
1273
|
+
[_FC],
|
|
1274
|
+
[() => FirewallConfig$]
|
|
1275
|
+
];
|
|
1276
|
+
var GetFirewallDomainListRequest$ = [3, n0, _GFDLR,
|
|
1277
|
+
0,
|
|
1278
|
+
[_FDLI],
|
|
1279
|
+
[0], 1
|
|
1280
|
+
];
|
|
1281
|
+
var GetFirewallDomainListResponse$ = [3, n0, _GFDLRe,
|
|
1282
|
+
0,
|
|
1283
|
+
[_FDL],
|
|
1284
|
+
[() => FirewallDomainList$]
|
|
1285
|
+
];
|
|
1286
|
+
var GetFirewallRuleGroupAssociationRequest$ = [3, n0, _GFRGAR,
|
|
1287
|
+
0,
|
|
1288
|
+
[_FRGAI],
|
|
1289
|
+
[0], 1
|
|
1290
|
+
];
|
|
1291
|
+
var GetFirewallRuleGroupAssociationResponse$ = [3, n0, _GFRGARe,
|
|
1292
|
+
0,
|
|
1293
|
+
[_FRGA],
|
|
1294
|
+
[() => FirewallRuleGroupAssociation$]
|
|
1295
|
+
];
|
|
1296
|
+
var GetFirewallRuleGroupPolicyRequest$ = [3, n0, _GFRGPR,
|
|
1297
|
+
0,
|
|
1298
|
+
[_Ar],
|
|
1299
|
+
[0], 1
|
|
1300
|
+
];
|
|
1301
|
+
var GetFirewallRuleGroupPolicyResponse$ = [3, n0, _GFRGPRe,
|
|
1302
|
+
0,
|
|
1303
|
+
[_FRGP],
|
|
1304
|
+
[0]
|
|
1305
|
+
];
|
|
1306
|
+
var GetFirewallRuleGroupRequest$ = [3, n0, _GFRGR,
|
|
1307
|
+
0,
|
|
1308
|
+
[_FRGI],
|
|
1309
|
+
[0], 1
|
|
1310
|
+
];
|
|
1311
|
+
var GetFirewallRuleGroupResponse$ = [3, n0, _GFRGRe,
|
|
1312
|
+
0,
|
|
1313
|
+
[_FRG],
|
|
1314
|
+
[() => FirewallRuleGroup$]
|
|
1315
|
+
];
|
|
1316
|
+
var GetOutpostResolverRequest$ = [3, n0, _GORR,
|
|
1317
|
+
0,
|
|
1318
|
+
[_I],
|
|
1319
|
+
[0], 1
|
|
1320
|
+
];
|
|
1321
|
+
var GetOutpostResolverResponse$ = [3, n0, _GORRe,
|
|
1322
|
+
0,
|
|
1323
|
+
[_OR],
|
|
1324
|
+
[() => OutpostResolver$]
|
|
1325
|
+
];
|
|
1326
|
+
var GetResolverConfigRequest$ = [3, n0, _GRCR,
|
|
1327
|
+
0,
|
|
1328
|
+
[_RI],
|
|
1329
|
+
[0], 1
|
|
1330
|
+
];
|
|
1331
|
+
var GetResolverConfigResponse$ = [3, n0, _GRCRe,
|
|
1332
|
+
0,
|
|
1333
|
+
[_RCe],
|
|
1334
|
+
[() => ResolverConfig$]
|
|
1335
|
+
];
|
|
1336
|
+
var GetResolverDnssecConfigRequest$ = [3, n0, _GRDCR,
|
|
1337
|
+
0,
|
|
1338
|
+
[_RI],
|
|
1339
|
+
[0], 1
|
|
1340
|
+
];
|
|
1341
|
+
var GetResolverDnssecConfigResponse$ = [3, n0, _GRDCRe,
|
|
1342
|
+
0,
|
|
1343
|
+
[_RDNSSECC],
|
|
1344
|
+
[() => ResolverDnssecConfig$]
|
|
1345
|
+
];
|
|
1346
|
+
var GetResolverEndpointRequest$ = [3, n0, _GRER,
|
|
1347
|
+
0,
|
|
1348
|
+
[_REI],
|
|
1349
|
+
[0], 1
|
|
1350
|
+
];
|
|
1351
|
+
var GetResolverEndpointResponse$ = [3, n0, _GRERe,
|
|
1352
|
+
0,
|
|
1353
|
+
[_RE],
|
|
1354
|
+
[() => ResolverEndpoint$]
|
|
1355
|
+
];
|
|
1356
|
+
var GetResolverQueryLogConfigAssociationRequest$ = [3, n0, _GRQLCAR,
|
|
1357
|
+
0,
|
|
1358
|
+
[_RQLCAI],
|
|
1359
|
+
[0], 1
|
|
1360
|
+
];
|
|
1361
|
+
var GetResolverQueryLogConfigAssociationResponse$ = [3, n0, _GRQLCARe,
|
|
1362
|
+
0,
|
|
1363
|
+
[_RQLCA],
|
|
1364
|
+
[() => ResolverQueryLogConfigAssociation$]
|
|
1365
|
+
];
|
|
1366
|
+
var GetResolverQueryLogConfigPolicyRequest$ = [3, n0, _GRQLCPR,
|
|
1367
|
+
0,
|
|
1368
|
+
[_Ar],
|
|
1369
|
+
[0], 1
|
|
1370
|
+
];
|
|
1371
|
+
var GetResolverQueryLogConfigPolicyResponse$ = [3, n0, _GRQLCPRe,
|
|
1372
|
+
0,
|
|
1373
|
+
[_RQLCP],
|
|
1374
|
+
[0]
|
|
1375
|
+
];
|
|
1376
|
+
var GetResolverQueryLogConfigRequest$ = [3, n0, _GRQLCR,
|
|
1377
|
+
0,
|
|
1378
|
+
[_RQLCI],
|
|
1379
|
+
[0], 1
|
|
1380
|
+
];
|
|
1381
|
+
var GetResolverQueryLogConfigResponse$ = [3, n0, _GRQLCRe,
|
|
1382
|
+
0,
|
|
1383
|
+
[_RQLC],
|
|
1384
|
+
[() => ResolverQueryLogConfig$]
|
|
1385
|
+
];
|
|
1386
|
+
var GetResolverRuleAssociationRequest$ = [3, n0, _GRRAR,
|
|
1387
|
+
0,
|
|
1388
|
+
[_RRAI],
|
|
1389
|
+
[0], 1
|
|
1390
|
+
];
|
|
1391
|
+
var GetResolverRuleAssociationResponse$ = [3, n0, _GRRARe,
|
|
1392
|
+
0,
|
|
1393
|
+
[_RRA],
|
|
1394
|
+
[() => ResolverRuleAssociation$]
|
|
1395
|
+
];
|
|
1396
|
+
var GetResolverRulePolicyRequest$ = [3, n0, _GRRPR,
|
|
1397
|
+
0,
|
|
1398
|
+
[_Ar],
|
|
1399
|
+
[0], 1
|
|
1400
|
+
];
|
|
1401
|
+
var GetResolverRulePolicyResponse$ = [3, n0, _GRRPRe,
|
|
1402
|
+
0,
|
|
1403
|
+
[_RRP],
|
|
1404
|
+
[0]
|
|
1405
|
+
];
|
|
1406
|
+
var GetResolverRuleRequest$ = [3, n0, _GRRR,
|
|
1407
|
+
0,
|
|
1408
|
+
[_RRI],
|
|
1409
|
+
[0], 1
|
|
1410
|
+
];
|
|
1411
|
+
var GetResolverRuleResponse$ = [3, n0, _GRRRe,
|
|
1412
|
+
0,
|
|
1413
|
+
[_RR],
|
|
1414
|
+
[() => ResolverRule$]
|
|
1415
|
+
];
|
|
1416
|
+
var ImportFirewallDomainsRequest$ = [3, n0, _IFDR,
|
|
1417
|
+
0,
|
|
1418
|
+
[_FDLI, _O, _DFU],
|
|
1419
|
+
[0, 0, 0], 3
|
|
1420
|
+
];
|
|
1421
|
+
var ImportFirewallDomainsResponse$ = [3, n0, _IFDRm,
|
|
1422
|
+
0,
|
|
1423
|
+
[_I, _N, _S, _SM],
|
|
1424
|
+
[0, 0, 0, 0]
|
|
1425
|
+
];
|
|
1426
|
+
var IpAddressRequest$ = [3, n0, _IAR,
|
|
1427
|
+
0,
|
|
1428
|
+
[_SIu, _Ip, _Ipv],
|
|
1429
|
+
[0, 0, 0], 1
|
|
1430
|
+
];
|
|
1431
|
+
var IpAddressResponse$ = [3, n0, _IARp,
|
|
1432
|
+
0,
|
|
1433
|
+
[_II, _SIu, _Ip, _Ipv, _S, _SM, _CTr, _MT],
|
|
1434
|
+
[0, 0, 0, 0, 0, 0, 0, 0]
|
|
1435
|
+
];
|
|
1436
|
+
var IpAddressUpdate$ = [3, n0, _IAU,
|
|
1437
|
+
0,
|
|
1438
|
+
[_II, _SIu, _Ip, _Ipv],
|
|
1439
|
+
[0, 0, 0, 0]
|
|
1440
|
+
];
|
|
1441
|
+
var ListFirewallConfigsRequest$ = [3, n0, _LFCR,
|
|
1442
|
+
0,
|
|
1443
|
+
[_MR, _NT],
|
|
1444
|
+
[1, 0]
|
|
1445
|
+
];
|
|
1446
|
+
var ListFirewallConfigsResponse$ = [3, n0, _LFCRi,
|
|
1447
|
+
0,
|
|
1448
|
+
[_NT, _FCi],
|
|
1449
|
+
[0, () => FirewallConfigList]
|
|
1450
|
+
];
|
|
1451
|
+
var ListFirewallDomainListsRequest$ = [3, n0, _LFDLR,
|
|
1452
|
+
0,
|
|
1453
|
+
[_MR, _NT],
|
|
1454
|
+
[1, 0]
|
|
1455
|
+
];
|
|
1456
|
+
var ListFirewallDomainListsResponse$ = [3, n0, _LFDLRi,
|
|
1457
|
+
0,
|
|
1458
|
+
[_NT, _FDLi],
|
|
1459
|
+
[0, () => FirewallDomainListMetadataList]
|
|
1460
|
+
];
|
|
1461
|
+
var ListFirewallDomainsRequest$ = [3, n0, _LFDR,
|
|
1462
|
+
0,
|
|
1463
|
+
[_FDLI, _MR, _NT],
|
|
1464
|
+
[0, 1, 0], 1
|
|
1465
|
+
];
|
|
1466
|
+
var ListFirewallDomainsResponse$ = [3, n0, _LFDRi,
|
|
1467
|
+
0,
|
|
1468
|
+
[_NT, _Do],
|
|
1469
|
+
[0, 64 | 0]
|
|
1470
|
+
];
|
|
1471
|
+
var ListFirewallRuleGroupAssociationsRequest$ = [3, n0, _LFRGAR,
|
|
1472
|
+
0,
|
|
1473
|
+
[_FRGI, _VI, _P, _S, _MR, _NT],
|
|
1474
|
+
[0, 0, 1, 0, 1, 0]
|
|
1475
|
+
];
|
|
1476
|
+
var ListFirewallRuleGroupAssociationsResponse$ = [3, n0, _LFRGARi,
|
|
1477
|
+
0,
|
|
1478
|
+
[_NT, _FRGAi],
|
|
1479
|
+
[0, () => FirewallRuleGroupAssociations]
|
|
1480
|
+
];
|
|
1481
|
+
var ListFirewallRuleGroupsRequest$ = [3, n0, _LFRGR,
|
|
1482
|
+
0,
|
|
1483
|
+
[_MR, _NT],
|
|
1484
|
+
[1, 0]
|
|
1485
|
+
];
|
|
1486
|
+
var ListFirewallRuleGroupsResponse$ = [3, n0, _LFRGRi,
|
|
1487
|
+
0,
|
|
1488
|
+
[_NT, _FRGi],
|
|
1489
|
+
[0, () => FirewallRuleGroupMetadataList]
|
|
1490
|
+
];
|
|
1491
|
+
var ListFirewallRulesRequest$ = [3, n0, _LFRR,
|
|
1492
|
+
0,
|
|
1493
|
+
[_FRGI, _P, _A, _MR, _NT],
|
|
1494
|
+
[0, 1, 0, 1, 0], 1
|
|
1495
|
+
];
|
|
1496
|
+
var ListFirewallRulesResponse$ = [3, n0, _LFRRi,
|
|
1497
|
+
0,
|
|
1498
|
+
[_NT, _FRi],
|
|
1499
|
+
[0, () => FirewallRules]
|
|
1500
|
+
];
|
|
1501
|
+
var ListFirewallRuleTypesRequest$ = [3, n0, _LFRTR,
|
|
1502
|
+
0,
|
|
1503
|
+
[_RTu, _MR, _NT],
|
|
1504
|
+
[0, 1, 0]
|
|
1505
|
+
];
|
|
1506
|
+
var ListFirewallRuleTypesResponse$ = [3, n0, _LFRTRi,
|
|
1507
|
+
0,
|
|
1508
|
+
[_FRTi, _NT],
|
|
1509
|
+
[() => FirewallRuleTypeDefinitions, 0]
|
|
1510
|
+
];
|
|
1511
|
+
var ListOutpostResolversRequest$ = [3, n0, _LORR,
|
|
1512
|
+
0,
|
|
1513
|
+
[_OA, _MR, _NT],
|
|
1514
|
+
[0, 1, 0]
|
|
1515
|
+
];
|
|
1516
|
+
var ListOutpostResolversResponse$ = [3, n0, _LORRi,
|
|
1517
|
+
0,
|
|
1518
|
+
[_ORu, _NT],
|
|
1519
|
+
[() => OutpostResolverList, 0]
|
|
1520
|
+
];
|
|
1521
|
+
var ListResolverConfigsRequest$ = [3, n0, _LRCR,
|
|
1522
|
+
0,
|
|
1523
|
+
[_MR, _NT],
|
|
1524
|
+
[1, 0]
|
|
1525
|
+
];
|
|
1526
|
+
var ListResolverConfigsResponse$ = [3, n0, _LRCRi,
|
|
1527
|
+
0,
|
|
1528
|
+
[_NT, _RCes],
|
|
1529
|
+
[0, () => ResolverConfigList]
|
|
1530
|
+
];
|
|
1531
|
+
var ListResolverDnssecConfigsRequest$ = [3, n0, _LRDCR,
|
|
1532
|
+
0,
|
|
1533
|
+
[_MR, _NT, _Fi],
|
|
1534
|
+
[1, 0, () => Filters]
|
|
1535
|
+
];
|
|
1536
|
+
var ListResolverDnssecConfigsResponse$ = [3, n0, _LRDCRi,
|
|
1537
|
+
0,
|
|
1538
|
+
[_NT, _RDC],
|
|
1539
|
+
[0, () => ResolverDnssecConfigList]
|
|
1540
|
+
];
|
|
1541
|
+
var ListResolverEndpointIpAddressesRequest$ = [3, n0, _LREIAR,
|
|
1542
|
+
0,
|
|
1543
|
+
[_REI, _MR, _NT],
|
|
1544
|
+
[0, 1, 0], 1
|
|
1545
|
+
];
|
|
1546
|
+
var ListResolverEndpointIpAddressesResponse$ = [3, n0, _LREIARi,
|
|
1547
|
+
0,
|
|
1548
|
+
[_NT, _MR, _IAp],
|
|
1549
|
+
[0, 1, () => IpAddressesResponse]
|
|
1550
|
+
];
|
|
1551
|
+
var ListResolverEndpointsRequest$ = [3, n0, _LRER,
|
|
1552
|
+
0,
|
|
1553
|
+
[_MR, _NT, _Fi],
|
|
1554
|
+
[1, 0, () => Filters]
|
|
1555
|
+
];
|
|
1556
|
+
var ListResolverEndpointsResponse$ = [3, n0, _LRERi,
|
|
1557
|
+
0,
|
|
1558
|
+
[_NT, _MR, _REe],
|
|
1559
|
+
[0, 1, () => ResolverEndpoints]
|
|
1560
|
+
];
|
|
1561
|
+
var ListResolverQueryLogConfigAssociationsRequest$ = [3, n0, _LRQLCAR,
|
|
1562
|
+
0,
|
|
1563
|
+
[_MR, _NT, _Fi, _SB, _SO],
|
|
1564
|
+
[1, 0, () => Filters, 0, 0]
|
|
1565
|
+
];
|
|
1566
|
+
var ListResolverQueryLogConfigAssociationsResponse$ = [3, n0, _LRQLCARi,
|
|
1567
|
+
0,
|
|
1568
|
+
[_NT, _TC, _TFC, _RQLCAe],
|
|
1569
|
+
[0, 1, 1, () => ResolverQueryLogConfigAssociationList]
|
|
1570
|
+
];
|
|
1571
|
+
var ListResolverQueryLogConfigsRequest$ = [3, n0, _LRQLCR,
|
|
1572
|
+
0,
|
|
1573
|
+
[_MR, _NT, _Fi, _SB, _SO],
|
|
1574
|
+
[1, 0, () => Filters, 0, 0]
|
|
1575
|
+
];
|
|
1576
|
+
var ListResolverQueryLogConfigsResponse$ = [3, n0, _LRQLCRi,
|
|
1577
|
+
0,
|
|
1578
|
+
[_NT, _TC, _TFC, _RQLCe],
|
|
1579
|
+
[0, 1, 1, () => ResolverQueryLogConfigList]
|
|
1580
|
+
];
|
|
1581
|
+
var ListResolverRuleAssociationsRequest$ = [3, n0, _LRRAR,
|
|
1582
|
+
0,
|
|
1583
|
+
[_MR, _NT, _Fi],
|
|
1584
|
+
[1, 0, () => Filters]
|
|
1585
|
+
];
|
|
1586
|
+
var ListResolverRuleAssociationsResponse$ = [3, n0, _LRRARi,
|
|
1587
|
+
0,
|
|
1588
|
+
[_NT, _MR, _RRAe],
|
|
1589
|
+
[0, 1, () => ResolverRuleAssociations]
|
|
1590
|
+
];
|
|
1591
|
+
var ListResolverRulesRequest$ = [3, n0, _LRRR,
|
|
1592
|
+
0,
|
|
1593
|
+
[_MR, _NT, _Fi],
|
|
1594
|
+
[1, 0, () => Filters]
|
|
1595
|
+
];
|
|
1596
|
+
var ListResolverRulesResponse$ = [3, n0, _LRRRi,
|
|
1597
|
+
0,
|
|
1598
|
+
[_NT, _MR, _RRe],
|
|
1599
|
+
[0, 1, () => ResolverRules]
|
|
1600
|
+
];
|
|
1601
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1602
|
+
0,
|
|
1603
|
+
[_RA, _MR, _NT],
|
|
1604
|
+
[0, 1, 0], 1
|
|
1605
|
+
];
|
|
1606
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1607
|
+
0,
|
|
1608
|
+
[_T, _NT],
|
|
1609
|
+
[() => TagList, 0]
|
|
1610
|
+
];
|
|
1611
|
+
var OutpostResolver$ = [3, n0, _OR,
|
|
1612
|
+
0,
|
|
1613
|
+
[_Ar, _CTr, _MT, _CRI, _I, _IC, _PIT, _N, _S, _SM, _OA],
|
|
1614
|
+
[0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]
|
|
1615
|
+
];
|
|
1616
|
+
var PartnerThreatProtectionConfig$ = [3, n0, _PTPC,
|
|
1617
|
+
0,
|
|
1618
|
+
[_Pa],
|
|
1619
|
+
[0], 1
|
|
1620
|
+
];
|
|
1621
|
+
var PutFirewallRuleGroupPolicyRequest$ = [3, n0, _PFRGPR,
|
|
1622
|
+
0,
|
|
1623
|
+
[_Ar, _FRGP],
|
|
1624
|
+
[0, 0], 2
|
|
1625
|
+
];
|
|
1626
|
+
var PutFirewallRuleGroupPolicyResponse$ = [3, n0, _PFRGPRu,
|
|
1627
|
+
0,
|
|
1628
|
+
[_RV],
|
|
1629
|
+
[2]
|
|
1630
|
+
];
|
|
1631
|
+
var PutResolverQueryLogConfigPolicyRequest$ = [3, n0, _PRQLCPR,
|
|
1632
|
+
0,
|
|
1633
|
+
[_Ar, _RQLCP],
|
|
1634
|
+
[0, 0], 2
|
|
1635
|
+
];
|
|
1636
|
+
var PutResolverQueryLogConfigPolicyResponse$ = [3, n0, _PRQLCPRu,
|
|
1637
|
+
0,
|
|
1638
|
+
[_RV],
|
|
1639
|
+
[2]
|
|
1640
|
+
];
|
|
1641
|
+
var PutResolverRulePolicyRequest$ = [3, n0, _PRRPR,
|
|
1642
|
+
0,
|
|
1643
|
+
[_Ar, _RRP],
|
|
1644
|
+
[0, 0], 2
|
|
1645
|
+
];
|
|
1646
|
+
var PutResolverRulePolicyResponse$ = [3, n0, _PRRPRu,
|
|
1647
|
+
0,
|
|
1648
|
+
[_RV],
|
|
1649
|
+
[2]
|
|
1650
|
+
];
|
|
1651
|
+
var ResolverConfig$ = [3, n0, _RCe,
|
|
1652
|
+
0,
|
|
1653
|
+
[_I, _RI, _OI, _AR],
|
|
1654
|
+
[0, 0, 0, 0]
|
|
1655
|
+
];
|
|
1656
|
+
var ResolverDnssecConfig$ = [3, n0, _RDCe,
|
|
1657
|
+
0,
|
|
1658
|
+
[_I, _OI, _RI, _VS],
|
|
1659
|
+
[0, 0, 0, 0]
|
|
1660
|
+
];
|
|
1661
|
+
var ResolverEndpoint$ = [3, n0, _RE,
|
|
1662
|
+
0,
|
|
1663
|
+
[_I, _CRI, _Ar, _N, _SGI, _D, _IAC, _HVPCI, _S, _SM, _CTr, _MT, _OA, _PIT, _RET, _Pr, _REME, _TNSME, _DEn, _IIAE],
|
|
1664
|
+
[0, 0, 0, 0, 64 | 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 2, 2, 2, 2]
|
|
1665
|
+
];
|
|
1666
|
+
var ResolverQueryLogConfig$ = [3, n0, _RQLC,
|
|
1667
|
+
0,
|
|
1668
|
+
[_I, _OI, _S, _SS, _AC, _Ar, _N, _DA, _CRI, _CTr],
|
|
1669
|
+
[0, 0, 0, 0, 1, 0, 0, 0, 0, 0]
|
|
1670
|
+
];
|
|
1671
|
+
var ResolverQueryLogConfigAssociation$ = [3, n0, _RQLCA,
|
|
1672
|
+
0,
|
|
1673
|
+
[_I, _RQLCI, _RI, _S, _E, _EM, _CTr],
|
|
1674
|
+
[0, 0, 0, 0, 0, 0, 0]
|
|
1675
|
+
];
|
|
1676
|
+
var ResolverRule$ = [3, n0, _RR,
|
|
1677
|
+
0,
|
|
1678
|
+
[_I, _CRI, _Ar, _DN, _S, _SM, _RTu, _N, _TI, _REI, _OI, _SS, _CTr, _MT, _DR],
|
|
1679
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => TargetList, 0, 0, 0, 0, 0, 0]
|
|
1680
|
+
];
|
|
1681
|
+
var ResolverRuleAssociation$ = [3, n0, _RRA,
|
|
1682
|
+
0,
|
|
1683
|
+
[_I, _RRI, _N, _VPCI, _S, _SM],
|
|
1684
|
+
[0, 0, 0, 0, 0, 0]
|
|
1685
|
+
];
|
|
1686
|
+
var ResolverRuleConfig$ = [3, n0, _RRC,
|
|
1687
|
+
0,
|
|
1688
|
+
[_N, _TI, _REI],
|
|
1689
|
+
[0, () => TargetList, 0]
|
|
1690
|
+
];
|
|
1691
|
+
var SubscriptionInfo$ = [3, n0, _SI,
|
|
1692
|
+
0,
|
|
1693
|
+
[_VN, _PI],
|
|
1694
|
+
[0, 0]
|
|
1695
|
+
];
|
|
1696
|
+
var Tag$ = [3, n0, _Ta,
|
|
1697
|
+
0,
|
|
1698
|
+
[_K, _V],
|
|
1699
|
+
[0, 0], 2
|
|
1700
|
+
];
|
|
1701
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1702
|
+
0,
|
|
1703
|
+
[_RA, _T],
|
|
1704
|
+
[0, () => TagList], 2
|
|
1705
|
+
];
|
|
1706
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1707
|
+
0,
|
|
1708
|
+
[],
|
|
1709
|
+
[]
|
|
1710
|
+
];
|
|
1711
|
+
var TargetAddress$ = [3, n0, _TA,
|
|
1712
|
+
0,
|
|
1713
|
+
[_Ip, _Po, _Ipv, _Pro, _SNI],
|
|
1714
|
+
[0, 1, 0, 0, 0]
|
|
1715
|
+
];
|
|
1716
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1717
|
+
0,
|
|
1718
|
+
[_RA, _TK],
|
|
1719
|
+
[0, 64 | 0], 2
|
|
1720
|
+
];
|
|
1721
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1722
|
+
0,
|
|
1723
|
+
[],
|
|
1724
|
+
[]
|
|
1725
|
+
];
|
|
1726
|
+
var UpdateFirewallConfigRequest$ = [3, n0, _UFCR,
|
|
1727
|
+
0,
|
|
1728
|
+
[_RI, _FFO],
|
|
1729
|
+
[0, 0], 2
|
|
1730
|
+
];
|
|
1731
|
+
var UpdateFirewallConfigResponse$ = [3, n0, _UFCRp,
|
|
1732
|
+
0,
|
|
1733
|
+
[_FC],
|
|
1734
|
+
[() => FirewallConfig$]
|
|
1735
|
+
];
|
|
1736
|
+
var UpdateFirewallDomainsRequest$ = [3, n0, _UFDR,
|
|
1737
|
+
0,
|
|
1738
|
+
[_FDLI, _O, _Do],
|
|
1739
|
+
[0, 0, 64 | 0], 3
|
|
1740
|
+
];
|
|
1741
|
+
var UpdateFirewallDomainsResponse$ = [3, n0, _UFDRp,
|
|
1742
|
+
0,
|
|
1743
|
+
[_I, _N, _S, _SM],
|
|
1744
|
+
[0, 0, 0, 0]
|
|
1745
|
+
];
|
|
1746
|
+
var UpdateFirewallRuleEntry$ = [3, n0, _UFREp,
|
|
1747
|
+
0,
|
|
1748
|
+
[_FRGI, _FDLI, _FTPI, _P, _A, _BR, _BOD, _BODT, _BOT, _N, _FDRA, _Q, _DTP, _CT, _FRT],
|
|
1749
|
+
[0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, () => FirewallRuleType$], 1
|
|
1750
|
+
];
|
|
1751
|
+
var UpdateFirewallRuleGroupAssociationRequest$ = [3, n0, _UFRGAR,
|
|
1752
|
+
0,
|
|
1753
|
+
[_FRGAI, _P, _MP, _N],
|
|
1754
|
+
[0, 1, 0, 0], 1
|
|
1755
|
+
];
|
|
1756
|
+
var UpdateFirewallRuleGroupAssociationResponse$ = [3, n0, _UFRGARp,
|
|
1757
|
+
0,
|
|
1758
|
+
[_FRGA],
|
|
1759
|
+
[() => FirewallRuleGroupAssociation$]
|
|
1760
|
+
];
|
|
1761
|
+
var UpdateFirewallRuleRequest$ = [3, n0, _UFRR,
|
|
1762
|
+
0,
|
|
1763
|
+
[_FRGI, _FDLI, _FTPI, _P, _A, _BR, _BOD, _BODT, _BOT, _N, _FDRA, _Q, _DTP, _CT, _FRT],
|
|
1764
|
+
[0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, () => FirewallRuleType$], 1
|
|
1765
|
+
];
|
|
1766
|
+
var UpdateFirewallRuleResponse$ = [3, n0, _UFRRp,
|
|
1767
|
+
0,
|
|
1768
|
+
[_FR],
|
|
1769
|
+
[() => FirewallRule$]
|
|
1770
|
+
];
|
|
1771
|
+
var UpdateIpAddress$ = [3, n0, _UIA,
|
|
1772
|
+
0,
|
|
1773
|
+
[_II, _Ipv],
|
|
1774
|
+
[0, 0], 2
|
|
1775
|
+
];
|
|
1776
|
+
var UpdateOutpostResolverRequest$ = [3, n0, _UORR,
|
|
1777
|
+
0,
|
|
1778
|
+
[_I, _N, _IC, _PIT],
|
|
1779
|
+
[0, 0, 1, 0], 1
|
|
1780
|
+
];
|
|
1781
|
+
var UpdateOutpostResolverResponse$ = [3, n0, _UORRp,
|
|
1782
|
+
0,
|
|
1783
|
+
[_OR],
|
|
1784
|
+
[() => OutpostResolver$]
|
|
1785
|
+
];
|
|
1786
|
+
var UpdateResolverConfigRequest$ = [3, n0, _URCR,
|
|
1787
|
+
0,
|
|
1788
|
+
[_RI, _ARF],
|
|
1789
|
+
[0, 0], 2
|
|
1790
|
+
];
|
|
1791
|
+
var UpdateResolverConfigResponse$ = [3, n0, _URCRp,
|
|
1792
|
+
0,
|
|
1793
|
+
[_RCe],
|
|
1794
|
+
[() => ResolverConfig$]
|
|
1795
|
+
];
|
|
1796
|
+
var UpdateResolverDnssecConfigRequest$ = [3, n0, _URDCR,
|
|
1797
|
+
0,
|
|
1798
|
+
[_RI, _Val],
|
|
1799
|
+
[0, 0], 2
|
|
1800
|
+
];
|
|
1801
|
+
var UpdateResolverDnssecConfigResponse$ = [3, n0, _URDCRp,
|
|
1802
|
+
0,
|
|
1803
|
+
[_RDNSSECC],
|
|
1804
|
+
[() => ResolverDnssecConfig$]
|
|
1805
|
+
];
|
|
1806
|
+
var UpdateResolverEndpointRequest$ = [3, n0, _URER,
|
|
1807
|
+
0,
|
|
1808
|
+
[_REI, _N, _RET, _UIAp, _Pr, _REME, _TNSME, _DEn, _IIAE],
|
|
1809
|
+
[0, 0, 0, () => UpdateIpAddresses, 64 | 0, 2, 2, 2, 2], 1
|
|
1810
|
+
];
|
|
1811
|
+
var UpdateResolverEndpointResponse$ = [3, n0, _URERp,
|
|
1812
|
+
0,
|
|
1813
|
+
[_RE],
|
|
1814
|
+
[() => ResolverEndpoint$]
|
|
1815
|
+
];
|
|
1816
|
+
var UpdateResolverRuleRequest$ = [3, n0, _URRR,
|
|
1817
|
+
0,
|
|
1818
|
+
[_RRI, _Co],
|
|
1819
|
+
[0, () => ResolverRuleConfig$], 2
|
|
1820
|
+
];
|
|
1821
|
+
var UpdateResolverRuleResponse$ = [3, n0, _URRRp,
|
|
1822
|
+
0,
|
|
1823
|
+
[_RR],
|
|
1824
|
+
[() => ResolverRule$]
|
|
1825
|
+
];
|
|
1826
|
+
var BatchCreateFirewallRuleErrors = [1, n0, _BCFREa,
|
|
1827
|
+
0, () => BatchCreateFirewallRuleError$
|
|
1828
|
+
];
|
|
1829
|
+
var BatchDeleteFirewallRuleErrors = [1, n0, _BDFREa,
|
|
1830
|
+
0, () => BatchDeleteFirewallRuleError$
|
|
1831
|
+
];
|
|
1832
|
+
var BatchUpdateFirewallRuleErrors = [1, n0, _BUFREa,
|
|
1833
|
+
0, () => BatchUpdateFirewallRuleError$
|
|
1834
|
+
];
|
|
1835
|
+
var CreateFirewallRuleEntries = [1, n0, _CFRE,
|
|
1836
|
+
0, () => CreateFirewallRuleEntry$
|
|
1837
|
+
];
|
|
1838
|
+
var DeleteFirewallRuleEntries = [1, n0, _DFRE,
|
|
1839
|
+
0, () => DeleteFirewallRuleEntry$
|
|
1840
|
+
];
|
|
1841
|
+
var Filters = [1, n0, _Fi,
|
|
1842
|
+
0, () => Filter$
|
|
1843
|
+
];
|
|
1844
|
+
var FirewallConfigList = [1, n0, _FCL,
|
|
1845
|
+
0, () => FirewallConfig$
|
|
1846
|
+
];
|
|
1847
|
+
var FirewallDomainListMetadataList = [1, n0, _FDLML,
|
|
1848
|
+
0, () => FirewallDomainListMetadata$
|
|
1849
|
+
];
|
|
1850
|
+
var FirewallRuleGroupAssociations = [1, n0, _FRGAi,
|
|
1851
|
+
0, () => FirewallRuleGroupAssociation$
|
|
1852
|
+
];
|
|
1853
|
+
var FirewallRuleGroupMetadataList = [1, n0, _FRGML,
|
|
1854
|
+
0, () => FirewallRuleGroupMetadata$
|
|
1855
|
+
];
|
|
1856
|
+
var FirewallRules = [1, n0, _FRi,
|
|
1857
|
+
0, () => FirewallRule$
|
|
1858
|
+
];
|
|
1859
|
+
var FirewallRuleTypeDefinitions = [1, n0, _FRTDi,
|
|
1860
|
+
0, () => FirewallRuleTypeDefinition$
|
|
1861
|
+
];
|
|
1862
|
+
var IpAddressesRequest = [1, n0, _IARpd,
|
|
1863
|
+
0, () => IpAddressRequest$
|
|
1864
|
+
];
|
|
1865
|
+
var IpAddressesResponse = [1, n0, _IARpdd,
|
|
1866
|
+
0, () => IpAddressResponse$
|
|
1867
|
+
];
|
|
1868
|
+
var OutpostResolverList = [1, n0, _ORL,
|
|
1869
|
+
0, () => OutpostResolver$
|
|
1870
|
+
];
|
|
1871
|
+
var ResolverConfigList = [1, n0, _RCL,
|
|
1872
|
+
0, () => ResolverConfig$
|
|
1873
|
+
];
|
|
1874
|
+
var ResolverDnssecConfigList = [1, n0, _RDCL,
|
|
1875
|
+
0, () => ResolverDnssecConfig$
|
|
1876
|
+
];
|
|
1877
|
+
var ResolverEndpoints = [1, n0, _REe,
|
|
1878
|
+
0, () => ResolverEndpoint$
|
|
1879
|
+
];
|
|
1880
|
+
var ResolverQueryLogConfigAssociationList = [1, n0, _RQLCAL,
|
|
1881
|
+
0, () => ResolverQueryLogConfigAssociation$
|
|
1882
|
+
];
|
|
1883
|
+
var ResolverQueryLogConfigList = [1, n0, _RQLCL,
|
|
1884
|
+
0, () => ResolverQueryLogConfig$
|
|
1885
|
+
];
|
|
1886
|
+
var ResolverRuleAssociations = [1, n0, _RRAe,
|
|
1887
|
+
0, () => ResolverRuleAssociation$
|
|
1888
|
+
];
|
|
1889
|
+
var ResolverRules = [1, n0, _RRe,
|
|
1890
|
+
0, () => ResolverRule$
|
|
1891
|
+
];
|
|
1892
|
+
var TagList = [1, n0, _TL,
|
|
1893
|
+
0, () => Tag$
|
|
1894
|
+
];
|
|
1895
|
+
var TargetList = [1, n0, _TLa,
|
|
1896
|
+
0, () => TargetAddress$
|
|
1897
|
+
];
|
|
1898
|
+
var UpdateFirewallRuleEntries = [1, n0, _UFRE,
|
|
1899
|
+
0, () => UpdateFirewallRuleEntry$
|
|
1900
|
+
];
|
|
1901
|
+
var UpdateIpAddresses = [1, n0, _UIAp,
|
|
1902
|
+
0, () => UpdateIpAddress$
|
|
1903
|
+
];
|
|
1904
|
+
var AssociateFirewallRuleGroup$ = [9, n0, _AFRG,
|
|
1905
|
+
0, () => AssociateFirewallRuleGroupRequest$, () => AssociateFirewallRuleGroupResponse$
|
|
1906
|
+
];
|
|
1907
|
+
var AssociateResolverEndpointIpAddress$ = [9, n0, _AREIA,
|
|
1908
|
+
0, () => AssociateResolverEndpointIpAddressRequest$, () => AssociateResolverEndpointIpAddressResponse$
|
|
1909
|
+
];
|
|
1910
|
+
var AssociateResolverQueryLogConfig$ = [9, n0, _ARQLC,
|
|
1911
|
+
0, () => AssociateResolverQueryLogConfigRequest$, () => AssociateResolverQueryLogConfigResponse$
|
|
1912
|
+
];
|
|
1913
|
+
var AssociateResolverRule$ = [9, n0, _ARR,
|
|
1914
|
+
0, () => AssociateResolverRuleRequest$, () => AssociateResolverRuleResponse$
|
|
1915
|
+
];
|
|
1916
|
+
var BatchCreateFirewallRule$ = [9, n0, _BCFR,
|
|
1917
|
+
0, () => BatchCreateFirewallRuleRequest$, () => BatchCreateFirewallRuleResponse$
|
|
1918
|
+
];
|
|
1919
|
+
var BatchDeleteFirewallRule$ = [9, n0, _BDFR,
|
|
1920
|
+
0, () => BatchDeleteFirewallRuleRequest$, () => BatchDeleteFirewallRuleResponse$
|
|
1921
|
+
];
|
|
1922
|
+
var BatchUpdateFirewallRule$ = [9, n0, _BUFR,
|
|
1923
|
+
0, () => BatchUpdateFirewallRuleRequest$, () => BatchUpdateFirewallRuleResponse$
|
|
1924
|
+
];
|
|
1925
|
+
var CreateFirewallDomainList$ = [9, n0, _CFDL,
|
|
1926
|
+
0, () => CreateFirewallDomainListRequest$, () => CreateFirewallDomainListResponse$
|
|
1927
|
+
];
|
|
1928
|
+
var CreateFirewallRule$ = [9, n0, _CFRr,
|
|
1929
|
+
0, () => CreateFirewallRuleRequest$, () => CreateFirewallRuleResponse$
|
|
1930
|
+
];
|
|
1931
|
+
var CreateFirewallRuleGroup$ = [9, n0, _CFRG,
|
|
1932
|
+
0, () => CreateFirewallRuleGroupRequest$, () => CreateFirewallRuleGroupResponse$
|
|
1933
|
+
];
|
|
1934
|
+
var CreateOutpostResolver$ = [9, n0, _COR,
|
|
1935
|
+
0, () => CreateOutpostResolverRequest$, () => CreateOutpostResolverResponse$
|
|
1936
|
+
];
|
|
1937
|
+
var CreateResolverEndpoint$ = [9, n0, _CRE,
|
|
1938
|
+
0, () => CreateResolverEndpointRequest$, () => CreateResolverEndpointResponse$
|
|
1939
|
+
];
|
|
1940
|
+
var CreateResolverQueryLogConfig$ = [9, n0, _CRQLC,
|
|
1941
|
+
0, () => CreateResolverQueryLogConfigRequest$, () => CreateResolverQueryLogConfigResponse$
|
|
1942
|
+
];
|
|
1943
|
+
var CreateResolverRule$ = [9, n0, _CRR,
|
|
1944
|
+
0, () => CreateResolverRuleRequest$, () => CreateResolverRuleResponse$
|
|
1945
|
+
];
|
|
1946
|
+
var DeleteFirewallDomainList$ = [9, n0, _DFDL,
|
|
1947
|
+
0, () => DeleteFirewallDomainListRequest$, () => DeleteFirewallDomainListResponse$
|
|
1948
|
+
];
|
|
1949
|
+
var DeleteFirewallRule$ = [9, n0, _DFRe,
|
|
1950
|
+
0, () => DeleteFirewallRuleRequest$, () => DeleteFirewallRuleResponse$
|
|
1951
|
+
];
|
|
1952
|
+
var DeleteFirewallRuleGroup$ = [9, n0, _DFRG,
|
|
1953
|
+
0, () => DeleteFirewallRuleGroupRequest$, () => DeleteFirewallRuleGroupResponse$
|
|
1954
|
+
];
|
|
1955
|
+
var DeleteOutpostResolver$ = [9, n0, _DOR,
|
|
1956
|
+
0, () => DeleteOutpostResolverRequest$, () => DeleteOutpostResolverResponse$
|
|
1957
|
+
];
|
|
1958
|
+
var DeleteResolverEndpoint$ = [9, n0, _DRE,
|
|
1959
|
+
0, () => DeleteResolverEndpointRequest$, () => DeleteResolverEndpointResponse$
|
|
1960
|
+
];
|
|
1961
|
+
var DeleteResolverQueryLogConfig$ = [9, n0, _DRQLC,
|
|
1962
|
+
0, () => DeleteResolverQueryLogConfigRequest$, () => DeleteResolverQueryLogConfigResponse$
|
|
1963
|
+
];
|
|
1964
|
+
var DeleteResolverRule$ = [9, n0, _DRR,
|
|
1965
|
+
0, () => DeleteResolverRuleRequest$, () => DeleteResolverRuleResponse$
|
|
1966
|
+
];
|
|
1967
|
+
var DisassociateFirewallRuleGroup$ = [9, n0, _DFRGi,
|
|
1968
|
+
0, () => DisassociateFirewallRuleGroupRequest$, () => DisassociateFirewallRuleGroupResponse$
|
|
1969
|
+
];
|
|
1970
|
+
var DisassociateResolverEndpointIpAddress$ = [9, n0, _DREIA,
|
|
1971
|
+
0, () => DisassociateResolverEndpointIpAddressRequest$, () => DisassociateResolverEndpointIpAddressResponse$
|
|
1972
|
+
];
|
|
1973
|
+
var DisassociateResolverQueryLogConfig$ = [9, n0, _DRQLCi,
|
|
1974
|
+
0, () => DisassociateResolverQueryLogConfigRequest$, () => DisassociateResolverQueryLogConfigResponse$
|
|
1975
|
+
];
|
|
1976
|
+
var DisassociateResolverRule$ = [9, n0, _DRRi,
|
|
1977
|
+
0, () => DisassociateResolverRuleRequest$, () => DisassociateResolverRuleResponse$
|
|
1978
|
+
];
|
|
1979
|
+
var GetFirewallConfig$ = [9, n0, _GFC,
|
|
1980
|
+
0, () => GetFirewallConfigRequest$, () => GetFirewallConfigResponse$
|
|
1981
|
+
];
|
|
1982
|
+
var GetFirewallDomainList$ = [9, n0, _GFDL,
|
|
1983
|
+
0, () => GetFirewallDomainListRequest$, () => GetFirewallDomainListResponse$
|
|
1984
|
+
];
|
|
1985
|
+
var GetFirewallRuleGroup$ = [9, n0, _GFRG,
|
|
1986
|
+
0, () => GetFirewallRuleGroupRequest$, () => GetFirewallRuleGroupResponse$
|
|
1987
|
+
];
|
|
1988
|
+
var GetFirewallRuleGroupAssociation$ = [9, n0, _GFRGA,
|
|
1989
|
+
0, () => GetFirewallRuleGroupAssociationRequest$, () => GetFirewallRuleGroupAssociationResponse$
|
|
1990
|
+
];
|
|
1991
|
+
var GetFirewallRuleGroupPolicy$ = [9, n0, _GFRGP,
|
|
1992
|
+
0, () => GetFirewallRuleGroupPolicyRequest$, () => GetFirewallRuleGroupPolicyResponse$
|
|
1993
|
+
];
|
|
1994
|
+
var GetOutpostResolver$ = [9, n0, _GOR,
|
|
1995
|
+
0, () => GetOutpostResolverRequest$, () => GetOutpostResolverResponse$
|
|
1996
|
+
];
|
|
1997
|
+
var GetResolverConfig$ = [9, n0, _GRC,
|
|
1998
|
+
0, () => GetResolverConfigRequest$, () => GetResolverConfigResponse$
|
|
1999
|
+
];
|
|
2000
|
+
var GetResolverDnssecConfig$ = [9, n0, _GRDC,
|
|
2001
|
+
0, () => GetResolverDnssecConfigRequest$, () => GetResolverDnssecConfigResponse$
|
|
2002
|
+
];
|
|
2003
|
+
var GetResolverEndpoint$ = [9, n0, _GRE,
|
|
2004
|
+
0, () => GetResolverEndpointRequest$, () => GetResolverEndpointResponse$
|
|
2005
|
+
];
|
|
2006
|
+
var GetResolverQueryLogConfig$ = [9, n0, _GRQLC,
|
|
2007
|
+
0, () => GetResolverQueryLogConfigRequest$, () => GetResolverQueryLogConfigResponse$
|
|
2008
|
+
];
|
|
2009
|
+
var GetResolverQueryLogConfigAssociation$ = [9, n0, _GRQLCA,
|
|
2010
|
+
0, () => GetResolverQueryLogConfigAssociationRequest$, () => GetResolverQueryLogConfigAssociationResponse$
|
|
2011
|
+
];
|
|
2012
|
+
var GetResolverQueryLogConfigPolicy$ = [9, n0, _GRQLCP,
|
|
2013
|
+
0, () => GetResolverQueryLogConfigPolicyRequest$, () => GetResolverQueryLogConfigPolicyResponse$
|
|
2014
|
+
];
|
|
2015
|
+
var GetResolverRule$ = [9, n0, _GRR,
|
|
2016
|
+
0, () => GetResolverRuleRequest$, () => GetResolverRuleResponse$
|
|
2017
|
+
];
|
|
2018
|
+
var GetResolverRuleAssociation$ = [9, n0, _GRRA,
|
|
2019
|
+
0, () => GetResolverRuleAssociationRequest$, () => GetResolverRuleAssociationResponse$
|
|
2020
|
+
];
|
|
2021
|
+
var GetResolverRulePolicy$ = [9, n0, _GRRP,
|
|
2022
|
+
0, () => GetResolverRulePolicyRequest$, () => GetResolverRulePolicyResponse$
|
|
2023
|
+
];
|
|
2024
|
+
var ImportFirewallDomains$ = [9, n0, _IFD,
|
|
2025
|
+
0, () => ImportFirewallDomainsRequest$, () => ImportFirewallDomainsResponse$
|
|
2026
|
+
];
|
|
2027
|
+
var ListFirewallConfigs$ = [9, n0, _LFC,
|
|
2028
|
+
0, () => ListFirewallConfigsRequest$, () => ListFirewallConfigsResponse$
|
|
2029
|
+
];
|
|
2030
|
+
var ListFirewallDomainLists$ = [9, n0, _LFDL,
|
|
2031
|
+
0, () => ListFirewallDomainListsRequest$, () => ListFirewallDomainListsResponse$
|
|
2032
|
+
];
|
|
2033
|
+
var ListFirewallDomains$ = [9, n0, _LFD,
|
|
2034
|
+
0, () => ListFirewallDomainsRequest$, () => ListFirewallDomainsResponse$
|
|
2035
|
+
];
|
|
2036
|
+
var ListFirewallRuleGroupAssociations$ = [9, n0, _LFRGA,
|
|
2037
|
+
0, () => ListFirewallRuleGroupAssociationsRequest$, () => ListFirewallRuleGroupAssociationsResponse$
|
|
2038
|
+
];
|
|
2039
|
+
var ListFirewallRuleGroups$ = [9, n0, _LFRG,
|
|
2040
|
+
0, () => ListFirewallRuleGroupsRequest$, () => ListFirewallRuleGroupsResponse$
|
|
2041
|
+
];
|
|
2042
|
+
var ListFirewallRules$ = [9, n0, _LFR,
|
|
2043
|
+
0, () => ListFirewallRulesRequest$, () => ListFirewallRulesResponse$
|
|
2044
|
+
];
|
|
2045
|
+
var ListFirewallRuleTypes$ = [9, n0, _LFRT,
|
|
2046
|
+
0, () => ListFirewallRuleTypesRequest$, () => ListFirewallRuleTypesResponse$
|
|
2047
|
+
];
|
|
2048
|
+
var ListOutpostResolvers$ = [9, n0, _LOR,
|
|
2049
|
+
0, () => ListOutpostResolversRequest$, () => ListOutpostResolversResponse$
|
|
2050
|
+
];
|
|
2051
|
+
var ListResolverConfigs$ = [9, n0, _LRC,
|
|
2052
|
+
0, () => ListResolverConfigsRequest$, () => ListResolverConfigsResponse$
|
|
2053
|
+
];
|
|
2054
|
+
var ListResolverDnssecConfigs$ = [9, n0, _LRDC,
|
|
2055
|
+
0, () => ListResolverDnssecConfigsRequest$, () => ListResolverDnssecConfigsResponse$
|
|
2056
|
+
];
|
|
2057
|
+
var ListResolverEndpointIpAddresses$ = [9, n0, _LREIA,
|
|
2058
|
+
0, () => ListResolverEndpointIpAddressesRequest$, () => ListResolverEndpointIpAddressesResponse$
|
|
2059
|
+
];
|
|
2060
|
+
var ListResolverEndpoints$ = [9, n0, _LRE,
|
|
2061
|
+
0, () => ListResolverEndpointsRequest$, () => ListResolverEndpointsResponse$
|
|
2062
|
+
];
|
|
2063
|
+
var ListResolverQueryLogConfigAssociations$ = [9, n0, _LRQLCA,
|
|
2064
|
+
0, () => ListResolverQueryLogConfigAssociationsRequest$, () => ListResolverQueryLogConfigAssociationsResponse$
|
|
2065
|
+
];
|
|
2066
|
+
var ListResolverQueryLogConfigs$ = [9, n0, _LRQLC,
|
|
2067
|
+
0, () => ListResolverQueryLogConfigsRequest$, () => ListResolverQueryLogConfigsResponse$
|
|
2068
|
+
];
|
|
2069
|
+
var ListResolverRuleAssociations$ = [9, n0, _LRRA,
|
|
2070
|
+
0, () => ListResolverRuleAssociationsRequest$, () => ListResolverRuleAssociationsResponse$
|
|
2071
|
+
];
|
|
2072
|
+
var ListResolverRules$ = [9, n0, _LRR,
|
|
2073
|
+
0, () => ListResolverRulesRequest$, () => ListResolverRulesResponse$
|
|
2074
|
+
];
|
|
2075
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2076
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2077
|
+
];
|
|
2078
|
+
var PutFirewallRuleGroupPolicy$ = [9, n0, _PFRGP,
|
|
2079
|
+
0, () => PutFirewallRuleGroupPolicyRequest$, () => PutFirewallRuleGroupPolicyResponse$
|
|
2080
|
+
];
|
|
2081
|
+
var PutResolverQueryLogConfigPolicy$ = [9, n0, _PRQLCP,
|
|
2082
|
+
0, () => PutResolverQueryLogConfigPolicyRequest$, () => PutResolverQueryLogConfigPolicyResponse$
|
|
2083
|
+
];
|
|
2084
|
+
var PutResolverRulePolicy$ = [9, n0, _PRRP,
|
|
2085
|
+
0, () => PutResolverRulePolicyRequest$, () => PutResolverRulePolicyResponse$
|
|
2086
|
+
];
|
|
2087
|
+
var TagResource$ = [9, n0, _TR,
|
|
2088
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2089
|
+
];
|
|
2090
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2091
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2092
|
+
];
|
|
2093
|
+
var UpdateFirewallConfig$ = [9, n0, _UFC,
|
|
2094
|
+
0, () => UpdateFirewallConfigRequest$, () => UpdateFirewallConfigResponse$
|
|
2095
|
+
];
|
|
2096
|
+
var UpdateFirewallDomains$ = [9, n0, _UFD,
|
|
2097
|
+
0, () => UpdateFirewallDomainsRequest$, () => UpdateFirewallDomainsResponse$
|
|
2098
|
+
];
|
|
2099
|
+
var UpdateFirewallRule$ = [9, n0, _UFRp,
|
|
2100
|
+
0, () => UpdateFirewallRuleRequest$, () => UpdateFirewallRuleResponse$
|
|
2101
|
+
];
|
|
2102
|
+
var UpdateFirewallRuleGroupAssociation$ = [9, n0, _UFRGA,
|
|
2103
|
+
0, () => UpdateFirewallRuleGroupAssociationRequest$, () => UpdateFirewallRuleGroupAssociationResponse$
|
|
2104
|
+
];
|
|
2105
|
+
var UpdateOutpostResolver$ = [9, n0, _UOR,
|
|
2106
|
+
0, () => UpdateOutpostResolverRequest$, () => UpdateOutpostResolverResponse$
|
|
2107
|
+
];
|
|
2108
|
+
var UpdateResolverConfig$ = [9, n0, _URC,
|
|
2109
|
+
0, () => UpdateResolverConfigRequest$, () => UpdateResolverConfigResponse$
|
|
2110
|
+
];
|
|
2111
|
+
var UpdateResolverDnssecConfig$ = [9, n0, _URDC,
|
|
2112
|
+
0, () => UpdateResolverDnssecConfigRequest$, () => UpdateResolverDnssecConfigResponse$
|
|
2113
|
+
];
|
|
2114
|
+
var UpdateResolverEndpoint$ = [9, n0, _UREp,
|
|
2115
|
+
0, () => UpdateResolverEndpointRequest$, () => UpdateResolverEndpointResponse$
|
|
2116
|
+
];
|
|
2117
|
+
var UpdateResolverRule$ = [9, n0, _URRp,
|
|
2118
|
+
0, () => UpdateResolverRuleRequest$, () => UpdateResolverRuleResponse$
|
|
2119
|
+
];
|
|
2120
|
+
|
|
2121
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2122
|
+
return {
|
|
2123
|
+
apiVersion: "2018-04-01",
|
|
2124
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2125
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2126
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2127
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2128
|
+
extensions: config?.extensions ?? [],
|
|
2129
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRoute53ResolverHttpAuthSchemeProvider,
|
|
2130
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2131
|
+
{
|
|
2132
|
+
schemeId: "aws.auth#sigv4",
|
|
2133
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2134
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2135
|
+
},
|
|
2136
|
+
],
|
|
2137
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2138
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2139
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2140
|
+
defaultNamespace: "com.amazonaws.route53resolver",
|
|
2141
|
+
errorTypeRegistries,
|
|
2142
|
+
version: "2018-04-01",
|
|
2143
|
+
serviceTarget: "Route53Resolver",
|
|
2144
|
+
},
|
|
2145
|
+
serviceId: config?.serviceId ?? "Route53Resolver",
|
|
2146
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2147
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2148
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2149
|
+
};
|
|
2150
|
+
};
|
|
2151
|
+
|
|
2152
|
+
const getRuntimeConfig = (config) => {
|
|
2153
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2154
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2155
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2156
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2157
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2158
|
+
const loaderConfig = {
|
|
2159
|
+
profile: config?.profile,
|
|
2160
|
+
logger: clientSharedValues.logger,
|
|
2161
|
+
};
|
|
2162
|
+
return {
|
|
2163
|
+
...clientSharedValues,
|
|
2164
|
+
...config,
|
|
2165
|
+
runtime: "node",
|
|
2166
|
+
defaultsMode,
|
|
2167
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2168
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2169
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2170
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2171
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2172
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2173
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2174
|
+
retryMode: config?.retryMode ??
|
|
2175
|
+
loadConfig({
|
|
2176
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2177
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2178
|
+
}, config),
|
|
2179
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2180
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2181
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2182
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2183
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2184
|
+
};
|
|
2185
|
+
};
|
|
2186
|
+
|
|
34
2187
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2188
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2189
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1293,112 +3446,401 @@ const Validation = {
|
|
|
1293
3446
|
USE_LOCAL_RESOURCE_SETTING: "USE_LOCAL_RESOURCE_SETTING",
|
|
1294
3447
|
};
|
|
1295
3448
|
|
|
3449
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3450
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1296
3451
|
exports.Action = Action;
|
|
3452
|
+
exports.AssociateFirewallRuleGroup$ = AssociateFirewallRuleGroup$;
|
|
1297
3453
|
exports.AssociateFirewallRuleGroupCommand = AssociateFirewallRuleGroupCommand;
|
|
3454
|
+
exports.AssociateFirewallRuleGroupRequest$ = AssociateFirewallRuleGroupRequest$;
|
|
3455
|
+
exports.AssociateFirewallRuleGroupResponse$ = AssociateFirewallRuleGroupResponse$;
|
|
3456
|
+
exports.AssociateResolverEndpointIpAddress$ = AssociateResolverEndpointIpAddress$;
|
|
1298
3457
|
exports.AssociateResolverEndpointIpAddressCommand = AssociateResolverEndpointIpAddressCommand;
|
|
3458
|
+
exports.AssociateResolverEndpointIpAddressRequest$ = AssociateResolverEndpointIpAddressRequest$;
|
|
3459
|
+
exports.AssociateResolverEndpointIpAddressResponse$ = AssociateResolverEndpointIpAddressResponse$;
|
|
3460
|
+
exports.AssociateResolverQueryLogConfig$ = AssociateResolverQueryLogConfig$;
|
|
1299
3461
|
exports.AssociateResolverQueryLogConfigCommand = AssociateResolverQueryLogConfigCommand;
|
|
3462
|
+
exports.AssociateResolverQueryLogConfigRequest$ = AssociateResolverQueryLogConfigRequest$;
|
|
3463
|
+
exports.AssociateResolverQueryLogConfigResponse$ = AssociateResolverQueryLogConfigResponse$;
|
|
3464
|
+
exports.AssociateResolverRule$ = AssociateResolverRule$;
|
|
1300
3465
|
exports.AssociateResolverRuleCommand = AssociateResolverRuleCommand;
|
|
3466
|
+
exports.AssociateResolverRuleRequest$ = AssociateResolverRuleRequest$;
|
|
3467
|
+
exports.AssociateResolverRuleResponse$ = AssociateResolverRuleResponse$;
|
|
1301
3468
|
exports.AutodefinedReverseFlag = AutodefinedReverseFlag;
|
|
3469
|
+
exports.BatchCreateFirewallRule$ = BatchCreateFirewallRule$;
|
|
1302
3470
|
exports.BatchCreateFirewallRuleCommand = BatchCreateFirewallRuleCommand;
|
|
3471
|
+
exports.BatchCreateFirewallRuleError$ = BatchCreateFirewallRuleError$;
|
|
3472
|
+
exports.BatchCreateFirewallRuleRequest$ = BatchCreateFirewallRuleRequest$;
|
|
3473
|
+
exports.BatchCreateFirewallRuleResponse$ = BatchCreateFirewallRuleResponse$;
|
|
3474
|
+
exports.BatchDeleteFirewallRule$ = BatchDeleteFirewallRule$;
|
|
1303
3475
|
exports.BatchDeleteFirewallRuleCommand = BatchDeleteFirewallRuleCommand;
|
|
3476
|
+
exports.BatchDeleteFirewallRuleError$ = BatchDeleteFirewallRuleError$;
|
|
3477
|
+
exports.BatchDeleteFirewallRuleRequest$ = BatchDeleteFirewallRuleRequest$;
|
|
3478
|
+
exports.BatchDeleteFirewallRuleResponse$ = BatchDeleteFirewallRuleResponse$;
|
|
3479
|
+
exports.BatchUpdateFirewallRule$ = BatchUpdateFirewallRule$;
|
|
1304
3480
|
exports.BatchUpdateFirewallRuleCommand = BatchUpdateFirewallRuleCommand;
|
|
3481
|
+
exports.BatchUpdateFirewallRuleError$ = BatchUpdateFirewallRuleError$;
|
|
3482
|
+
exports.BatchUpdateFirewallRuleRequest$ = BatchUpdateFirewallRuleRequest$;
|
|
3483
|
+
exports.BatchUpdateFirewallRuleResponse$ = BatchUpdateFirewallRuleResponse$;
|
|
1305
3484
|
exports.BlockOverrideDnsType = BlockOverrideDnsType;
|
|
1306
3485
|
exports.BlockResponse = BlockResponse;
|
|
1307
3486
|
exports.ConfidenceThreshold = ConfidenceThreshold;
|
|
3487
|
+
exports.ConflictException = ConflictException;
|
|
3488
|
+
exports.ConflictException$ = ConflictException$;
|
|
3489
|
+
exports.CreateFirewallDomainList$ = CreateFirewallDomainList$;
|
|
1308
3490
|
exports.CreateFirewallDomainListCommand = CreateFirewallDomainListCommand;
|
|
3491
|
+
exports.CreateFirewallDomainListRequest$ = CreateFirewallDomainListRequest$;
|
|
3492
|
+
exports.CreateFirewallDomainListResponse$ = CreateFirewallDomainListResponse$;
|
|
3493
|
+
exports.CreateFirewallRule$ = CreateFirewallRule$;
|
|
1309
3494
|
exports.CreateFirewallRuleCommand = CreateFirewallRuleCommand;
|
|
3495
|
+
exports.CreateFirewallRuleEntry$ = CreateFirewallRuleEntry$;
|
|
3496
|
+
exports.CreateFirewallRuleGroup$ = CreateFirewallRuleGroup$;
|
|
1310
3497
|
exports.CreateFirewallRuleGroupCommand = CreateFirewallRuleGroupCommand;
|
|
3498
|
+
exports.CreateFirewallRuleGroupRequest$ = CreateFirewallRuleGroupRequest$;
|
|
3499
|
+
exports.CreateFirewallRuleGroupResponse$ = CreateFirewallRuleGroupResponse$;
|
|
3500
|
+
exports.CreateFirewallRuleRequest$ = CreateFirewallRuleRequest$;
|
|
3501
|
+
exports.CreateFirewallRuleResponse$ = CreateFirewallRuleResponse$;
|
|
3502
|
+
exports.CreateOutpostResolver$ = CreateOutpostResolver$;
|
|
1311
3503
|
exports.CreateOutpostResolverCommand = CreateOutpostResolverCommand;
|
|
3504
|
+
exports.CreateOutpostResolverRequest$ = CreateOutpostResolverRequest$;
|
|
3505
|
+
exports.CreateOutpostResolverResponse$ = CreateOutpostResolverResponse$;
|
|
3506
|
+
exports.CreateResolverEndpoint$ = CreateResolverEndpoint$;
|
|
1312
3507
|
exports.CreateResolverEndpointCommand = CreateResolverEndpointCommand;
|
|
3508
|
+
exports.CreateResolverEndpointRequest$ = CreateResolverEndpointRequest$;
|
|
3509
|
+
exports.CreateResolverEndpointResponse$ = CreateResolverEndpointResponse$;
|
|
3510
|
+
exports.CreateResolverQueryLogConfig$ = CreateResolverQueryLogConfig$;
|
|
1313
3511
|
exports.CreateResolverQueryLogConfigCommand = CreateResolverQueryLogConfigCommand;
|
|
3512
|
+
exports.CreateResolverQueryLogConfigRequest$ = CreateResolverQueryLogConfigRequest$;
|
|
3513
|
+
exports.CreateResolverQueryLogConfigResponse$ = CreateResolverQueryLogConfigResponse$;
|
|
3514
|
+
exports.CreateResolverRule$ = CreateResolverRule$;
|
|
1314
3515
|
exports.CreateResolverRuleCommand = CreateResolverRuleCommand;
|
|
3516
|
+
exports.CreateResolverRuleRequest$ = CreateResolverRuleRequest$;
|
|
3517
|
+
exports.CreateResolverRuleResponse$ = CreateResolverRuleResponse$;
|
|
3518
|
+
exports.DeleteFirewallDomainList$ = DeleteFirewallDomainList$;
|
|
1315
3519
|
exports.DeleteFirewallDomainListCommand = DeleteFirewallDomainListCommand;
|
|
3520
|
+
exports.DeleteFirewallDomainListRequest$ = DeleteFirewallDomainListRequest$;
|
|
3521
|
+
exports.DeleteFirewallDomainListResponse$ = DeleteFirewallDomainListResponse$;
|
|
3522
|
+
exports.DeleteFirewallRule$ = DeleteFirewallRule$;
|
|
1316
3523
|
exports.DeleteFirewallRuleCommand = DeleteFirewallRuleCommand;
|
|
3524
|
+
exports.DeleteFirewallRuleEntry$ = DeleteFirewallRuleEntry$;
|
|
3525
|
+
exports.DeleteFirewallRuleGroup$ = DeleteFirewallRuleGroup$;
|
|
1317
3526
|
exports.DeleteFirewallRuleGroupCommand = DeleteFirewallRuleGroupCommand;
|
|
3527
|
+
exports.DeleteFirewallRuleGroupRequest$ = DeleteFirewallRuleGroupRequest$;
|
|
3528
|
+
exports.DeleteFirewallRuleGroupResponse$ = DeleteFirewallRuleGroupResponse$;
|
|
3529
|
+
exports.DeleteFirewallRuleRequest$ = DeleteFirewallRuleRequest$;
|
|
3530
|
+
exports.DeleteFirewallRuleResponse$ = DeleteFirewallRuleResponse$;
|
|
3531
|
+
exports.DeleteOutpostResolver$ = DeleteOutpostResolver$;
|
|
1318
3532
|
exports.DeleteOutpostResolverCommand = DeleteOutpostResolverCommand;
|
|
3533
|
+
exports.DeleteOutpostResolverRequest$ = DeleteOutpostResolverRequest$;
|
|
3534
|
+
exports.DeleteOutpostResolverResponse$ = DeleteOutpostResolverResponse$;
|
|
3535
|
+
exports.DeleteResolverEndpoint$ = DeleteResolverEndpoint$;
|
|
1319
3536
|
exports.DeleteResolverEndpointCommand = DeleteResolverEndpointCommand;
|
|
3537
|
+
exports.DeleteResolverEndpointRequest$ = DeleteResolverEndpointRequest$;
|
|
3538
|
+
exports.DeleteResolverEndpointResponse$ = DeleteResolverEndpointResponse$;
|
|
3539
|
+
exports.DeleteResolverQueryLogConfig$ = DeleteResolverQueryLogConfig$;
|
|
1320
3540
|
exports.DeleteResolverQueryLogConfigCommand = DeleteResolverQueryLogConfigCommand;
|
|
3541
|
+
exports.DeleteResolverQueryLogConfigRequest$ = DeleteResolverQueryLogConfigRequest$;
|
|
3542
|
+
exports.DeleteResolverQueryLogConfigResponse$ = DeleteResolverQueryLogConfigResponse$;
|
|
3543
|
+
exports.DeleteResolverRule$ = DeleteResolverRule$;
|
|
1321
3544
|
exports.DeleteResolverRuleCommand = DeleteResolverRuleCommand;
|
|
3545
|
+
exports.DeleteResolverRuleRequest$ = DeleteResolverRuleRequest$;
|
|
3546
|
+
exports.DeleteResolverRuleResponse$ = DeleteResolverRuleResponse$;
|
|
3547
|
+
exports.DisassociateFirewallRuleGroup$ = DisassociateFirewallRuleGroup$;
|
|
1322
3548
|
exports.DisassociateFirewallRuleGroupCommand = DisassociateFirewallRuleGroupCommand;
|
|
3549
|
+
exports.DisassociateFirewallRuleGroupRequest$ = DisassociateFirewallRuleGroupRequest$;
|
|
3550
|
+
exports.DisassociateFirewallRuleGroupResponse$ = DisassociateFirewallRuleGroupResponse$;
|
|
3551
|
+
exports.DisassociateResolverEndpointIpAddress$ = DisassociateResolverEndpointIpAddress$;
|
|
1323
3552
|
exports.DisassociateResolverEndpointIpAddressCommand = DisassociateResolverEndpointIpAddressCommand;
|
|
3553
|
+
exports.DisassociateResolverEndpointIpAddressRequest$ = DisassociateResolverEndpointIpAddressRequest$;
|
|
3554
|
+
exports.DisassociateResolverEndpointIpAddressResponse$ = DisassociateResolverEndpointIpAddressResponse$;
|
|
3555
|
+
exports.DisassociateResolverQueryLogConfig$ = DisassociateResolverQueryLogConfig$;
|
|
1324
3556
|
exports.DisassociateResolverQueryLogConfigCommand = DisassociateResolverQueryLogConfigCommand;
|
|
3557
|
+
exports.DisassociateResolverQueryLogConfigRequest$ = DisassociateResolverQueryLogConfigRequest$;
|
|
3558
|
+
exports.DisassociateResolverQueryLogConfigResponse$ = DisassociateResolverQueryLogConfigResponse$;
|
|
3559
|
+
exports.DisassociateResolverRule$ = DisassociateResolverRule$;
|
|
1325
3560
|
exports.DisassociateResolverRuleCommand = DisassociateResolverRuleCommand;
|
|
3561
|
+
exports.DisassociateResolverRuleRequest$ = DisassociateResolverRuleRequest$;
|
|
3562
|
+
exports.DisassociateResolverRuleResponse$ = DisassociateResolverRuleResponse$;
|
|
1326
3563
|
exports.DnsThreatProtection = DnsThreatProtection;
|
|
3564
|
+
exports.DnsThreatProtectionRuleTypeConfig$ = DnsThreatProtectionRuleTypeConfig$;
|
|
1327
3565
|
exports.DomainListType = DomainListType;
|
|
3566
|
+
exports.Filter$ = Filter$;
|
|
3567
|
+
exports.FirewallAdvancedContentCategoryConfig$ = FirewallAdvancedContentCategoryConfig$;
|
|
3568
|
+
exports.FirewallAdvancedThreatCategoryConfig$ = FirewallAdvancedThreatCategoryConfig$;
|
|
3569
|
+
exports.FirewallConfig$ = FirewallConfig$;
|
|
1328
3570
|
exports.FirewallDomainImportOperation = FirewallDomainImportOperation;
|
|
3571
|
+
exports.FirewallDomainList$ = FirewallDomainList$;
|
|
3572
|
+
exports.FirewallDomainListMetadata$ = FirewallDomainListMetadata$;
|
|
1329
3573
|
exports.FirewallDomainListStatus = FirewallDomainListStatus;
|
|
1330
3574
|
exports.FirewallDomainRedirectionAction = FirewallDomainRedirectionAction;
|
|
1331
3575
|
exports.FirewallDomainUpdateOperation = FirewallDomainUpdateOperation;
|
|
1332
3576
|
exports.FirewallFailOpenStatus = FirewallFailOpenStatus;
|
|
3577
|
+
exports.FirewallRule$ = FirewallRule$;
|
|
3578
|
+
exports.FirewallRuleGroup$ = FirewallRuleGroup$;
|
|
3579
|
+
exports.FirewallRuleGroupAssociation$ = FirewallRuleGroupAssociation$;
|
|
1333
3580
|
exports.FirewallRuleGroupAssociationStatus = FirewallRuleGroupAssociationStatus;
|
|
3581
|
+
exports.FirewallRuleGroupMetadata$ = FirewallRuleGroupMetadata$;
|
|
1334
3582
|
exports.FirewallRuleGroupStatus = FirewallRuleGroupStatus;
|
|
3583
|
+
exports.FirewallRuleType$ = FirewallRuleType$;
|
|
3584
|
+
exports.FirewallRuleTypeDefinition$ = FirewallRuleTypeDefinition$;
|
|
3585
|
+
exports.GetFirewallConfig$ = GetFirewallConfig$;
|
|
1335
3586
|
exports.GetFirewallConfigCommand = GetFirewallConfigCommand;
|
|
3587
|
+
exports.GetFirewallConfigRequest$ = GetFirewallConfigRequest$;
|
|
3588
|
+
exports.GetFirewallConfigResponse$ = GetFirewallConfigResponse$;
|
|
3589
|
+
exports.GetFirewallDomainList$ = GetFirewallDomainList$;
|
|
1336
3590
|
exports.GetFirewallDomainListCommand = GetFirewallDomainListCommand;
|
|
3591
|
+
exports.GetFirewallDomainListRequest$ = GetFirewallDomainListRequest$;
|
|
3592
|
+
exports.GetFirewallDomainListResponse$ = GetFirewallDomainListResponse$;
|
|
3593
|
+
exports.GetFirewallRuleGroup$ = GetFirewallRuleGroup$;
|
|
3594
|
+
exports.GetFirewallRuleGroupAssociation$ = GetFirewallRuleGroupAssociation$;
|
|
1337
3595
|
exports.GetFirewallRuleGroupAssociationCommand = GetFirewallRuleGroupAssociationCommand;
|
|
3596
|
+
exports.GetFirewallRuleGroupAssociationRequest$ = GetFirewallRuleGroupAssociationRequest$;
|
|
3597
|
+
exports.GetFirewallRuleGroupAssociationResponse$ = GetFirewallRuleGroupAssociationResponse$;
|
|
1338
3598
|
exports.GetFirewallRuleGroupCommand = GetFirewallRuleGroupCommand;
|
|
3599
|
+
exports.GetFirewallRuleGroupPolicy$ = GetFirewallRuleGroupPolicy$;
|
|
1339
3600
|
exports.GetFirewallRuleGroupPolicyCommand = GetFirewallRuleGroupPolicyCommand;
|
|
3601
|
+
exports.GetFirewallRuleGroupPolicyRequest$ = GetFirewallRuleGroupPolicyRequest$;
|
|
3602
|
+
exports.GetFirewallRuleGroupPolicyResponse$ = GetFirewallRuleGroupPolicyResponse$;
|
|
3603
|
+
exports.GetFirewallRuleGroupRequest$ = GetFirewallRuleGroupRequest$;
|
|
3604
|
+
exports.GetFirewallRuleGroupResponse$ = GetFirewallRuleGroupResponse$;
|
|
3605
|
+
exports.GetOutpostResolver$ = GetOutpostResolver$;
|
|
1340
3606
|
exports.GetOutpostResolverCommand = GetOutpostResolverCommand;
|
|
3607
|
+
exports.GetOutpostResolverRequest$ = GetOutpostResolverRequest$;
|
|
3608
|
+
exports.GetOutpostResolverResponse$ = GetOutpostResolverResponse$;
|
|
3609
|
+
exports.GetResolverConfig$ = GetResolverConfig$;
|
|
1341
3610
|
exports.GetResolverConfigCommand = GetResolverConfigCommand;
|
|
3611
|
+
exports.GetResolverConfigRequest$ = GetResolverConfigRequest$;
|
|
3612
|
+
exports.GetResolverConfigResponse$ = GetResolverConfigResponse$;
|
|
3613
|
+
exports.GetResolverDnssecConfig$ = GetResolverDnssecConfig$;
|
|
1342
3614
|
exports.GetResolverDnssecConfigCommand = GetResolverDnssecConfigCommand;
|
|
3615
|
+
exports.GetResolverDnssecConfigRequest$ = GetResolverDnssecConfigRequest$;
|
|
3616
|
+
exports.GetResolverDnssecConfigResponse$ = GetResolverDnssecConfigResponse$;
|
|
3617
|
+
exports.GetResolverEndpoint$ = GetResolverEndpoint$;
|
|
1343
3618
|
exports.GetResolverEndpointCommand = GetResolverEndpointCommand;
|
|
3619
|
+
exports.GetResolverEndpointRequest$ = GetResolverEndpointRequest$;
|
|
3620
|
+
exports.GetResolverEndpointResponse$ = GetResolverEndpointResponse$;
|
|
3621
|
+
exports.GetResolverQueryLogConfig$ = GetResolverQueryLogConfig$;
|
|
3622
|
+
exports.GetResolverQueryLogConfigAssociation$ = GetResolverQueryLogConfigAssociation$;
|
|
1344
3623
|
exports.GetResolverQueryLogConfigAssociationCommand = GetResolverQueryLogConfigAssociationCommand;
|
|
3624
|
+
exports.GetResolverQueryLogConfigAssociationRequest$ = GetResolverQueryLogConfigAssociationRequest$;
|
|
3625
|
+
exports.GetResolverQueryLogConfigAssociationResponse$ = GetResolverQueryLogConfigAssociationResponse$;
|
|
1345
3626
|
exports.GetResolverQueryLogConfigCommand = GetResolverQueryLogConfigCommand;
|
|
3627
|
+
exports.GetResolverQueryLogConfigPolicy$ = GetResolverQueryLogConfigPolicy$;
|
|
1346
3628
|
exports.GetResolverQueryLogConfigPolicyCommand = GetResolverQueryLogConfigPolicyCommand;
|
|
3629
|
+
exports.GetResolverQueryLogConfigPolicyRequest$ = GetResolverQueryLogConfigPolicyRequest$;
|
|
3630
|
+
exports.GetResolverQueryLogConfigPolicyResponse$ = GetResolverQueryLogConfigPolicyResponse$;
|
|
3631
|
+
exports.GetResolverQueryLogConfigRequest$ = GetResolverQueryLogConfigRequest$;
|
|
3632
|
+
exports.GetResolverQueryLogConfigResponse$ = GetResolverQueryLogConfigResponse$;
|
|
3633
|
+
exports.GetResolverRule$ = GetResolverRule$;
|
|
3634
|
+
exports.GetResolverRuleAssociation$ = GetResolverRuleAssociation$;
|
|
1347
3635
|
exports.GetResolverRuleAssociationCommand = GetResolverRuleAssociationCommand;
|
|
3636
|
+
exports.GetResolverRuleAssociationRequest$ = GetResolverRuleAssociationRequest$;
|
|
3637
|
+
exports.GetResolverRuleAssociationResponse$ = GetResolverRuleAssociationResponse$;
|
|
1348
3638
|
exports.GetResolverRuleCommand = GetResolverRuleCommand;
|
|
3639
|
+
exports.GetResolverRulePolicy$ = GetResolverRulePolicy$;
|
|
1349
3640
|
exports.GetResolverRulePolicyCommand = GetResolverRulePolicyCommand;
|
|
3641
|
+
exports.GetResolverRulePolicyRequest$ = GetResolverRulePolicyRequest$;
|
|
3642
|
+
exports.GetResolverRulePolicyResponse$ = GetResolverRulePolicyResponse$;
|
|
3643
|
+
exports.GetResolverRuleRequest$ = GetResolverRuleRequest$;
|
|
3644
|
+
exports.GetResolverRuleResponse$ = GetResolverRuleResponse$;
|
|
3645
|
+
exports.ImportFirewallDomains$ = ImportFirewallDomains$;
|
|
1350
3646
|
exports.ImportFirewallDomainsCommand = ImportFirewallDomainsCommand;
|
|
3647
|
+
exports.ImportFirewallDomainsRequest$ = ImportFirewallDomainsRequest$;
|
|
3648
|
+
exports.ImportFirewallDomainsResponse$ = ImportFirewallDomainsResponse$;
|
|
3649
|
+
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
3650
|
+
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
3651
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
3652
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
3653
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
3654
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
3655
|
+
exports.InvalidPolicyDocument = InvalidPolicyDocument;
|
|
3656
|
+
exports.InvalidPolicyDocument$ = InvalidPolicyDocument$;
|
|
3657
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
3658
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
3659
|
+
exports.InvalidTagException = InvalidTagException;
|
|
3660
|
+
exports.InvalidTagException$ = InvalidTagException$;
|
|
3661
|
+
exports.IpAddressRequest$ = IpAddressRequest$;
|
|
3662
|
+
exports.IpAddressResponse$ = IpAddressResponse$;
|
|
1351
3663
|
exports.IpAddressStatus = IpAddressStatus;
|
|
3664
|
+
exports.IpAddressUpdate$ = IpAddressUpdate$;
|
|
3665
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3666
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
3667
|
+
exports.ListFirewallConfigs$ = ListFirewallConfigs$;
|
|
1352
3668
|
exports.ListFirewallConfigsCommand = ListFirewallConfigsCommand;
|
|
3669
|
+
exports.ListFirewallConfigsRequest$ = ListFirewallConfigsRequest$;
|
|
3670
|
+
exports.ListFirewallConfigsResponse$ = ListFirewallConfigsResponse$;
|
|
3671
|
+
exports.ListFirewallDomainLists$ = ListFirewallDomainLists$;
|
|
1353
3672
|
exports.ListFirewallDomainListsCommand = ListFirewallDomainListsCommand;
|
|
3673
|
+
exports.ListFirewallDomainListsRequest$ = ListFirewallDomainListsRequest$;
|
|
3674
|
+
exports.ListFirewallDomainListsResponse$ = ListFirewallDomainListsResponse$;
|
|
3675
|
+
exports.ListFirewallDomains$ = ListFirewallDomains$;
|
|
1354
3676
|
exports.ListFirewallDomainsCommand = ListFirewallDomainsCommand;
|
|
3677
|
+
exports.ListFirewallDomainsRequest$ = ListFirewallDomainsRequest$;
|
|
3678
|
+
exports.ListFirewallDomainsResponse$ = ListFirewallDomainsResponse$;
|
|
3679
|
+
exports.ListFirewallRuleGroupAssociations$ = ListFirewallRuleGroupAssociations$;
|
|
1355
3680
|
exports.ListFirewallRuleGroupAssociationsCommand = ListFirewallRuleGroupAssociationsCommand;
|
|
3681
|
+
exports.ListFirewallRuleGroupAssociationsRequest$ = ListFirewallRuleGroupAssociationsRequest$;
|
|
3682
|
+
exports.ListFirewallRuleGroupAssociationsResponse$ = ListFirewallRuleGroupAssociationsResponse$;
|
|
3683
|
+
exports.ListFirewallRuleGroups$ = ListFirewallRuleGroups$;
|
|
1356
3684
|
exports.ListFirewallRuleGroupsCommand = ListFirewallRuleGroupsCommand;
|
|
3685
|
+
exports.ListFirewallRuleGroupsRequest$ = ListFirewallRuleGroupsRequest$;
|
|
3686
|
+
exports.ListFirewallRuleGroupsResponse$ = ListFirewallRuleGroupsResponse$;
|
|
3687
|
+
exports.ListFirewallRuleTypes$ = ListFirewallRuleTypes$;
|
|
1357
3688
|
exports.ListFirewallRuleTypesCommand = ListFirewallRuleTypesCommand;
|
|
3689
|
+
exports.ListFirewallRuleTypesRequest$ = ListFirewallRuleTypesRequest$;
|
|
3690
|
+
exports.ListFirewallRuleTypesResponse$ = ListFirewallRuleTypesResponse$;
|
|
3691
|
+
exports.ListFirewallRules$ = ListFirewallRules$;
|
|
1358
3692
|
exports.ListFirewallRulesCommand = ListFirewallRulesCommand;
|
|
3693
|
+
exports.ListFirewallRulesRequest$ = ListFirewallRulesRequest$;
|
|
3694
|
+
exports.ListFirewallRulesResponse$ = ListFirewallRulesResponse$;
|
|
3695
|
+
exports.ListOutpostResolvers$ = ListOutpostResolvers$;
|
|
1359
3696
|
exports.ListOutpostResolversCommand = ListOutpostResolversCommand;
|
|
3697
|
+
exports.ListOutpostResolversRequest$ = ListOutpostResolversRequest$;
|
|
3698
|
+
exports.ListOutpostResolversResponse$ = ListOutpostResolversResponse$;
|
|
3699
|
+
exports.ListResolverConfigs$ = ListResolverConfigs$;
|
|
1360
3700
|
exports.ListResolverConfigsCommand = ListResolverConfigsCommand;
|
|
3701
|
+
exports.ListResolverConfigsRequest$ = ListResolverConfigsRequest$;
|
|
3702
|
+
exports.ListResolverConfigsResponse$ = ListResolverConfigsResponse$;
|
|
3703
|
+
exports.ListResolverDnssecConfigs$ = ListResolverDnssecConfigs$;
|
|
1361
3704
|
exports.ListResolverDnssecConfigsCommand = ListResolverDnssecConfigsCommand;
|
|
3705
|
+
exports.ListResolverDnssecConfigsRequest$ = ListResolverDnssecConfigsRequest$;
|
|
3706
|
+
exports.ListResolverDnssecConfigsResponse$ = ListResolverDnssecConfigsResponse$;
|
|
3707
|
+
exports.ListResolverEndpointIpAddresses$ = ListResolverEndpointIpAddresses$;
|
|
1362
3708
|
exports.ListResolverEndpointIpAddressesCommand = ListResolverEndpointIpAddressesCommand;
|
|
3709
|
+
exports.ListResolverEndpointIpAddressesRequest$ = ListResolverEndpointIpAddressesRequest$;
|
|
3710
|
+
exports.ListResolverEndpointIpAddressesResponse$ = ListResolverEndpointIpAddressesResponse$;
|
|
3711
|
+
exports.ListResolverEndpoints$ = ListResolverEndpoints$;
|
|
1363
3712
|
exports.ListResolverEndpointsCommand = ListResolverEndpointsCommand;
|
|
3713
|
+
exports.ListResolverEndpointsRequest$ = ListResolverEndpointsRequest$;
|
|
3714
|
+
exports.ListResolverEndpointsResponse$ = ListResolverEndpointsResponse$;
|
|
3715
|
+
exports.ListResolverQueryLogConfigAssociations$ = ListResolverQueryLogConfigAssociations$;
|
|
1364
3716
|
exports.ListResolverQueryLogConfigAssociationsCommand = ListResolverQueryLogConfigAssociationsCommand;
|
|
3717
|
+
exports.ListResolverQueryLogConfigAssociationsRequest$ = ListResolverQueryLogConfigAssociationsRequest$;
|
|
3718
|
+
exports.ListResolverQueryLogConfigAssociationsResponse$ = ListResolverQueryLogConfigAssociationsResponse$;
|
|
3719
|
+
exports.ListResolverQueryLogConfigs$ = ListResolverQueryLogConfigs$;
|
|
1365
3720
|
exports.ListResolverQueryLogConfigsCommand = ListResolverQueryLogConfigsCommand;
|
|
3721
|
+
exports.ListResolverQueryLogConfigsRequest$ = ListResolverQueryLogConfigsRequest$;
|
|
3722
|
+
exports.ListResolverQueryLogConfigsResponse$ = ListResolverQueryLogConfigsResponse$;
|
|
3723
|
+
exports.ListResolverRuleAssociations$ = ListResolverRuleAssociations$;
|
|
1366
3724
|
exports.ListResolverRuleAssociationsCommand = ListResolverRuleAssociationsCommand;
|
|
3725
|
+
exports.ListResolverRuleAssociationsRequest$ = ListResolverRuleAssociationsRequest$;
|
|
3726
|
+
exports.ListResolverRuleAssociationsResponse$ = ListResolverRuleAssociationsResponse$;
|
|
3727
|
+
exports.ListResolverRules$ = ListResolverRules$;
|
|
1367
3728
|
exports.ListResolverRulesCommand = ListResolverRulesCommand;
|
|
3729
|
+
exports.ListResolverRulesRequest$ = ListResolverRulesRequest$;
|
|
3730
|
+
exports.ListResolverRulesResponse$ = ListResolverRulesResponse$;
|
|
3731
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1368
3732
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3733
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3734
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1369
3735
|
exports.MutationProtectionStatus = MutationProtectionStatus;
|
|
3736
|
+
exports.OutpostResolver$ = OutpostResolver$;
|
|
1370
3737
|
exports.OutpostResolverStatus = OutpostResolverStatus;
|
|
3738
|
+
exports.PartnerThreatProtectionConfig$ = PartnerThreatProtectionConfig$;
|
|
1371
3739
|
exports.Protocol = Protocol;
|
|
3740
|
+
exports.PutFirewallRuleGroupPolicy$ = PutFirewallRuleGroupPolicy$;
|
|
1372
3741
|
exports.PutFirewallRuleGroupPolicyCommand = PutFirewallRuleGroupPolicyCommand;
|
|
3742
|
+
exports.PutFirewallRuleGroupPolicyRequest$ = PutFirewallRuleGroupPolicyRequest$;
|
|
3743
|
+
exports.PutFirewallRuleGroupPolicyResponse$ = PutFirewallRuleGroupPolicyResponse$;
|
|
3744
|
+
exports.PutResolverQueryLogConfigPolicy$ = PutResolverQueryLogConfigPolicy$;
|
|
1373
3745
|
exports.PutResolverQueryLogConfigPolicyCommand = PutResolverQueryLogConfigPolicyCommand;
|
|
3746
|
+
exports.PutResolverQueryLogConfigPolicyRequest$ = PutResolverQueryLogConfigPolicyRequest$;
|
|
3747
|
+
exports.PutResolverQueryLogConfigPolicyResponse$ = PutResolverQueryLogConfigPolicyResponse$;
|
|
3748
|
+
exports.PutResolverRulePolicy$ = PutResolverRulePolicy$;
|
|
1374
3749
|
exports.PutResolverRulePolicyCommand = PutResolverRulePolicyCommand;
|
|
3750
|
+
exports.PutResolverRulePolicyRequest$ = PutResolverRulePolicyRequest$;
|
|
3751
|
+
exports.PutResolverRulePolicyResponse$ = PutResolverRulePolicyResponse$;
|
|
1375
3752
|
exports.ResolverAutodefinedReverseStatus = ResolverAutodefinedReverseStatus;
|
|
3753
|
+
exports.ResolverConfig$ = ResolverConfig$;
|
|
1376
3754
|
exports.ResolverDNSSECValidationStatus = ResolverDNSSECValidationStatus;
|
|
3755
|
+
exports.ResolverDnssecConfig$ = ResolverDnssecConfig$;
|
|
3756
|
+
exports.ResolverEndpoint$ = ResolverEndpoint$;
|
|
1377
3757
|
exports.ResolverEndpointDirection = ResolverEndpointDirection;
|
|
1378
3758
|
exports.ResolverEndpointStatus = ResolverEndpointStatus;
|
|
1379
3759
|
exports.ResolverEndpointType = ResolverEndpointType;
|
|
3760
|
+
exports.ResolverQueryLogConfig$ = ResolverQueryLogConfig$;
|
|
3761
|
+
exports.ResolverQueryLogConfigAssociation$ = ResolverQueryLogConfigAssociation$;
|
|
1380
3762
|
exports.ResolverQueryLogConfigAssociationError = ResolverQueryLogConfigAssociationError;
|
|
1381
3763
|
exports.ResolverQueryLogConfigAssociationStatus = ResolverQueryLogConfigAssociationStatus;
|
|
1382
3764
|
exports.ResolverQueryLogConfigStatus = ResolverQueryLogConfigStatus;
|
|
3765
|
+
exports.ResolverRule$ = ResolverRule$;
|
|
3766
|
+
exports.ResolverRuleAssociation$ = ResolverRuleAssociation$;
|
|
1383
3767
|
exports.ResolverRuleAssociationStatus = ResolverRuleAssociationStatus;
|
|
3768
|
+
exports.ResolverRuleConfig$ = ResolverRuleConfig$;
|
|
1384
3769
|
exports.ResolverRuleStatus = ResolverRuleStatus;
|
|
3770
|
+
exports.ResourceExistsException = ResourceExistsException;
|
|
3771
|
+
exports.ResourceExistsException$ = ResourceExistsException$;
|
|
3772
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
3773
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
3774
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3775
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3776
|
+
exports.ResourceUnavailableException = ResourceUnavailableException;
|
|
3777
|
+
exports.ResourceUnavailableException$ = ResourceUnavailableException$;
|
|
1385
3778
|
exports.Route53Resolver = Route53Resolver;
|
|
1386
3779
|
exports.Route53ResolverClient = Route53ResolverClient;
|
|
3780
|
+
exports.Route53ResolverServiceException = Route53ResolverServiceException;
|
|
3781
|
+
exports.Route53ResolverServiceException$ = Route53ResolverServiceException$;
|
|
1387
3782
|
exports.RuleTypeOption = RuleTypeOption;
|
|
3783
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3784
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1388
3785
|
exports.ShareStatus = ShareStatus;
|
|
1389
3786
|
exports.SortOrder = SortOrder;
|
|
3787
|
+
exports.SubscriptionInfo$ = SubscriptionInfo$;
|
|
3788
|
+
exports.Tag$ = Tag$;
|
|
3789
|
+
exports.TagResource$ = TagResource$;
|
|
1390
3790
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3791
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3792
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3793
|
+
exports.TargetAddress$ = TargetAddress$;
|
|
3794
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3795
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3796
|
+
exports.UnknownResourceException = UnknownResourceException;
|
|
3797
|
+
exports.UnknownResourceException$ = UnknownResourceException$;
|
|
3798
|
+
exports.UntagResource$ = UntagResource$;
|
|
1391
3799
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3800
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3801
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3802
|
+
exports.UpdateFirewallConfig$ = UpdateFirewallConfig$;
|
|
1392
3803
|
exports.UpdateFirewallConfigCommand = UpdateFirewallConfigCommand;
|
|
3804
|
+
exports.UpdateFirewallConfigRequest$ = UpdateFirewallConfigRequest$;
|
|
3805
|
+
exports.UpdateFirewallConfigResponse$ = UpdateFirewallConfigResponse$;
|
|
3806
|
+
exports.UpdateFirewallDomains$ = UpdateFirewallDomains$;
|
|
1393
3807
|
exports.UpdateFirewallDomainsCommand = UpdateFirewallDomainsCommand;
|
|
3808
|
+
exports.UpdateFirewallDomainsRequest$ = UpdateFirewallDomainsRequest$;
|
|
3809
|
+
exports.UpdateFirewallDomainsResponse$ = UpdateFirewallDomainsResponse$;
|
|
3810
|
+
exports.UpdateFirewallRule$ = UpdateFirewallRule$;
|
|
1394
3811
|
exports.UpdateFirewallRuleCommand = UpdateFirewallRuleCommand;
|
|
3812
|
+
exports.UpdateFirewallRuleEntry$ = UpdateFirewallRuleEntry$;
|
|
3813
|
+
exports.UpdateFirewallRuleGroupAssociation$ = UpdateFirewallRuleGroupAssociation$;
|
|
1395
3814
|
exports.UpdateFirewallRuleGroupAssociationCommand = UpdateFirewallRuleGroupAssociationCommand;
|
|
3815
|
+
exports.UpdateFirewallRuleGroupAssociationRequest$ = UpdateFirewallRuleGroupAssociationRequest$;
|
|
3816
|
+
exports.UpdateFirewallRuleGroupAssociationResponse$ = UpdateFirewallRuleGroupAssociationResponse$;
|
|
3817
|
+
exports.UpdateFirewallRuleRequest$ = UpdateFirewallRuleRequest$;
|
|
3818
|
+
exports.UpdateFirewallRuleResponse$ = UpdateFirewallRuleResponse$;
|
|
3819
|
+
exports.UpdateIpAddress$ = UpdateIpAddress$;
|
|
3820
|
+
exports.UpdateOutpostResolver$ = UpdateOutpostResolver$;
|
|
1396
3821
|
exports.UpdateOutpostResolverCommand = UpdateOutpostResolverCommand;
|
|
3822
|
+
exports.UpdateOutpostResolverRequest$ = UpdateOutpostResolverRequest$;
|
|
3823
|
+
exports.UpdateOutpostResolverResponse$ = UpdateOutpostResolverResponse$;
|
|
3824
|
+
exports.UpdateResolverConfig$ = UpdateResolverConfig$;
|
|
1397
3825
|
exports.UpdateResolverConfigCommand = UpdateResolverConfigCommand;
|
|
3826
|
+
exports.UpdateResolverConfigRequest$ = UpdateResolverConfigRequest$;
|
|
3827
|
+
exports.UpdateResolverConfigResponse$ = UpdateResolverConfigResponse$;
|
|
3828
|
+
exports.UpdateResolverDnssecConfig$ = UpdateResolverDnssecConfig$;
|
|
1398
3829
|
exports.UpdateResolverDnssecConfigCommand = UpdateResolverDnssecConfigCommand;
|
|
3830
|
+
exports.UpdateResolverDnssecConfigRequest$ = UpdateResolverDnssecConfigRequest$;
|
|
3831
|
+
exports.UpdateResolverDnssecConfigResponse$ = UpdateResolverDnssecConfigResponse$;
|
|
3832
|
+
exports.UpdateResolverEndpoint$ = UpdateResolverEndpoint$;
|
|
1399
3833
|
exports.UpdateResolverEndpointCommand = UpdateResolverEndpointCommand;
|
|
3834
|
+
exports.UpdateResolverEndpointRequest$ = UpdateResolverEndpointRequest$;
|
|
3835
|
+
exports.UpdateResolverEndpointResponse$ = UpdateResolverEndpointResponse$;
|
|
3836
|
+
exports.UpdateResolverRule$ = UpdateResolverRule$;
|
|
1400
3837
|
exports.UpdateResolverRuleCommand = UpdateResolverRuleCommand;
|
|
3838
|
+
exports.UpdateResolverRuleRequest$ = UpdateResolverRuleRequest$;
|
|
3839
|
+
exports.UpdateResolverRuleResponse$ = UpdateResolverRuleResponse$;
|
|
1401
3840
|
exports.Validation = Validation;
|
|
3841
|
+
exports.ValidationException = ValidationException;
|
|
3842
|
+
exports.ValidationException$ = ValidationException$;
|
|
3843
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1402
3844
|
exports.paginateListFirewallConfigs = paginateListFirewallConfigs;
|
|
1403
3845
|
exports.paginateListFirewallDomainLists = paginateListFirewallDomainLists;
|
|
1404
3846
|
exports.paginateListFirewallDomains = paginateListFirewallDomains;
|