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