@aws-sdk/client-route53globalresolver 3.987.0 → 3.989.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 +66 -1410
- package/dist-cjs/models/Route53GlobalResolverServiceException.js +12 -0
- package/dist-cjs/models/errors.js +127 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1087 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +91 -85
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var Route53GlobalResolverServiceException = require('./models/Route53GlobalResolverServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -108,1194 +111,6 @@ class Route53GlobalResolverClient extends smithyClient.Client {
|
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class Route53GlobalResolverServiceException extends smithyClient.ServiceException {
|
|
112
|
-
constructor(options) {
|
|
113
|
-
super(options);
|
|
114
|
-
Object.setPrototypeOf(this, Route53GlobalResolverServiceException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
class AccessDeniedException extends Route53GlobalResolverServiceException {
|
|
119
|
-
name = "AccessDeniedException";
|
|
120
|
-
$fault = "client";
|
|
121
|
-
constructor(opts) {
|
|
122
|
-
super({
|
|
123
|
-
name: "AccessDeniedException",
|
|
124
|
-
$fault: "client",
|
|
125
|
-
...opts,
|
|
126
|
-
});
|
|
127
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
class ConflictException extends Route53GlobalResolverServiceException {
|
|
131
|
-
name = "ConflictException";
|
|
132
|
-
$fault = "client";
|
|
133
|
-
resourceId;
|
|
134
|
-
resourceType;
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ConflictException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
|
-
this.resourceId = opts.resourceId;
|
|
143
|
-
this.resourceType = opts.resourceType;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class InternalServerException extends Route53GlobalResolverServiceException {
|
|
147
|
-
name = "InternalServerException";
|
|
148
|
-
$fault = "server";
|
|
149
|
-
$retryable = {};
|
|
150
|
-
retryAfterSeconds;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "InternalServerException",
|
|
154
|
-
$fault: "server",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
158
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ResourceNotFoundException extends Route53GlobalResolverServiceException {
|
|
162
|
-
name = "ResourceNotFoundException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
resourceId;
|
|
165
|
-
resourceType;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ResourceNotFoundException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
-
this.resourceId = opts.resourceId;
|
|
174
|
-
this.resourceType = opts.resourceType;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ServiceQuotaExceededException extends Route53GlobalResolverServiceException {
|
|
178
|
-
name = "ServiceQuotaExceededException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
resourceId;
|
|
181
|
-
resourceType;
|
|
182
|
-
serviceCode;
|
|
183
|
-
quotaCode;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ServiceQuotaExceededException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
191
|
-
this.resourceId = opts.resourceId;
|
|
192
|
-
this.resourceType = opts.resourceType;
|
|
193
|
-
this.serviceCode = opts.serviceCode;
|
|
194
|
-
this.quotaCode = opts.quotaCode;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
class ThrottlingException extends Route53GlobalResolverServiceException {
|
|
198
|
-
name = "ThrottlingException";
|
|
199
|
-
$fault = "client";
|
|
200
|
-
$retryable = {
|
|
201
|
-
throttling: true,
|
|
202
|
-
};
|
|
203
|
-
serviceCode;
|
|
204
|
-
quotaCode;
|
|
205
|
-
retryAfterSeconds;
|
|
206
|
-
constructor(opts) {
|
|
207
|
-
super({
|
|
208
|
-
name: "ThrottlingException",
|
|
209
|
-
$fault: "client",
|
|
210
|
-
...opts,
|
|
211
|
-
});
|
|
212
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
213
|
-
this.serviceCode = opts.serviceCode;
|
|
214
|
-
this.quotaCode = opts.quotaCode;
|
|
215
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class ValidationException extends Route53GlobalResolverServiceException {
|
|
219
|
-
name = "ValidationException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
reason;
|
|
222
|
-
fieldList;
|
|
223
|
-
constructor(opts) {
|
|
224
|
-
super({
|
|
225
|
-
name: "ValidationException",
|
|
226
|
-
$fault: "client",
|
|
227
|
-
...opts,
|
|
228
|
-
});
|
|
229
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
230
|
-
this.reason = opts.reason;
|
|
231
|
-
this.fieldList = opts.fieldList;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
const _ADE = "AccessDeniedException";
|
|
236
|
-
const _AHZ = "AssociateHostedZone";
|
|
237
|
-
const _AHZI = "AssociateHostedZoneInput";
|
|
238
|
-
const _AHZO = "AssociateHostedZoneOutput";
|
|
239
|
-
const _AS = "AccessSources";
|
|
240
|
-
const _ASI = "AccessSourcesItem";
|
|
241
|
-
const _AT = "AccessTokens";
|
|
242
|
-
const _ATI = "AccessTokenItem";
|
|
243
|
-
const _ATV = "AccessTokenValue";
|
|
244
|
-
const _BCFR = "BatchCreateFirewallRule";
|
|
245
|
-
const _BCFRI = "BatchCreateFirewallRuleInput";
|
|
246
|
-
const _BCFRII = "BatchCreateFirewallRuleInputItem";
|
|
247
|
-
const _BCFRIIa = "BatchCreateFirewallRuleInputItems";
|
|
248
|
-
const _BCFRO = "BatchCreateFirewallRuleOutput";
|
|
249
|
-
const _BCFROI = "BatchCreateFirewallRuleOutputItem";
|
|
250
|
-
const _BCFROIa = "BatchCreateFirewallRuleOutputItems";
|
|
251
|
-
const _BCFRR = "BatchCreateFirewallRuleResult";
|
|
252
|
-
const _BDFR = "BatchDeleteFirewallRule";
|
|
253
|
-
const _BDFRI = "BatchDeleteFirewallRuleInput";
|
|
254
|
-
const _BDFRII = "BatchDeleteFirewallRuleInputItem";
|
|
255
|
-
const _BDFRIIa = "BatchDeleteFirewallRuleInputItems";
|
|
256
|
-
const _BDFRO = "BatchDeleteFirewallRuleOutput";
|
|
257
|
-
const _BDFROI = "BatchDeleteFirewallRuleOutputItem";
|
|
258
|
-
const _BDFROIa = "BatchDeleteFirewallRuleOutputItems";
|
|
259
|
-
const _BDFRR = "BatchDeleteFirewallRuleResult";
|
|
260
|
-
const _BUFR = "BatchUpdateFirewallRule";
|
|
261
|
-
const _BUFRI = "BatchUpdateFirewallRuleInput";
|
|
262
|
-
const _BUFRII = "BatchUpdateFirewallRuleInputItem";
|
|
263
|
-
const _BUFRIIa = "BatchUpdateFirewallRuleInputItems";
|
|
264
|
-
const _BUFRO = "BatchUpdateFirewallRuleOutput";
|
|
265
|
-
const _BUFROI = "BatchUpdateFirewallRuleOutputItem";
|
|
266
|
-
const _BUFROIa = "BatchUpdateFirewallRuleOutputItems";
|
|
267
|
-
const _BUFRR = "BatchUpdateFirewallRuleResult";
|
|
268
|
-
const _CAS = "CreateAccessSource";
|
|
269
|
-
const _CASI = "CreateAccessSourceInput";
|
|
270
|
-
const _CASO = "CreateAccessSourceOutput";
|
|
271
|
-
const _CAT = "CreateAccessToken";
|
|
272
|
-
const _CATI = "CreateAccessTokenInput";
|
|
273
|
-
const _CATO = "CreateAccessTokenOutput";
|
|
274
|
-
const _CDNSV = "CreateDNSView";
|
|
275
|
-
const _CDNSVI = "CreateDNSViewInput";
|
|
276
|
-
const _CDNSVO = "CreateDNSViewOutput";
|
|
277
|
-
const _CE = "ConflictException";
|
|
278
|
-
const _CFDL = "CreateFirewallDomainList";
|
|
279
|
-
const _CFDLI = "CreateFirewallDomainListInput";
|
|
280
|
-
const _CFDLO = "CreateFirewallDomainListOutput";
|
|
281
|
-
const _CFR = "CreateFirewallRule";
|
|
282
|
-
const _CFRI = "CreateFirewallRuleInput";
|
|
283
|
-
const _CFRO = "CreateFirewallRuleOutput";
|
|
284
|
-
const _CGR = "CreateGlobalResolver";
|
|
285
|
-
const _CGRI = "CreateGlobalResolverInput";
|
|
286
|
-
const _CGRO = "CreateGlobalResolverOutput";
|
|
287
|
-
const _DAS = "DeleteAccessSource";
|
|
288
|
-
const _DASI = "DeleteAccessSourceInput";
|
|
289
|
-
const _DASO = "DeleteAccessSourceOutput";
|
|
290
|
-
const _DAT = "DeleteAccessToken";
|
|
291
|
-
const _DATI = "DeleteAccessTokenInput";
|
|
292
|
-
const _DATO = "DeleteAccessTokenOutput";
|
|
293
|
-
const _DDNSV = "DeleteDNSView";
|
|
294
|
-
const _DDNSVI = "DeleteDNSViewInput";
|
|
295
|
-
const _DDNSVIi = "DisableDNSViewInput";
|
|
296
|
-
const _DDNSVO = "DeleteDNSViewOutput";
|
|
297
|
-
const _DDNSVOi = "DisableDNSViewOutput";
|
|
298
|
-
const _DDNSVi = "DisableDNSView";
|
|
299
|
-
const _DFDL = "DeleteFirewallDomainList";
|
|
300
|
-
const _DFDLI = "DeleteFirewallDomainListInput";
|
|
301
|
-
const _DFDLO = "DeleteFirewallDomainListOutput";
|
|
302
|
-
const _DFR = "DeleteFirewallRule";
|
|
303
|
-
const _DFRI = "DeleteFirewallRuleInput";
|
|
304
|
-
const _DFRO = "DeleteFirewallRuleOutput";
|
|
305
|
-
const _DGR = "DeleteGlobalResolver";
|
|
306
|
-
const _DGRI = "DeleteGlobalResolverInput";
|
|
307
|
-
const _DGRO = "DeleteGlobalResolverOutput";
|
|
308
|
-
const _DHZ = "DisassociateHostedZone";
|
|
309
|
-
const _DHZI = "DisassociateHostedZoneInput";
|
|
310
|
-
const _DHZO = "DisassociateHostedZoneOutput";
|
|
311
|
-
const _DNSV = "DNSViews";
|
|
312
|
-
const _DNSVS = "DNSViewSummary";
|
|
313
|
-
const _EDNSV = "EnableDNSView";
|
|
314
|
-
const _EDNSVI = "EnableDNSViewInput";
|
|
315
|
-
const _EDNSVO = "EnableDNSViewOutput";
|
|
316
|
-
const _F = "Filters";
|
|
317
|
-
const _FDL = "FirewallDomainLists";
|
|
318
|
-
const _FDLI = "FirewallDomainListsItem";
|
|
319
|
-
const _FR = "FirewallRules";
|
|
320
|
-
const _FRI = "FirewallRulesItem";
|
|
321
|
-
const _GAS = "GetAccessSource";
|
|
322
|
-
const _GASI = "GetAccessSourceInput";
|
|
323
|
-
const _GASO = "GetAccessSourceOutput";
|
|
324
|
-
const _GAT = "GetAccessToken";
|
|
325
|
-
const _GATI = "GetAccessTokenInput";
|
|
326
|
-
const _GATO = "GetAccessTokenOutput";
|
|
327
|
-
const _GDNSV = "GetDNSView";
|
|
328
|
-
const _GDNSVI = "GetDNSViewInput";
|
|
329
|
-
const _GDNSVO = "GetDNSViewOutput";
|
|
330
|
-
const _GFDL = "GetFirewallDomainList";
|
|
331
|
-
const _GFDLI = "GetFirewallDomainListInput";
|
|
332
|
-
const _GFDLO = "GetFirewallDomainListOutput";
|
|
333
|
-
const _GFR = "GetFirewallRule";
|
|
334
|
-
const _GFRI = "GetFirewallRuleInput";
|
|
335
|
-
const _GFRO = "GetFirewallRuleOutput";
|
|
336
|
-
const _GGR = "GetGlobalResolver";
|
|
337
|
-
const _GGRI = "GetGlobalResolverInput";
|
|
338
|
-
const _GGRO = "GetGlobalResolverOutput";
|
|
339
|
-
const _GHZA = "GetHostedZoneAssociation";
|
|
340
|
-
const _GHZAI = "GetHostedZoneAssociationInput";
|
|
341
|
-
const _GHZAO = "GetHostedZoneAssociationOutput";
|
|
342
|
-
const _GMFDL = "GetManagedFirewallDomainList";
|
|
343
|
-
const _GMFDLI = "GetManagedFirewallDomainListInput";
|
|
344
|
-
const _GMFDLO = "GetManagedFirewallDomainListOutput";
|
|
345
|
-
const _GR = "GlobalResolvers";
|
|
346
|
-
const _GRI = "GlobalResolversItem";
|
|
347
|
-
const _HZA = "HostedZoneAssociations";
|
|
348
|
-
const _HZAS = "HostedZoneAssociationSummary";
|
|
349
|
-
const _IFD = "ImportFirewallDomains";
|
|
350
|
-
const _IFDI = "ImportFirewallDomainsInput";
|
|
351
|
-
const _IFDO = "ImportFirewallDomainsOutput";
|
|
352
|
-
const _ISE = "InternalServerException";
|
|
353
|
-
const _LAS = "ListAccessSources";
|
|
354
|
-
const _LASI = "ListAccessSourcesInput";
|
|
355
|
-
const _LASO = "ListAccessSourcesOutput";
|
|
356
|
-
const _LAT = "ListAccessTokens";
|
|
357
|
-
const _LATI = "ListAccessTokensInput";
|
|
358
|
-
const _LATO = "ListAccessTokensOutput";
|
|
359
|
-
const _LDNSV = "ListDNSViews";
|
|
360
|
-
const _LDNSVI = "ListDNSViewsInput";
|
|
361
|
-
const _LDNSVO = "ListDNSViewsOutput";
|
|
362
|
-
const _LFD = "ListFirewallDomains";
|
|
363
|
-
const _LFDI = "ListFirewallDomainsInput";
|
|
364
|
-
const _LFDL = "ListFirewallDomainLists";
|
|
365
|
-
const _LFDLI = "ListFirewallDomainListsInput";
|
|
366
|
-
const _LFDLO = "ListFirewallDomainListsOutput";
|
|
367
|
-
const _LFDO = "ListFirewallDomainsOutput";
|
|
368
|
-
const _LFR = "ListFirewallRules";
|
|
369
|
-
const _LFRI = "ListFirewallRulesInput";
|
|
370
|
-
const _LFRO = "ListFirewallRulesOutput";
|
|
371
|
-
const _LGR = "ListGlobalResolvers";
|
|
372
|
-
const _LGRI = "ListGlobalResolversInput";
|
|
373
|
-
const _LGRO = "ListGlobalResolversOutput";
|
|
374
|
-
const _LHZA = "ListHostedZoneAssociations";
|
|
375
|
-
const _LHZAI = "ListHostedZoneAssociationsInput";
|
|
376
|
-
const _LHZAO = "ListHostedZoneAssociationsOutput";
|
|
377
|
-
const _LMFDL = "ListManagedFirewallDomainLists";
|
|
378
|
-
const _LMFDLI = "ListManagedFirewallDomainListsInput";
|
|
379
|
-
const _LMFDLO = "ListManagedFirewallDomainListsOutput";
|
|
380
|
-
const _LTFR = "ListTagsForResource";
|
|
381
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
382
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
383
|
-
const _MFDL = "ManagedFirewallDomainLists";
|
|
384
|
-
const _MFDLI = "ManagedFirewallDomainListsItem";
|
|
385
|
-
const _RA = "Retry-After";
|
|
386
|
-
const _RNFE = "ResourceNotFoundException";
|
|
387
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
388
|
-
const _TE = "ThrottlingException";
|
|
389
|
-
const _TR = "TagResource";
|
|
390
|
-
const _TRR = "TagResourceRequest";
|
|
391
|
-
const _TRRa = "TagResourceResponse";
|
|
392
|
-
const _UAS = "UpdateAccessSource";
|
|
393
|
-
const _UASI = "UpdateAccessSourceInput";
|
|
394
|
-
const _UASO = "UpdateAccessSourceOutput";
|
|
395
|
-
const _UAT = "UpdateAccessToken";
|
|
396
|
-
const _UATI = "UpdateAccessTokenInput";
|
|
397
|
-
const _UATO = "UpdateAccessTokenOutput";
|
|
398
|
-
const _UDNSV = "UpdateDNSView";
|
|
399
|
-
const _UDNSVI = "UpdateDNSViewInput";
|
|
400
|
-
const _UDNSVO = "UpdateDNSViewOutput";
|
|
401
|
-
const _UFD = "UpdateFirewallDomains";
|
|
402
|
-
const _UFDI = "UpdateFirewallDomainsInput";
|
|
403
|
-
const _UFDO = "UpdateFirewallDomainsOutput";
|
|
404
|
-
const _UFR = "UpdateFirewallRule";
|
|
405
|
-
const _UFRI = "UpdateFirewallRuleInput";
|
|
406
|
-
const _UFRO = "UpdateFirewallRuleOutput";
|
|
407
|
-
const _UGR = "UpdateGlobalResolver";
|
|
408
|
-
const _UGRI = "UpdateGlobalResolverInput";
|
|
409
|
-
const _UGRO = "UpdateGlobalResolverOutput";
|
|
410
|
-
const _UHZA = "UpdateHostedZoneAssociation";
|
|
411
|
-
const _UHZAI = "UpdateHostedZoneAssociationInput";
|
|
412
|
-
const _UHZAO = "UpdateHostedZoneAssociationOutput";
|
|
413
|
-
const _UR = "UntagResource";
|
|
414
|
-
const _URR = "UntagResourceRequest";
|
|
415
|
-
const _URRn = "UntagResourceResponse";
|
|
416
|
-
const _VE = "ValidationException";
|
|
417
|
-
const _VEF = "ValidationExceptionField";
|
|
418
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
419
|
-
const _a = "arn";
|
|
420
|
-
const _aS = "accessSources";
|
|
421
|
-
const _aSI = "accessSourceId";
|
|
422
|
-
const _aT = "accessTokens";
|
|
423
|
-
const _aTI = "accessTokenId";
|
|
424
|
-
const _ac = "action";
|
|
425
|
-
const _bOD = "blockOverrideDomain";
|
|
426
|
-
const _bODT = "blockOverrideDnsType";
|
|
427
|
-
const _bOT = "blockOverrideTtl";
|
|
428
|
-
const _bR = "blockResponse";
|
|
429
|
-
const _c = "client";
|
|
430
|
-
const _cA = "createdAt";
|
|
431
|
-
const _cT = "clientToken";
|
|
432
|
-
const _cTo = "confidenceThreshold";
|
|
433
|
-
const _ci = "cidr";
|
|
434
|
-
const _co = "code";
|
|
435
|
-
const _d = "description";
|
|
436
|
-
const _dA = "deletedAt";
|
|
437
|
-
const _dAP = "dnsAdvancedProtection";
|
|
438
|
-
const _dC = "domainCount";
|
|
439
|
-
const _dFU = "domainFileUrl";
|
|
440
|
-
const _dN = "dnsName";
|
|
441
|
-
const _dV = "dnssecValidation";
|
|
442
|
-
const _dVI = "dnsViewId";
|
|
443
|
-
const _dVn = "dnsViews";
|
|
444
|
-
const _di = "dnsview_id";
|
|
445
|
-
const _do = "domains";
|
|
446
|
-
const _e = "error";
|
|
447
|
-
const _eA = "expiresAt";
|
|
448
|
-
const _eCS = "ednsClientSubnet";
|
|
449
|
-
const _f = "failures";
|
|
450
|
-
const _fDL = "firewallDomainLists";
|
|
451
|
-
const _fDLI = "firewallDomainListId";
|
|
452
|
-
const _fL = "fieldList";
|
|
453
|
-
const _fR = "firewallRules";
|
|
454
|
-
const _fRFO = "firewallRulesFailOpen";
|
|
455
|
-
const _fRI = "firewallRuleId";
|
|
456
|
-
const _fRi = "firewallRule";
|
|
457
|
-
const _fi = "filters";
|
|
458
|
-
const _gR = "globalResolvers";
|
|
459
|
-
const _gRI = "globalResolverId";
|
|
460
|
-
const _gri = "global_resolver_id";
|
|
461
|
-
const _h = "http";
|
|
462
|
-
const _hE = "httpError";
|
|
463
|
-
const _hH = "httpHeader";
|
|
464
|
-
const _hQ = "httpQuery";
|
|
465
|
-
const _hZA = "hostedZoneAssociations";
|
|
466
|
-
const _hZAI = "hostedZoneAssociationId";
|
|
467
|
-
const _hZI = "hostedZoneId";
|
|
468
|
-
const _hZN = "hostedZoneName";
|
|
469
|
-
const _i = "id";
|
|
470
|
-
const _iA = "ipv4Addresses";
|
|
471
|
-
const _iAT = "ipAddressType";
|
|
472
|
-
const _m = "message";
|
|
473
|
-
const _mDLN = "managedDomainListName";
|
|
474
|
-
const _mFDL = "managedFirewallDomainLists";
|
|
475
|
-
const _mFDLI = "managedFirewallDomainListId";
|
|
476
|
-
const _mFDLT = "managedFirewallDomainListType";
|
|
477
|
-
const _mLT = "managedListType";
|
|
478
|
-
const _mR = "maxResults";
|
|
479
|
-
const _mr = "max_results";
|
|
480
|
-
const _n = "name";
|
|
481
|
-
const _nT = "nextToken";
|
|
482
|
-
const _nt = "next_token";
|
|
483
|
-
const _o = "operation";
|
|
484
|
-
const _oR = "observabilityRegion";
|
|
485
|
-
const _p = "protocol";
|
|
486
|
-
const _pr = "priority";
|
|
487
|
-
const _qC = "quotaCode";
|
|
488
|
-
const _qT = "qType";
|
|
489
|
-
const _qTu = "queryType";
|
|
490
|
-
const _r = "regions";
|
|
491
|
-
const _rA = "resourceArn";
|
|
492
|
-
const _rAS = "retryAfterSeconds";
|
|
493
|
-
const _rI = "resourceId";
|
|
494
|
-
const _rT = "resourceType";
|
|
495
|
-
const _re = "reason";
|
|
496
|
-
const _s = "status";
|
|
497
|
-
const _sC = "serviceCode";
|
|
498
|
-
const _sM = "statusMessage";
|
|
499
|
-
const _se = "server";
|
|
500
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53globalresolver";
|
|
501
|
-
const _su = "successes";
|
|
502
|
-
const _t = "tags";
|
|
503
|
-
const _tK = "tagKeys";
|
|
504
|
-
const _uA = "updatedAt";
|
|
505
|
-
const _v = "value";
|
|
506
|
-
const n0 = "com.amazonaws.route53globalresolver";
|
|
507
|
-
var AccessTokenValue = [0, n0, _ATV, 8, 0];
|
|
508
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
509
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
510
|
-
[_m],
|
|
511
|
-
[0], 1
|
|
512
|
-
];
|
|
513
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
514
|
-
var AccessSourcesItem$ = [3, n0, _ASI,
|
|
515
|
-
0,
|
|
516
|
-
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _s, _uA, _n],
|
|
517
|
-
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
518
|
-
];
|
|
519
|
-
var AccessTokenItem$ = [3, n0, _ATI,
|
|
520
|
-
0,
|
|
521
|
-
[_i, _a, _cA, _dVI, _eA, _gRI, _s, _uA, _n],
|
|
522
|
-
[0, 0, 5, 0, 5, 0, 0, 5, 0], 8
|
|
523
|
-
];
|
|
524
|
-
var AssociateHostedZoneInput$ = [3, n0, _AHZI,
|
|
525
|
-
0,
|
|
526
|
-
[_hZI, _rA, _n],
|
|
527
|
-
[[0, 1], 0, 0], 3
|
|
528
|
-
];
|
|
529
|
-
var AssociateHostedZoneOutput$ = [3, n0, _AHZO,
|
|
530
|
-
0,
|
|
531
|
-
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
532
|
-
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
533
|
-
];
|
|
534
|
-
var BatchCreateFirewallRuleInput$ = [3, n0, _BCFRI,
|
|
535
|
-
0,
|
|
536
|
-
[_fR],
|
|
537
|
-
[() => BatchCreateFirewallRuleInputItems], 1
|
|
538
|
-
];
|
|
539
|
-
var BatchCreateFirewallRuleInputItem$ = [3, n0, _BCFRII,
|
|
540
|
-
0,
|
|
541
|
-
[_ac, _cT, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _pr, _qT],
|
|
542
|
-
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], 4
|
|
543
|
-
];
|
|
544
|
-
var BatchCreateFirewallRuleOutput$ = [3, n0, _BCFRO,
|
|
545
|
-
0,
|
|
546
|
-
[_f, _su],
|
|
547
|
-
[() => BatchCreateFirewallRuleOutputItems, () => BatchCreateFirewallRuleOutputItems], 2
|
|
548
|
-
];
|
|
549
|
-
var BatchCreateFirewallRuleOutputItem$ = [3, n0, _BCFROI,
|
|
550
|
-
0,
|
|
551
|
-
[_fRi, _co, _m],
|
|
552
|
-
[() => BatchCreateFirewallRuleResult$, 1, 0], 2
|
|
553
|
-
];
|
|
554
|
-
var BatchCreateFirewallRuleResult$ = [3, n0, _BCFRR,
|
|
555
|
-
0,
|
|
556
|
-
[_ac, _cT, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _mDLN, _pr, _qTu, _s, _uA],
|
|
557
|
-
[0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 5], 4
|
|
558
|
-
];
|
|
559
|
-
var BatchDeleteFirewallRuleInput$ = [3, n0, _BDFRI,
|
|
560
|
-
0,
|
|
561
|
-
[_fR],
|
|
562
|
-
[() => BatchDeleteFirewallRuleInputItems], 1
|
|
563
|
-
];
|
|
564
|
-
var BatchDeleteFirewallRuleInputItem$ = [3, n0, _BDFRII,
|
|
565
|
-
0,
|
|
566
|
-
[_fRI],
|
|
567
|
-
[0], 1
|
|
568
|
-
];
|
|
569
|
-
var BatchDeleteFirewallRuleOutput$ = [3, n0, _BDFRO,
|
|
570
|
-
0,
|
|
571
|
-
[_f, _su],
|
|
572
|
-
[() => BatchDeleteFirewallRuleOutputItems, () => BatchDeleteFirewallRuleOutputItems], 2
|
|
573
|
-
];
|
|
574
|
-
var BatchDeleteFirewallRuleOutputItem$ = [3, n0, _BDFROI,
|
|
575
|
-
0,
|
|
576
|
-
[_fRi, _co, _m],
|
|
577
|
-
[() => BatchDeleteFirewallRuleResult$, 1, 0], 2
|
|
578
|
-
];
|
|
579
|
-
var BatchDeleteFirewallRuleResult$ = [3, n0, _BDFRR,
|
|
580
|
-
0,
|
|
581
|
-
[_i, _cT, _n, _s],
|
|
582
|
-
[0, 0, 0, 0], 1
|
|
583
|
-
];
|
|
584
|
-
var BatchUpdateFirewallRuleInput$ = [3, n0, _BUFRI,
|
|
585
|
-
0,
|
|
586
|
-
[_fR],
|
|
587
|
-
[() => BatchUpdateFirewallRuleInputItems], 1
|
|
588
|
-
];
|
|
589
|
-
var BatchUpdateFirewallRuleInputItem$ = [3, n0, _BUFRII,
|
|
590
|
-
0,
|
|
591
|
-
[_fRI, _ac, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _n, _pr],
|
|
592
|
-
[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], 1
|
|
593
|
-
];
|
|
594
|
-
var BatchUpdateFirewallRuleOutput$ = [3, n0, _BUFRO,
|
|
595
|
-
0,
|
|
596
|
-
[_f, _su],
|
|
597
|
-
[() => BatchUpdateFirewallRuleOutputItems, () => BatchUpdateFirewallRuleOutputItems], 2
|
|
598
|
-
];
|
|
599
|
-
var BatchUpdateFirewallRuleOutputItem$ = [3, n0, _BUFROI,
|
|
600
|
-
0,
|
|
601
|
-
[_fRi, _co, _m],
|
|
602
|
-
[() => BatchUpdateFirewallRuleResult$, 1, 0], 2
|
|
603
|
-
];
|
|
604
|
-
var BatchUpdateFirewallRuleResult$ = [3, n0, _BUFRR,
|
|
605
|
-
0,
|
|
606
|
-
[_i, _ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _cA, _d, _dAP, _fDLI, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
607
|
-
[0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 5], 1
|
|
608
|
-
];
|
|
609
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
610
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
611
|
-
[_m, _rT, _rI],
|
|
612
|
-
[0, 0, 0], 2
|
|
613
|
-
];
|
|
614
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
615
|
-
var CreateAccessSourceInput$ = [3, n0, _CASI,
|
|
616
|
-
0,
|
|
617
|
-
[_ci, _dVI, _p, _cT, _iAT, _n, _t],
|
|
618
|
-
[0, 0, 0, [0, 4], 0, 0, 128 | 0], 3
|
|
619
|
-
];
|
|
620
|
-
var CreateAccessSourceOutput$ = [3, n0, _CASO,
|
|
621
|
-
0,
|
|
622
|
-
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _s, _uA, _n],
|
|
623
|
-
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
624
|
-
];
|
|
625
|
-
var CreateAccessTokenInput$ = [3, n0, _CATI,
|
|
626
|
-
0,
|
|
627
|
-
[_dVI, _cT, _eA, _n, _t],
|
|
628
|
-
[[0, 1], [0, 4], 5, 0, 128 | 0], 1
|
|
629
|
-
];
|
|
630
|
-
var CreateAccessTokenOutput$ = [3, n0, _CATO,
|
|
631
|
-
0,
|
|
632
|
-
[_i, _a, _cA, _dVI, _eA, _s, _v, _cT, _n],
|
|
633
|
-
[0, 0, 5, 0, 5, 0, [() => AccessTokenValue, 0], 0, 0], 7
|
|
634
|
-
];
|
|
635
|
-
var CreateDNSViewInput$ = [3, n0, _CDNSVI,
|
|
636
|
-
0,
|
|
637
|
-
[_gRI, _n, _cT, _dV, _eCS, _fRFO, _d, _t],
|
|
638
|
-
[[0, 1], 0, [0, 4], 0, 0, 0, 0, 128 | 0], 2
|
|
639
|
-
];
|
|
640
|
-
var CreateDNSViewOutput$ = [3, n0, _CDNSVO,
|
|
641
|
-
0,
|
|
642
|
-
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _s, _cT, _d],
|
|
643
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
644
|
-
];
|
|
645
|
-
var CreateFirewallDomainListInput$ = [3, n0, _CFDLI,
|
|
646
|
-
0,
|
|
647
|
-
[_gRI, _n, _cT, _d, _t],
|
|
648
|
-
[[0, 1], 0, [0, 4], 0, 128 | 0], 2
|
|
649
|
-
];
|
|
650
|
-
var CreateFirewallDomainListOutput$ = [3, n0, _CFDLO,
|
|
651
|
-
0,
|
|
652
|
-
[_a, _gRI, _cA, _dC, _i, _n, _s, _uA, _d],
|
|
653
|
-
[0, 0, 5, 1, 0, 0, 0, 5, 0], 8
|
|
654
|
-
];
|
|
655
|
-
var CreateFirewallRuleInput$ = [3, n0, _CFRI,
|
|
656
|
-
0,
|
|
657
|
-
[_ac, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fDLI, _pr, _qT],
|
|
658
|
-
[0, 0, 0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 1, 0], 3
|
|
659
|
-
];
|
|
660
|
-
var CreateFirewallRuleOutput$ = [3, n0, _CFRO,
|
|
661
|
-
0,
|
|
662
|
-
[_ac, _cA, _i, _n, _pr, _dVI, _s, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
663
|
-
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
664
|
-
];
|
|
665
|
-
var CreateGlobalResolverInput$ = [3, n0, _CGRI,
|
|
666
|
-
0,
|
|
667
|
-
[_n, _r, _cT, _d, _oR, _t],
|
|
668
|
-
[0, 64 | 0, [0, 4], 0, 0, 128 | 0], 2
|
|
669
|
-
];
|
|
670
|
-
var CreateGlobalResolverOutput$ = [3, n0, _CGRO,
|
|
671
|
-
0,
|
|
672
|
-
[_i, _a, _cT, _cA, _dN, _iA, _n, _r, _s, _uA, _d, _oR],
|
|
673
|
-
[0, 0, 0, 5, 0, 64 | 0, 0, 64 | 0, 0, 5, 0, 0], 10
|
|
674
|
-
];
|
|
675
|
-
var DeleteAccessSourceInput$ = [3, n0, _DASI,
|
|
676
|
-
0,
|
|
677
|
-
[_aSI],
|
|
678
|
-
[[0, 1]], 1
|
|
679
|
-
];
|
|
680
|
-
var DeleteAccessSourceOutput$ = [3, n0, _DASO,
|
|
681
|
-
0,
|
|
682
|
-
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _s, _uA, _n],
|
|
683
|
-
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
684
|
-
];
|
|
685
|
-
var DeleteAccessTokenInput$ = [3, n0, _DATI,
|
|
686
|
-
0,
|
|
687
|
-
[_aTI],
|
|
688
|
-
[[0, 1]], 1
|
|
689
|
-
];
|
|
690
|
-
var DeleteAccessTokenOutput$ = [3, n0, _DATO,
|
|
691
|
-
0,
|
|
692
|
-
[_i, _s, _dA],
|
|
693
|
-
[0, 0, 5], 3
|
|
694
|
-
];
|
|
695
|
-
var DeleteDNSViewInput$ = [3, n0, _DDNSVI,
|
|
696
|
-
0,
|
|
697
|
-
[_dVI],
|
|
698
|
-
[[0, 1]], 1
|
|
699
|
-
];
|
|
700
|
-
var DeleteDNSViewOutput$ = [3, n0, _DDNSVO,
|
|
701
|
-
0,
|
|
702
|
-
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _s, _cT, _d],
|
|
703
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
704
|
-
];
|
|
705
|
-
var DeleteFirewallDomainListInput$ = [3, n0, _DFDLI,
|
|
706
|
-
0,
|
|
707
|
-
[_fDLI],
|
|
708
|
-
[[0, 1]], 1
|
|
709
|
-
];
|
|
710
|
-
var DeleteFirewallDomainListOutput$ = [3, n0, _DFDLO,
|
|
711
|
-
0,
|
|
712
|
-
[_a, _i, _n, _s],
|
|
713
|
-
[0, 0, 0, 0], 4
|
|
714
|
-
];
|
|
715
|
-
var DeleteFirewallRuleInput$ = [3, n0, _DFRI,
|
|
716
|
-
0,
|
|
717
|
-
[_fRI],
|
|
718
|
-
[[0, 1]], 1
|
|
719
|
-
];
|
|
720
|
-
var DeleteFirewallRuleOutput$ = [3, n0, _DFRO,
|
|
721
|
-
0,
|
|
722
|
-
[_ac, _cA, _i, _n, _pr, _dVI, _s, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
723
|
-
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
724
|
-
];
|
|
725
|
-
var DeleteGlobalResolverInput$ = [3, n0, _DGRI,
|
|
726
|
-
0,
|
|
727
|
-
[_gRI],
|
|
728
|
-
[[0, 1]], 1
|
|
729
|
-
];
|
|
730
|
-
var DeleteGlobalResolverOutput$ = [3, n0, _DGRO,
|
|
731
|
-
0,
|
|
732
|
-
[_i, _a, _cT, _dN, _n, _r, _cA, _uA, _s, _iA, _oR, _d],
|
|
733
|
-
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0], 10
|
|
734
|
-
];
|
|
735
|
-
var DisableDNSViewInput$ = [3, n0, _DDNSVIi,
|
|
736
|
-
0,
|
|
737
|
-
[_dVI],
|
|
738
|
-
[[0, 1]], 1
|
|
739
|
-
];
|
|
740
|
-
var DisableDNSViewOutput$ = [3, n0, _DDNSVOi,
|
|
741
|
-
0,
|
|
742
|
-
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _s, _cT, _d],
|
|
743
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
744
|
-
];
|
|
745
|
-
var DisassociateHostedZoneInput$ = [3, n0, _DHZI,
|
|
746
|
-
0,
|
|
747
|
-
[_hZI, _rA],
|
|
748
|
-
[[0, 1], [0, 1]], 2
|
|
749
|
-
];
|
|
750
|
-
var DisassociateHostedZoneOutput$ = [3, n0, _DHZO,
|
|
751
|
-
0,
|
|
752
|
-
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
753
|
-
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
754
|
-
];
|
|
755
|
-
var DNSViewSummary$ = [3, n0, _DNSVS,
|
|
756
|
-
0,
|
|
757
|
-
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _s, _d],
|
|
758
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], 11
|
|
759
|
-
];
|
|
760
|
-
var EnableDNSViewInput$ = [3, n0, _EDNSVI,
|
|
761
|
-
0,
|
|
762
|
-
[_dVI],
|
|
763
|
-
[[0, 1]], 1
|
|
764
|
-
];
|
|
765
|
-
var EnableDNSViewOutput$ = [3, n0, _EDNSVO,
|
|
766
|
-
0,
|
|
767
|
-
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _s, _cT, _d],
|
|
768
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
769
|
-
];
|
|
770
|
-
var FirewallDomainListsItem$ = [3, n0, _FDLI,
|
|
771
|
-
0,
|
|
772
|
-
[_a, _gRI, _cA, _i, _n, _s, _uA, _d],
|
|
773
|
-
[0, 0, 5, 0, 0, 0, 5, 0], 7
|
|
774
|
-
];
|
|
775
|
-
var FirewallRulesItem$ = [3, n0, _FRI,
|
|
776
|
-
0,
|
|
777
|
-
[_ac, _cA, _i, _n, _pr, _dVI, _s, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
778
|
-
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
779
|
-
];
|
|
780
|
-
var GetAccessSourceInput$ = [3, n0, _GASI,
|
|
781
|
-
0,
|
|
782
|
-
[_aSI],
|
|
783
|
-
[[0, 1]], 1
|
|
784
|
-
];
|
|
785
|
-
var GetAccessSourceOutput$ = [3, n0, _GASO,
|
|
786
|
-
0,
|
|
787
|
-
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _s, _uA, _n],
|
|
788
|
-
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
789
|
-
];
|
|
790
|
-
var GetAccessTokenInput$ = [3, n0, _GATI,
|
|
791
|
-
0,
|
|
792
|
-
[_aTI],
|
|
793
|
-
[[0, 1]], 1
|
|
794
|
-
];
|
|
795
|
-
var GetAccessTokenOutput$ = [3, n0, _GATO,
|
|
796
|
-
0,
|
|
797
|
-
[_i, _a, _cA, _dVI, _eA, _gRI, _s, _uA, _v, _cT, _n],
|
|
798
|
-
[0, 0, 5, 0, 5, 0, 0, 5, [() => AccessTokenValue, 0], 0, 0], 9
|
|
799
|
-
];
|
|
800
|
-
var GetDNSViewInput$ = [3, n0, _GDNSVI,
|
|
801
|
-
0,
|
|
802
|
-
[_dVI],
|
|
803
|
-
[[0, 1]], 1
|
|
804
|
-
];
|
|
805
|
-
var GetDNSViewOutput$ = [3, n0, _GDNSVO,
|
|
806
|
-
0,
|
|
807
|
-
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _s, _cT, _d],
|
|
808
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
809
|
-
];
|
|
810
|
-
var GetFirewallDomainListInput$ = [3, n0, _GFDLI,
|
|
811
|
-
0,
|
|
812
|
-
[_fDLI],
|
|
813
|
-
[[0, 1]], 1
|
|
814
|
-
];
|
|
815
|
-
var GetFirewallDomainListOutput$ = [3, n0, _GFDLO,
|
|
816
|
-
0,
|
|
817
|
-
[_a, _gRI, _cA, _dC, _i, _n, _s, _uA, _cT, _d, _sM],
|
|
818
|
-
[0, 0, 5, 1, 0, 0, 0, 5, 0, 0, 0], 8
|
|
819
|
-
];
|
|
820
|
-
var GetFirewallRuleInput$ = [3, n0, _GFRI,
|
|
821
|
-
0,
|
|
822
|
-
[_fRI],
|
|
823
|
-
[[0, 1]], 1
|
|
824
|
-
];
|
|
825
|
-
var GetFirewallRuleOutput$ = [3, n0, _GFRO,
|
|
826
|
-
0,
|
|
827
|
-
[_ac, _cA, _i, _n, _pr, _dVI, _s, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
828
|
-
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
829
|
-
];
|
|
830
|
-
var GetGlobalResolverInput$ = [3, n0, _GGRI,
|
|
831
|
-
0,
|
|
832
|
-
[_gRI],
|
|
833
|
-
[[0, 1]], 1
|
|
834
|
-
];
|
|
835
|
-
var GetGlobalResolverOutput$ = [3, n0, _GGRO,
|
|
836
|
-
0,
|
|
837
|
-
[_i, _a, _cT, _dN, _n, _r, _cA, _uA, _s, _iA, _oR, _d],
|
|
838
|
-
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0], 10
|
|
839
|
-
];
|
|
840
|
-
var GetHostedZoneAssociationInput$ = [3, n0, _GHZAI,
|
|
841
|
-
0,
|
|
842
|
-
[_hZAI],
|
|
843
|
-
[[0, 1]], 1
|
|
844
|
-
];
|
|
845
|
-
var GetHostedZoneAssociationOutput$ = [3, n0, _GHZAO,
|
|
846
|
-
0,
|
|
847
|
-
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
848
|
-
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
849
|
-
];
|
|
850
|
-
var GetManagedFirewallDomainListInput$ = [3, n0, _GMFDLI,
|
|
851
|
-
0,
|
|
852
|
-
[_mFDLI],
|
|
853
|
-
[[0, 1]], 1
|
|
854
|
-
];
|
|
855
|
-
var GetManagedFirewallDomainListOutput$ = [3, n0, _GMFDLO,
|
|
856
|
-
0,
|
|
857
|
-
[_i, _n, _mLT, _d],
|
|
858
|
-
[0, 0, 0, 0], 3
|
|
859
|
-
];
|
|
860
|
-
var GlobalResolversItem$ = [3, n0, _GRI,
|
|
861
|
-
0,
|
|
862
|
-
[_i, _a, _cT, _dN, _n, _r, _cA, _uA, _s, _iA, _oR, _d],
|
|
863
|
-
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0], 10
|
|
864
|
-
];
|
|
865
|
-
var HostedZoneAssociationSummary$ = [3, n0, _HZAS,
|
|
866
|
-
0,
|
|
867
|
-
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
868
|
-
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
869
|
-
];
|
|
870
|
-
var ImportFirewallDomainsInput$ = [3, n0, _IFDI,
|
|
871
|
-
0,
|
|
872
|
-
[_dFU, _fDLI, _o],
|
|
873
|
-
[0, [0, 1], 0], 3
|
|
874
|
-
];
|
|
875
|
-
var ImportFirewallDomainsOutput$ = [3, n0, _IFDO,
|
|
876
|
-
0,
|
|
877
|
-
[_i, _n, _s],
|
|
878
|
-
[0, 0, 0], 3
|
|
879
|
-
];
|
|
880
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
881
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
882
|
-
[_m, _rAS],
|
|
883
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
884
|
-
];
|
|
885
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
886
|
-
var ListAccessSourcesInput$ = [3, n0, _LASI,
|
|
887
|
-
0,
|
|
888
|
-
[_mR, _nT, _fi],
|
|
889
|
-
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]]
|
|
890
|
-
];
|
|
891
|
-
var ListAccessSourcesOutput$ = [3, n0, _LASO,
|
|
892
|
-
0,
|
|
893
|
-
[_aS, _nT],
|
|
894
|
-
[() => AccessSources, 0], 1
|
|
895
|
-
];
|
|
896
|
-
var ListAccessTokensInput$ = [3, n0, _LATI,
|
|
897
|
-
0,
|
|
898
|
-
[_dVI, _mR, _nT, _fi],
|
|
899
|
-
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]], 1
|
|
900
|
-
];
|
|
901
|
-
var ListAccessTokensOutput$ = [3, n0, _LATO,
|
|
902
|
-
0,
|
|
903
|
-
[_nT, _aT],
|
|
904
|
-
[0, () => AccessTokens]
|
|
905
|
-
];
|
|
906
|
-
var ListDNSViewsInput$ = [3, n0, _LDNSVI,
|
|
907
|
-
0,
|
|
908
|
-
[_gRI, _mR, _nT],
|
|
909
|
-
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
910
|
-
];
|
|
911
|
-
var ListDNSViewsOutput$ = [3, n0, _LDNSVO,
|
|
912
|
-
0,
|
|
913
|
-
[_dVn, _nT],
|
|
914
|
-
[() => DNSViews, 0], 1
|
|
915
|
-
];
|
|
916
|
-
var ListFirewallDomainListsInput$ = [3, n0, _LFDLI,
|
|
917
|
-
0,
|
|
918
|
-
[_mR, _nT, _gRI],
|
|
919
|
-
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _gri }]]
|
|
920
|
-
];
|
|
921
|
-
var ListFirewallDomainListsOutput$ = [3, n0, _LFDLO,
|
|
922
|
-
0,
|
|
923
|
-
[_fDL, _nT],
|
|
924
|
-
[() => FirewallDomainLists, 0], 1
|
|
925
|
-
];
|
|
926
|
-
var ListFirewallDomainsInput$ = [3, n0, _LFDI,
|
|
927
|
-
0,
|
|
928
|
-
[_fDLI, _mR, _nT],
|
|
929
|
-
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
930
|
-
];
|
|
931
|
-
var ListFirewallDomainsOutput$ = [3, n0, _LFDO,
|
|
932
|
-
0,
|
|
933
|
-
[_do, _nT],
|
|
934
|
-
[64 | 0, 0], 1
|
|
935
|
-
];
|
|
936
|
-
var ListFirewallRulesInput$ = [3, n0, _LFRI,
|
|
937
|
-
0,
|
|
938
|
-
[_dVI, _mR, _nT, _fi],
|
|
939
|
-
[[0, { [_hQ]: _di }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]], 1
|
|
940
|
-
];
|
|
941
|
-
var ListFirewallRulesOutput$ = [3, n0, _LFRO,
|
|
942
|
-
0,
|
|
943
|
-
[_fR, _nT],
|
|
944
|
-
[() => FirewallRules, 0], 1
|
|
945
|
-
];
|
|
946
|
-
var ListGlobalResolversInput$ = [3, n0, _LGRI,
|
|
947
|
-
0,
|
|
948
|
-
[_mR, _nT],
|
|
949
|
-
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
950
|
-
];
|
|
951
|
-
var ListGlobalResolversOutput$ = [3, n0, _LGRO,
|
|
952
|
-
0,
|
|
953
|
-
[_gR, _nT],
|
|
954
|
-
[() => GlobalResolvers, 0], 1
|
|
955
|
-
];
|
|
956
|
-
var ListHostedZoneAssociationsInput$ = [3, n0, _LHZAI,
|
|
957
|
-
0,
|
|
958
|
-
[_rA, _mR, _nT],
|
|
959
|
-
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
960
|
-
];
|
|
961
|
-
var ListHostedZoneAssociationsOutput$ = [3, n0, _LHZAO,
|
|
962
|
-
0,
|
|
963
|
-
[_hZA, _nT],
|
|
964
|
-
[() => HostedZoneAssociations, 0], 1
|
|
965
|
-
];
|
|
966
|
-
var ListManagedFirewallDomainListsInput$ = [3, n0, _LMFDLI,
|
|
967
|
-
0,
|
|
968
|
-
[_mFDLT, _mR, _nT],
|
|
969
|
-
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
970
|
-
];
|
|
971
|
-
var ListManagedFirewallDomainListsOutput$ = [3, n0, _LMFDLO,
|
|
972
|
-
0,
|
|
973
|
-
[_mFDL, _nT],
|
|
974
|
-
[() => ManagedFirewallDomainLists, 0], 1
|
|
975
|
-
];
|
|
976
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
977
|
-
0,
|
|
978
|
-
[_rA],
|
|
979
|
-
[0], 1
|
|
980
|
-
];
|
|
981
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
982
|
-
0,
|
|
983
|
-
[_t],
|
|
984
|
-
[128 | 0]
|
|
985
|
-
];
|
|
986
|
-
var ManagedFirewallDomainListsItem$ = [3, n0, _MFDLI,
|
|
987
|
-
0,
|
|
988
|
-
[_i, _n, _mLT, _d],
|
|
989
|
-
[0, 0, 0, 0], 3
|
|
990
|
-
];
|
|
991
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
992
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
993
|
-
[_m, _rT, _rI],
|
|
994
|
-
[0, 0, 0], 2
|
|
995
|
-
];
|
|
996
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
997
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
998
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
999
|
-
[_m, _rT, _rI, _sC, _qC],
|
|
1000
|
-
[0, 0, 0, 0, 0], 2
|
|
1001
|
-
];
|
|
1002
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1003
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1004
|
-
0,
|
|
1005
|
-
[_rA, _t],
|
|
1006
|
-
[0, 128 | 0], 2
|
|
1007
|
-
];
|
|
1008
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1009
|
-
0,
|
|
1010
|
-
[],
|
|
1011
|
-
[]
|
|
1012
|
-
];
|
|
1013
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1014
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1015
|
-
[_m, _sC, _qC, _rAS],
|
|
1016
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
1017
|
-
];
|
|
1018
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1019
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1020
|
-
0,
|
|
1021
|
-
[_rA, _tK],
|
|
1022
|
-
[0, 64 | 0], 2
|
|
1023
|
-
];
|
|
1024
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1025
|
-
0,
|
|
1026
|
-
[],
|
|
1027
|
-
[]
|
|
1028
|
-
];
|
|
1029
|
-
var UpdateAccessSourceInput$ = [3, n0, _UASI,
|
|
1030
|
-
0,
|
|
1031
|
-
[_aSI, _ci, _iAT, _n, _p],
|
|
1032
|
-
[[0, 1], 0, 0, 0, 0], 1
|
|
1033
|
-
];
|
|
1034
|
-
var UpdateAccessSourceOutput$ = [3, n0, _UASO,
|
|
1035
|
-
0,
|
|
1036
|
-
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _s, _uA, _n],
|
|
1037
|
-
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
1038
|
-
];
|
|
1039
|
-
var UpdateAccessTokenInput$ = [3, n0, _UATI,
|
|
1040
|
-
0,
|
|
1041
|
-
[_aTI, _n],
|
|
1042
|
-
[[0, 1], 0], 2
|
|
1043
|
-
];
|
|
1044
|
-
var UpdateAccessTokenOutput$ = [3, n0, _UATO,
|
|
1045
|
-
0,
|
|
1046
|
-
[_i, _n],
|
|
1047
|
-
[0, 0], 2
|
|
1048
|
-
];
|
|
1049
|
-
var UpdateDNSViewInput$ = [3, n0, _UDNSVI,
|
|
1050
|
-
0,
|
|
1051
|
-
[_dVI, _n, _d, _dV, _eCS, _fRFO],
|
|
1052
|
-
[[0, 1], 0, 0, 0, 0, 0], 1
|
|
1053
|
-
];
|
|
1054
|
-
var UpdateDNSViewOutput$ = [3, n0, _UDNSVO,
|
|
1055
|
-
0,
|
|
1056
|
-
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _s, _cT, _d],
|
|
1057
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
1058
|
-
];
|
|
1059
|
-
var UpdateFirewallDomainsInput$ = [3, n0, _UFDI,
|
|
1060
|
-
0,
|
|
1061
|
-
[_do, _fDLI, _o],
|
|
1062
|
-
[64 | 0, [0, 1], 0], 3
|
|
1063
|
-
];
|
|
1064
|
-
var UpdateFirewallDomainsOutput$ = [3, n0, _UFDO,
|
|
1065
|
-
0,
|
|
1066
|
-
[_i, _n, _s],
|
|
1067
|
-
[0, 0, 0], 3
|
|
1068
|
-
];
|
|
1069
|
-
var UpdateFirewallRuleInput$ = [3, n0, _UFRI,
|
|
1070
|
-
0,
|
|
1071
|
-
[_fRI, _ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _n, _pr],
|
|
1072
|
-
[[0, 1], 0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 1], 1
|
|
1073
|
-
];
|
|
1074
|
-
var UpdateFirewallRuleOutput$ = [3, n0, _UFRO,
|
|
1075
|
-
0,
|
|
1076
|
-
[_ac, _cA, _i, _n, _pr, _dVI, _s, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
1077
|
-
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
1078
|
-
];
|
|
1079
|
-
var UpdateGlobalResolverInput$ = [3, n0, _UGRI,
|
|
1080
|
-
0,
|
|
1081
|
-
[_gRI, _n, _oR, _d],
|
|
1082
|
-
[[0, 1], 0, 0, 0], 1
|
|
1083
|
-
];
|
|
1084
|
-
var UpdateGlobalResolverOutput$ = [3, n0, _UGRO,
|
|
1085
|
-
0,
|
|
1086
|
-
[_i, _a, _cT, _dN, _n, _r, _cA, _uA, _s, _iA, _oR, _d],
|
|
1087
|
-
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0], 10
|
|
1088
|
-
];
|
|
1089
|
-
var UpdateHostedZoneAssociationInput$ = [3, n0, _UHZAI,
|
|
1090
|
-
0,
|
|
1091
|
-
[_hZAI, _n],
|
|
1092
|
-
[[0, 1], 0], 1
|
|
1093
|
-
];
|
|
1094
|
-
var UpdateHostedZoneAssociationOutput$ = [3, n0, _UHZAO,
|
|
1095
|
-
0,
|
|
1096
|
-
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
1097
|
-
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
1098
|
-
];
|
|
1099
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1100
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1101
|
-
[_m, _re, _fL],
|
|
1102
|
-
[0, 0, () => ValidationExceptionFieldList], 2
|
|
1103
|
-
];
|
|
1104
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1105
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1106
|
-
0,
|
|
1107
|
-
[_n, _m],
|
|
1108
|
-
[0, 0], 2
|
|
1109
|
-
];
|
|
1110
|
-
var Route53GlobalResolverServiceException$ = [-3, _sm, "Route53GlobalResolverServiceException", 0, [], []];
|
|
1111
|
-
schema.TypeRegistry.for(_sm).registerError(Route53GlobalResolverServiceException$, Route53GlobalResolverServiceException);
|
|
1112
|
-
var AccessSources = [1, n0, _AS,
|
|
1113
|
-
0, () => AccessSourcesItem$
|
|
1114
|
-
];
|
|
1115
|
-
var AccessTokens = [1, n0, _AT,
|
|
1116
|
-
0, () => AccessTokenItem$
|
|
1117
|
-
];
|
|
1118
|
-
var BatchCreateFirewallRuleInputItems = [1, n0, _BCFRIIa,
|
|
1119
|
-
0, () => BatchCreateFirewallRuleInputItem$
|
|
1120
|
-
];
|
|
1121
|
-
var BatchCreateFirewallRuleOutputItems = [1, n0, _BCFROIa,
|
|
1122
|
-
0, () => BatchCreateFirewallRuleOutputItem$
|
|
1123
|
-
];
|
|
1124
|
-
var BatchDeleteFirewallRuleInputItems = [1, n0, _BDFRIIa,
|
|
1125
|
-
0, () => BatchDeleteFirewallRuleInputItem$
|
|
1126
|
-
];
|
|
1127
|
-
var BatchDeleteFirewallRuleOutputItems = [1, n0, _BDFROIa,
|
|
1128
|
-
0, () => BatchDeleteFirewallRuleOutputItem$
|
|
1129
|
-
];
|
|
1130
|
-
var BatchUpdateFirewallRuleInputItems = [1, n0, _BUFRIIa,
|
|
1131
|
-
0, () => BatchUpdateFirewallRuleInputItem$
|
|
1132
|
-
];
|
|
1133
|
-
var BatchUpdateFirewallRuleOutputItems = [1, n0, _BUFROIa,
|
|
1134
|
-
0, () => BatchUpdateFirewallRuleOutputItem$
|
|
1135
|
-
];
|
|
1136
|
-
var DNSViews = [1, n0, _DNSV,
|
|
1137
|
-
0, () => DNSViewSummary$
|
|
1138
|
-
];
|
|
1139
|
-
var FirewallDomainLists = [1, n0, _FDL,
|
|
1140
|
-
0, () => FirewallDomainListsItem$
|
|
1141
|
-
];
|
|
1142
|
-
var FirewallRules = [1, n0, _FR,
|
|
1143
|
-
0, () => FirewallRulesItem$
|
|
1144
|
-
];
|
|
1145
|
-
var GlobalResolvers = [1, n0, _GR,
|
|
1146
|
-
0, () => GlobalResolversItem$
|
|
1147
|
-
];
|
|
1148
|
-
var HostedZoneAssociations = [1, n0, _HZA,
|
|
1149
|
-
0, () => HostedZoneAssociationSummary$
|
|
1150
|
-
];
|
|
1151
|
-
var ManagedFirewallDomainLists = [1, n0, _MFDL,
|
|
1152
|
-
0, () => ManagedFirewallDomainListsItem$
|
|
1153
|
-
];
|
|
1154
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1155
|
-
0, () => ValidationExceptionField$
|
|
1156
|
-
];
|
|
1157
|
-
var AssociateHostedZone$ = [9, n0, _AHZ,
|
|
1158
|
-
{ [_h]: ["POST", "/hosted-zone-associations/{hostedZoneId}", 200] }, () => AssociateHostedZoneInput$, () => AssociateHostedZoneOutput$
|
|
1159
|
-
];
|
|
1160
|
-
var BatchCreateFirewallRule$ = [9, n0, _BCFR,
|
|
1161
|
-
{ [_h]: ["POST", "/firewall-rules/batch-create", 200] }, () => BatchCreateFirewallRuleInput$, () => BatchCreateFirewallRuleOutput$
|
|
1162
|
-
];
|
|
1163
|
-
var BatchDeleteFirewallRule$ = [9, n0, _BDFR,
|
|
1164
|
-
{ [_h]: ["POST", "/firewall-rules/batch-delete", 200] }, () => BatchDeleteFirewallRuleInput$, () => BatchDeleteFirewallRuleOutput$
|
|
1165
|
-
];
|
|
1166
|
-
var BatchUpdateFirewallRule$ = [9, n0, _BUFR,
|
|
1167
|
-
{ [_h]: ["POST", "/firewall-rules/batch-update", 200] }, () => BatchUpdateFirewallRuleInput$, () => BatchUpdateFirewallRuleOutput$
|
|
1168
|
-
];
|
|
1169
|
-
var CreateAccessSource$ = [9, n0, _CAS,
|
|
1170
|
-
{ [_h]: ["POST", "/access-sources", 200] }, () => CreateAccessSourceInput$, () => CreateAccessSourceOutput$
|
|
1171
|
-
];
|
|
1172
|
-
var CreateAccessToken$ = [9, n0, _CAT,
|
|
1173
|
-
{ [_h]: ["POST", "/tokens/{dnsViewId}", 200] }, () => CreateAccessTokenInput$, () => CreateAccessTokenOutput$
|
|
1174
|
-
];
|
|
1175
|
-
var CreateDNSView$ = [9, n0, _CDNSV,
|
|
1176
|
-
{ [_h]: ["POST", "/dns-views/{globalResolverId}", 200] }, () => CreateDNSViewInput$, () => CreateDNSViewOutput$
|
|
1177
|
-
];
|
|
1178
|
-
var CreateFirewallDomainList$ = [9, n0, _CFDL,
|
|
1179
|
-
{ [_h]: ["POST", "/firewall-domain-lists/{globalResolverId}", 200] }, () => CreateFirewallDomainListInput$, () => CreateFirewallDomainListOutput$
|
|
1180
|
-
];
|
|
1181
|
-
var CreateFirewallRule$ = [9, n0, _CFR,
|
|
1182
|
-
{ [_h]: ["POST", "/firewall-rules", 200] }, () => CreateFirewallRuleInput$, () => CreateFirewallRuleOutput$
|
|
1183
|
-
];
|
|
1184
|
-
var CreateGlobalResolver$ = [9, n0, _CGR,
|
|
1185
|
-
{ [_h]: ["POST", "/global-resolver", 200] }, () => CreateGlobalResolverInput$, () => CreateGlobalResolverOutput$
|
|
1186
|
-
];
|
|
1187
|
-
var DeleteAccessSource$ = [9, n0, _DAS,
|
|
1188
|
-
{ [_h]: ["DELETE", "/access-sources/{accessSourceId}", 200] }, () => DeleteAccessSourceInput$, () => DeleteAccessSourceOutput$
|
|
1189
|
-
];
|
|
1190
|
-
var DeleteAccessToken$ = [9, n0, _DAT,
|
|
1191
|
-
{ [_h]: ["DELETE", "/tokens/{accessTokenId}", 200] }, () => DeleteAccessTokenInput$, () => DeleteAccessTokenOutput$
|
|
1192
|
-
];
|
|
1193
|
-
var DeleteDNSView$ = [9, n0, _DDNSV,
|
|
1194
|
-
{ [_h]: ["DELETE", "/dns-views/{dnsViewId}", 200] }, () => DeleteDNSViewInput$, () => DeleteDNSViewOutput$
|
|
1195
|
-
];
|
|
1196
|
-
var DeleteFirewallDomainList$ = [9, n0, _DFDL,
|
|
1197
|
-
{ [_h]: ["DELETE", "/firewall-domain-lists/{firewallDomainListId}", 200] }, () => DeleteFirewallDomainListInput$, () => DeleteFirewallDomainListOutput$
|
|
1198
|
-
];
|
|
1199
|
-
var DeleteFirewallRule$ = [9, n0, _DFR,
|
|
1200
|
-
{ [_h]: ["DELETE", "/firewall-rules/{firewallRuleId}", 200] }, () => DeleteFirewallRuleInput$, () => DeleteFirewallRuleOutput$
|
|
1201
|
-
];
|
|
1202
|
-
var DeleteGlobalResolver$ = [9, n0, _DGR,
|
|
1203
|
-
{ [_h]: ["DELETE", "/global-resolver/{globalResolverId}", 200] }, () => DeleteGlobalResolverInput$, () => DeleteGlobalResolverOutput$
|
|
1204
|
-
];
|
|
1205
|
-
var DisableDNSView$ = [9, n0, _DDNSVi,
|
|
1206
|
-
{ [_h]: ["PATCH", "/dns-views/{dnsViewId}/disable", 200] }, () => DisableDNSViewInput$, () => DisableDNSViewOutput$
|
|
1207
|
-
];
|
|
1208
|
-
var DisassociateHostedZone$ = [9, n0, _DHZ,
|
|
1209
|
-
{ [_h]: ["DELETE", "/hosted-zone-associations/hosted-zone/{hostedZoneId}/resource-arn/{resourceArn+}", 200] }, () => DisassociateHostedZoneInput$, () => DisassociateHostedZoneOutput$
|
|
1210
|
-
];
|
|
1211
|
-
var EnableDNSView$ = [9, n0, _EDNSV,
|
|
1212
|
-
{ [_h]: ["PATCH", "/dns-views/{dnsViewId}/enable", 200] }, () => EnableDNSViewInput$, () => EnableDNSViewOutput$
|
|
1213
|
-
];
|
|
1214
|
-
var GetAccessSource$ = [9, n0, _GAS,
|
|
1215
|
-
{ [_h]: ["GET", "/access-sources/{accessSourceId}", 200] }, () => GetAccessSourceInput$, () => GetAccessSourceOutput$
|
|
1216
|
-
];
|
|
1217
|
-
var GetAccessToken$ = [9, n0, _GAT,
|
|
1218
|
-
{ [_h]: ["GET", "/tokens/{accessTokenId}", 200] }, () => GetAccessTokenInput$, () => GetAccessTokenOutput$
|
|
1219
|
-
];
|
|
1220
|
-
var GetDNSView$ = [9, n0, _GDNSV,
|
|
1221
|
-
{ [_h]: ["GET", "/dns-views/{dnsViewId}", 200] }, () => GetDNSViewInput$, () => GetDNSViewOutput$
|
|
1222
|
-
];
|
|
1223
|
-
var GetFirewallDomainList$ = [9, n0, _GFDL,
|
|
1224
|
-
{ [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}", 200] }, () => GetFirewallDomainListInput$, () => GetFirewallDomainListOutput$
|
|
1225
|
-
];
|
|
1226
|
-
var GetFirewallRule$ = [9, n0, _GFR,
|
|
1227
|
-
{ [_h]: ["GET", "/firewall-rules/{firewallRuleId}", 200] }, () => GetFirewallRuleInput$, () => GetFirewallRuleOutput$
|
|
1228
|
-
];
|
|
1229
|
-
var GetGlobalResolver$ = [9, n0, _GGR,
|
|
1230
|
-
{ [_h]: ["GET", "/global-resolver/{globalResolverId}", 200] }, () => GetGlobalResolverInput$, () => GetGlobalResolverOutput$
|
|
1231
|
-
];
|
|
1232
|
-
var GetHostedZoneAssociation$ = [9, n0, _GHZA,
|
|
1233
|
-
{ [_h]: ["GET", "/hosted-zone-associations/{hostedZoneAssociationId}", 200] }, () => GetHostedZoneAssociationInput$, () => GetHostedZoneAssociationOutput$
|
|
1234
|
-
];
|
|
1235
|
-
var GetManagedFirewallDomainList$ = [9, n0, _GMFDL,
|
|
1236
|
-
{ [_h]: ["GET", "/managed-firewall-domain-lists/{managedFirewallDomainListId}", 200] }, () => GetManagedFirewallDomainListInput$, () => GetManagedFirewallDomainListOutput$
|
|
1237
|
-
];
|
|
1238
|
-
var ImportFirewallDomains$ = [9, n0, _IFD,
|
|
1239
|
-
{ [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains/s3_file_url", 200] }, () => ImportFirewallDomainsInput$, () => ImportFirewallDomainsOutput$
|
|
1240
|
-
];
|
|
1241
|
-
var ListAccessSources$ = [9, n0, _LAS,
|
|
1242
|
-
{ [_h]: ["GET", "/access-sources", 200] }, () => ListAccessSourcesInput$, () => ListAccessSourcesOutput$
|
|
1243
|
-
];
|
|
1244
|
-
var ListAccessTokens$ = [9, n0, _LAT,
|
|
1245
|
-
{ [_h]: ["GET", "/tokens/dns-view/{dnsViewId}", 200] }, () => ListAccessTokensInput$, () => ListAccessTokensOutput$
|
|
1246
|
-
];
|
|
1247
|
-
var ListDNSViews$ = [9, n0, _LDNSV,
|
|
1248
|
-
{ [_h]: ["GET", "/dns-views/resolver/{globalResolverId}", 200] }, () => ListDNSViewsInput$, () => ListDNSViewsOutput$
|
|
1249
|
-
];
|
|
1250
|
-
var ListFirewallDomainLists$ = [9, n0, _LFDL,
|
|
1251
|
-
{ [_h]: ["GET", "/firewall-domain-lists", 200] }, () => ListFirewallDomainListsInput$, () => ListFirewallDomainListsOutput$
|
|
1252
|
-
];
|
|
1253
|
-
var ListFirewallDomains$ = [9, n0, _LFD,
|
|
1254
|
-
{ [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}/domains", 200] }, () => ListFirewallDomainsInput$, () => ListFirewallDomainsOutput$
|
|
1255
|
-
];
|
|
1256
|
-
var ListFirewallRules$ = [9, n0, _LFR,
|
|
1257
|
-
{ [_h]: ["GET", "/firewall-rules", 200] }, () => ListFirewallRulesInput$, () => ListFirewallRulesOutput$
|
|
1258
|
-
];
|
|
1259
|
-
var ListGlobalResolvers$ = [9, n0, _LGR,
|
|
1260
|
-
{ [_h]: ["GET", "/global-resolver", 200] }, () => ListGlobalResolversInput$, () => ListGlobalResolversOutput$
|
|
1261
|
-
];
|
|
1262
|
-
var ListHostedZoneAssociations$ = [9, n0, _LHZA,
|
|
1263
|
-
{ [_h]: ["GET", "/hosted-zone-associations/resource-arn/{resourceArn+}", 200] }, () => ListHostedZoneAssociationsInput$, () => ListHostedZoneAssociationsOutput$
|
|
1264
|
-
];
|
|
1265
|
-
var ListManagedFirewallDomainLists$ = [9, n0, _LMFDL,
|
|
1266
|
-
{ [_h]: ["GET", "/list-managed-firewall-domain-lists/{managedFirewallDomainListType}", 200] }, () => ListManagedFirewallDomainListsInput$, () => ListManagedFirewallDomainListsOutput$
|
|
1267
|
-
];
|
|
1268
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1269
|
-
{ [_h]: ["POST", "/get-all-tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1270
|
-
];
|
|
1271
|
-
var TagResource$ = [9, n0, _TR,
|
|
1272
|
-
{ [_h]: ["POST", "/tag-resource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1273
|
-
];
|
|
1274
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1275
|
-
{ [_h]: ["POST", "/untag-resource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1276
|
-
];
|
|
1277
|
-
var UpdateAccessSource$ = [9, n0, _UAS,
|
|
1278
|
-
{ [_h]: ["PATCH", "/access-sources/{accessSourceId}", 200] }, () => UpdateAccessSourceInput$, () => UpdateAccessSourceOutput$
|
|
1279
|
-
];
|
|
1280
|
-
var UpdateAccessToken$ = [9, n0, _UAT,
|
|
1281
|
-
{ [_h]: ["PATCH", "/tokens/{accessTokenId}", 200] }, () => UpdateAccessTokenInput$, () => UpdateAccessTokenOutput$
|
|
1282
|
-
];
|
|
1283
|
-
var UpdateDNSView$ = [9, n0, _UDNSV,
|
|
1284
|
-
{ [_h]: ["PATCH", "/dns-views/{dnsViewId}", 200] }, () => UpdateDNSViewInput$, () => UpdateDNSViewOutput$
|
|
1285
|
-
];
|
|
1286
|
-
var UpdateFirewallDomains$ = [9, n0, _UFD,
|
|
1287
|
-
{ [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains", 200] }, () => UpdateFirewallDomainsInput$, () => UpdateFirewallDomainsOutput$
|
|
1288
|
-
];
|
|
1289
|
-
var UpdateFirewallRule$ = [9, n0, _UFR,
|
|
1290
|
-
{ [_h]: ["PATCH", "/firewall-rules/{firewallRuleId}", 200] }, () => UpdateFirewallRuleInput$, () => UpdateFirewallRuleOutput$
|
|
1291
|
-
];
|
|
1292
|
-
var UpdateGlobalResolver$ = [9, n0, _UGR,
|
|
1293
|
-
{ [_h]: ["PATCH", "/global-resolver/{globalResolverId}", 200] }, () => UpdateGlobalResolverInput$, () => UpdateGlobalResolverOutput$
|
|
1294
|
-
];
|
|
1295
|
-
var UpdateHostedZoneAssociation$ = [9, n0, _UHZA,
|
|
1296
|
-
{ [_h]: ["PATCH", "/hosted-zone-associations/{hostedZoneAssociationId}", 200] }, () => UpdateHostedZoneAssociationInput$, () => UpdateHostedZoneAssociationOutput$
|
|
1297
|
-
];
|
|
1298
|
-
|
|
1299
114
|
class AssociateHostedZoneCommand extends smithyClient.Command
|
|
1300
115
|
.classBuilder()
|
|
1301
116
|
.ep(commonParams)
|
|
@@ -1304,7 +119,7 @@ class AssociateHostedZoneCommand extends smithyClient.Command
|
|
|
1304
119
|
})
|
|
1305
120
|
.s("EC2DNSGlobalResolverCustomerAPI", "AssociateHostedZone", {})
|
|
1306
121
|
.n("Route53GlobalResolverClient", "AssociateHostedZoneCommand")
|
|
1307
|
-
.sc(AssociateHostedZone$)
|
|
122
|
+
.sc(schemas_0.AssociateHostedZone$)
|
|
1308
123
|
.build() {
|
|
1309
124
|
}
|
|
1310
125
|
|
|
@@ -1316,7 +131,7 @@ class BatchCreateFirewallRuleCommand extends smithyClient.Command
|
|
|
1316
131
|
})
|
|
1317
132
|
.s("EC2DNSGlobalResolverCustomerAPI", "BatchCreateFirewallRule", {})
|
|
1318
133
|
.n("Route53GlobalResolverClient", "BatchCreateFirewallRuleCommand")
|
|
1319
|
-
.sc(BatchCreateFirewallRule$)
|
|
134
|
+
.sc(schemas_0.BatchCreateFirewallRule$)
|
|
1320
135
|
.build() {
|
|
1321
136
|
}
|
|
1322
137
|
|
|
@@ -1328,7 +143,7 @@ class BatchDeleteFirewallRuleCommand extends smithyClient.Command
|
|
|
1328
143
|
})
|
|
1329
144
|
.s("EC2DNSGlobalResolverCustomerAPI", "BatchDeleteFirewallRule", {})
|
|
1330
145
|
.n("Route53GlobalResolverClient", "BatchDeleteFirewallRuleCommand")
|
|
1331
|
-
.sc(BatchDeleteFirewallRule$)
|
|
146
|
+
.sc(schemas_0.BatchDeleteFirewallRule$)
|
|
1332
147
|
.build() {
|
|
1333
148
|
}
|
|
1334
149
|
|
|
@@ -1340,7 +155,7 @@ class BatchUpdateFirewallRuleCommand extends smithyClient.Command
|
|
|
1340
155
|
})
|
|
1341
156
|
.s("EC2DNSGlobalResolverCustomerAPI", "BatchUpdateFirewallRule", {})
|
|
1342
157
|
.n("Route53GlobalResolverClient", "BatchUpdateFirewallRuleCommand")
|
|
1343
|
-
.sc(BatchUpdateFirewallRule$)
|
|
158
|
+
.sc(schemas_0.BatchUpdateFirewallRule$)
|
|
1344
159
|
.build() {
|
|
1345
160
|
}
|
|
1346
161
|
|
|
@@ -1352,7 +167,7 @@ class CreateAccessSourceCommand extends smithyClient.Command
|
|
|
1352
167
|
})
|
|
1353
168
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateAccessSource", {})
|
|
1354
169
|
.n("Route53GlobalResolverClient", "CreateAccessSourceCommand")
|
|
1355
|
-
.sc(CreateAccessSource$)
|
|
170
|
+
.sc(schemas_0.CreateAccessSource$)
|
|
1356
171
|
.build() {
|
|
1357
172
|
}
|
|
1358
173
|
|
|
@@ -1364,7 +179,7 @@ class CreateAccessTokenCommand extends smithyClient.Command
|
|
|
1364
179
|
})
|
|
1365
180
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateAccessToken", {})
|
|
1366
181
|
.n("Route53GlobalResolverClient", "CreateAccessTokenCommand")
|
|
1367
|
-
.sc(CreateAccessToken$)
|
|
182
|
+
.sc(schemas_0.CreateAccessToken$)
|
|
1368
183
|
.build() {
|
|
1369
184
|
}
|
|
1370
185
|
|
|
@@ -1376,7 +191,7 @@ class CreateDNSViewCommand extends smithyClient.Command
|
|
|
1376
191
|
})
|
|
1377
192
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateDNSView", {})
|
|
1378
193
|
.n("Route53GlobalResolverClient", "CreateDNSViewCommand")
|
|
1379
|
-
.sc(CreateDNSView$)
|
|
194
|
+
.sc(schemas_0.CreateDNSView$)
|
|
1380
195
|
.build() {
|
|
1381
196
|
}
|
|
1382
197
|
|
|
@@ -1388,7 +203,7 @@ class CreateFirewallDomainListCommand extends smithyClient.Command
|
|
|
1388
203
|
})
|
|
1389
204
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateFirewallDomainList", {})
|
|
1390
205
|
.n("Route53GlobalResolverClient", "CreateFirewallDomainListCommand")
|
|
1391
|
-
.sc(CreateFirewallDomainList$)
|
|
206
|
+
.sc(schemas_0.CreateFirewallDomainList$)
|
|
1392
207
|
.build() {
|
|
1393
208
|
}
|
|
1394
209
|
|
|
@@ -1400,7 +215,7 @@ class CreateFirewallRuleCommand extends smithyClient.Command
|
|
|
1400
215
|
})
|
|
1401
216
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateFirewallRule", {})
|
|
1402
217
|
.n("Route53GlobalResolverClient", "CreateFirewallRuleCommand")
|
|
1403
|
-
.sc(CreateFirewallRule$)
|
|
218
|
+
.sc(schemas_0.CreateFirewallRule$)
|
|
1404
219
|
.build() {
|
|
1405
220
|
}
|
|
1406
221
|
|
|
@@ -1412,7 +227,7 @@ class CreateGlobalResolverCommand extends smithyClient.Command
|
|
|
1412
227
|
})
|
|
1413
228
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateGlobalResolver", {})
|
|
1414
229
|
.n("Route53GlobalResolverClient", "CreateGlobalResolverCommand")
|
|
1415
|
-
.sc(CreateGlobalResolver$)
|
|
230
|
+
.sc(schemas_0.CreateGlobalResolver$)
|
|
1416
231
|
.build() {
|
|
1417
232
|
}
|
|
1418
233
|
|
|
@@ -1424,7 +239,7 @@ class DeleteAccessSourceCommand extends smithyClient.Command
|
|
|
1424
239
|
})
|
|
1425
240
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteAccessSource", {})
|
|
1426
241
|
.n("Route53GlobalResolverClient", "DeleteAccessSourceCommand")
|
|
1427
|
-
.sc(DeleteAccessSource$)
|
|
242
|
+
.sc(schemas_0.DeleteAccessSource$)
|
|
1428
243
|
.build() {
|
|
1429
244
|
}
|
|
1430
245
|
|
|
@@ -1436,7 +251,7 @@ class DeleteAccessTokenCommand extends smithyClient.Command
|
|
|
1436
251
|
})
|
|
1437
252
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteAccessToken", {})
|
|
1438
253
|
.n("Route53GlobalResolverClient", "DeleteAccessTokenCommand")
|
|
1439
|
-
.sc(DeleteAccessToken$)
|
|
254
|
+
.sc(schemas_0.DeleteAccessToken$)
|
|
1440
255
|
.build() {
|
|
1441
256
|
}
|
|
1442
257
|
|
|
@@ -1448,7 +263,7 @@ class DeleteDNSViewCommand extends smithyClient.Command
|
|
|
1448
263
|
})
|
|
1449
264
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteDNSView", {})
|
|
1450
265
|
.n("Route53GlobalResolverClient", "DeleteDNSViewCommand")
|
|
1451
|
-
.sc(DeleteDNSView$)
|
|
266
|
+
.sc(schemas_0.DeleteDNSView$)
|
|
1452
267
|
.build() {
|
|
1453
268
|
}
|
|
1454
269
|
|
|
@@ -1460,7 +275,7 @@ class DeleteFirewallDomainListCommand extends smithyClient.Command
|
|
|
1460
275
|
})
|
|
1461
276
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteFirewallDomainList", {})
|
|
1462
277
|
.n("Route53GlobalResolverClient", "DeleteFirewallDomainListCommand")
|
|
1463
|
-
.sc(DeleteFirewallDomainList$)
|
|
278
|
+
.sc(schemas_0.DeleteFirewallDomainList$)
|
|
1464
279
|
.build() {
|
|
1465
280
|
}
|
|
1466
281
|
|
|
@@ -1472,7 +287,7 @@ class DeleteFirewallRuleCommand extends smithyClient.Command
|
|
|
1472
287
|
})
|
|
1473
288
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteFirewallRule", {})
|
|
1474
289
|
.n("Route53GlobalResolverClient", "DeleteFirewallRuleCommand")
|
|
1475
|
-
.sc(DeleteFirewallRule$)
|
|
290
|
+
.sc(schemas_0.DeleteFirewallRule$)
|
|
1476
291
|
.build() {
|
|
1477
292
|
}
|
|
1478
293
|
|
|
@@ -1484,7 +299,7 @@ class DeleteGlobalResolverCommand extends smithyClient.Command
|
|
|
1484
299
|
})
|
|
1485
300
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteGlobalResolver", {})
|
|
1486
301
|
.n("Route53GlobalResolverClient", "DeleteGlobalResolverCommand")
|
|
1487
|
-
.sc(DeleteGlobalResolver$)
|
|
302
|
+
.sc(schemas_0.DeleteGlobalResolver$)
|
|
1488
303
|
.build() {
|
|
1489
304
|
}
|
|
1490
305
|
|
|
@@ -1496,7 +311,7 @@ class DisableDNSViewCommand extends smithyClient.Command
|
|
|
1496
311
|
})
|
|
1497
312
|
.s("EC2DNSGlobalResolverCustomerAPI", "DisableDNSView", {})
|
|
1498
313
|
.n("Route53GlobalResolverClient", "DisableDNSViewCommand")
|
|
1499
|
-
.sc(DisableDNSView$)
|
|
314
|
+
.sc(schemas_0.DisableDNSView$)
|
|
1500
315
|
.build() {
|
|
1501
316
|
}
|
|
1502
317
|
|
|
@@ -1508,7 +323,7 @@ class DisassociateHostedZoneCommand extends smithyClient.Command
|
|
|
1508
323
|
})
|
|
1509
324
|
.s("EC2DNSGlobalResolverCustomerAPI", "DisassociateHostedZone", {})
|
|
1510
325
|
.n("Route53GlobalResolverClient", "DisassociateHostedZoneCommand")
|
|
1511
|
-
.sc(DisassociateHostedZone$)
|
|
326
|
+
.sc(schemas_0.DisassociateHostedZone$)
|
|
1512
327
|
.build() {
|
|
1513
328
|
}
|
|
1514
329
|
|
|
@@ -1520,7 +335,7 @@ class EnableDNSViewCommand extends smithyClient.Command
|
|
|
1520
335
|
})
|
|
1521
336
|
.s("EC2DNSGlobalResolverCustomerAPI", "EnableDNSView", {})
|
|
1522
337
|
.n("Route53GlobalResolverClient", "EnableDNSViewCommand")
|
|
1523
|
-
.sc(EnableDNSView$)
|
|
338
|
+
.sc(schemas_0.EnableDNSView$)
|
|
1524
339
|
.build() {
|
|
1525
340
|
}
|
|
1526
341
|
|
|
@@ -1532,7 +347,7 @@ class GetAccessSourceCommand extends smithyClient.Command
|
|
|
1532
347
|
})
|
|
1533
348
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetAccessSource", {})
|
|
1534
349
|
.n("Route53GlobalResolverClient", "GetAccessSourceCommand")
|
|
1535
|
-
.sc(GetAccessSource$)
|
|
350
|
+
.sc(schemas_0.GetAccessSource$)
|
|
1536
351
|
.build() {
|
|
1537
352
|
}
|
|
1538
353
|
|
|
@@ -1544,7 +359,7 @@ class GetAccessTokenCommand extends smithyClient.Command
|
|
|
1544
359
|
})
|
|
1545
360
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetAccessToken", {})
|
|
1546
361
|
.n("Route53GlobalResolverClient", "GetAccessTokenCommand")
|
|
1547
|
-
.sc(GetAccessToken$)
|
|
362
|
+
.sc(schemas_0.GetAccessToken$)
|
|
1548
363
|
.build() {
|
|
1549
364
|
}
|
|
1550
365
|
|
|
@@ -1556,7 +371,7 @@ class GetDNSViewCommand extends smithyClient.Command
|
|
|
1556
371
|
})
|
|
1557
372
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetDNSView", {})
|
|
1558
373
|
.n("Route53GlobalResolverClient", "GetDNSViewCommand")
|
|
1559
|
-
.sc(GetDNSView$)
|
|
374
|
+
.sc(schemas_0.GetDNSView$)
|
|
1560
375
|
.build() {
|
|
1561
376
|
}
|
|
1562
377
|
|
|
@@ -1568,7 +383,7 @@ class GetFirewallDomainListCommand extends smithyClient.Command
|
|
|
1568
383
|
})
|
|
1569
384
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetFirewallDomainList", {})
|
|
1570
385
|
.n("Route53GlobalResolverClient", "GetFirewallDomainListCommand")
|
|
1571
|
-
.sc(GetFirewallDomainList$)
|
|
386
|
+
.sc(schemas_0.GetFirewallDomainList$)
|
|
1572
387
|
.build() {
|
|
1573
388
|
}
|
|
1574
389
|
|
|
@@ -1580,7 +395,7 @@ class GetFirewallRuleCommand extends smithyClient.Command
|
|
|
1580
395
|
})
|
|
1581
396
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetFirewallRule", {})
|
|
1582
397
|
.n("Route53GlobalResolverClient", "GetFirewallRuleCommand")
|
|
1583
|
-
.sc(GetFirewallRule$)
|
|
398
|
+
.sc(schemas_0.GetFirewallRule$)
|
|
1584
399
|
.build() {
|
|
1585
400
|
}
|
|
1586
401
|
|
|
@@ -1592,7 +407,7 @@ class GetGlobalResolverCommand extends smithyClient.Command
|
|
|
1592
407
|
})
|
|
1593
408
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetGlobalResolver", {})
|
|
1594
409
|
.n("Route53GlobalResolverClient", "GetGlobalResolverCommand")
|
|
1595
|
-
.sc(GetGlobalResolver$)
|
|
410
|
+
.sc(schemas_0.GetGlobalResolver$)
|
|
1596
411
|
.build() {
|
|
1597
412
|
}
|
|
1598
413
|
|
|
@@ -1604,7 +419,7 @@ class GetHostedZoneAssociationCommand extends smithyClient.Command
|
|
|
1604
419
|
})
|
|
1605
420
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetHostedZoneAssociation", {})
|
|
1606
421
|
.n("Route53GlobalResolverClient", "GetHostedZoneAssociationCommand")
|
|
1607
|
-
.sc(GetHostedZoneAssociation$)
|
|
422
|
+
.sc(schemas_0.GetHostedZoneAssociation$)
|
|
1608
423
|
.build() {
|
|
1609
424
|
}
|
|
1610
425
|
|
|
@@ -1616,7 +431,7 @@ class GetManagedFirewallDomainListCommand extends smithyClient.Command
|
|
|
1616
431
|
})
|
|
1617
432
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetManagedFirewallDomainList", {})
|
|
1618
433
|
.n("Route53GlobalResolverClient", "GetManagedFirewallDomainListCommand")
|
|
1619
|
-
.sc(GetManagedFirewallDomainList$)
|
|
434
|
+
.sc(schemas_0.GetManagedFirewallDomainList$)
|
|
1620
435
|
.build() {
|
|
1621
436
|
}
|
|
1622
437
|
|
|
@@ -1628,7 +443,7 @@ class ImportFirewallDomainsCommand extends smithyClient.Command
|
|
|
1628
443
|
})
|
|
1629
444
|
.s("EC2DNSGlobalResolverCustomerAPI", "ImportFirewallDomains", {})
|
|
1630
445
|
.n("Route53GlobalResolverClient", "ImportFirewallDomainsCommand")
|
|
1631
|
-
.sc(ImportFirewallDomains$)
|
|
446
|
+
.sc(schemas_0.ImportFirewallDomains$)
|
|
1632
447
|
.build() {
|
|
1633
448
|
}
|
|
1634
449
|
|
|
@@ -1640,7 +455,7 @@ class ListAccessSourcesCommand extends smithyClient.Command
|
|
|
1640
455
|
})
|
|
1641
456
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListAccessSources", {})
|
|
1642
457
|
.n("Route53GlobalResolverClient", "ListAccessSourcesCommand")
|
|
1643
|
-
.sc(ListAccessSources$)
|
|
458
|
+
.sc(schemas_0.ListAccessSources$)
|
|
1644
459
|
.build() {
|
|
1645
460
|
}
|
|
1646
461
|
|
|
@@ -1652,7 +467,7 @@ class ListAccessTokensCommand extends smithyClient.Command
|
|
|
1652
467
|
})
|
|
1653
468
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListAccessTokens", {})
|
|
1654
469
|
.n("Route53GlobalResolverClient", "ListAccessTokensCommand")
|
|
1655
|
-
.sc(ListAccessTokens$)
|
|
470
|
+
.sc(schemas_0.ListAccessTokens$)
|
|
1656
471
|
.build() {
|
|
1657
472
|
}
|
|
1658
473
|
|
|
@@ -1664,7 +479,7 @@ class ListDNSViewsCommand extends smithyClient.Command
|
|
|
1664
479
|
})
|
|
1665
480
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListDNSViews", {})
|
|
1666
481
|
.n("Route53GlobalResolverClient", "ListDNSViewsCommand")
|
|
1667
|
-
.sc(ListDNSViews$)
|
|
482
|
+
.sc(schemas_0.ListDNSViews$)
|
|
1668
483
|
.build() {
|
|
1669
484
|
}
|
|
1670
485
|
|
|
@@ -1676,7 +491,7 @@ class ListFirewallDomainListsCommand extends smithyClient.Command
|
|
|
1676
491
|
})
|
|
1677
492
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallDomainLists", {})
|
|
1678
493
|
.n("Route53GlobalResolverClient", "ListFirewallDomainListsCommand")
|
|
1679
|
-
.sc(ListFirewallDomainLists$)
|
|
494
|
+
.sc(schemas_0.ListFirewallDomainLists$)
|
|
1680
495
|
.build() {
|
|
1681
496
|
}
|
|
1682
497
|
|
|
@@ -1688,7 +503,7 @@ class ListFirewallDomainsCommand extends smithyClient.Command
|
|
|
1688
503
|
})
|
|
1689
504
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallDomains", {})
|
|
1690
505
|
.n("Route53GlobalResolverClient", "ListFirewallDomainsCommand")
|
|
1691
|
-
.sc(ListFirewallDomains$)
|
|
506
|
+
.sc(schemas_0.ListFirewallDomains$)
|
|
1692
507
|
.build() {
|
|
1693
508
|
}
|
|
1694
509
|
|
|
@@ -1700,7 +515,7 @@ class ListFirewallRulesCommand extends smithyClient.Command
|
|
|
1700
515
|
})
|
|
1701
516
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallRules", {})
|
|
1702
517
|
.n("Route53GlobalResolverClient", "ListFirewallRulesCommand")
|
|
1703
|
-
.sc(ListFirewallRules$)
|
|
518
|
+
.sc(schemas_0.ListFirewallRules$)
|
|
1704
519
|
.build() {
|
|
1705
520
|
}
|
|
1706
521
|
|
|
@@ -1712,7 +527,7 @@ class ListGlobalResolversCommand extends smithyClient.Command
|
|
|
1712
527
|
})
|
|
1713
528
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListGlobalResolvers", {})
|
|
1714
529
|
.n("Route53GlobalResolverClient", "ListGlobalResolversCommand")
|
|
1715
|
-
.sc(ListGlobalResolvers$)
|
|
530
|
+
.sc(schemas_0.ListGlobalResolvers$)
|
|
1716
531
|
.build() {
|
|
1717
532
|
}
|
|
1718
533
|
|
|
@@ -1724,7 +539,7 @@ class ListHostedZoneAssociationsCommand extends smithyClient.Command
|
|
|
1724
539
|
})
|
|
1725
540
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListHostedZoneAssociations", {})
|
|
1726
541
|
.n("Route53GlobalResolverClient", "ListHostedZoneAssociationsCommand")
|
|
1727
|
-
.sc(ListHostedZoneAssociations$)
|
|
542
|
+
.sc(schemas_0.ListHostedZoneAssociations$)
|
|
1728
543
|
.build() {
|
|
1729
544
|
}
|
|
1730
545
|
|
|
@@ -1736,7 +551,7 @@ class ListManagedFirewallDomainListsCommand extends smithyClient.Command
|
|
|
1736
551
|
})
|
|
1737
552
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListManagedFirewallDomainLists", {})
|
|
1738
553
|
.n("Route53GlobalResolverClient", "ListManagedFirewallDomainListsCommand")
|
|
1739
|
-
.sc(ListManagedFirewallDomainLists$)
|
|
554
|
+
.sc(schemas_0.ListManagedFirewallDomainLists$)
|
|
1740
555
|
.build() {
|
|
1741
556
|
}
|
|
1742
557
|
|
|
@@ -1748,7 +563,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1748
563
|
})
|
|
1749
564
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListTagsForResource", {})
|
|
1750
565
|
.n("Route53GlobalResolverClient", "ListTagsForResourceCommand")
|
|
1751
|
-
.sc(ListTagsForResource$)
|
|
566
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1752
567
|
.build() {
|
|
1753
568
|
}
|
|
1754
569
|
|
|
@@ -1760,7 +575,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1760
575
|
})
|
|
1761
576
|
.s("EC2DNSGlobalResolverCustomerAPI", "TagResource", {})
|
|
1762
577
|
.n("Route53GlobalResolverClient", "TagResourceCommand")
|
|
1763
|
-
.sc(TagResource$)
|
|
578
|
+
.sc(schemas_0.TagResource$)
|
|
1764
579
|
.build() {
|
|
1765
580
|
}
|
|
1766
581
|
|
|
@@ -1772,7 +587,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1772
587
|
})
|
|
1773
588
|
.s("EC2DNSGlobalResolverCustomerAPI", "UntagResource", {})
|
|
1774
589
|
.n("Route53GlobalResolverClient", "UntagResourceCommand")
|
|
1775
|
-
.sc(UntagResource$)
|
|
590
|
+
.sc(schemas_0.UntagResource$)
|
|
1776
591
|
.build() {
|
|
1777
592
|
}
|
|
1778
593
|
|
|
@@ -1784,7 +599,7 @@ class UpdateAccessSourceCommand extends smithyClient.Command
|
|
|
1784
599
|
})
|
|
1785
600
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateAccessSource", {})
|
|
1786
601
|
.n("Route53GlobalResolverClient", "UpdateAccessSourceCommand")
|
|
1787
|
-
.sc(UpdateAccessSource$)
|
|
602
|
+
.sc(schemas_0.UpdateAccessSource$)
|
|
1788
603
|
.build() {
|
|
1789
604
|
}
|
|
1790
605
|
|
|
@@ -1796,7 +611,7 @@ class UpdateAccessTokenCommand extends smithyClient.Command
|
|
|
1796
611
|
})
|
|
1797
612
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateAccessToken", {})
|
|
1798
613
|
.n("Route53GlobalResolverClient", "UpdateAccessTokenCommand")
|
|
1799
|
-
.sc(UpdateAccessToken$)
|
|
614
|
+
.sc(schemas_0.UpdateAccessToken$)
|
|
1800
615
|
.build() {
|
|
1801
616
|
}
|
|
1802
617
|
|
|
@@ -1808,7 +623,7 @@ class UpdateDNSViewCommand extends smithyClient.Command
|
|
|
1808
623
|
})
|
|
1809
624
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateDNSView", {})
|
|
1810
625
|
.n("Route53GlobalResolverClient", "UpdateDNSViewCommand")
|
|
1811
|
-
.sc(UpdateDNSView$)
|
|
626
|
+
.sc(schemas_0.UpdateDNSView$)
|
|
1812
627
|
.build() {
|
|
1813
628
|
}
|
|
1814
629
|
|
|
@@ -1820,7 +635,7 @@ class UpdateFirewallDomainsCommand extends smithyClient.Command
|
|
|
1820
635
|
})
|
|
1821
636
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateFirewallDomains", {})
|
|
1822
637
|
.n("Route53GlobalResolverClient", "UpdateFirewallDomainsCommand")
|
|
1823
|
-
.sc(UpdateFirewallDomains$)
|
|
638
|
+
.sc(schemas_0.UpdateFirewallDomains$)
|
|
1824
639
|
.build() {
|
|
1825
640
|
}
|
|
1826
641
|
|
|
@@ -1832,7 +647,7 @@ class UpdateFirewallRuleCommand extends smithyClient.Command
|
|
|
1832
647
|
})
|
|
1833
648
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateFirewallRule", {})
|
|
1834
649
|
.n("Route53GlobalResolverClient", "UpdateFirewallRuleCommand")
|
|
1835
|
-
.sc(UpdateFirewallRule$)
|
|
650
|
+
.sc(schemas_0.UpdateFirewallRule$)
|
|
1836
651
|
.build() {
|
|
1837
652
|
}
|
|
1838
653
|
|
|
@@ -1844,7 +659,7 @@ class UpdateGlobalResolverCommand extends smithyClient.Command
|
|
|
1844
659
|
})
|
|
1845
660
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateGlobalResolver", {})
|
|
1846
661
|
.n("Route53GlobalResolverClient", "UpdateGlobalResolverCommand")
|
|
1847
|
-
.sc(UpdateGlobalResolver$)
|
|
662
|
+
.sc(schemas_0.UpdateGlobalResolver$)
|
|
1848
663
|
.build() {
|
|
1849
664
|
}
|
|
1850
665
|
|
|
@@ -1856,7 +671,7 @@ class UpdateHostedZoneAssociationCommand extends smithyClient.Command
|
|
|
1856
671
|
})
|
|
1857
672
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateHostedZoneAssociation", {})
|
|
1858
673
|
.n("Route53GlobalResolverClient", "UpdateHostedZoneAssociationCommand")
|
|
1859
|
-
.sc(UpdateHostedZoneAssociation$)
|
|
674
|
+
.sc(schemas_0.UpdateHostedZoneAssociation$)
|
|
1860
675
|
.build() {
|
|
1861
676
|
}
|
|
1862
677
|
|
|
@@ -2025,244 +840,73 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2025
840
|
enumerable: true,
|
|
2026
841
|
get: function () { return smithyClient.Client; }
|
|
2027
842
|
});
|
|
2028
|
-
exports
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
exports.AssociateHostedZone$ = AssociateHostedZone$;
|
|
843
|
+
Object.defineProperty(exports, "Route53GlobalResolverServiceException", {
|
|
844
|
+
enumerable: true,
|
|
845
|
+
get: function () { return Route53GlobalResolverServiceException.Route53GlobalResolverServiceException; }
|
|
846
|
+
});
|
|
2033
847
|
exports.AssociateHostedZoneCommand = AssociateHostedZoneCommand;
|
|
2034
|
-
exports.AssociateHostedZoneInput$ = AssociateHostedZoneInput$;
|
|
2035
|
-
exports.AssociateHostedZoneOutput$ = AssociateHostedZoneOutput$;
|
|
2036
|
-
exports.BatchCreateFirewallRule$ = BatchCreateFirewallRule$;
|
|
2037
848
|
exports.BatchCreateFirewallRuleCommand = BatchCreateFirewallRuleCommand;
|
|
2038
|
-
exports.BatchCreateFirewallRuleInput$ = BatchCreateFirewallRuleInput$;
|
|
2039
|
-
exports.BatchCreateFirewallRuleInputItem$ = BatchCreateFirewallRuleInputItem$;
|
|
2040
|
-
exports.BatchCreateFirewallRuleOutput$ = BatchCreateFirewallRuleOutput$;
|
|
2041
|
-
exports.BatchCreateFirewallRuleOutputItem$ = BatchCreateFirewallRuleOutputItem$;
|
|
2042
|
-
exports.BatchCreateFirewallRuleResult$ = BatchCreateFirewallRuleResult$;
|
|
2043
|
-
exports.BatchDeleteFirewallRule$ = BatchDeleteFirewallRule$;
|
|
2044
849
|
exports.BatchDeleteFirewallRuleCommand = BatchDeleteFirewallRuleCommand;
|
|
2045
|
-
exports.BatchDeleteFirewallRuleInput$ = BatchDeleteFirewallRuleInput$;
|
|
2046
|
-
exports.BatchDeleteFirewallRuleInputItem$ = BatchDeleteFirewallRuleInputItem$;
|
|
2047
|
-
exports.BatchDeleteFirewallRuleOutput$ = BatchDeleteFirewallRuleOutput$;
|
|
2048
|
-
exports.BatchDeleteFirewallRuleOutputItem$ = BatchDeleteFirewallRuleOutputItem$;
|
|
2049
|
-
exports.BatchDeleteFirewallRuleResult$ = BatchDeleteFirewallRuleResult$;
|
|
2050
|
-
exports.BatchUpdateFirewallRule$ = BatchUpdateFirewallRule$;
|
|
2051
850
|
exports.BatchUpdateFirewallRuleCommand = BatchUpdateFirewallRuleCommand;
|
|
2052
|
-
exports.BatchUpdateFirewallRuleInput$ = BatchUpdateFirewallRuleInput$;
|
|
2053
|
-
exports.BatchUpdateFirewallRuleInputItem$ = BatchUpdateFirewallRuleInputItem$;
|
|
2054
|
-
exports.BatchUpdateFirewallRuleOutput$ = BatchUpdateFirewallRuleOutput$;
|
|
2055
|
-
exports.BatchUpdateFirewallRuleOutputItem$ = BatchUpdateFirewallRuleOutputItem$;
|
|
2056
|
-
exports.BatchUpdateFirewallRuleResult$ = BatchUpdateFirewallRuleResult$;
|
|
2057
851
|
exports.BlockOverrideDnsQueryType = BlockOverrideDnsQueryType;
|
|
2058
852
|
exports.CRResourceStatus = CRResourceStatus;
|
|
2059
853
|
exports.ConfidenceThreshold = ConfidenceThreshold;
|
|
2060
|
-
exports.ConflictException = ConflictException;
|
|
2061
|
-
exports.ConflictException$ = ConflictException$;
|
|
2062
|
-
exports.CreateAccessSource$ = CreateAccessSource$;
|
|
2063
854
|
exports.CreateAccessSourceCommand = CreateAccessSourceCommand;
|
|
2064
|
-
exports.CreateAccessSourceInput$ = CreateAccessSourceInput$;
|
|
2065
|
-
exports.CreateAccessSourceOutput$ = CreateAccessSourceOutput$;
|
|
2066
|
-
exports.CreateAccessToken$ = CreateAccessToken$;
|
|
2067
855
|
exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
|
|
2068
|
-
exports.CreateAccessTokenInput$ = CreateAccessTokenInput$;
|
|
2069
|
-
exports.CreateAccessTokenOutput$ = CreateAccessTokenOutput$;
|
|
2070
|
-
exports.CreateDNSView$ = CreateDNSView$;
|
|
2071
856
|
exports.CreateDNSViewCommand = CreateDNSViewCommand;
|
|
2072
|
-
exports.CreateDNSViewInput$ = CreateDNSViewInput$;
|
|
2073
|
-
exports.CreateDNSViewOutput$ = CreateDNSViewOutput$;
|
|
2074
|
-
exports.CreateFirewallDomainList$ = CreateFirewallDomainList$;
|
|
2075
857
|
exports.CreateFirewallDomainListCommand = CreateFirewallDomainListCommand;
|
|
2076
|
-
exports.CreateFirewallDomainListInput$ = CreateFirewallDomainListInput$;
|
|
2077
|
-
exports.CreateFirewallDomainListOutput$ = CreateFirewallDomainListOutput$;
|
|
2078
|
-
exports.CreateFirewallRule$ = CreateFirewallRule$;
|
|
2079
858
|
exports.CreateFirewallRuleCommand = CreateFirewallRuleCommand;
|
|
2080
|
-
exports.CreateFirewallRuleInput$ = CreateFirewallRuleInput$;
|
|
2081
|
-
exports.CreateFirewallRuleOutput$ = CreateFirewallRuleOutput$;
|
|
2082
|
-
exports.CreateGlobalResolver$ = CreateGlobalResolver$;
|
|
2083
859
|
exports.CreateGlobalResolverCommand = CreateGlobalResolverCommand;
|
|
2084
|
-
exports.CreateGlobalResolverInput$ = CreateGlobalResolverInput$;
|
|
2085
|
-
exports.CreateGlobalResolverOutput$ = CreateGlobalResolverOutput$;
|
|
2086
|
-
exports.DNSViewSummary$ = DNSViewSummary$;
|
|
2087
|
-
exports.DeleteAccessSource$ = DeleteAccessSource$;
|
|
2088
860
|
exports.DeleteAccessSourceCommand = DeleteAccessSourceCommand;
|
|
2089
|
-
exports.DeleteAccessSourceInput$ = DeleteAccessSourceInput$;
|
|
2090
|
-
exports.DeleteAccessSourceOutput$ = DeleteAccessSourceOutput$;
|
|
2091
|
-
exports.DeleteAccessToken$ = DeleteAccessToken$;
|
|
2092
861
|
exports.DeleteAccessTokenCommand = DeleteAccessTokenCommand;
|
|
2093
|
-
exports.DeleteAccessTokenInput$ = DeleteAccessTokenInput$;
|
|
2094
|
-
exports.DeleteAccessTokenOutput$ = DeleteAccessTokenOutput$;
|
|
2095
|
-
exports.DeleteDNSView$ = DeleteDNSView$;
|
|
2096
862
|
exports.DeleteDNSViewCommand = DeleteDNSViewCommand;
|
|
2097
|
-
exports.DeleteDNSViewInput$ = DeleteDNSViewInput$;
|
|
2098
|
-
exports.DeleteDNSViewOutput$ = DeleteDNSViewOutput$;
|
|
2099
|
-
exports.DeleteFirewallDomainList$ = DeleteFirewallDomainList$;
|
|
2100
863
|
exports.DeleteFirewallDomainListCommand = DeleteFirewallDomainListCommand;
|
|
2101
|
-
exports.DeleteFirewallDomainListInput$ = DeleteFirewallDomainListInput$;
|
|
2102
|
-
exports.DeleteFirewallDomainListOutput$ = DeleteFirewallDomainListOutput$;
|
|
2103
|
-
exports.DeleteFirewallRule$ = DeleteFirewallRule$;
|
|
2104
864
|
exports.DeleteFirewallRuleCommand = DeleteFirewallRuleCommand;
|
|
2105
|
-
exports.DeleteFirewallRuleInput$ = DeleteFirewallRuleInput$;
|
|
2106
|
-
exports.DeleteFirewallRuleOutput$ = DeleteFirewallRuleOutput$;
|
|
2107
|
-
exports.DeleteGlobalResolver$ = DeleteGlobalResolver$;
|
|
2108
865
|
exports.DeleteGlobalResolverCommand = DeleteGlobalResolverCommand;
|
|
2109
|
-
exports.DeleteGlobalResolverInput$ = DeleteGlobalResolverInput$;
|
|
2110
|
-
exports.DeleteGlobalResolverOutput$ = DeleteGlobalResolverOutput$;
|
|
2111
|
-
exports.DisableDNSView$ = DisableDNSView$;
|
|
2112
866
|
exports.DisableDNSViewCommand = DisableDNSViewCommand;
|
|
2113
|
-
exports.DisableDNSViewInput$ = DisableDNSViewInput$;
|
|
2114
|
-
exports.DisableDNSViewOutput$ = DisableDNSViewOutput$;
|
|
2115
|
-
exports.DisassociateHostedZone$ = DisassociateHostedZone$;
|
|
2116
867
|
exports.DisassociateHostedZoneCommand = DisassociateHostedZoneCommand;
|
|
2117
|
-
exports.DisassociateHostedZoneInput$ = DisassociateHostedZoneInput$;
|
|
2118
|
-
exports.DisassociateHostedZoneOutput$ = DisassociateHostedZoneOutput$;
|
|
2119
868
|
exports.DnsAdvancedProtection = DnsAdvancedProtection;
|
|
2120
869
|
exports.DnsProtocol = DnsProtocol;
|
|
2121
870
|
exports.DnsSecValidationType = DnsSecValidationType;
|
|
2122
871
|
exports.EdnsClientSubnetType = EdnsClientSubnetType;
|
|
2123
|
-
exports.EnableDNSView$ = EnableDNSView$;
|
|
2124
872
|
exports.EnableDNSViewCommand = EnableDNSViewCommand;
|
|
2125
|
-
exports.EnableDNSViewInput$ = EnableDNSViewInput$;
|
|
2126
|
-
exports.EnableDNSViewOutput$ = EnableDNSViewOutput$;
|
|
2127
873
|
exports.FirewallBlockResponse = FirewallBlockResponse;
|
|
2128
|
-
exports.FirewallDomainListsItem$ = FirewallDomainListsItem$;
|
|
2129
874
|
exports.FirewallRuleAction = FirewallRuleAction;
|
|
2130
875
|
exports.FirewallRulesFailOpenType = FirewallRulesFailOpenType;
|
|
2131
|
-
exports.FirewallRulesItem$ = FirewallRulesItem$;
|
|
2132
|
-
exports.GetAccessSource$ = GetAccessSource$;
|
|
2133
876
|
exports.GetAccessSourceCommand = GetAccessSourceCommand;
|
|
2134
|
-
exports.GetAccessSourceInput$ = GetAccessSourceInput$;
|
|
2135
|
-
exports.GetAccessSourceOutput$ = GetAccessSourceOutput$;
|
|
2136
|
-
exports.GetAccessToken$ = GetAccessToken$;
|
|
2137
877
|
exports.GetAccessTokenCommand = GetAccessTokenCommand;
|
|
2138
|
-
exports.GetAccessTokenInput$ = GetAccessTokenInput$;
|
|
2139
|
-
exports.GetAccessTokenOutput$ = GetAccessTokenOutput$;
|
|
2140
|
-
exports.GetDNSView$ = GetDNSView$;
|
|
2141
878
|
exports.GetDNSViewCommand = GetDNSViewCommand;
|
|
2142
|
-
exports.GetDNSViewInput$ = GetDNSViewInput$;
|
|
2143
|
-
exports.GetDNSViewOutput$ = GetDNSViewOutput$;
|
|
2144
|
-
exports.GetFirewallDomainList$ = GetFirewallDomainList$;
|
|
2145
879
|
exports.GetFirewallDomainListCommand = GetFirewallDomainListCommand;
|
|
2146
|
-
exports.GetFirewallDomainListInput$ = GetFirewallDomainListInput$;
|
|
2147
|
-
exports.GetFirewallDomainListOutput$ = GetFirewallDomainListOutput$;
|
|
2148
|
-
exports.GetFirewallRule$ = GetFirewallRule$;
|
|
2149
880
|
exports.GetFirewallRuleCommand = GetFirewallRuleCommand;
|
|
2150
|
-
exports.GetFirewallRuleInput$ = GetFirewallRuleInput$;
|
|
2151
|
-
exports.GetFirewallRuleOutput$ = GetFirewallRuleOutput$;
|
|
2152
|
-
exports.GetGlobalResolver$ = GetGlobalResolver$;
|
|
2153
881
|
exports.GetGlobalResolverCommand = GetGlobalResolverCommand;
|
|
2154
|
-
exports.GetGlobalResolverInput$ = GetGlobalResolverInput$;
|
|
2155
|
-
exports.GetGlobalResolverOutput$ = GetGlobalResolverOutput$;
|
|
2156
|
-
exports.GetHostedZoneAssociation$ = GetHostedZoneAssociation$;
|
|
2157
882
|
exports.GetHostedZoneAssociationCommand = GetHostedZoneAssociationCommand;
|
|
2158
|
-
exports.GetHostedZoneAssociationInput$ = GetHostedZoneAssociationInput$;
|
|
2159
|
-
exports.GetHostedZoneAssociationOutput$ = GetHostedZoneAssociationOutput$;
|
|
2160
|
-
exports.GetManagedFirewallDomainList$ = GetManagedFirewallDomainList$;
|
|
2161
883
|
exports.GetManagedFirewallDomainListCommand = GetManagedFirewallDomainListCommand;
|
|
2162
|
-
exports.GetManagedFirewallDomainListInput$ = GetManagedFirewallDomainListInput$;
|
|
2163
|
-
exports.GetManagedFirewallDomainListOutput$ = GetManagedFirewallDomainListOutput$;
|
|
2164
|
-
exports.GlobalResolversItem$ = GlobalResolversItem$;
|
|
2165
884
|
exports.HostedZoneAssociationStatus = HostedZoneAssociationStatus;
|
|
2166
|
-
exports.HostedZoneAssociationSummary$ = HostedZoneAssociationSummary$;
|
|
2167
|
-
exports.ImportFirewallDomains$ = ImportFirewallDomains$;
|
|
2168
885
|
exports.ImportFirewallDomainsCommand = ImportFirewallDomainsCommand;
|
|
2169
|
-
exports.ImportFirewallDomainsInput$ = ImportFirewallDomainsInput$;
|
|
2170
|
-
exports.ImportFirewallDomainsOutput$ = ImportFirewallDomainsOutput$;
|
|
2171
|
-
exports.InternalServerException = InternalServerException;
|
|
2172
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2173
886
|
exports.IpAddressType = IpAddressType;
|
|
2174
|
-
exports.ListAccessSources$ = ListAccessSources$;
|
|
2175
887
|
exports.ListAccessSourcesCommand = ListAccessSourcesCommand;
|
|
2176
|
-
exports.ListAccessSourcesInput$ = ListAccessSourcesInput$;
|
|
2177
|
-
exports.ListAccessSourcesOutput$ = ListAccessSourcesOutput$;
|
|
2178
|
-
exports.ListAccessTokens$ = ListAccessTokens$;
|
|
2179
888
|
exports.ListAccessTokensCommand = ListAccessTokensCommand;
|
|
2180
|
-
exports.ListAccessTokensInput$ = ListAccessTokensInput$;
|
|
2181
|
-
exports.ListAccessTokensOutput$ = ListAccessTokensOutput$;
|
|
2182
|
-
exports.ListDNSViews$ = ListDNSViews$;
|
|
2183
889
|
exports.ListDNSViewsCommand = ListDNSViewsCommand;
|
|
2184
|
-
exports.ListDNSViewsInput$ = ListDNSViewsInput$;
|
|
2185
|
-
exports.ListDNSViewsOutput$ = ListDNSViewsOutput$;
|
|
2186
|
-
exports.ListFirewallDomainLists$ = ListFirewallDomainLists$;
|
|
2187
890
|
exports.ListFirewallDomainListsCommand = ListFirewallDomainListsCommand;
|
|
2188
|
-
exports.ListFirewallDomainListsInput$ = ListFirewallDomainListsInput$;
|
|
2189
|
-
exports.ListFirewallDomainListsOutput$ = ListFirewallDomainListsOutput$;
|
|
2190
|
-
exports.ListFirewallDomains$ = ListFirewallDomains$;
|
|
2191
891
|
exports.ListFirewallDomainsCommand = ListFirewallDomainsCommand;
|
|
2192
|
-
exports.ListFirewallDomainsInput$ = ListFirewallDomainsInput$;
|
|
2193
|
-
exports.ListFirewallDomainsOutput$ = ListFirewallDomainsOutput$;
|
|
2194
|
-
exports.ListFirewallRules$ = ListFirewallRules$;
|
|
2195
892
|
exports.ListFirewallRulesCommand = ListFirewallRulesCommand;
|
|
2196
|
-
exports.ListFirewallRulesInput$ = ListFirewallRulesInput$;
|
|
2197
|
-
exports.ListFirewallRulesOutput$ = ListFirewallRulesOutput$;
|
|
2198
|
-
exports.ListGlobalResolvers$ = ListGlobalResolvers$;
|
|
2199
893
|
exports.ListGlobalResolversCommand = ListGlobalResolversCommand;
|
|
2200
|
-
exports.ListGlobalResolversInput$ = ListGlobalResolversInput$;
|
|
2201
|
-
exports.ListGlobalResolversOutput$ = ListGlobalResolversOutput$;
|
|
2202
|
-
exports.ListHostedZoneAssociations$ = ListHostedZoneAssociations$;
|
|
2203
894
|
exports.ListHostedZoneAssociationsCommand = ListHostedZoneAssociationsCommand;
|
|
2204
|
-
exports.ListHostedZoneAssociationsInput$ = ListHostedZoneAssociationsInput$;
|
|
2205
|
-
exports.ListHostedZoneAssociationsOutput$ = ListHostedZoneAssociationsOutput$;
|
|
2206
|
-
exports.ListManagedFirewallDomainLists$ = ListManagedFirewallDomainLists$;
|
|
2207
895
|
exports.ListManagedFirewallDomainListsCommand = ListManagedFirewallDomainListsCommand;
|
|
2208
|
-
exports.ListManagedFirewallDomainListsInput$ = ListManagedFirewallDomainListsInput$;
|
|
2209
|
-
exports.ListManagedFirewallDomainListsOutput$ = ListManagedFirewallDomainListsOutput$;
|
|
2210
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2211
896
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2212
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2213
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2214
|
-
exports.ManagedFirewallDomainListsItem$ = ManagedFirewallDomainListsItem$;
|
|
2215
897
|
exports.ProfileResourceStatus = ProfileResourceStatus;
|
|
2216
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2217
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2218
898
|
exports.Route53GlobalResolver = Route53GlobalResolver;
|
|
2219
899
|
exports.Route53GlobalResolverClient = Route53GlobalResolverClient;
|
|
2220
|
-
exports.Route53GlobalResolverServiceException = Route53GlobalResolverServiceException;
|
|
2221
|
-
exports.Route53GlobalResolverServiceException$ = Route53GlobalResolverServiceException$;
|
|
2222
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2223
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2224
|
-
exports.TagResource$ = TagResource$;
|
|
2225
900
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2226
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2227
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2228
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2229
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2230
901
|
exports.TokenStatus = TokenStatus;
|
|
2231
|
-
exports.UntagResource$ = UntagResource$;
|
|
2232
902
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2233
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2234
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2235
|
-
exports.UpdateAccessSource$ = UpdateAccessSource$;
|
|
2236
903
|
exports.UpdateAccessSourceCommand = UpdateAccessSourceCommand;
|
|
2237
|
-
exports.UpdateAccessSourceInput$ = UpdateAccessSourceInput$;
|
|
2238
|
-
exports.UpdateAccessSourceOutput$ = UpdateAccessSourceOutput$;
|
|
2239
|
-
exports.UpdateAccessToken$ = UpdateAccessToken$;
|
|
2240
904
|
exports.UpdateAccessTokenCommand = UpdateAccessTokenCommand;
|
|
2241
|
-
exports.UpdateAccessTokenInput$ = UpdateAccessTokenInput$;
|
|
2242
|
-
exports.UpdateAccessTokenOutput$ = UpdateAccessTokenOutput$;
|
|
2243
|
-
exports.UpdateDNSView$ = UpdateDNSView$;
|
|
2244
905
|
exports.UpdateDNSViewCommand = UpdateDNSViewCommand;
|
|
2245
|
-
exports.UpdateDNSViewInput$ = UpdateDNSViewInput$;
|
|
2246
|
-
exports.UpdateDNSViewOutput$ = UpdateDNSViewOutput$;
|
|
2247
|
-
exports.UpdateFirewallDomains$ = UpdateFirewallDomains$;
|
|
2248
906
|
exports.UpdateFirewallDomainsCommand = UpdateFirewallDomainsCommand;
|
|
2249
|
-
exports.UpdateFirewallDomainsInput$ = UpdateFirewallDomainsInput$;
|
|
2250
|
-
exports.UpdateFirewallDomainsOutput$ = UpdateFirewallDomainsOutput$;
|
|
2251
|
-
exports.UpdateFirewallRule$ = UpdateFirewallRule$;
|
|
2252
907
|
exports.UpdateFirewallRuleCommand = UpdateFirewallRuleCommand;
|
|
2253
|
-
exports.UpdateFirewallRuleInput$ = UpdateFirewallRuleInput$;
|
|
2254
|
-
exports.UpdateFirewallRuleOutput$ = UpdateFirewallRuleOutput$;
|
|
2255
|
-
exports.UpdateGlobalResolver$ = UpdateGlobalResolver$;
|
|
2256
908
|
exports.UpdateGlobalResolverCommand = UpdateGlobalResolverCommand;
|
|
2257
|
-
exports.UpdateGlobalResolverInput$ = UpdateGlobalResolverInput$;
|
|
2258
|
-
exports.UpdateGlobalResolverOutput$ = UpdateGlobalResolverOutput$;
|
|
2259
|
-
exports.UpdateHostedZoneAssociation$ = UpdateHostedZoneAssociation$;
|
|
2260
909
|
exports.UpdateHostedZoneAssociationCommand = UpdateHostedZoneAssociationCommand;
|
|
2261
|
-
exports.UpdateHostedZoneAssociationInput$ = UpdateHostedZoneAssociationInput$;
|
|
2262
|
-
exports.UpdateHostedZoneAssociationOutput$ = UpdateHostedZoneAssociationOutput$;
|
|
2263
|
-
exports.ValidationException = ValidationException;
|
|
2264
|
-
exports.ValidationException$ = ValidationException$;
|
|
2265
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2266
910
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2267
911
|
exports.paginateListAccessSources = paginateListAccessSources;
|
|
2268
912
|
exports.paginateListAccessTokens = paginateListAccessTokens;
|
|
@@ -2273,3 +917,15 @@ exports.paginateListFirewallRules = paginateListFirewallRules;
|
|
|
2273
917
|
exports.paginateListGlobalResolvers = paginateListGlobalResolvers;
|
|
2274
918
|
exports.paginateListHostedZoneAssociations = paginateListHostedZoneAssociations;
|
|
2275
919
|
exports.paginateListManagedFirewallDomainLists = paginateListManagedFirewallDomainLists;
|
|
920
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
921
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
922
|
+
enumerable: true,
|
|
923
|
+
get: function () { return schemas_0[k]; }
|
|
924
|
+
});
|
|
925
|
+
});
|
|
926
|
+
Object.keys(errors).forEach(function (k) {
|
|
927
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
928
|
+
enumerable: true,
|
|
929
|
+
get: function () { return errors[k]; }
|
|
930
|
+
});
|
|
931
|
+
});
|