@aws-sdk/client-route53globalresolver 3.1075.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
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 { resolveHttpAuthSchemeConfig, defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateHostedZone$, BatchCreateFirewallRule$, BatchDeleteFirewallRule$, BatchUpdateFirewallRule$, CreateAccessSource$, CreateAccessToken$, CreateDNSView$, CreateFirewallDomainList$, CreateFirewallRule$, CreateGlobalResolver$, DeleteAccessSource$, DeleteAccessToken$, DeleteDNSView$, DeleteFirewallDomainList$, DeleteFirewallRule$, DeleteGlobalResolver$, DisableDNSView$, DisassociateHostedZone$, EnableDNSView$, GetAccessSource$, GetAccessToken$, GetDNSView$, GetFirewallDomainList$, GetFirewallRule$, GetGlobalResolver$, GetHostedZoneAssociation$, GetManagedFirewallDomainList$, ImportFirewallDomains$, ListAccessSources$, ListAccessTokens$, ListDNSViews$, ListFirewallDomainLists$, ListFirewallDomains$, ListFirewallRules$, ListGlobalResolvers$, ListHostedZoneAssociations$, ListManagedFirewallDomainLists$, ListTagsForResource$, TagResource$, UntagResource$, UpdateAccessSource$, UpdateAccessToken$, UpdateDNSView$, UpdateFirewallDomains$, UpdateFirewallRule$, UpdateGlobalResolver$, UpdateHostedZoneAssociation$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { Route53GlobalResolverServiceException } = require("./models/Route53GlobalResolverServiceException");
18
- exports.Route53GlobalResolverServiceException = Route53GlobalResolverServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "route53globalresolver",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultRoute53GlobalResolverHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -29,6 +65,1312 @@ const commonParams = {
29
65
  Region: { type: "builtInParams", name: "region" },
30
66
  };
31
67
 
68
+ var version = "3.1075.0";
69
+ var packageInfo = {
70
+ version: version};
71
+
72
+ const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
73
+ const _data = {
74
+ conditions: [
75
+ [a, [b]],
76
+ [a, c],
77
+ ["aws.partition", c, "PartitionResult"],
78
+ ["booleanEquals", [{ ref: "UseFIPS" }, true]]
79
+ ],
80
+ results: [
81
+ [-1],
82
+ [-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
83
+ [b, {}],
84
+ ["https://route53globalresolver-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
85
+ ["https://route53globalresolver.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
86
+ [-1, "Invalid Configuration: Missing Region"]
87
+ ]
88
+ };
89
+ const root = 2;
90
+ const r = 100_000_000;
91
+ const nodes = new Int32Array([
92
+ -1, 1, -1,
93
+ 0, 6, 3,
94
+ 1, 4, r + 5,
95
+ 2, 5, r + 5,
96
+ 3, r + 3, r + 4,
97
+ 3, r + 1, r + 2,
98
+ ]);
99
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
100
+
101
+ const cache = new EndpointCache({
102
+ size: 50,
103
+ params: ["Endpoint", "Region", "UseFIPS"],
104
+ });
105
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
106
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
107
+ endpointParams: endpointParams,
108
+ logger: context.logger,
109
+ }));
110
+ };
111
+ customEndpointFunctions.aws = awsEndpointFunctions;
112
+
113
+ class Route53GlobalResolverServiceException extends ServiceException {
114
+ constructor(options) {
115
+ super(options);
116
+ Object.setPrototypeOf(this, Route53GlobalResolverServiceException.prototype);
117
+ }
118
+ }
119
+
120
+ class AccessDeniedException extends Route53GlobalResolverServiceException {
121
+ name = "AccessDeniedException";
122
+ $fault = "client";
123
+ constructor(opts) {
124
+ super({
125
+ name: "AccessDeniedException",
126
+ $fault: "client",
127
+ ...opts,
128
+ });
129
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
+ }
131
+ }
132
+ class ConflictException extends Route53GlobalResolverServiceException {
133
+ name = "ConflictException";
134
+ $fault = "client";
135
+ resourceId;
136
+ resourceType;
137
+ constructor(opts) {
138
+ super({
139
+ name: "ConflictException",
140
+ $fault: "client",
141
+ ...opts,
142
+ });
143
+ Object.setPrototypeOf(this, ConflictException.prototype);
144
+ this.resourceId = opts.resourceId;
145
+ this.resourceType = opts.resourceType;
146
+ }
147
+ }
148
+ class InternalServerException extends Route53GlobalResolverServiceException {
149
+ name = "InternalServerException";
150
+ $fault = "server";
151
+ $retryable = {};
152
+ retryAfterSeconds;
153
+ constructor(opts) {
154
+ super({
155
+ name: "InternalServerException",
156
+ $fault: "server",
157
+ ...opts,
158
+ });
159
+ Object.setPrototypeOf(this, InternalServerException.prototype);
160
+ this.retryAfterSeconds = opts.retryAfterSeconds;
161
+ }
162
+ }
163
+ class ResourceNotFoundException extends Route53GlobalResolverServiceException {
164
+ name = "ResourceNotFoundException";
165
+ $fault = "client";
166
+ resourceId;
167
+ resourceType;
168
+ constructor(opts) {
169
+ super({
170
+ name: "ResourceNotFoundException",
171
+ $fault: "client",
172
+ ...opts,
173
+ });
174
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
175
+ this.resourceId = opts.resourceId;
176
+ this.resourceType = opts.resourceType;
177
+ }
178
+ }
179
+ class ServiceQuotaExceededException extends Route53GlobalResolverServiceException {
180
+ name = "ServiceQuotaExceededException";
181
+ $fault = "client";
182
+ resourceId;
183
+ resourceType;
184
+ serviceCode;
185
+ quotaCode;
186
+ constructor(opts) {
187
+ super({
188
+ name: "ServiceQuotaExceededException",
189
+ $fault: "client",
190
+ ...opts,
191
+ });
192
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
193
+ this.resourceId = opts.resourceId;
194
+ this.resourceType = opts.resourceType;
195
+ this.serviceCode = opts.serviceCode;
196
+ this.quotaCode = opts.quotaCode;
197
+ }
198
+ }
199
+ class ThrottlingException extends Route53GlobalResolverServiceException {
200
+ name = "ThrottlingException";
201
+ $fault = "client";
202
+ $retryable = {
203
+ throttling: true,
204
+ };
205
+ serviceCode;
206
+ quotaCode;
207
+ retryAfterSeconds;
208
+ constructor(opts) {
209
+ super({
210
+ name: "ThrottlingException",
211
+ $fault: "client",
212
+ ...opts,
213
+ });
214
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
215
+ this.serviceCode = opts.serviceCode;
216
+ this.quotaCode = opts.quotaCode;
217
+ this.retryAfterSeconds = opts.retryAfterSeconds;
218
+ }
219
+ }
220
+ class ValidationException extends Route53GlobalResolverServiceException {
221
+ name = "ValidationException";
222
+ $fault = "client";
223
+ reason;
224
+ fieldList;
225
+ constructor(opts) {
226
+ super({
227
+ name: "ValidationException",
228
+ $fault: "client",
229
+ ...opts,
230
+ });
231
+ Object.setPrototypeOf(this, ValidationException.prototype);
232
+ this.reason = opts.reason;
233
+ this.fieldList = opts.fieldList;
234
+ }
235
+ }
236
+
237
+ const _ADE = "AccessDeniedException";
238
+ const _AHZ = "AssociateHostedZone";
239
+ const _AHZI = "AssociateHostedZoneInput";
240
+ const _AHZO = "AssociateHostedZoneOutput";
241
+ const _AS = "AccessSources";
242
+ const _ASI = "AccessSourcesItem";
243
+ const _AT = "AccessTokens";
244
+ const _ATI = "AccessTokenItem";
245
+ const _ATV = "AccessTokenValue";
246
+ const _BCFR = "BatchCreateFirewallRule";
247
+ const _BCFRI = "BatchCreateFirewallRuleInput";
248
+ const _BCFRII = "BatchCreateFirewallRuleInputItem";
249
+ const _BCFRIIa = "BatchCreateFirewallRuleInputItems";
250
+ const _BCFRO = "BatchCreateFirewallRuleOutput";
251
+ const _BCFROI = "BatchCreateFirewallRuleOutputItem";
252
+ const _BCFROIa = "BatchCreateFirewallRuleOutputItems";
253
+ const _BCFRR = "BatchCreateFirewallRuleResult";
254
+ const _BDFR = "BatchDeleteFirewallRule";
255
+ const _BDFRI = "BatchDeleteFirewallRuleInput";
256
+ const _BDFRII = "BatchDeleteFirewallRuleInputItem";
257
+ const _BDFRIIa = "BatchDeleteFirewallRuleInputItems";
258
+ const _BDFRO = "BatchDeleteFirewallRuleOutput";
259
+ const _BDFROI = "BatchDeleteFirewallRuleOutputItem";
260
+ const _BDFROIa = "BatchDeleteFirewallRuleOutputItems";
261
+ const _BDFRR = "BatchDeleteFirewallRuleResult";
262
+ const _BUFR = "BatchUpdateFirewallRule";
263
+ const _BUFRI = "BatchUpdateFirewallRuleInput";
264
+ const _BUFRII = "BatchUpdateFirewallRuleInputItem";
265
+ const _BUFRIIa = "BatchUpdateFirewallRuleInputItems";
266
+ const _BUFRO = "BatchUpdateFirewallRuleOutput";
267
+ const _BUFROI = "BatchUpdateFirewallRuleOutputItem";
268
+ const _BUFROIa = "BatchUpdateFirewallRuleOutputItems";
269
+ const _BUFRR = "BatchUpdateFirewallRuleResult";
270
+ const _CAS = "CreateAccessSource";
271
+ const _CASI = "CreateAccessSourceInput";
272
+ const _CASO = "CreateAccessSourceOutput";
273
+ const _CAT = "CreateAccessToken";
274
+ const _CATI = "CreateAccessTokenInput";
275
+ const _CATO = "CreateAccessTokenOutput";
276
+ const _CDNSV = "CreateDNSView";
277
+ const _CDNSVI = "CreateDNSViewInput";
278
+ const _CDNSVO = "CreateDNSViewOutput";
279
+ const _CE = "ConflictException";
280
+ const _CFDL = "CreateFirewallDomainList";
281
+ const _CFDLI = "CreateFirewallDomainListInput";
282
+ const _CFDLO = "CreateFirewallDomainListOutput";
283
+ const _CFR = "CreateFirewallRule";
284
+ const _CFRI = "CreateFirewallRuleInput";
285
+ const _CFRO = "CreateFirewallRuleOutput";
286
+ const _CGR = "CreateGlobalResolver";
287
+ const _CGRI = "CreateGlobalResolverInput";
288
+ const _CGRO = "CreateGlobalResolverOutput";
289
+ const _DAS = "DeleteAccessSource";
290
+ const _DASI = "DeleteAccessSourceInput";
291
+ const _DASO = "DeleteAccessSourceOutput";
292
+ const _DAT = "DeleteAccessToken";
293
+ const _DATI = "DeleteAccessTokenInput";
294
+ const _DATO = "DeleteAccessTokenOutput";
295
+ const _DDNSV = "DeleteDNSView";
296
+ const _DDNSVI = "DeleteDNSViewInput";
297
+ const _DDNSVIi = "DisableDNSViewInput";
298
+ const _DDNSVO = "DeleteDNSViewOutput";
299
+ const _DDNSVOi = "DisableDNSViewOutput";
300
+ const _DDNSVi = "DisableDNSView";
301
+ const _DFDL = "DeleteFirewallDomainList";
302
+ const _DFDLI = "DeleteFirewallDomainListInput";
303
+ const _DFDLO = "DeleteFirewallDomainListOutput";
304
+ const _DFR = "DeleteFirewallRule";
305
+ const _DFRI = "DeleteFirewallRuleInput";
306
+ const _DFRO = "DeleteFirewallRuleOutput";
307
+ const _DGR = "DeleteGlobalResolver";
308
+ const _DGRI = "DeleteGlobalResolverInput";
309
+ const _DGRO = "DeleteGlobalResolverOutput";
310
+ const _DHZ = "DisassociateHostedZone";
311
+ const _DHZI = "DisassociateHostedZoneInput";
312
+ const _DHZO = "DisassociateHostedZoneOutput";
313
+ const _DNSV = "DNSViews";
314
+ const _DNSVS = "DNSViewSummary";
315
+ const _EDNSV = "EnableDNSView";
316
+ const _EDNSVI = "EnableDNSViewInput";
317
+ const _EDNSVO = "EnableDNSViewOutput";
318
+ const _F = "Filters";
319
+ const _FDL = "FirewallDomainLists";
320
+ const _FDLI = "FirewallDomainListsItem";
321
+ const _FR = "FirewallRules";
322
+ const _FRI = "FirewallRulesItem";
323
+ const _GAS = "GetAccessSource";
324
+ const _GASI = "GetAccessSourceInput";
325
+ const _GASO = "GetAccessSourceOutput";
326
+ const _GAT = "GetAccessToken";
327
+ const _GATI = "GetAccessTokenInput";
328
+ const _GATO = "GetAccessTokenOutput";
329
+ const _GDNSV = "GetDNSView";
330
+ const _GDNSVI = "GetDNSViewInput";
331
+ const _GDNSVO = "GetDNSViewOutput";
332
+ const _GFDL = "GetFirewallDomainList";
333
+ const _GFDLI = "GetFirewallDomainListInput";
334
+ const _GFDLO = "GetFirewallDomainListOutput";
335
+ const _GFR = "GetFirewallRule";
336
+ const _GFRI = "GetFirewallRuleInput";
337
+ const _GFRO = "GetFirewallRuleOutput";
338
+ const _GGR = "GetGlobalResolver";
339
+ const _GGRI = "GetGlobalResolverInput";
340
+ const _GGRO = "GetGlobalResolverOutput";
341
+ const _GHZA = "GetHostedZoneAssociation";
342
+ const _GHZAI = "GetHostedZoneAssociationInput";
343
+ const _GHZAO = "GetHostedZoneAssociationOutput";
344
+ const _GMFDL = "GetManagedFirewallDomainList";
345
+ const _GMFDLI = "GetManagedFirewallDomainListInput";
346
+ const _GMFDLO = "GetManagedFirewallDomainListOutput";
347
+ const _GR = "GlobalResolvers";
348
+ const _GRI = "GlobalResolversItem";
349
+ const _HZA = "HostedZoneAssociations";
350
+ const _HZAS = "HostedZoneAssociationSummary";
351
+ const _IFD = "ImportFirewallDomains";
352
+ const _IFDI = "ImportFirewallDomainsInput";
353
+ const _IFDO = "ImportFirewallDomainsOutput";
354
+ const _ISE = "InternalServerException";
355
+ const _LAS = "ListAccessSources";
356
+ const _LASI = "ListAccessSourcesInput";
357
+ const _LASO = "ListAccessSourcesOutput";
358
+ const _LAT = "ListAccessTokens";
359
+ const _LATI = "ListAccessTokensInput";
360
+ const _LATO = "ListAccessTokensOutput";
361
+ const _LDNSV = "ListDNSViews";
362
+ const _LDNSVI = "ListDNSViewsInput";
363
+ const _LDNSVO = "ListDNSViewsOutput";
364
+ const _LFD = "ListFirewallDomains";
365
+ const _LFDI = "ListFirewallDomainsInput";
366
+ const _LFDL = "ListFirewallDomainLists";
367
+ const _LFDLI = "ListFirewallDomainListsInput";
368
+ const _LFDLO = "ListFirewallDomainListsOutput";
369
+ const _LFDO = "ListFirewallDomainsOutput";
370
+ const _LFR = "ListFirewallRules";
371
+ const _LFRI = "ListFirewallRulesInput";
372
+ const _LFRO = "ListFirewallRulesOutput";
373
+ const _LGR = "ListGlobalResolvers";
374
+ const _LGRI = "ListGlobalResolversInput";
375
+ const _LGRO = "ListGlobalResolversOutput";
376
+ const _LHZA = "ListHostedZoneAssociations";
377
+ const _LHZAI = "ListHostedZoneAssociationsInput";
378
+ const _LHZAO = "ListHostedZoneAssociationsOutput";
379
+ const _LMFDL = "ListManagedFirewallDomainLists";
380
+ const _LMFDLI = "ListManagedFirewallDomainListsInput";
381
+ const _LMFDLO = "ListManagedFirewallDomainListsOutput";
382
+ const _LTFR = "ListTagsForResource";
383
+ const _LTFRR = "ListTagsForResourceRequest";
384
+ const _LTFRRi = "ListTagsForResourceResponse";
385
+ const _MFDL = "ManagedFirewallDomainLists";
386
+ const _MFDLI = "ManagedFirewallDomainListsItem";
387
+ const _RA = "Retry-After";
388
+ const _RNFE = "ResourceNotFoundException";
389
+ const _SQEE = "ServiceQuotaExceededException";
390
+ const _TE = "ThrottlingException";
391
+ const _TR = "TagResource";
392
+ const _TRR = "TagResourceRequest";
393
+ const _TRRa = "TagResourceResponse";
394
+ const _UAS = "UpdateAccessSource";
395
+ const _UASI = "UpdateAccessSourceInput";
396
+ const _UASO = "UpdateAccessSourceOutput";
397
+ const _UAT = "UpdateAccessToken";
398
+ const _UATI = "UpdateAccessTokenInput";
399
+ const _UATO = "UpdateAccessTokenOutput";
400
+ const _UDNSV = "UpdateDNSView";
401
+ const _UDNSVI = "UpdateDNSViewInput";
402
+ const _UDNSVO = "UpdateDNSViewOutput";
403
+ const _UFD = "UpdateFirewallDomains";
404
+ const _UFDI = "UpdateFirewallDomainsInput";
405
+ const _UFDO = "UpdateFirewallDomainsOutput";
406
+ const _UFR = "UpdateFirewallRule";
407
+ const _UFRI = "UpdateFirewallRuleInput";
408
+ const _UFRO = "UpdateFirewallRuleOutput";
409
+ const _UGR = "UpdateGlobalResolver";
410
+ const _UGRI = "UpdateGlobalResolverInput";
411
+ const _UGRO = "UpdateGlobalResolverOutput";
412
+ const _UHZA = "UpdateHostedZoneAssociation";
413
+ const _UHZAI = "UpdateHostedZoneAssociationInput";
414
+ const _UHZAO = "UpdateHostedZoneAssociationOutput";
415
+ const _UR = "UntagResource";
416
+ const _URR = "UntagResourceRequest";
417
+ const _URRn = "UntagResourceResponse";
418
+ const _VE = "ValidationException";
419
+ const _VEF = "ValidationExceptionField";
420
+ const _VEFL = "ValidationExceptionFieldList";
421
+ const _a = "arn";
422
+ const _aS = "accessSources";
423
+ const _aSI = "accessSourceId";
424
+ const _aT = "accessTokens";
425
+ const _aTI = "accessTokenId";
426
+ const _ac = "action";
427
+ const _bOD = "blockOverrideDomain";
428
+ const _bODT = "blockOverrideDnsType";
429
+ const _bOT = "blockOverrideTtl";
430
+ const _bR = "blockResponse";
431
+ const _c = "client";
432
+ const _cA = "createdAt";
433
+ const _cT = "clientToken";
434
+ const _cTo = "confidenceThreshold";
435
+ const _ci = "cidr";
436
+ const _co = "code";
437
+ const _d = "description";
438
+ const _dA = "deletedAt";
439
+ const _dAP = "dnsAdvancedProtection";
440
+ const _dC = "domainCount";
441
+ const _dFU = "domainFileUrl";
442
+ const _dN = "dnsName";
443
+ const _dV = "dnssecValidation";
444
+ const _dVI = "dnsViewId";
445
+ const _dVn = "dnsViews";
446
+ const _di = "dnsview_id";
447
+ const _do = "domains";
448
+ const _e = "error";
449
+ const _eA = "expiresAt";
450
+ const _eCS = "ednsClientSubnet";
451
+ const _f = "failures";
452
+ const _fDL = "firewallDomainLists";
453
+ const _fDLI = "firewallDomainListId";
454
+ const _fL = "fieldList";
455
+ const _fR = "firewallRules";
456
+ const _fRFO = "firewallRulesFailOpen";
457
+ const _fRI = "firewallRuleId";
458
+ const _fRi = "firewallRule";
459
+ const _fi = "filters";
460
+ const _gR = "globalResolvers";
461
+ const _gRI = "globalResolverId";
462
+ const _gri = "global_resolver_id";
463
+ const _h = "http";
464
+ const _hE = "httpError";
465
+ const _hH = "httpHeader";
466
+ const _hQ = "httpQuery";
467
+ const _hZA = "hostedZoneAssociations";
468
+ const _hZAI = "hostedZoneAssociationId";
469
+ const _hZI = "hostedZoneId";
470
+ const _hZN = "hostedZoneName";
471
+ const _i = "id";
472
+ const _iA = "ipv4Addresses";
473
+ const _iAT = "ipAddressType";
474
+ const _iAp = "ipv6Addresses";
475
+ const _m = "message";
476
+ const _mDLN = "managedDomainListName";
477
+ const _mFDL = "managedFirewallDomainLists";
478
+ const _mFDLI = "managedFirewallDomainListId";
479
+ const _mFDLT = "managedFirewallDomainListType";
480
+ const _mLT = "managedListType";
481
+ const _mR = "maxResults";
482
+ const _mr = "max_results";
483
+ const _n = "name";
484
+ const _nT = "nextToken";
485
+ const _nt = "next_token";
486
+ const _o = "operation";
487
+ const _oR = "observabilityRegion";
488
+ const _p = "protocol";
489
+ const _pr = "priority";
490
+ const _qC = "quotaCode";
491
+ const _qT = "qType";
492
+ const _qTu = "queryType";
493
+ const _r = "reason";
494
+ const _rA = "resourceArn";
495
+ const _rAS = "retryAfterSeconds";
496
+ const _rI = "resourceId";
497
+ const _rT = "resourceType";
498
+ const _re = "regions";
499
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53globalresolver";
500
+ const _sC = "serviceCode";
501
+ const _sM = "statusMessage";
502
+ const _se = "server";
503
+ const _st = "status";
504
+ const _su = "successes";
505
+ const _t = "tags";
506
+ const _tK = "tagKeys";
507
+ const _uA = "updatedAt";
508
+ const _v = "value";
509
+ const n0 = "com.amazonaws.route53globalresolver";
510
+ const _s_registry = TypeRegistry.for(_s);
511
+ var Route53GlobalResolverServiceException$ = [-3, _s, "Route53GlobalResolverServiceException", 0, [], []];
512
+ _s_registry.registerError(Route53GlobalResolverServiceException$, Route53GlobalResolverServiceException);
513
+ const n0_registry = TypeRegistry.for(n0);
514
+ var AccessDeniedException$ = [-3, n0, _ADE,
515
+ { [_e]: _c, [_hE]: 403 },
516
+ [_m],
517
+ [0], 1
518
+ ];
519
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
520
+ var ConflictException$ = [-3, n0, _CE,
521
+ { [_e]: _c, [_hE]: 409 },
522
+ [_m, _rT, _rI],
523
+ [0, 0, 0], 2
524
+ ];
525
+ n0_registry.registerError(ConflictException$, ConflictException);
526
+ var InternalServerException$ = [-3, n0, _ISE,
527
+ { [_e]: _se, [_hE]: 500 },
528
+ [_m, _rAS],
529
+ [0, [1, { [_hH]: _RA }]], 1
530
+ ];
531
+ n0_registry.registerError(InternalServerException$, InternalServerException);
532
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
533
+ { [_e]: _c, [_hE]: 404 },
534
+ [_m, _rT, _rI],
535
+ [0, 0, 0], 2
536
+ ];
537
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
538
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
539
+ { [_e]: _c, [_hE]: 402 },
540
+ [_m, _rT, _rI, _sC, _qC],
541
+ [0, 0, 0, 0, 0], 2
542
+ ];
543
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
544
+ var ThrottlingException$ = [-3, n0, _TE,
545
+ { [_e]: _c, [_hE]: 429 },
546
+ [_m, _sC, _qC, _rAS],
547
+ [0, 0, 0, [1, { [_hH]: _RA }]], 1
548
+ ];
549
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
550
+ var ValidationException$ = [-3, n0, _VE,
551
+ { [_e]: _c, [_hE]: 400 },
552
+ [_m, _r, _fL],
553
+ [0, 0, () => ValidationExceptionFieldList], 2
554
+ ];
555
+ n0_registry.registerError(ValidationException$, ValidationException);
556
+ const errorTypeRegistries = [
557
+ _s_registry,
558
+ n0_registry,
559
+ ];
560
+ var AccessTokenValue = [0, n0, _ATV, 8, 0];
561
+ var AccessSourcesItem$ = [3, n0, _ASI,
562
+ 0,
563
+ [_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
564
+ [0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
565
+ ];
566
+ var AccessTokenItem$ = [3, n0, _ATI,
567
+ 0,
568
+ [_i, _a, _cA, _dVI, _eA, _gRI, _st, _uA, _n],
569
+ [0, 0, 5, 0, 5, 0, 0, 5, 0], 8
570
+ ];
571
+ var AssociateHostedZoneInput$ = [3, n0, _AHZI,
572
+ 0,
573
+ [_hZI, _rA, _n],
574
+ [[0, 1], 0, 0], 3
575
+ ];
576
+ var AssociateHostedZoneOutput$ = [3, n0, _AHZO,
577
+ 0,
578
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
579
+ [0, 0, 0, 0, 0, 5, 5, 0], 8
580
+ ];
581
+ var BatchCreateFirewallRuleInput$ = [3, n0, _BCFRI,
582
+ 0,
583
+ [_fR],
584
+ [() => BatchCreateFirewallRuleInputItems], 1
585
+ ];
586
+ var BatchCreateFirewallRuleInputItem$ = [3, n0, _BCFRII,
587
+ 0,
588
+ [_ac, _cT, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _pr, _qT],
589
+ [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], 4
590
+ ];
591
+ var BatchCreateFirewallRuleOutput$ = [3, n0, _BCFRO,
592
+ 0,
593
+ [_f, _su],
594
+ [() => BatchCreateFirewallRuleOutputItems, () => BatchCreateFirewallRuleOutputItems], 2
595
+ ];
596
+ var BatchCreateFirewallRuleOutputItem$ = [3, n0, _BCFROI,
597
+ 0,
598
+ [_fRi, _co, _m],
599
+ [() => BatchCreateFirewallRuleResult$, 1, 0], 2
600
+ ];
601
+ var BatchCreateFirewallRuleResult$ = [3, n0, _BCFRR,
602
+ 0,
603
+ [_ac, _cT, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _mDLN, _pr, _qTu, _st, _uA],
604
+ [0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 5], 4
605
+ ];
606
+ var BatchDeleteFirewallRuleInput$ = [3, n0, _BDFRI,
607
+ 0,
608
+ [_fR],
609
+ [() => BatchDeleteFirewallRuleInputItems], 1
610
+ ];
611
+ var BatchDeleteFirewallRuleInputItem$ = [3, n0, _BDFRII,
612
+ 0,
613
+ [_fRI],
614
+ [0], 1
615
+ ];
616
+ var BatchDeleteFirewallRuleOutput$ = [3, n0, _BDFRO,
617
+ 0,
618
+ [_f, _su],
619
+ [() => BatchDeleteFirewallRuleOutputItems, () => BatchDeleteFirewallRuleOutputItems], 2
620
+ ];
621
+ var BatchDeleteFirewallRuleOutputItem$ = [3, n0, _BDFROI,
622
+ 0,
623
+ [_fRi, _co, _m],
624
+ [() => BatchDeleteFirewallRuleResult$, 1, 0], 2
625
+ ];
626
+ var BatchDeleteFirewallRuleResult$ = [3, n0, _BDFRR,
627
+ 0,
628
+ [_i, _cT, _n, _st],
629
+ [0, 0, 0, 0], 1
630
+ ];
631
+ var BatchUpdateFirewallRuleInput$ = [3, n0, _BUFRI,
632
+ 0,
633
+ [_fR],
634
+ [() => BatchUpdateFirewallRuleInputItems], 1
635
+ ];
636
+ var BatchUpdateFirewallRuleInputItem$ = [3, n0, _BUFRII,
637
+ 0,
638
+ [_fRI, _ac, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _n, _pr],
639
+ [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], 1
640
+ ];
641
+ var BatchUpdateFirewallRuleOutput$ = [3, n0, _BUFRO,
642
+ 0,
643
+ [_f, _su],
644
+ [() => BatchUpdateFirewallRuleOutputItems, () => BatchUpdateFirewallRuleOutputItems], 2
645
+ ];
646
+ var BatchUpdateFirewallRuleOutputItem$ = [3, n0, _BUFROI,
647
+ 0,
648
+ [_fRi, _co, _m],
649
+ [() => BatchUpdateFirewallRuleResult$, 1, 0], 2
650
+ ];
651
+ var BatchUpdateFirewallRuleResult$ = [3, n0, _BUFRR,
652
+ 0,
653
+ [_i, _ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _cA, _d, _dAP, _fDLI, _n, _pr, _dVI, _qTu, _st, _uA],
654
+ [0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 5], 1
655
+ ];
656
+ var CreateAccessSourceInput$ = [3, n0, _CASI,
657
+ 0,
658
+ [_ci, _dVI, _p, _cT, _iAT, _n, _t],
659
+ [0, 0, 0, [0, 4], 0, 0, 128 | 0], 3
660
+ ];
661
+ var CreateAccessSourceOutput$ = [3, n0, _CASO,
662
+ 0,
663
+ [_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
664
+ [0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
665
+ ];
666
+ var CreateAccessTokenInput$ = [3, n0, _CATI,
667
+ 0,
668
+ [_dVI, _cT, _eA, _n, _t],
669
+ [[0, 1], [0, 4], 5, 0, 128 | 0], 1
670
+ ];
671
+ var CreateAccessTokenOutput$ = [3, n0, _CATO,
672
+ 0,
673
+ [_i, _a, _cA, _dVI, _eA, _st, _v, _cT, _n],
674
+ [0, 0, 5, 0, 5, 0, [() => AccessTokenValue, 0], 0, 0], 7
675
+ ];
676
+ var CreateDNSViewInput$ = [3, n0, _CDNSVI,
677
+ 0,
678
+ [_gRI, _n, _cT, _dV, _eCS, _fRFO, _d, _t],
679
+ [[0, 1], 0, [0, 4], 0, 0, 0, 0, 128 | 0], 2
680
+ ];
681
+ var CreateDNSViewOutput$ = [3, n0, _CDNSVO,
682
+ 0,
683
+ [_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
684
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
685
+ ];
686
+ var CreateFirewallDomainListInput$ = [3, n0, _CFDLI,
687
+ 0,
688
+ [_gRI, _n, _cT, _d, _t],
689
+ [[0, 1], 0, [0, 4], 0, 128 | 0], 2
690
+ ];
691
+ var CreateFirewallDomainListOutput$ = [3, n0, _CFDLO,
692
+ 0,
693
+ [_a, _gRI, _cA, _dC, _i, _n, _st, _uA, _d],
694
+ [0, 0, 5, 1, 0, 0, 0, 5, 0], 8
695
+ ];
696
+ var CreateFirewallRuleInput$ = [3, n0, _CFRI,
697
+ 0,
698
+ [_ac, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fDLI, _pr, _qT],
699
+ [0, 0, 0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 1, 0], 3
700
+ ];
701
+ var CreateFirewallRuleOutput$ = [3, n0, _CFRO,
702
+ 0,
703
+ [_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
704
+ [0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
705
+ ];
706
+ var CreateGlobalResolverInput$ = [3, n0, _CGRI,
707
+ 0,
708
+ [_n, _re, _cT, _d, _iAT, _oR, _t],
709
+ [0, 64 | 0, [0, 4], 0, 0, 0, 128 | 0], 2
710
+ ];
711
+ var CreateGlobalResolverOutput$ = [3, n0, _CGRO,
712
+ 0,
713
+ [_i, _a, _cT, _cA, _dN, _iA, _n, _re, _st, _uA, _d, _iAT, _iAp, _oR],
714
+ [0, 0, 0, 5, 0, 64 | 0, 0, 64 | 0, 0, 5, 0, 0, 64 | 0, 0], 10
715
+ ];
716
+ var DeleteAccessSourceInput$ = [3, n0, _DASI,
717
+ 0,
718
+ [_aSI],
719
+ [[0, 1]], 1
720
+ ];
721
+ var DeleteAccessSourceOutput$ = [3, n0, _DASO,
722
+ 0,
723
+ [_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
724
+ [0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
725
+ ];
726
+ var DeleteAccessTokenInput$ = [3, n0, _DATI,
727
+ 0,
728
+ [_aTI],
729
+ [[0, 1]], 1
730
+ ];
731
+ var DeleteAccessTokenOutput$ = [3, n0, _DATO,
732
+ 0,
733
+ [_i, _st, _dA],
734
+ [0, 0, 5], 3
735
+ ];
736
+ var DeleteDNSViewInput$ = [3, n0, _DDNSVI,
737
+ 0,
738
+ [_dVI],
739
+ [[0, 1]], 1
740
+ ];
741
+ var DeleteDNSViewOutput$ = [3, n0, _DDNSVO,
742
+ 0,
743
+ [_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
744
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
745
+ ];
746
+ var DeleteFirewallDomainListInput$ = [3, n0, _DFDLI,
747
+ 0,
748
+ [_fDLI],
749
+ [[0, 1]], 1
750
+ ];
751
+ var DeleteFirewallDomainListOutput$ = [3, n0, _DFDLO,
752
+ 0,
753
+ [_a, _i, _n, _st],
754
+ [0, 0, 0, 0], 4
755
+ ];
756
+ var DeleteFirewallRuleInput$ = [3, n0, _DFRI,
757
+ 0,
758
+ [_fRI],
759
+ [[0, 1]], 1
760
+ ];
761
+ var DeleteFirewallRuleOutput$ = [3, n0, _DFRO,
762
+ 0,
763
+ [_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
764
+ [0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
765
+ ];
766
+ var DeleteGlobalResolverInput$ = [3, n0, _DGRI,
767
+ 0,
768
+ [_gRI],
769
+ [[0, 1]], 1
770
+ ];
771
+ var DeleteGlobalResolverOutput$ = [3, n0, _DGRO,
772
+ 0,
773
+ [_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
774
+ [0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
775
+ ];
776
+ var DisableDNSViewInput$ = [3, n0, _DDNSVIi,
777
+ 0,
778
+ [_dVI],
779
+ [[0, 1]], 1
780
+ ];
781
+ var DisableDNSViewOutput$ = [3, n0, _DDNSVOi,
782
+ 0,
783
+ [_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
784
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
785
+ ];
786
+ var DisassociateHostedZoneInput$ = [3, n0, _DHZI,
787
+ 0,
788
+ [_hZI, _rA],
789
+ [[0, 1], [0, 1]], 2
790
+ ];
791
+ var DisassociateHostedZoneOutput$ = [3, n0, _DHZO,
792
+ 0,
793
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
794
+ [0, 0, 0, 0, 0, 5, 5, 0], 8
795
+ ];
796
+ var DNSViewSummary$ = [3, n0, _DNSVS,
797
+ 0,
798
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _d],
799
+ [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], 11
800
+ ];
801
+ var EnableDNSViewInput$ = [3, n0, _EDNSVI,
802
+ 0,
803
+ [_dVI],
804
+ [[0, 1]], 1
805
+ ];
806
+ var EnableDNSViewOutput$ = [3, n0, _EDNSVO,
807
+ 0,
808
+ [_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
809
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
810
+ ];
811
+ var FirewallDomainListsItem$ = [3, n0, _FDLI,
812
+ 0,
813
+ [_a, _gRI, _cA, _i, _n, _st, _uA, _d],
814
+ [0, 0, 5, 0, 0, 0, 5, 0], 7
815
+ ];
816
+ var FirewallRulesItem$ = [3, n0, _FRI,
817
+ 0,
818
+ [_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
819
+ [0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
820
+ ];
821
+ var GetAccessSourceInput$ = [3, n0, _GASI,
822
+ 0,
823
+ [_aSI],
824
+ [[0, 1]], 1
825
+ ];
826
+ var GetAccessSourceOutput$ = [3, n0, _GASO,
827
+ 0,
828
+ [_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
829
+ [0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
830
+ ];
831
+ var GetAccessTokenInput$ = [3, n0, _GATI,
832
+ 0,
833
+ [_aTI],
834
+ [[0, 1]], 1
835
+ ];
836
+ var GetAccessTokenOutput$ = [3, n0, _GATO,
837
+ 0,
838
+ [_i, _a, _cA, _dVI, _eA, _gRI, _st, _uA, _v, _cT, _n],
839
+ [0, 0, 5, 0, 5, 0, 0, 5, [() => AccessTokenValue, 0], 0, 0], 9
840
+ ];
841
+ var GetDNSViewInput$ = [3, n0, _GDNSVI,
842
+ 0,
843
+ [_dVI],
844
+ [[0, 1]], 1
845
+ ];
846
+ var GetDNSViewOutput$ = [3, n0, _GDNSVO,
847
+ 0,
848
+ [_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
849
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
850
+ ];
851
+ var GetFirewallDomainListInput$ = [3, n0, _GFDLI,
852
+ 0,
853
+ [_fDLI],
854
+ [[0, 1]], 1
855
+ ];
856
+ var GetFirewallDomainListOutput$ = [3, n0, _GFDLO,
857
+ 0,
858
+ [_a, _gRI, _cA, _dC, _i, _n, _st, _uA, _cT, _d, _sM],
859
+ [0, 0, 5, 1, 0, 0, 0, 5, 0, 0, 0], 8
860
+ ];
861
+ var GetFirewallRuleInput$ = [3, n0, _GFRI,
862
+ 0,
863
+ [_fRI],
864
+ [[0, 1]], 1
865
+ ];
866
+ var GetFirewallRuleOutput$ = [3, n0, _GFRO,
867
+ 0,
868
+ [_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
869
+ [0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
870
+ ];
871
+ var GetGlobalResolverInput$ = [3, n0, _GGRI,
872
+ 0,
873
+ [_gRI],
874
+ [[0, 1]], 1
875
+ ];
876
+ var GetGlobalResolverOutput$ = [3, n0, _GGRO,
877
+ 0,
878
+ [_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
879
+ [0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
880
+ ];
881
+ var GetHostedZoneAssociationInput$ = [3, n0, _GHZAI,
882
+ 0,
883
+ [_hZAI],
884
+ [[0, 1]], 1
885
+ ];
886
+ var GetHostedZoneAssociationOutput$ = [3, n0, _GHZAO,
887
+ 0,
888
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
889
+ [0, 0, 0, 0, 0, 5, 5, 0], 8
890
+ ];
891
+ var GetManagedFirewallDomainListInput$ = [3, n0, _GMFDLI,
892
+ 0,
893
+ [_mFDLI],
894
+ [[0, 1]], 1
895
+ ];
896
+ var GetManagedFirewallDomainListOutput$ = [3, n0, _GMFDLO,
897
+ 0,
898
+ [_i, _n, _mLT, _d],
899
+ [0, 0, 0, 0], 3
900
+ ];
901
+ var GlobalResolversItem$ = [3, n0, _GRI,
902
+ 0,
903
+ [_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
904
+ [0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
905
+ ];
906
+ var HostedZoneAssociationSummary$ = [3, n0, _HZAS,
907
+ 0,
908
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
909
+ [0, 0, 0, 0, 0, 5, 5, 0], 8
910
+ ];
911
+ var ImportFirewallDomainsInput$ = [3, n0, _IFDI,
912
+ 0,
913
+ [_dFU, _fDLI, _o],
914
+ [0, [0, 1], 0], 3
915
+ ];
916
+ var ImportFirewallDomainsOutput$ = [3, n0, _IFDO,
917
+ 0,
918
+ [_i, _n, _st],
919
+ [0, 0, 0], 3
920
+ ];
921
+ var ListAccessSourcesInput$ = [3, n0, _LASI,
922
+ 0,
923
+ [_mR, _nT, _fi],
924
+ [[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]]
925
+ ];
926
+ var ListAccessSourcesOutput$ = [3, n0, _LASO,
927
+ 0,
928
+ [_aS, _nT],
929
+ [() => AccessSources, 0], 1
930
+ ];
931
+ var ListAccessTokensInput$ = [3, n0, _LATI,
932
+ 0,
933
+ [_dVI, _mR, _nT, _fi],
934
+ [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]], 1
935
+ ];
936
+ var ListAccessTokensOutput$ = [3, n0, _LATO,
937
+ 0,
938
+ [_nT, _aT],
939
+ [0, () => AccessTokens]
940
+ ];
941
+ var ListDNSViewsInput$ = [3, n0, _LDNSVI,
942
+ 0,
943
+ [_gRI, _mR, _nT],
944
+ [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
945
+ ];
946
+ var ListDNSViewsOutput$ = [3, n0, _LDNSVO,
947
+ 0,
948
+ [_dVn, _nT],
949
+ [() => DNSViews, 0], 1
950
+ ];
951
+ var ListFirewallDomainListsInput$ = [3, n0, _LFDLI,
952
+ 0,
953
+ [_mR, _nT, _gRI],
954
+ [[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _gri }]]
955
+ ];
956
+ var ListFirewallDomainListsOutput$ = [3, n0, _LFDLO,
957
+ 0,
958
+ [_fDL, _nT],
959
+ [() => FirewallDomainLists, 0], 1
960
+ ];
961
+ var ListFirewallDomainsInput$ = [3, n0, _LFDI,
962
+ 0,
963
+ [_fDLI, _mR, _nT],
964
+ [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
965
+ ];
966
+ var ListFirewallDomainsOutput$ = [3, n0, _LFDO,
967
+ 0,
968
+ [_do, _nT],
969
+ [64 | 0, 0], 1
970
+ ];
971
+ var ListFirewallRulesInput$ = [3, n0, _LFRI,
972
+ 0,
973
+ [_dVI, _mR, _nT, _fi],
974
+ [[0, { [_hQ]: _di }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]], 1
975
+ ];
976
+ var ListFirewallRulesOutput$ = [3, n0, _LFRO,
977
+ 0,
978
+ [_fR, _nT],
979
+ [() => FirewallRules, 0], 1
980
+ ];
981
+ var ListGlobalResolversInput$ = [3, n0, _LGRI,
982
+ 0,
983
+ [_mR, _nT],
984
+ [[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
985
+ ];
986
+ var ListGlobalResolversOutput$ = [3, n0, _LGRO,
987
+ 0,
988
+ [_gR, _nT],
989
+ [() => GlobalResolvers, 0], 1
990
+ ];
991
+ var ListHostedZoneAssociationsInput$ = [3, n0, _LHZAI,
992
+ 0,
993
+ [_rA, _mR, _nT],
994
+ [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
995
+ ];
996
+ var ListHostedZoneAssociationsOutput$ = [3, n0, _LHZAO,
997
+ 0,
998
+ [_hZA, _nT],
999
+ [() => HostedZoneAssociations, 0], 1
1000
+ ];
1001
+ var ListManagedFirewallDomainListsInput$ = [3, n0, _LMFDLI,
1002
+ 0,
1003
+ [_mFDLT, _mR, _nT],
1004
+ [[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
1005
+ ];
1006
+ var ListManagedFirewallDomainListsOutput$ = [3, n0, _LMFDLO,
1007
+ 0,
1008
+ [_mFDL, _nT],
1009
+ [() => ManagedFirewallDomainLists, 0], 1
1010
+ ];
1011
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1012
+ 0,
1013
+ [_rA],
1014
+ [0], 1
1015
+ ];
1016
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1017
+ 0,
1018
+ [_t],
1019
+ [128 | 0]
1020
+ ];
1021
+ var ManagedFirewallDomainListsItem$ = [3, n0, _MFDLI,
1022
+ 0,
1023
+ [_i, _n, _mLT, _d],
1024
+ [0, 0, 0, 0], 3
1025
+ ];
1026
+ var TagResourceRequest$ = [3, n0, _TRR,
1027
+ 0,
1028
+ [_rA, _t],
1029
+ [0, 128 | 0], 2
1030
+ ];
1031
+ var TagResourceResponse$ = [3, n0, _TRRa,
1032
+ 0,
1033
+ [],
1034
+ []
1035
+ ];
1036
+ var UntagResourceRequest$ = [3, n0, _URR,
1037
+ 0,
1038
+ [_rA, _tK],
1039
+ [0, 64 | 0], 2
1040
+ ];
1041
+ var UntagResourceResponse$ = [3, n0, _URRn,
1042
+ 0,
1043
+ [],
1044
+ []
1045
+ ];
1046
+ var UpdateAccessSourceInput$ = [3, n0, _UASI,
1047
+ 0,
1048
+ [_aSI, _ci, _iAT, _n, _p],
1049
+ [[0, 1], 0, 0, 0, 0], 1
1050
+ ];
1051
+ var UpdateAccessSourceOutput$ = [3, n0, _UASO,
1052
+ 0,
1053
+ [_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
1054
+ [0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
1055
+ ];
1056
+ var UpdateAccessTokenInput$ = [3, n0, _UATI,
1057
+ 0,
1058
+ [_aTI, _n],
1059
+ [[0, 1], 0], 2
1060
+ ];
1061
+ var UpdateAccessTokenOutput$ = [3, n0, _UATO,
1062
+ 0,
1063
+ [_i, _n],
1064
+ [0, 0], 2
1065
+ ];
1066
+ var UpdateDNSViewInput$ = [3, n0, _UDNSVI,
1067
+ 0,
1068
+ [_dVI, _n, _d, _dV, _eCS, _fRFO],
1069
+ [[0, 1], 0, 0, 0, 0, 0], 1
1070
+ ];
1071
+ var UpdateDNSViewOutput$ = [3, n0, _UDNSVO,
1072
+ 0,
1073
+ [_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
1074
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
1075
+ ];
1076
+ var UpdateFirewallDomainsInput$ = [3, n0, _UFDI,
1077
+ 0,
1078
+ [_do, _fDLI, _o],
1079
+ [64 | 0, [0, 1], 0], 3
1080
+ ];
1081
+ var UpdateFirewallDomainsOutput$ = [3, n0, _UFDO,
1082
+ 0,
1083
+ [_i, _n, _st],
1084
+ [0, 0, 0], 3
1085
+ ];
1086
+ var UpdateFirewallRuleInput$ = [3, n0, _UFRI,
1087
+ 0,
1088
+ [_fRI, _ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _n, _pr],
1089
+ [[0, 1], 0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 1], 1
1090
+ ];
1091
+ var UpdateFirewallRuleOutput$ = [3, n0, _UFRO,
1092
+ 0,
1093
+ [_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
1094
+ [0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
1095
+ ];
1096
+ var UpdateGlobalResolverInput$ = [3, n0, _UGRI,
1097
+ 0,
1098
+ [_gRI, _n, _oR, _d, _iAT, _re],
1099
+ [[0, 1], 0, 0, 0, 0, 64 | 0], 1
1100
+ ];
1101
+ var UpdateGlobalResolverOutput$ = [3, n0, _UGRO,
1102
+ 0,
1103
+ [_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
1104
+ [0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
1105
+ ];
1106
+ var UpdateHostedZoneAssociationInput$ = [3, n0, _UHZAI,
1107
+ 0,
1108
+ [_hZAI, _n],
1109
+ [[0, 1], 0], 1
1110
+ ];
1111
+ var UpdateHostedZoneAssociationOutput$ = [3, n0, _UHZAO,
1112
+ 0,
1113
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
1114
+ [0, 0, 0, 0, 0, 5, 5, 0], 8
1115
+ ];
1116
+ var ValidationExceptionField$ = [3, n0, _VEF,
1117
+ 0,
1118
+ [_n, _m],
1119
+ [0, 0], 2
1120
+ ];
1121
+ var AccessSources = [1, n0, _AS,
1122
+ 0, () => AccessSourcesItem$
1123
+ ];
1124
+ var AccessTokens = [1, n0, _AT,
1125
+ 0, () => AccessTokenItem$
1126
+ ];
1127
+ var BatchCreateFirewallRuleInputItems = [1, n0, _BCFRIIa,
1128
+ 0, () => BatchCreateFirewallRuleInputItem$
1129
+ ];
1130
+ var BatchCreateFirewallRuleOutputItems = [1, n0, _BCFROIa,
1131
+ 0, () => BatchCreateFirewallRuleOutputItem$
1132
+ ];
1133
+ var BatchDeleteFirewallRuleInputItems = [1, n0, _BDFRIIa,
1134
+ 0, () => BatchDeleteFirewallRuleInputItem$
1135
+ ];
1136
+ var BatchDeleteFirewallRuleOutputItems = [1, n0, _BDFROIa,
1137
+ 0, () => BatchDeleteFirewallRuleOutputItem$
1138
+ ];
1139
+ var BatchUpdateFirewallRuleInputItems = [1, n0, _BUFRIIa,
1140
+ 0, () => BatchUpdateFirewallRuleInputItem$
1141
+ ];
1142
+ var BatchUpdateFirewallRuleOutputItems = [1, n0, _BUFROIa,
1143
+ 0, () => BatchUpdateFirewallRuleOutputItem$
1144
+ ];
1145
+ var DNSViews = [1, n0, _DNSV,
1146
+ 0, () => DNSViewSummary$
1147
+ ];
1148
+ var FirewallDomainLists = [1, n0, _FDL,
1149
+ 0, () => FirewallDomainListsItem$
1150
+ ];
1151
+ var FirewallRules = [1, n0, _FR,
1152
+ 0, () => FirewallRulesItem$
1153
+ ];
1154
+ var GlobalResolvers = [1, n0, _GR,
1155
+ 0, () => GlobalResolversItem$
1156
+ ];
1157
+ var HostedZoneAssociations = [1, n0, _HZA,
1158
+ 0, () => HostedZoneAssociationSummary$
1159
+ ];
1160
+ var ManagedFirewallDomainLists = [1, n0, _MFDL,
1161
+ 0, () => ManagedFirewallDomainListsItem$
1162
+ ];
1163
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
1164
+ 0, () => ValidationExceptionField$
1165
+ ];
1166
+ var AssociateHostedZone$ = [9, n0, _AHZ,
1167
+ { [_h]: ["POST", "/hosted-zone-associations/{hostedZoneId}", 200] }, () => AssociateHostedZoneInput$, () => AssociateHostedZoneOutput$
1168
+ ];
1169
+ var BatchCreateFirewallRule$ = [9, n0, _BCFR,
1170
+ { [_h]: ["POST", "/firewall-rules/batch-create", 200] }, () => BatchCreateFirewallRuleInput$, () => BatchCreateFirewallRuleOutput$
1171
+ ];
1172
+ var BatchDeleteFirewallRule$ = [9, n0, _BDFR,
1173
+ { [_h]: ["POST", "/firewall-rules/batch-delete", 200] }, () => BatchDeleteFirewallRuleInput$, () => BatchDeleteFirewallRuleOutput$
1174
+ ];
1175
+ var BatchUpdateFirewallRule$ = [9, n0, _BUFR,
1176
+ { [_h]: ["POST", "/firewall-rules/batch-update", 200] }, () => BatchUpdateFirewallRuleInput$, () => BatchUpdateFirewallRuleOutput$
1177
+ ];
1178
+ var CreateAccessSource$ = [9, n0, _CAS,
1179
+ { [_h]: ["POST", "/access-sources", 200] }, () => CreateAccessSourceInput$, () => CreateAccessSourceOutput$
1180
+ ];
1181
+ var CreateAccessToken$ = [9, n0, _CAT,
1182
+ { [_h]: ["POST", "/tokens/{dnsViewId}", 200] }, () => CreateAccessTokenInput$, () => CreateAccessTokenOutput$
1183
+ ];
1184
+ var CreateDNSView$ = [9, n0, _CDNSV,
1185
+ { [_h]: ["POST", "/dns-views/{globalResolverId}", 200] }, () => CreateDNSViewInput$, () => CreateDNSViewOutput$
1186
+ ];
1187
+ var CreateFirewallDomainList$ = [9, n0, _CFDL,
1188
+ { [_h]: ["POST", "/firewall-domain-lists/{globalResolverId}", 200] }, () => CreateFirewallDomainListInput$, () => CreateFirewallDomainListOutput$
1189
+ ];
1190
+ var CreateFirewallRule$ = [9, n0, _CFR,
1191
+ { [_h]: ["POST", "/firewall-rules", 200] }, () => CreateFirewallRuleInput$, () => CreateFirewallRuleOutput$
1192
+ ];
1193
+ var CreateGlobalResolver$ = [9, n0, _CGR,
1194
+ { [_h]: ["POST", "/global-resolver", 200] }, () => CreateGlobalResolverInput$, () => CreateGlobalResolverOutput$
1195
+ ];
1196
+ var DeleteAccessSource$ = [9, n0, _DAS,
1197
+ { [_h]: ["DELETE", "/access-sources/{accessSourceId}", 200] }, () => DeleteAccessSourceInput$, () => DeleteAccessSourceOutput$
1198
+ ];
1199
+ var DeleteAccessToken$ = [9, n0, _DAT,
1200
+ { [_h]: ["DELETE", "/tokens/{accessTokenId}", 200] }, () => DeleteAccessTokenInput$, () => DeleteAccessTokenOutput$
1201
+ ];
1202
+ var DeleteDNSView$ = [9, n0, _DDNSV,
1203
+ { [_h]: ["DELETE", "/dns-views/{dnsViewId}", 200] }, () => DeleteDNSViewInput$, () => DeleteDNSViewOutput$
1204
+ ];
1205
+ var DeleteFirewallDomainList$ = [9, n0, _DFDL,
1206
+ { [_h]: ["DELETE", "/firewall-domain-lists/{firewallDomainListId}", 200] }, () => DeleteFirewallDomainListInput$, () => DeleteFirewallDomainListOutput$
1207
+ ];
1208
+ var DeleteFirewallRule$ = [9, n0, _DFR,
1209
+ { [_h]: ["DELETE", "/firewall-rules/{firewallRuleId}", 200] }, () => DeleteFirewallRuleInput$, () => DeleteFirewallRuleOutput$
1210
+ ];
1211
+ var DeleteGlobalResolver$ = [9, n0, _DGR,
1212
+ { [_h]: ["DELETE", "/global-resolver/{globalResolverId}", 200] }, () => DeleteGlobalResolverInput$, () => DeleteGlobalResolverOutput$
1213
+ ];
1214
+ var DisableDNSView$ = [9, n0, _DDNSVi,
1215
+ { [_h]: ["PATCH", "/dns-views/{dnsViewId}/disable", 200] }, () => DisableDNSViewInput$, () => DisableDNSViewOutput$
1216
+ ];
1217
+ var DisassociateHostedZone$ = [9, n0, _DHZ,
1218
+ { [_h]: ["DELETE", "/hosted-zone-associations/hosted-zone/{hostedZoneId}/resource-arn/{resourceArn+}", 200] }, () => DisassociateHostedZoneInput$, () => DisassociateHostedZoneOutput$
1219
+ ];
1220
+ var EnableDNSView$ = [9, n0, _EDNSV,
1221
+ { [_h]: ["PATCH", "/dns-views/{dnsViewId}/enable", 200] }, () => EnableDNSViewInput$, () => EnableDNSViewOutput$
1222
+ ];
1223
+ var GetAccessSource$ = [9, n0, _GAS,
1224
+ { [_h]: ["GET", "/access-sources/{accessSourceId}", 200] }, () => GetAccessSourceInput$, () => GetAccessSourceOutput$
1225
+ ];
1226
+ var GetAccessToken$ = [9, n0, _GAT,
1227
+ { [_h]: ["GET", "/tokens/{accessTokenId}", 200] }, () => GetAccessTokenInput$, () => GetAccessTokenOutput$
1228
+ ];
1229
+ var GetDNSView$ = [9, n0, _GDNSV,
1230
+ { [_h]: ["GET", "/dns-views/{dnsViewId}", 200] }, () => GetDNSViewInput$, () => GetDNSViewOutput$
1231
+ ];
1232
+ var GetFirewallDomainList$ = [9, n0, _GFDL,
1233
+ { [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}", 200] }, () => GetFirewallDomainListInput$, () => GetFirewallDomainListOutput$
1234
+ ];
1235
+ var GetFirewallRule$ = [9, n0, _GFR,
1236
+ { [_h]: ["GET", "/firewall-rules/{firewallRuleId}", 200] }, () => GetFirewallRuleInput$, () => GetFirewallRuleOutput$
1237
+ ];
1238
+ var GetGlobalResolver$ = [9, n0, _GGR,
1239
+ { [_h]: ["GET", "/global-resolver/{globalResolverId}", 200] }, () => GetGlobalResolverInput$, () => GetGlobalResolverOutput$
1240
+ ];
1241
+ var GetHostedZoneAssociation$ = [9, n0, _GHZA,
1242
+ { [_h]: ["GET", "/hosted-zone-associations/{hostedZoneAssociationId}", 200] }, () => GetHostedZoneAssociationInput$, () => GetHostedZoneAssociationOutput$
1243
+ ];
1244
+ var GetManagedFirewallDomainList$ = [9, n0, _GMFDL,
1245
+ { [_h]: ["GET", "/managed-firewall-domain-lists/{managedFirewallDomainListId}", 200] }, () => GetManagedFirewallDomainListInput$, () => GetManagedFirewallDomainListOutput$
1246
+ ];
1247
+ var ImportFirewallDomains$ = [9, n0, _IFD,
1248
+ { [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains/s3_file_url", 200] }, () => ImportFirewallDomainsInput$, () => ImportFirewallDomainsOutput$
1249
+ ];
1250
+ var ListAccessSources$ = [9, n0, _LAS,
1251
+ { [_h]: ["GET", "/access-sources", 200] }, () => ListAccessSourcesInput$, () => ListAccessSourcesOutput$
1252
+ ];
1253
+ var ListAccessTokens$ = [9, n0, _LAT,
1254
+ { [_h]: ["GET", "/tokens/dns-view/{dnsViewId}", 200] }, () => ListAccessTokensInput$, () => ListAccessTokensOutput$
1255
+ ];
1256
+ var ListDNSViews$ = [9, n0, _LDNSV,
1257
+ { [_h]: ["GET", "/dns-views/resolver/{globalResolverId}", 200] }, () => ListDNSViewsInput$, () => ListDNSViewsOutput$
1258
+ ];
1259
+ var ListFirewallDomainLists$ = [9, n0, _LFDL,
1260
+ { [_h]: ["GET", "/firewall-domain-lists", 200] }, () => ListFirewallDomainListsInput$, () => ListFirewallDomainListsOutput$
1261
+ ];
1262
+ var ListFirewallDomains$ = [9, n0, _LFD,
1263
+ { [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}/domains", 200] }, () => ListFirewallDomainsInput$, () => ListFirewallDomainsOutput$
1264
+ ];
1265
+ var ListFirewallRules$ = [9, n0, _LFR,
1266
+ { [_h]: ["GET", "/firewall-rules", 200] }, () => ListFirewallRulesInput$, () => ListFirewallRulesOutput$
1267
+ ];
1268
+ var ListGlobalResolvers$ = [9, n0, _LGR,
1269
+ { [_h]: ["GET", "/global-resolver", 200] }, () => ListGlobalResolversInput$, () => ListGlobalResolversOutput$
1270
+ ];
1271
+ var ListHostedZoneAssociations$ = [9, n0, _LHZA,
1272
+ { [_h]: ["GET", "/hosted-zone-associations/resource-arn/{resourceArn+}", 200] }, () => ListHostedZoneAssociationsInput$, () => ListHostedZoneAssociationsOutput$
1273
+ ];
1274
+ var ListManagedFirewallDomainLists$ = [9, n0, _LMFDL,
1275
+ { [_h]: ["GET", "/list-managed-firewall-domain-lists/{managedFirewallDomainListType}", 200] }, () => ListManagedFirewallDomainListsInput$, () => ListManagedFirewallDomainListsOutput$
1276
+ ];
1277
+ var ListTagsForResource$ = [9, n0, _LTFR,
1278
+ { [_h]: ["POST", "/get-all-tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1279
+ ];
1280
+ var TagResource$ = [9, n0, _TR,
1281
+ { [_h]: ["POST", "/tag-resource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1282
+ ];
1283
+ var UntagResource$ = [9, n0, _UR,
1284
+ { [_h]: ["POST", "/untag-resource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1285
+ ];
1286
+ var UpdateAccessSource$ = [9, n0, _UAS,
1287
+ { [_h]: ["PATCH", "/access-sources/{accessSourceId}", 200] }, () => UpdateAccessSourceInput$, () => UpdateAccessSourceOutput$
1288
+ ];
1289
+ var UpdateAccessToken$ = [9, n0, _UAT,
1290
+ { [_h]: ["PATCH", "/tokens/{accessTokenId}", 200] }, () => UpdateAccessTokenInput$, () => UpdateAccessTokenOutput$
1291
+ ];
1292
+ var UpdateDNSView$ = [9, n0, _UDNSV,
1293
+ { [_h]: ["PATCH", "/dns-views/{dnsViewId}", 200] }, () => UpdateDNSViewInput$, () => UpdateDNSViewOutput$
1294
+ ];
1295
+ var UpdateFirewallDomains$ = [9, n0, _UFD,
1296
+ { [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains", 200] }, () => UpdateFirewallDomainsInput$, () => UpdateFirewallDomainsOutput$
1297
+ ];
1298
+ var UpdateFirewallRule$ = [9, n0, _UFR,
1299
+ { [_h]: ["PATCH", "/firewall-rules/{firewallRuleId}", 200] }, () => UpdateFirewallRuleInput$, () => UpdateFirewallRuleOutput$
1300
+ ];
1301
+ var UpdateGlobalResolver$ = [9, n0, _UGR,
1302
+ { [_h]: ["PATCH", "/global-resolver/{globalResolverId}", 200] }, () => UpdateGlobalResolverInput$, () => UpdateGlobalResolverOutput$
1303
+ ];
1304
+ var UpdateHostedZoneAssociation$ = [9, n0, _UHZA,
1305
+ { [_h]: ["PATCH", "/hosted-zone-associations/{hostedZoneAssociationId}", 200] }, () => UpdateHostedZoneAssociationInput$, () => UpdateHostedZoneAssociationOutput$
1306
+ ];
1307
+
1308
+ const getRuntimeConfig$1 = (config) => {
1309
+ return {
1310
+ apiVersion: "2022-09-27",
1311
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1312
+ base64Encoder: config?.base64Encoder ?? toBase64,
1313
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1314
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1315
+ extensions: config?.extensions ?? [],
1316
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRoute53GlobalResolverHttpAuthSchemeProvider,
1317
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1318
+ {
1319
+ schemeId: "aws.auth#sigv4",
1320
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1321
+ signer: new AwsSdkSigV4Signer(),
1322
+ },
1323
+ ],
1324
+ logger: config?.logger ?? new NoOpLogger(),
1325
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1326
+ protocolSettings: config?.protocolSettings ?? {
1327
+ defaultNamespace: "com.amazonaws.route53globalresolver",
1328
+ errorTypeRegistries,
1329
+ version: "2022-09-27",
1330
+ serviceTarget: "EC2DNSGlobalResolverCustomerAPI",
1331
+ },
1332
+ serviceId: config?.serviceId ?? "Route53GlobalResolver",
1333
+ urlParser: config?.urlParser ?? parseUrl,
1334
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1335
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1336
+ };
1337
+ };
1338
+
1339
+ const getRuntimeConfig = (config) => {
1340
+ emitWarningIfUnsupportedVersion(process.version);
1341
+ const defaultsMode = resolveDefaultsModeConfig(config);
1342
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1343
+ const clientSharedValues = getRuntimeConfig$1(config);
1344
+ emitWarningIfUnsupportedVersion$1(process.version);
1345
+ const loaderConfig = {
1346
+ profile: config?.profile,
1347
+ logger: clientSharedValues.logger,
1348
+ };
1349
+ return {
1350
+ ...clientSharedValues,
1351
+ ...config,
1352
+ runtime: "node",
1353
+ defaultsMode,
1354
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1355
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1356
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1357
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1358
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1359
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1360
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1361
+ retryMode: config?.retryMode ??
1362
+ loadConfig({
1363
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1364
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1365
+ }, config),
1366
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1367
+ streamCollector: config?.streamCollector ?? streamCollector,
1368
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1369
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1370
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1371
+ };
1372
+ };
1373
+
32
1374
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
33
1375
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
34
1376
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -835,71 +2177,247 @@ const GlobalResolverIpAddressType = {
835
2177
  IPV4: "IPV4",
836
2178
  };
837
2179
 
2180
+ exports.AccessDeniedException = AccessDeniedException;
2181
+ exports.AccessDeniedException$ = AccessDeniedException$;
2182
+ exports.AccessSourcesItem$ = AccessSourcesItem$;
2183
+ exports.AccessTokenItem$ = AccessTokenItem$;
2184
+ exports.AssociateHostedZone$ = AssociateHostedZone$;
838
2185
  exports.AssociateHostedZoneCommand = AssociateHostedZoneCommand;
2186
+ exports.AssociateHostedZoneInput$ = AssociateHostedZoneInput$;
2187
+ exports.AssociateHostedZoneOutput$ = AssociateHostedZoneOutput$;
2188
+ exports.BatchCreateFirewallRule$ = BatchCreateFirewallRule$;
839
2189
  exports.BatchCreateFirewallRuleCommand = BatchCreateFirewallRuleCommand;
2190
+ exports.BatchCreateFirewallRuleInput$ = BatchCreateFirewallRuleInput$;
2191
+ exports.BatchCreateFirewallRuleInputItem$ = BatchCreateFirewallRuleInputItem$;
2192
+ exports.BatchCreateFirewallRuleOutput$ = BatchCreateFirewallRuleOutput$;
2193
+ exports.BatchCreateFirewallRuleOutputItem$ = BatchCreateFirewallRuleOutputItem$;
2194
+ exports.BatchCreateFirewallRuleResult$ = BatchCreateFirewallRuleResult$;
2195
+ exports.BatchDeleteFirewallRule$ = BatchDeleteFirewallRule$;
840
2196
  exports.BatchDeleteFirewallRuleCommand = BatchDeleteFirewallRuleCommand;
2197
+ exports.BatchDeleteFirewallRuleInput$ = BatchDeleteFirewallRuleInput$;
2198
+ exports.BatchDeleteFirewallRuleInputItem$ = BatchDeleteFirewallRuleInputItem$;
2199
+ exports.BatchDeleteFirewallRuleOutput$ = BatchDeleteFirewallRuleOutput$;
2200
+ exports.BatchDeleteFirewallRuleOutputItem$ = BatchDeleteFirewallRuleOutputItem$;
2201
+ exports.BatchDeleteFirewallRuleResult$ = BatchDeleteFirewallRuleResult$;
2202
+ exports.BatchUpdateFirewallRule$ = BatchUpdateFirewallRule$;
841
2203
  exports.BatchUpdateFirewallRuleCommand = BatchUpdateFirewallRuleCommand;
2204
+ exports.BatchUpdateFirewallRuleInput$ = BatchUpdateFirewallRuleInput$;
2205
+ exports.BatchUpdateFirewallRuleInputItem$ = BatchUpdateFirewallRuleInputItem$;
2206
+ exports.BatchUpdateFirewallRuleOutput$ = BatchUpdateFirewallRuleOutput$;
2207
+ exports.BatchUpdateFirewallRuleOutputItem$ = BatchUpdateFirewallRuleOutputItem$;
2208
+ exports.BatchUpdateFirewallRuleResult$ = BatchUpdateFirewallRuleResult$;
842
2209
  exports.BlockOverrideDnsQueryType = BlockOverrideDnsQueryType;
843
2210
  exports.CRResourceStatus = CRResourceStatus;
844
2211
  exports.ConfidenceThreshold = ConfidenceThreshold;
2212
+ exports.ConflictException = ConflictException;
2213
+ exports.ConflictException$ = ConflictException$;
2214
+ exports.CreateAccessSource$ = CreateAccessSource$;
845
2215
  exports.CreateAccessSourceCommand = CreateAccessSourceCommand;
2216
+ exports.CreateAccessSourceInput$ = CreateAccessSourceInput$;
2217
+ exports.CreateAccessSourceOutput$ = CreateAccessSourceOutput$;
2218
+ exports.CreateAccessToken$ = CreateAccessToken$;
846
2219
  exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
2220
+ exports.CreateAccessTokenInput$ = CreateAccessTokenInput$;
2221
+ exports.CreateAccessTokenOutput$ = CreateAccessTokenOutput$;
2222
+ exports.CreateDNSView$ = CreateDNSView$;
847
2223
  exports.CreateDNSViewCommand = CreateDNSViewCommand;
2224
+ exports.CreateDNSViewInput$ = CreateDNSViewInput$;
2225
+ exports.CreateDNSViewOutput$ = CreateDNSViewOutput$;
2226
+ exports.CreateFirewallDomainList$ = CreateFirewallDomainList$;
848
2227
  exports.CreateFirewallDomainListCommand = CreateFirewallDomainListCommand;
2228
+ exports.CreateFirewallDomainListInput$ = CreateFirewallDomainListInput$;
2229
+ exports.CreateFirewallDomainListOutput$ = CreateFirewallDomainListOutput$;
2230
+ exports.CreateFirewallRule$ = CreateFirewallRule$;
849
2231
  exports.CreateFirewallRuleCommand = CreateFirewallRuleCommand;
2232
+ exports.CreateFirewallRuleInput$ = CreateFirewallRuleInput$;
2233
+ exports.CreateFirewallRuleOutput$ = CreateFirewallRuleOutput$;
2234
+ exports.CreateGlobalResolver$ = CreateGlobalResolver$;
850
2235
  exports.CreateGlobalResolverCommand = CreateGlobalResolverCommand;
2236
+ exports.CreateGlobalResolverInput$ = CreateGlobalResolverInput$;
2237
+ exports.CreateGlobalResolverOutput$ = CreateGlobalResolverOutput$;
2238
+ exports.DNSViewSummary$ = DNSViewSummary$;
2239
+ exports.DeleteAccessSource$ = DeleteAccessSource$;
851
2240
  exports.DeleteAccessSourceCommand = DeleteAccessSourceCommand;
2241
+ exports.DeleteAccessSourceInput$ = DeleteAccessSourceInput$;
2242
+ exports.DeleteAccessSourceOutput$ = DeleteAccessSourceOutput$;
2243
+ exports.DeleteAccessToken$ = DeleteAccessToken$;
852
2244
  exports.DeleteAccessTokenCommand = DeleteAccessTokenCommand;
2245
+ exports.DeleteAccessTokenInput$ = DeleteAccessTokenInput$;
2246
+ exports.DeleteAccessTokenOutput$ = DeleteAccessTokenOutput$;
2247
+ exports.DeleteDNSView$ = DeleteDNSView$;
853
2248
  exports.DeleteDNSViewCommand = DeleteDNSViewCommand;
2249
+ exports.DeleteDNSViewInput$ = DeleteDNSViewInput$;
2250
+ exports.DeleteDNSViewOutput$ = DeleteDNSViewOutput$;
2251
+ exports.DeleteFirewallDomainList$ = DeleteFirewallDomainList$;
854
2252
  exports.DeleteFirewallDomainListCommand = DeleteFirewallDomainListCommand;
2253
+ exports.DeleteFirewallDomainListInput$ = DeleteFirewallDomainListInput$;
2254
+ exports.DeleteFirewallDomainListOutput$ = DeleteFirewallDomainListOutput$;
2255
+ exports.DeleteFirewallRule$ = DeleteFirewallRule$;
855
2256
  exports.DeleteFirewallRuleCommand = DeleteFirewallRuleCommand;
2257
+ exports.DeleteFirewallRuleInput$ = DeleteFirewallRuleInput$;
2258
+ exports.DeleteFirewallRuleOutput$ = DeleteFirewallRuleOutput$;
2259
+ exports.DeleteGlobalResolver$ = DeleteGlobalResolver$;
856
2260
  exports.DeleteGlobalResolverCommand = DeleteGlobalResolverCommand;
2261
+ exports.DeleteGlobalResolverInput$ = DeleteGlobalResolverInput$;
2262
+ exports.DeleteGlobalResolverOutput$ = DeleteGlobalResolverOutput$;
2263
+ exports.DisableDNSView$ = DisableDNSView$;
857
2264
  exports.DisableDNSViewCommand = DisableDNSViewCommand;
2265
+ exports.DisableDNSViewInput$ = DisableDNSViewInput$;
2266
+ exports.DisableDNSViewOutput$ = DisableDNSViewOutput$;
2267
+ exports.DisassociateHostedZone$ = DisassociateHostedZone$;
858
2268
  exports.DisassociateHostedZoneCommand = DisassociateHostedZoneCommand;
2269
+ exports.DisassociateHostedZoneInput$ = DisassociateHostedZoneInput$;
2270
+ exports.DisassociateHostedZoneOutput$ = DisassociateHostedZoneOutput$;
859
2271
  exports.DnsAdvancedProtection = DnsAdvancedProtection;
860
2272
  exports.DnsProtocol = DnsProtocol;
861
2273
  exports.DnsSecValidationType = DnsSecValidationType;
862
2274
  exports.EdnsClientSubnetType = EdnsClientSubnetType;
2275
+ exports.EnableDNSView$ = EnableDNSView$;
863
2276
  exports.EnableDNSViewCommand = EnableDNSViewCommand;
2277
+ exports.EnableDNSViewInput$ = EnableDNSViewInput$;
2278
+ exports.EnableDNSViewOutput$ = EnableDNSViewOutput$;
864
2279
  exports.FirewallBlockResponse = FirewallBlockResponse;
2280
+ exports.FirewallDomainListsItem$ = FirewallDomainListsItem$;
865
2281
  exports.FirewallRuleAction = FirewallRuleAction;
866
2282
  exports.FirewallRulesFailOpenType = FirewallRulesFailOpenType;
2283
+ exports.FirewallRulesItem$ = FirewallRulesItem$;
2284
+ exports.GetAccessSource$ = GetAccessSource$;
867
2285
  exports.GetAccessSourceCommand = GetAccessSourceCommand;
2286
+ exports.GetAccessSourceInput$ = GetAccessSourceInput$;
2287
+ exports.GetAccessSourceOutput$ = GetAccessSourceOutput$;
2288
+ exports.GetAccessToken$ = GetAccessToken$;
868
2289
  exports.GetAccessTokenCommand = GetAccessTokenCommand;
2290
+ exports.GetAccessTokenInput$ = GetAccessTokenInput$;
2291
+ exports.GetAccessTokenOutput$ = GetAccessTokenOutput$;
2292
+ exports.GetDNSView$ = GetDNSView$;
869
2293
  exports.GetDNSViewCommand = GetDNSViewCommand;
2294
+ exports.GetDNSViewInput$ = GetDNSViewInput$;
2295
+ exports.GetDNSViewOutput$ = GetDNSViewOutput$;
2296
+ exports.GetFirewallDomainList$ = GetFirewallDomainList$;
870
2297
  exports.GetFirewallDomainListCommand = GetFirewallDomainListCommand;
2298
+ exports.GetFirewallDomainListInput$ = GetFirewallDomainListInput$;
2299
+ exports.GetFirewallDomainListOutput$ = GetFirewallDomainListOutput$;
2300
+ exports.GetFirewallRule$ = GetFirewallRule$;
871
2301
  exports.GetFirewallRuleCommand = GetFirewallRuleCommand;
2302
+ exports.GetFirewallRuleInput$ = GetFirewallRuleInput$;
2303
+ exports.GetFirewallRuleOutput$ = GetFirewallRuleOutput$;
2304
+ exports.GetGlobalResolver$ = GetGlobalResolver$;
872
2305
  exports.GetGlobalResolverCommand = GetGlobalResolverCommand;
2306
+ exports.GetGlobalResolverInput$ = GetGlobalResolverInput$;
2307
+ exports.GetGlobalResolverOutput$ = GetGlobalResolverOutput$;
2308
+ exports.GetHostedZoneAssociation$ = GetHostedZoneAssociation$;
873
2309
  exports.GetHostedZoneAssociationCommand = GetHostedZoneAssociationCommand;
2310
+ exports.GetHostedZoneAssociationInput$ = GetHostedZoneAssociationInput$;
2311
+ exports.GetHostedZoneAssociationOutput$ = GetHostedZoneAssociationOutput$;
2312
+ exports.GetManagedFirewallDomainList$ = GetManagedFirewallDomainList$;
874
2313
  exports.GetManagedFirewallDomainListCommand = GetManagedFirewallDomainListCommand;
2314
+ exports.GetManagedFirewallDomainListInput$ = GetManagedFirewallDomainListInput$;
2315
+ exports.GetManagedFirewallDomainListOutput$ = GetManagedFirewallDomainListOutput$;
875
2316
  exports.GlobalResolverIpAddressType = GlobalResolverIpAddressType;
2317
+ exports.GlobalResolversItem$ = GlobalResolversItem$;
876
2318
  exports.HostedZoneAssociationStatus = HostedZoneAssociationStatus;
2319
+ exports.HostedZoneAssociationSummary$ = HostedZoneAssociationSummary$;
2320
+ exports.ImportFirewallDomains$ = ImportFirewallDomains$;
877
2321
  exports.ImportFirewallDomainsCommand = ImportFirewallDomainsCommand;
2322
+ exports.ImportFirewallDomainsInput$ = ImportFirewallDomainsInput$;
2323
+ exports.ImportFirewallDomainsOutput$ = ImportFirewallDomainsOutput$;
2324
+ exports.InternalServerException = InternalServerException;
2325
+ exports.InternalServerException$ = InternalServerException$;
878
2326
  exports.IpAddressType = IpAddressType;
2327
+ exports.ListAccessSources$ = ListAccessSources$;
879
2328
  exports.ListAccessSourcesCommand = ListAccessSourcesCommand;
2329
+ exports.ListAccessSourcesInput$ = ListAccessSourcesInput$;
2330
+ exports.ListAccessSourcesOutput$ = ListAccessSourcesOutput$;
2331
+ exports.ListAccessTokens$ = ListAccessTokens$;
880
2332
  exports.ListAccessTokensCommand = ListAccessTokensCommand;
2333
+ exports.ListAccessTokensInput$ = ListAccessTokensInput$;
2334
+ exports.ListAccessTokensOutput$ = ListAccessTokensOutput$;
2335
+ exports.ListDNSViews$ = ListDNSViews$;
881
2336
  exports.ListDNSViewsCommand = ListDNSViewsCommand;
2337
+ exports.ListDNSViewsInput$ = ListDNSViewsInput$;
2338
+ exports.ListDNSViewsOutput$ = ListDNSViewsOutput$;
2339
+ exports.ListFirewallDomainLists$ = ListFirewallDomainLists$;
882
2340
  exports.ListFirewallDomainListsCommand = ListFirewallDomainListsCommand;
2341
+ exports.ListFirewallDomainListsInput$ = ListFirewallDomainListsInput$;
2342
+ exports.ListFirewallDomainListsOutput$ = ListFirewallDomainListsOutput$;
2343
+ exports.ListFirewallDomains$ = ListFirewallDomains$;
883
2344
  exports.ListFirewallDomainsCommand = ListFirewallDomainsCommand;
2345
+ exports.ListFirewallDomainsInput$ = ListFirewallDomainsInput$;
2346
+ exports.ListFirewallDomainsOutput$ = ListFirewallDomainsOutput$;
2347
+ exports.ListFirewallRules$ = ListFirewallRules$;
884
2348
  exports.ListFirewallRulesCommand = ListFirewallRulesCommand;
2349
+ exports.ListFirewallRulesInput$ = ListFirewallRulesInput$;
2350
+ exports.ListFirewallRulesOutput$ = ListFirewallRulesOutput$;
2351
+ exports.ListGlobalResolvers$ = ListGlobalResolvers$;
885
2352
  exports.ListGlobalResolversCommand = ListGlobalResolversCommand;
2353
+ exports.ListGlobalResolversInput$ = ListGlobalResolversInput$;
2354
+ exports.ListGlobalResolversOutput$ = ListGlobalResolversOutput$;
2355
+ exports.ListHostedZoneAssociations$ = ListHostedZoneAssociations$;
886
2356
  exports.ListHostedZoneAssociationsCommand = ListHostedZoneAssociationsCommand;
2357
+ exports.ListHostedZoneAssociationsInput$ = ListHostedZoneAssociationsInput$;
2358
+ exports.ListHostedZoneAssociationsOutput$ = ListHostedZoneAssociationsOutput$;
2359
+ exports.ListManagedFirewallDomainLists$ = ListManagedFirewallDomainLists$;
887
2360
  exports.ListManagedFirewallDomainListsCommand = ListManagedFirewallDomainListsCommand;
2361
+ exports.ListManagedFirewallDomainListsInput$ = ListManagedFirewallDomainListsInput$;
2362
+ exports.ListManagedFirewallDomainListsOutput$ = ListManagedFirewallDomainListsOutput$;
2363
+ exports.ListTagsForResource$ = ListTagsForResource$;
888
2364
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2365
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2366
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2367
+ exports.ManagedFirewallDomainListsItem$ = ManagedFirewallDomainListsItem$;
889
2368
  exports.ProfileResourceStatus = ProfileResourceStatus;
2369
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2370
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
890
2371
  exports.Route53GlobalResolver = Route53GlobalResolver;
891
2372
  exports.Route53GlobalResolverClient = Route53GlobalResolverClient;
2373
+ exports.Route53GlobalResolverServiceException = Route53GlobalResolverServiceException;
2374
+ exports.Route53GlobalResolverServiceException$ = Route53GlobalResolverServiceException$;
2375
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2376
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2377
+ exports.TagResource$ = TagResource$;
892
2378
  exports.TagResourceCommand = TagResourceCommand;
2379
+ exports.TagResourceRequest$ = TagResourceRequest$;
2380
+ exports.TagResourceResponse$ = TagResourceResponse$;
2381
+ exports.ThrottlingException = ThrottlingException;
2382
+ exports.ThrottlingException$ = ThrottlingException$;
893
2383
  exports.TokenStatus = TokenStatus;
2384
+ exports.UntagResource$ = UntagResource$;
894
2385
  exports.UntagResourceCommand = UntagResourceCommand;
2386
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2387
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2388
+ exports.UpdateAccessSource$ = UpdateAccessSource$;
895
2389
  exports.UpdateAccessSourceCommand = UpdateAccessSourceCommand;
2390
+ exports.UpdateAccessSourceInput$ = UpdateAccessSourceInput$;
2391
+ exports.UpdateAccessSourceOutput$ = UpdateAccessSourceOutput$;
2392
+ exports.UpdateAccessToken$ = UpdateAccessToken$;
896
2393
  exports.UpdateAccessTokenCommand = UpdateAccessTokenCommand;
2394
+ exports.UpdateAccessTokenInput$ = UpdateAccessTokenInput$;
2395
+ exports.UpdateAccessTokenOutput$ = UpdateAccessTokenOutput$;
2396
+ exports.UpdateDNSView$ = UpdateDNSView$;
897
2397
  exports.UpdateDNSViewCommand = UpdateDNSViewCommand;
2398
+ exports.UpdateDNSViewInput$ = UpdateDNSViewInput$;
2399
+ exports.UpdateDNSViewOutput$ = UpdateDNSViewOutput$;
2400
+ exports.UpdateFirewallDomains$ = UpdateFirewallDomains$;
898
2401
  exports.UpdateFirewallDomainsCommand = UpdateFirewallDomainsCommand;
2402
+ exports.UpdateFirewallDomainsInput$ = UpdateFirewallDomainsInput$;
2403
+ exports.UpdateFirewallDomainsOutput$ = UpdateFirewallDomainsOutput$;
2404
+ exports.UpdateFirewallRule$ = UpdateFirewallRule$;
899
2405
  exports.UpdateFirewallRuleCommand = UpdateFirewallRuleCommand;
2406
+ exports.UpdateFirewallRuleInput$ = UpdateFirewallRuleInput$;
2407
+ exports.UpdateFirewallRuleOutput$ = UpdateFirewallRuleOutput$;
2408
+ exports.UpdateGlobalResolver$ = UpdateGlobalResolver$;
900
2409
  exports.UpdateGlobalResolverCommand = UpdateGlobalResolverCommand;
2410
+ exports.UpdateGlobalResolverInput$ = UpdateGlobalResolverInput$;
2411
+ exports.UpdateGlobalResolverOutput$ = UpdateGlobalResolverOutput$;
2412
+ exports.UpdateHostedZoneAssociation$ = UpdateHostedZoneAssociation$;
901
2413
  exports.UpdateHostedZoneAssociationCommand = UpdateHostedZoneAssociationCommand;
2414
+ exports.UpdateHostedZoneAssociationInput$ = UpdateHostedZoneAssociationInput$;
2415
+ exports.UpdateHostedZoneAssociationOutput$ = UpdateHostedZoneAssociationOutput$;
2416
+ exports.ValidationException = ValidationException;
2417
+ exports.ValidationException$ = ValidationException$;
2418
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
902
2419
  exports.ValidationExceptionReason = ValidationExceptionReason;
2420
+ exports.errorTypeRegistries = errorTypeRegistries;
903
2421
  exports.paginateListAccessSources = paginateListAccessSources;
904
2422
  exports.paginateListAccessTokens = paginateListAccessTokens;
905
2423
  exports.paginateListDNSViews = paginateListDNSViews;