@aws-sdk/client-route-53 3.721.0 → 3.725.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 +725 -565
- package/dist-es/Route53Client.js +1 -0
- package/dist-es/models/models_0.js +148 -138
- package/dist-types/commands/AssociateVPCWithHostedZoneCommand.d.ts +1 -1
- package/dist-types/commands/ChangeResourceRecordSetsCommand.d.ts +1 -1
- package/dist-types/commands/CreateHealthCheckCommand.d.ts +2 -2
- package/dist-types/commands/CreateHostedZoneCommand.d.ts +2 -2
- package/dist-types/commands/CreateVPCAssociationAuthorizationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateVPCFromHostedZoneCommand.d.ts +1 -1
- package/dist-types/commands/GetHealthCheckCommand.d.ts +1 -1
- package/dist-types/commands/GetHostedZoneCommand.d.ts +1 -1
- package/dist-types/commands/ListHealthChecksCommand.d.ts +1 -1
- package/dist-types/commands/ListHostedZonesByVPCCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceRecordSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListVPCAssociationAuthorizationsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateHealthCheckCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +46 -46
package/dist-cjs/index.js
CHANGED
|
@@ -290,7 +290,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
290
290
|
}, "resolveRuntimeExtensions");
|
|
291
291
|
|
|
292
292
|
// src/Route53Client.ts
|
|
293
|
-
var
|
|
293
|
+
var Route53Client = class extends import_smithy_client.Client {
|
|
294
|
+
static {
|
|
295
|
+
__name(this, "Route53Client");
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* The resolved configuration of Route53Client class. This is resolved and normalized from the {@link Route53ClientConfig | constructor configuration interface}.
|
|
299
|
+
*/
|
|
300
|
+
config;
|
|
294
301
|
constructor(...[configuration]) {
|
|
295
302
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
296
303
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -300,7 +307,7 @@ var _Route53Client = class _Route53Client extends import_smithy_client.Client {
|
|
|
300
307
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
301
308
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
302
309
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
303
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
310
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
304
311
|
super(_config_8);
|
|
305
312
|
this.config = _config_8;
|
|
306
313
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -328,8 +335,6 @@ var _Route53Client = class _Route53Client extends import_smithy_client.Client {
|
|
|
328
335
|
super.destroy();
|
|
329
336
|
}
|
|
330
337
|
};
|
|
331
|
-
__name(_Route53Client, "Route53Client");
|
|
332
|
-
var Route53Client = _Route53Client;
|
|
333
338
|
|
|
334
339
|
// src/Route53.ts
|
|
335
340
|
|
|
@@ -348,7 +353,10 @@ var import_xml_builder = require("@aws-sdk/xml-builder");
|
|
|
348
353
|
|
|
349
354
|
// src/models/Route53ServiceException.ts
|
|
350
355
|
|
|
351
|
-
var
|
|
356
|
+
var Route53ServiceException = class _Route53ServiceException extends import_smithy_client.ServiceException {
|
|
357
|
+
static {
|
|
358
|
+
__name(this, "Route53ServiceException");
|
|
359
|
+
}
|
|
352
360
|
/**
|
|
353
361
|
* @internal
|
|
354
362
|
*/
|
|
@@ -357,8 +365,6 @@ var _Route53ServiceException = class _Route53ServiceException extends import_smi
|
|
|
357
365
|
Object.setPrototypeOf(this, _Route53ServiceException.prototype);
|
|
358
366
|
}
|
|
359
367
|
};
|
|
360
|
-
__name(_Route53ServiceException, "Route53ServiceException");
|
|
361
|
-
var Route53ServiceException = _Route53ServiceException;
|
|
362
368
|
|
|
363
369
|
// src/models/models_0.ts
|
|
364
370
|
var AccountLimitType = {
|
|
@@ -372,7 +378,12 @@ var ChangeStatus = {
|
|
|
372
378
|
INSYNC: "INSYNC",
|
|
373
379
|
PENDING: "PENDING"
|
|
374
380
|
};
|
|
375
|
-
var
|
|
381
|
+
var ConcurrentModification = class _ConcurrentModification extends Route53ServiceException {
|
|
382
|
+
static {
|
|
383
|
+
__name(this, "ConcurrentModification");
|
|
384
|
+
}
|
|
385
|
+
name = "ConcurrentModification";
|
|
386
|
+
$fault = "client";
|
|
376
387
|
/**
|
|
377
388
|
* @internal
|
|
378
389
|
*/
|
|
@@ -382,14 +393,15 @@ var _ConcurrentModification = class _ConcurrentModification extends Route53Servi
|
|
|
382
393
|
$fault: "client",
|
|
383
394
|
...opts
|
|
384
395
|
});
|
|
385
|
-
this.name = "ConcurrentModification";
|
|
386
|
-
this.$fault = "client";
|
|
387
396
|
Object.setPrototypeOf(this, _ConcurrentModification.prototype);
|
|
388
397
|
}
|
|
389
398
|
};
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
399
|
+
var InvalidInput = class _InvalidInput extends Route53ServiceException {
|
|
400
|
+
static {
|
|
401
|
+
__name(this, "InvalidInput");
|
|
402
|
+
}
|
|
403
|
+
name = "InvalidInput";
|
|
404
|
+
$fault = "client";
|
|
393
405
|
/**
|
|
394
406
|
* @internal
|
|
395
407
|
*/
|
|
@@ -399,14 +411,15 @@ var _InvalidInput = class _InvalidInput extends Route53ServiceException {
|
|
|
399
411
|
$fault: "client",
|
|
400
412
|
...opts
|
|
401
413
|
});
|
|
402
|
-
this.name = "InvalidInput";
|
|
403
|
-
this.$fault = "client";
|
|
404
414
|
Object.setPrototypeOf(this, _InvalidInput.prototype);
|
|
405
415
|
}
|
|
406
416
|
};
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
417
|
+
var InvalidKeySigningKeyStatus = class _InvalidKeySigningKeyStatus extends Route53ServiceException {
|
|
418
|
+
static {
|
|
419
|
+
__name(this, "InvalidKeySigningKeyStatus");
|
|
420
|
+
}
|
|
421
|
+
name = "InvalidKeySigningKeyStatus";
|
|
422
|
+
$fault = "client";
|
|
410
423
|
/**
|
|
411
424
|
* @internal
|
|
412
425
|
*/
|
|
@@ -416,14 +429,15 @@ var _InvalidKeySigningKeyStatus = class _InvalidKeySigningKeyStatus extends Rout
|
|
|
416
429
|
$fault: "client",
|
|
417
430
|
...opts
|
|
418
431
|
});
|
|
419
|
-
this.name = "InvalidKeySigningKeyStatus";
|
|
420
|
-
this.$fault = "client";
|
|
421
432
|
Object.setPrototypeOf(this, _InvalidKeySigningKeyStatus.prototype);
|
|
422
433
|
}
|
|
423
434
|
};
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
435
|
+
var InvalidKMSArn = class _InvalidKMSArn extends Route53ServiceException {
|
|
436
|
+
static {
|
|
437
|
+
__name(this, "InvalidKMSArn");
|
|
438
|
+
}
|
|
439
|
+
name = "InvalidKMSArn";
|
|
440
|
+
$fault = "client";
|
|
427
441
|
/**
|
|
428
442
|
* @internal
|
|
429
443
|
*/
|
|
@@ -433,14 +447,15 @@ var _InvalidKMSArn = class _InvalidKMSArn extends Route53ServiceException {
|
|
|
433
447
|
$fault: "client",
|
|
434
448
|
...opts
|
|
435
449
|
});
|
|
436
|
-
this.name = "InvalidKMSArn";
|
|
437
|
-
this.$fault = "client";
|
|
438
450
|
Object.setPrototypeOf(this, _InvalidKMSArn.prototype);
|
|
439
451
|
}
|
|
440
452
|
};
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
453
|
+
var InvalidSigningStatus = class _InvalidSigningStatus extends Route53ServiceException {
|
|
454
|
+
static {
|
|
455
|
+
__name(this, "InvalidSigningStatus");
|
|
456
|
+
}
|
|
457
|
+
name = "InvalidSigningStatus";
|
|
458
|
+
$fault = "client";
|
|
444
459
|
/**
|
|
445
460
|
* @internal
|
|
446
461
|
*/
|
|
@@ -450,14 +465,15 @@ var _InvalidSigningStatus = class _InvalidSigningStatus extends Route53ServiceEx
|
|
|
450
465
|
$fault: "client",
|
|
451
466
|
...opts
|
|
452
467
|
});
|
|
453
|
-
this.name = "InvalidSigningStatus";
|
|
454
|
-
this.$fault = "client";
|
|
455
468
|
Object.setPrototypeOf(this, _InvalidSigningStatus.prototype);
|
|
456
469
|
}
|
|
457
470
|
};
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
471
|
+
var NoSuchKeySigningKey = class _NoSuchKeySigningKey extends Route53ServiceException {
|
|
472
|
+
static {
|
|
473
|
+
__name(this, "NoSuchKeySigningKey");
|
|
474
|
+
}
|
|
475
|
+
name = "NoSuchKeySigningKey";
|
|
476
|
+
$fault = "client";
|
|
461
477
|
/**
|
|
462
478
|
* @internal
|
|
463
479
|
*/
|
|
@@ -467,13 +483,9 @@ var _NoSuchKeySigningKey = class _NoSuchKeySigningKey extends Route53ServiceExce
|
|
|
467
483
|
$fault: "client",
|
|
468
484
|
...opts
|
|
469
485
|
});
|
|
470
|
-
this.name = "NoSuchKeySigningKey";
|
|
471
|
-
this.$fault = "client";
|
|
472
486
|
Object.setPrototypeOf(this, _NoSuchKeySigningKey.prototype);
|
|
473
487
|
}
|
|
474
488
|
};
|
|
475
|
-
__name(_NoSuchKeySigningKey, "NoSuchKeySigningKey");
|
|
476
|
-
var NoSuchKeySigningKey = _NoSuchKeySigningKey;
|
|
477
489
|
var CloudWatchRegion = {
|
|
478
490
|
af_south_1: "af-south-1",
|
|
479
491
|
ap_east_1: "ap-east-1",
|
|
@@ -487,6 +499,7 @@ var CloudWatchRegion = {
|
|
|
487
499
|
ap_southeast_3: "ap-southeast-3",
|
|
488
500
|
ap_southeast_4: "ap-southeast-4",
|
|
489
501
|
ap_southeast_5: "ap-southeast-5",
|
|
502
|
+
ap_southeast_7: "ap-southeast-7",
|
|
490
503
|
ca_central_1: "ca-central-1",
|
|
491
504
|
ca_west_1: "ca-west-1",
|
|
492
505
|
cn_north_1: "cn-north-1",
|
|
@@ -526,6 +539,7 @@ var VPCRegion = {
|
|
|
526
539
|
ap_southeast_3: "ap-southeast-3",
|
|
527
540
|
ap_southeast_4: "ap-southeast-4",
|
|
528
541
|
ap_southeast_5: "ap-southeast-5",
|
|
542
|
+
ap_southeast_7: "ap-southeast-7",
|
|
529
543
|
ca_central_1: "ca-central-1",
|
|
530
544
|
ca_west_1: "ca-west-1",
|
|
531
545
|
cn_north_1: "cn-north-1",
|
|
@@ -552,7 +566,12 @@ var VPCRegion = {
|
|
|
552
566
|
us_west_1: "us-west-1",
|
|
553
567
|
us_west_2: "us-west-2"
|
|
554
568
|
};
|
|
555
|
-
var
|
|
569
|
+
var ConflictingDomainExists = class _ConflictingDomainExists extends Route53ServiceException {
|
|
570
|
+
static {
|
|
571
|
+
__name(this, "ConflictingDomainExists");
|
|
572
|
+
}
|
|
573
|
+
name = "ConflictingDomainExists";
|
|
574
|
+
$fault = "client";
|
|
556
575
|
/**
|
|
557
576
|
* @internal
|
|
558
577
|
*/
|
|
@@ -562,14 +581,15 @@ var _ConflictingDomainExists = class _ConflictingDomainExists extends Route53Ser
|
|
|
562
581
|
$fault: "client",
|
|
563
582
|
...opts
|
|
564
583
|
});
|
|
565
|
-
this.name = "ConflictingDomainExists";
|
|
566
|
-
this.$fault = "client";
|
|
567
584
|
Object.setPrototypeOf(this, _ConflictingDomainExists.prototype);
|
|
568
585
|
}
|
|
569
586
|
};
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
587
|
+
var InvalidVPCId = class _InvalidVPCId extends Route53ServiceException {
|
|
588
|
+
static {
|
|
589
|
+
__name(this, "InvalidVPCId");
|
|
590
|
+
}
|
|
591
|
+
name = "InvalidVPCId";
|
|
592
|
+
$fault = "client";
|
|
573
593
|
/**
|
|
574
594
|
* @internal
|
|
575
595
|
*/
|
|
@@ -579,14 +599,15 @@ var _InvalidVPCId = class _InvalidVPCId extends Route53ServiceException {
|
|
|
579
599
|
$fault: "client",
|
|
580
600
|
...opts
|
|
581
601
|
});
|
|
582
|
-
this.name = "InvalidVPCId";
|
|
583
|
-
this.$fault = "client";
|
|
584
602
|
Object.setPrototypeOf(this, _InvalidVPCId.prototype);
|
|
585
603
|
}
|
|
586
604
|
};
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
605
|
+
var LimitsExceeded = class _LimitsExceeded extends Route53ServiceException {
|
|
606
|
+
static {
|
|
607
|
+
__name(this, "LimitsExceeded");
|
|
608
|
+
}
|
|
609
|
+
name = "LimitsExceeded";
|
|
610
|
+
$fault = "client";
|
|
590
611
|
/**
|
|
591
612
|
* @internal
|
|
592
613
|
*/
|
|
@@ -596,14 +617,15 @@ var _LimitsExceeded = class _LimitsExceeded extends Route53ServiceException {
|
|
|
596
617
|
$fault: "client",
|
|
597
618
|
...opts
|
|
598
619
|
});
|
|
599
|
-
this.name = "LimitsExceeded";
|
|
600
|
-
this.$fault = "client";
|
|
601
620
|
Object.setPrototypeOf(this, _LimitsExceeded.prototype);
|
|
602
621
|
}
|
|
603
622
|
};
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
623
|
+
var NoSuchHostedZone = class _NoSuchHostedZone extends Route53ServiceException {
|
|
624
|
+
static {
|
|
625
|
+
__name(this, "NoSuchHostedZone");
|
|
626
|
+
}
|
|
627
|
+
name = "NoSuchHostedZone";
|
|
628
|
+
$fault = "client";
|
|
607
629
|
/**
|
|
608
630
|
* @internal
|
|
609
631
|
*/
|
|
@@ -613,14 +635,15 @@ var _NoSuchHostedZone = class _NoSuchHostedZone extends Route53ServiceException
|
|
|
613
635
|
$fault: "client",
|
|
614
636
|
...opts
|
|
615
637
|
});
|
|
616
|
-
this.name = "NoSuchHostedZone";
|
|
617
|
-
this.$fault = "client";
|
|
618
638
|
Object.setPrototypeOf(this, _NoSuchHostedZone.prototype);
|
|
619
639
|
}
|
|
620
640
|
};
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
641
|
+
var NotAuthorizedException = class _NotAuthorizedException extends Route53ServiceException {
|
|
642
|
+
static {
|
|
643
|
+
__name(this, "NotAuthorizedException");
|
|
644
|
+
}
|
|
645
|
+
name = "NotAuthorizedException";
|
|
646
|
+
$fault = "client";
|
|
624
647
|
/**
|
|
625
648
|
* @internal
|
|
626
649
|
*/
|
|
@@ -630,14 +653,15 @@ var _NotAuthorizedException = class _NotAuthorizedException extends Route53Servi
|
|
|
630
653
|
$fault: "client",
|
|
631
654
|
...opts
|
|
632
655
|
});
|
|
633
|
-
this.name = "NotAuthorizedException";
|
|
634
|
-
this.$fault = "client";
|
|
635
656
|
Object.setPrototypeOf(this, _NotAuthorizedException.prototype);
|
|
636
657
|
}
|
|
637
658
|
};
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
659
|
+
var PriorRequestNotComplete = class _PriorRequestNotComplete extends Route53ServiceException {
|
|
660
|
+
static {
|
|
661
|
+
__name(this, "PriorRequestNotComplete");
|
|
662
|
+
}
|
|
663
|
+
name = "PriorRequestNotComplete";
|
|
664
|
+
$fault = "client";
|
|
641
665
|
/**
|
|
642
666
|
* @internal
|
|
643
667
|
*/
|
|
@@ -647,14 +671,15 @@ var _PriorRequestNotComplete = class _PriorRequestNotComplete extends Route53Ser
|
|
|
647
671
|
$fault: "client",
|
|
648
672
|
...opts
|
|
649
673
|
});
|
|
650
|
-
this.name = "PriorRequestNotComplete";
|
|
651
|
-
this.$fault = "client";
|
|
652
674
|
Object.setPrototypeOf(this, _PriorRequestNotComplete.prototype);
|
|
653
675
|
}
|
|
654
676
|
};
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
677
|
+
var PublicZoneVPCAssociation = class _PublicZoneVPCAssociation extends Route53ServiceException {
|
|
678
|
+
static {
|
|
679
|
+
__name(this, "PublicZoneVPCAssociation");
|
|
680
|
+
}
|
|
681
|
+
name = "PublicZoneVPCAssociation";
|
|
682
|
+
$fault = "client";
|
|
658
683
|
/**
|
|
659
684
|
* @internal
|
|
660
685
|
*/
|
|
@@ -664,18 +689,20 @@ var _PublicZoneVPCAssociation = class _PublicZoneVPCAssociation extends Route53S
|
|
|
664
689
|
$fault: "client",
|
|
665
690
|
...opts
|
|
666
691
|
});
|
|
667
|
-
this.name = "PublicZoneVPCAssociation";
|
|
668
|
-
this.$fault = "client";
|
|
669
692
|
Object.setPrototypeOf(this, _PublicZoneVPCAssociation.prototype);
|
|
670
693
|
}
|
|
671
694
|
};
|
|
672
|
-
__name(_PublicZoneVPCAssociation, "PublicZoneVPCAssociation");
|
|
673
|
-
var PublicZoneVPCAssociation = _PublicZoneVPCAssociation;
|
|
674
695
|
var CidrCollectionChangeAction = {
|
|
675
696
|
DELETE_IF_EXISTS: "DELETE_IF_EXISTS",
|
|
676
697
|
PUT: "PUT"
|
|
677
698
|
};
|
|
678
|
-
var
|
|
699
|
+
var CidrBlockInUseException = class _CidrBlockInUseException extends Route53ServiceException {
|
|
700
|
+
static {
|
|
701
|
+
__name(this, "CidrBlockInUseException");
|
|
702
|
+
}
|
|
703
|
+
name = "CidrBlockInUseException";
|
|
704
|
+
$fault = "client";
|
|
705
|
+
Message;
|
|
679
706
|
/**
|
|
680
707
|
* @internal
|
|
681
708
|
*/
|
|
@@ -685,15 +712,17 @@ var _CidrBlockInUseException = class _CidrBlockInUseException extends Route53Ser
|
|
|
685
712
|
$fault: "client",
|
|
686
713
|
...opts
|
|
687
714
|
});
|
|
688
|
-
this.name = "CidrBlockInUseException";
|
|
689
|
-
this.$fault = "client";
|
|
690
715
|
Object.setPrototypeOf(this, _CidrBlockInUseException.prototype);
|
|
691
716
|
this.Message = opts.Message;
|
|
692
717
|
}
|
|
693
718
|
};
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
719
|
+
var CidrCollectionVersionMismatchException = class _CidrCollectionVersionMismatchException extends Route53ServiceException {
|
|
720
|
+
static {
|
|
721
|
+
__name(this, "CidrCollectionVersionMismatchException");
|
|
722
|
+
}
|
|
723
|
+
name = "CidrCollectionVersionMismatchException";
|
|
724
|
+
$fault = "client";
|
|
725
|
+
Message;
|
|
697
726
|
/**
|
|
698
727
|
* @internal
|
|
699
728
|
*/
|
|
@@ -703,15 +732,17 @@ var _CidrCollectionVersionMismatchException = class _CidrCollectionVersionMismat
|
|
|
703
732
|
$fault: "client",
|
|
704
733
|
...opts
|
|
705
734
|
});
|
|
706
|
-
this.name = "CidrCollectionVersionMismatchException";
|
|
707
|
-
this.$fault = "client";
|
|
708
735
|
Object.setPrototypeOf(this, _CidrCollectionVersionMismatchException.prototype);
|
|
709
736
|
this.Message = opts.Message;
|
|
710
737
|
}
|
|
711
738
|
};
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
739
|
+
var NoSuchCidrCollectionException = class _NoSuchCidrCollectionException extends Route53ServiceException {
|
|
740
|
+
static {
|
|
741
|
+
__name(this, "NoSuchCidrCollectionException");
|
|
742
|
+
}
|
|
743
|
+
name = "NoSuchCidrCollectionException";
|
|
744
|
+
$fault = "client";
|
|
745
|
+
Message;
|
|
715
746
|
/**
|
|
716
747
|
* @internal
|
|
717
748
|
*/
|
|
@@ -721,14 +752,10 @@ var _NoSuchCidrCollectionException = class _NoSuchCidrCollectionException extend
|
|
|
721
752
|
$fault: "client",
|
|
722
753
|
...opts
|
|
723
754
|
});
|
|
724
|
-
this.name = "NoSuchCidrCollectionException";
|
|
725
|
-
this.$fault = "client";
|
|
726
755
|
Object.setPrototypeOf(this, _NoSuchCidrCollectionException.prototype);
|
|
727
756
|
this.Message = opts.Message;
|
|
728
757
|
}
|
|
729
758
|
};
|
|
730
|
-
__name(_NoSuchCidrCollectionException, "NoSuchCidrCollectionException");
|
|
731
|
-
var NoSuchCidrCollectionException = _NoSuchCidrCollectionException;
|
|
732
759
|
var ChangeAction = {
|
|
733
760
|
CREATE: "CREATE",
|
|
734
761
|
DELETE: "DELETE",
|
|
@@ -751,6 +778,7 @@ var ResourceRecordSetRegion = {
|
|
|
751
778
|
ap_southeast_3: "ap-southeast-3",
|
|
752
779
|
ap_southeast_4: "ap-southeast-4",
|
|
753
780
|
ap_southeast_5: "ap-southeast-5",
|
|
781
|
+
ap_southeast_7: "ap-southeast-7",
|
|
754
782
|
ca_central_1: "ca-central-1",
|
|
755
783
|
ca_west_1: "ca-west-1",
|
|
756
784
|
cn_north_1: "cn-north-1",
|
|
@@ -791,7 +819,17 @@ var RRType = {
|
|
|
791
819
|
TLSA: "TLSA",
|
|
792
820
|
TXT: "TXT"
|
|
793
821
|
};
|
|
794
|
-
var
|
|
822
|
+
var InvalidChangeBatch = class _InvalidChangeBatch extends Route53ServiceException {
|
|
823
|
+
static {
|
|
824
|
+
__name(this, "InvalidChangeBatch");
|
|
825
|
+
}
|
|
826
|
+
name = "InvalidChangeBatch";
|
|
827
|
+
$fault = "client";
|
|
828
|
+
/**
|
|
829
|
+
* <p></p>
|
|
830
|
+
* @public
|
|
831
|
+
*/
|
|
832
|
+
messages;
|
|
795
833
|
/**
|
|
796
834
|
* @internal
|
|
797
835
|
*/
|
|
@@ -801,15 +839,16 @@ var _InvalidChangeBatch = class _InvalidChangeBatch extends Route53ServiceExcept
|
|
|
801
839
|
$fault: "client",
|
|
802
840
|
...opts
|
|
803
841
|
});
|
|
804
|
-
this.name = "InvalidChangeBatch";
|
|
805
|
-
this.$fault = "client";
|
|
806
842
|
Object.setPrototypeOf(this, _InvalidChangeBatch.prototype);
|
|
807
843
|
this.messages = opts.messages;
|
|
808
844
|
}
|
|
809
845
|
};
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
846
|
+
var NoSuchHealthCheck = class _NoSuchHealthCheck extends Route53ServiceException {
|
|
847
|
+
static {
|
|
848
|
+
__name(this, "NoSuchHealthCheck");
|
|
849
|
+
}
|
|
850
|
+
name = "NoSuchHealthCheck";
|
|
851
|
+
$fault = "client";
|
|
813
852
|
/**
|
|
814
853
|
* @internal
|
|
815
854
|
*/
|
|
@@ -819,18 +858,19 @@ var _NoSuchHealthCheck = class _NoSuchHealthCheck extends Route53ServiceExceptio
|
|
|
819
858
|
$fault: "client",
|
|
820
859
|
...opts
|
|
821
860
|
});
|
|
822
|
-
this.name = "NoSuchHealthCheck";
|
|
823
|
-
this.$fault = "client";
|
|
824
861
|
Object.setPrototypeOf(this, _NoSuchHealthCheck.prototype);
|
|
825
862
|
}
|
|
826
863
|
};
|
|
827
|
-
__name(_NoSuchHealthCheck, "NoSuchHealthCheck");
|
|
828
|
-
var NoSuchHealthCheck = _NoSuchHealthCheck;
|
|
829
864
|
var TagResourceType = {
|
|
830
865
|
healthcheck: "healthcheck",
|
|
831
866
|
hostedzone: "hostedzone"
|
|
832
867
|
};
|
|
833
|
-
var
|
|
868
|
+
var ThrottlingException = class _ThrottlingException extends Route53ServiceException {
|
|
869
|
+
static {
|
|
870
|
+
__name(this, "ThrottlingException");
|
|
871
|
+
}
|
|
872
|
+
name = "ThrottlingException";
|
|
873
|
+
$fault = "client";
|
|
834
874
|
/**
|
|
835
875
|
* @internal
|
|
836
876
|
*/
|
|
@@ -840,14 +880,16 @@ var _ThrottlingException = class _ThrottlingException extends Route53ServiceExce
|
|
|
840
880
|
$fault: "client",
|
|
841
881
|
...opts
|
|
842
882
|
});
|
|
843
|
-
this.name = "ThrottlingException";
|
|
844
|
-
this.$fault = "client";
|
|
845
883
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
846
884
|
}
|
|
847
885
|
};
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
886
|
+
var CidrCollectionAlreadyExistsException = class _CidrCollectionAlreadyExistsException extends Route53ServiceException {
|
|
887
|
+
static {
|
|
888
|
+
__name(this, "CidrCollectionAlreadyExistsException");
|
|
889
|
+
}
|
|
890
|
+
name = "CidrCollectionAlreadyExistsException";
|
|
891
|
+
$fault = "client";
|
|
892
|
+
Message;
|
|
851
893
|
/**
|
|
852
894
|
* @internal
|
|
853
895
|
*/
|
|
@@ -857,14 +899,10 @@ var _CidrCollectionAlreadyExistsException = class _CidrCollectionAlreadyExistsEx
|
|
|
857
899
|
$fault: "client",
|
|
858
900
|
...opts
|
|
859
901
|
});
|
|
860
|
-
this.name = "CidrCollectionAlreadyExistsException";
|
|
861
|
-
this.$fault = "client";
|
|
862
902
|
Object.setPrototypeOf(this, _CidrCollectionAlreadyExistsException.prototype);
|
|
863
903
|
this.Message = opts.Message;
|
|
864
904
|
}
|
|
865
905
|
};
|
|
866
|
-
__name(_CidrCollectionAlreadyExistsException, "CidrCollectionAlreadyExistsException");
|
|
867
|
-
var CidrCollectionAlreadyExistsException = _CidrCollectionAlreadyExistsException;
|
|
868
906
|
var InsufficientDataHealthStatus = {
|
|
869
907
|
Healthy: "Healthy",
|
|
870
908
|
LastKnownStatus: "LastKnownStatus",
|
|
@@ -903,7 +941,12 @@ var Statistic = {
|
|
|
903
941
|
SampleCount: "SampleCount",
|
|
904
942
|
Sum: "Sum"
|
|
905
943
|
};
|
|
906
|
-
var
|
|
944
|
+
var HealthCheckAlreadyExists = class _HealthCheckAlreadyExists extends Route53ServiceException {
|
|
945
|
+
static {
|
|
946
|
+
__name(this, "HealthCheckAlreadyExists");
|
|
947
|
+
}
|
|
948
|
+
name = "HealthCheckAlreadyExists";
|
|
949
|
+
$fault = "client";
|
|
907
950
|
/**
|
|
908
951
|
* @internal
|
|
909
952
|
*/
|
|
@@ -913,14 +956,15 @@ var _HealthCheckAlreadyExists = class _HealthCheckAlreadyExists extends Route53S
|
|
|
913
956
|
$fault: "client",
|
|
914
957
|
...opts
|
|
915
958
|
});
|
|
916
|
-
this.name = "HealthCheckAlreadyExists";
|
|
917
|
-
this.$fault = "client";
|
|
918
959
|
Object.setPrototypeOf(this, _HealthCheckAlreadyExists.prototype);
|
|
919
960
|
}
|
|
920
961
|
};
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
962
|
+
var TooManyHealthChecks = class _TooManyHealthChecks extends Route53ServiceException {
|
|
963
|
+
static {
|
|
964
|
+
__name(this, "TooManyHealthChecks");
|
|
965
|
+
}
|
|
966
|
+
name = "TooManyHealthChecks";
|
|
967
|
+
$fault = "client";
|
|
924
968
|
/**
|
|
925
969
|
* @internal
|
|
926
970
|
*/
|
|
@@ -930,14 +974,15 @@ var _TooManyHealthChecks = class _TooManyHealthChecks extends Route53ServiceExce
|
|
|
930
974
|
$fault: "client",
|
|
931
975
|
...opts
|
|
932
976
|
});
|
|
933
|
-
this.name = "TooManyHealthChecks";
|
|
934
|
-
this.$fault = "client";
|
|
935
977
|
Object.setPrototypeOf(this, _TooManyHealthChecks.prototype);
|
|
936
978
|
}
|
|
937
979
|
};
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
980
|
+
var DelegationSetNotAvailable = class _DelegationSetNotAvailable extends Route53ServiceException {
|
|
981
|
+
static {
|
|
982
|
+
__name(this, "DelegationSetNotAvailable");
|
|
983
|
+
}
|
|
984
|
+
name = "DelegationSetNotAvailable";
|
|
985
|
+
$fault = "client";
|
|
941
986
|
/**
|
|
942
987
|
* @internal
|
|
943
988
|
*/
|
|
@@ -947,14 +992,15 @@ var _DelegationSetNotAvailable = class _DelegationSetNotAvailable extends Route5
|
|
|
947
992
|
$fault: "client",
|
|
948
993
|
...opts
|
|
949
994
|
});
|
|
950
|
-
this.name = "DelegationSetNotAvailable";
|
|
951
|
-
this.$fault = "client";
|
|
952
995
|
Object.setPrototypeOf(this, _DelegationSetNotAvailable.prototype);
|
|
953
996
|
}
|
|
954
997
|
};
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
998
|
+
var DelegationSetNotReusable = class _DelegationSetNotReusable extends Route53ServiceException {
|
|
999
|
+
static {
|
|
1000
|
+
__name(this, "DelegationSetNotReusable");
|
|
1001
|
+
}
|
|
1002
|
+
name = "DelegationSetNotReusable";
|
|
1003
|
+
$fault = "client";
|
|
958
1004
|
/**
|
|
959
1005
|
* @internal
|
|
960
1006
|
*/
|
|
@@ -964,14 +1010,15 @@ var _DelegationSetNotReusable = class _DelegationSetNotReusable extends Route53S
|
|
|
964
1010
|
$fault: "client",
|
|
965
1011
|
...opts
|
|
966
1012
|
});
|
|
967
|
-
this.name = "DelegationSetNotReusable";
|
|
968
|
-
this.$fault = "client";
|
|
969
1013
|
Object.setPrototypeOf(this, _DelegationSetNotReusable.prototype);
|
|
970
1014
|
}
|
|
971
1015
|
};
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
1016
|
+
var HostedZoneAlreadyExists = class _HostedZoneAlreadyExists extends Route53ServiceException {
|
|
1017
|
+
static {
|
|
1018
|
+
__name(this, "HostedZoneAlreadyExists");
|
|
1019
|
+
}
|
|
1020
|
+
name = "HostedZoneAlreadyExists";
|
|
1021
|
+
$fault = "client";
|
|
975
1022
|
/**
|
|
976
1023
|
* @internal
|
|
977
1024
|
*/
|
|
@@ -981,14 +1028,15 @@ var _HostedZoneAlreadyExists = class _HostedZoneAlreadyExists extends Route53Ser
|
|
|
981
1028
|
$fault: "client",
|
|
982
1029
|
...opts
|
|
983
1030
|
});
|
|
984
|
-
this.name = "HostedZoneAlreadyExists";
|
|
985
|
-
this.$fault = "client";
|
|
986
1031
|
Object.setPrototypeOf(this, _HostedZoneAlreadyExists.prototype);
|
|
987
1032
|
}
|
|
988
1033
|
};
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
1034
|
+
var InvalidDomainName = class _InvalidDomainName extends Route53ServiceException {
|
|
1035
|
+
static {
|
|
1036
|
+
__name(this, "InvalidDomainName");
|
|
1037
|
+
}
|
|
1038
|
+
name = "InvalidDomainName";
|
|
1039
|
+
$fault = "client";
|
|
992
1040
|
/**
|
|
993
1041
|
* @internal
|
|
994
1042
|
*/
|
|
@@ -998,14 +1046,15 @@ var _InvalidDomainName = class _InvalidDomainName extends Route53ServiceExceptio
|
|
|
998
1046
|
$fault: "client",
|
|
999
1047
|
...opts
|
|
1000
1048
|
});
|
|
1001
|
-
this.name = "InvalidDomainName";
|
|
1002
|
-
this.$fault = "client";
|
|
1003
1049
|
Object.setPrototypeOf(this, _InvalidDomainName.prototype);
|
|
1004
1050
|
}
|
|
1005
1051
|
};
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1052
|
+
var NoSuchDelegationSet = class _NoSuchDelegationSet extends Route53ServiceException {
|
|
1053
|
+
static {
|
|
1054
|
+
__name(this, "NoSuchDelegationSet");
|
|
1055
|
+
}
|
|
1056
|
+
name = "NoSuchDelegationSet";
|
|
1057
|
+
$fault = "client";
|
|
1009
1058
|
/**
|
|
1010
1059
|
* @internal
|
|
1011
1060
|
*/
|
|
@@ -1015,14 +1064,15 @@ var _NoSuchDelegationSet = class _NoSuchDelegationSet extends Route53ServiceExce
|
|
|
1015
1064
|
$fault: "client",
|
|
1016
1065
|
...opts
|
|
1017
1066
|
});
|
|
1018
|
-
this.name = "NoSuchDelegationSet";
|
|
1019
|
-
this.$fault = "client";
|
|
1020
1067
|
Object.setPrototypeOf(this, _NoSuchDelegationSet.prototype);
|
|
1021
1068
|
}
|
|
1022
1069
|
};
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1070
|
+
var TooManyHostedZones = class _TooManyHostedZones extends Route53ServiceException {
|
|
1071
|
+
static {
|
|
1072
|
+
__name(this, "TooManyHostedZones");
|
|
1073
|
+
}
|
|
1074
|
+
name = "TooManyHostedZones";
|
|
1075
|
+
$fault = "client";
|
|
1026
1076
|
/**
|
|
1027
1077
|
* @internal
|
|
1028
1078
|
*/
|
|
@@ -1032,14 +1082,15 @@ var _TooManyHostedZones = class _TooManyHostedZones extends Route53ServiceExcept
|
|
|
1032
1082
|
$fault: "client",
|
|
1033
1083
|
...opts
|
|
1034
1084
|
});
|
|
1035
|
-
this.name = "TooManyHostedZones";
|
|
1036
|
-
this.$fault = "client";
|
|
1037
1085
|
Object.setPrototypeOf(this, _TooManyHostedZones.prototype);
|
|
1038
1086
|
}
|
|
1039
1087
|
};
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1088
|
+
var InvalidArgument = class _InvalidArgument extends Route53ServiceException {
|
|
1089
|
+
static {
|
|
1090
|
+
__name(this, "InvalidArgument");
|
|
1091
|
+
}
|
|
1092
|
+
name = "InvalidArgument";
|
|
1093
|
+
$fault = "client";
|
|
1043
1094
|
/**
|
|
1044
1095
|
* @internal
|
|
1045
1096
|
*/
|
|
@@ -1049,14 +1100,15 @@ var _InvalidArgument = class _InvalidArgument extends Route53ServiceException {
|
|
|
1049
1100
|
$fault: "client",
|
|
1050
1101
|
...opts
|
|
1051
1102
|
});
|
|
1052
|
-
this.name = "InvalidArgument";
|
|
1053
|
-
this.$fault = "client";
|
|
1054
1103
|
Object.setPrototypeOf(this, _InvalidArgument.prototype);
|
|
1055
1104
|
}
|
|
1056
1105
|
};
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1106
|
+
var InvalidKeySigningKeyName = class _InvalidKeySigningKeyName extends Route53ServiceException {
|
|
1107
|
+
static {
|
|
1108
|
+
__name(this, "InvalidKeySigningKeyName");
|
|
1109
|
+
}
|
|
1110
|
+
name = "InvalidKeySigningKeyName";
|
|
1111
|
+
$fault = "client";
|
|
1060
1112
|
/**
|
|
1061
1113
|
* @internal
|
|
1062
1114
|
*/
|
|
@@ -1066,14 +1118,15 @@ var _InvalidKeySigningKeyName = class _InvalidKeySigningKeyName extends Route53S
|
|
|
1066
1118
|
$fault: "client",
|
|
1067
1119
|
...opts
|
|
1068
1120
|
});
|
|
1069
|
-
this.name = "InvalidKeySigningKeyName";
|
|
1070
|
-
this.$fault = "client";
|
|
1071
1121
|
Object.setPrototypeOf(this, _InvalidKeySigningKeyName.prototype);
|
|
1072
1122
|
}
|
|
1073
1123
|
};
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1124
|
+
var KeySigningKeyAlreadyExists = class _KeySigningKeyAlreadyExists extends Route53ServiceException {
|
|
1125
|
+
static {
|
|
1126
|
+
__name(this, "KeySigningKeyAlreadyExists");
|
|
1127
|
+
}
|
|
1128
|
+
name = "KeySigningKeyAlreadyExists";
|
|
1129
|
+
$fault = "client";
|
|
1077
1130
|
/**
|
|
1078
1131
|
* @internal
|
|
1079
1132
|
*/
|
|
@@ -1083,14 +1136,15 @@ var _KeySigningKeyAlreadyExists = class _KeySigningKeyAlreadyExists extends Rout
|
|
|
1083
1136
|
$fault: "client",
|
|
1084
1137
|
...opts
|
|
1085
1138
|
});
|
|
1086
|
-
this.name = "KeySigningKeyAlreadyExists";
|
|
1087
|
-
this.$fault = "client";
|
|
1088
1139
|
Object.setPrototypeOf(this, _KeySigningKeyAlreadyExists.prototype);
|
|
1089
1140
|
}
|
|
1090
1141
|
};
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1142
|
+
var TooManyKeySigningKeys = class _TooManyKeySigningKeys extends Route53ServiceException {
|
|
1143
|
+
static {
|
|
1144
|
+
__name(this, "TooManyKeySigningKeys");
|
|
1145
|
+
}
|
|
1146
|
+
name = "TooManyKeySigningKeys";
|
|
1147
|
+
$fault = "client";
|
|
1094
1148
|
/**
|
|
1095
1149
|
* @internal
|
|
1096
1150
|
*/
|
|
@@ -1100,14 +1154,15 @@ var _TooManyKeySigningKeys = class _TooManyKeySigningKeys extends Route53Service
|
|
|
1100
1154
|
$fault: "client",
|
|
1101
1155
|
...opts
|
|
1102
1156
|
});
|
|
1103
|
-
this.name = "TooManyKeySigningKeys";
|
|
1104
|
-
this.$fault = "client";
|
|
1105
1157
|
Object.setPrototypeOf(this, _TooManyKeySigningKeys.prototype);
|
|
1106
1158
|
}
|
|
1107
1159
|
};
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1160
|
+
var InsufficientCloudWatchLogsResourcePolicy = class _InsufficientCloudWatchLogsResourcePolicy extends Route53ServiceException {
|
|
1161
|
+
static {
|
|
1162
|
+
__name(this, "InsufficientCloudWatchLogsResourcePolicy");
|
|
1163
|
+
}
|
|
1164
|
+
name = "InsufficientCloudWatchLogsResourcePolicy";
|
|
1165
|
+
$fault = "client";
|
|
1111
1166
|
/**
|
|
1112
1167
|
* @internal
|
|
1113
1168
|
*/
|
|
@@ -1117,14 +1172,15 @@ var _InsufficientCloudWatchLogsResourcePolicy = class _InsufficientCloudWatchLog
|
|
|
1117
1172
|
$fault: "client",
|
|
1118
1173
|
...opts
|
|
1119
1174
|
});
|
|
1120
|
-
this.name = "InsufficientCloudWatchLogsResourcePolicy";
|
|
1121
|
-
this.$fault = "client";
|
|
1122
1175
|
Object.setPrototypeOf(this, _InsufficientCloudWatchLogsResourcePolicy.prototype);
|
|
1123
1176
|
}
|
|
1124
1177
|
};
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1178
|
+
var NoSuchCloudWatchLogsLogGroup = class _NoSuchCloudWatchLogsLogGroup extends Route53ServiceException {
|
|
1179
|
+
static {
|
|
1180
|
+
__name(this, "NoSuchCloudWatchLogsLogGroup");
|
|
1181
|
+
}
|
|
1182
|
+
name = "NoSuchCloudWatchLogsLogGroup";
|
|
1183
|
+
$fault = "client";
|
|
1128
1184
|
/**
|
|
1129
1185
|
* @internal
|
|
1130
1186
|
*/
|
|
@@ -1134,14 +1190,15 @@ var _NoSuchCloudWatchLogsLogGroup = class _NoSuchCloudWatchLogsLogGroup extends
|
|
|
1134
1190
|
$fault: "client",
|
|
1135
1191
|
...opts
|
|
1136
1192
|
});
|
|
1137
|
-
this.name = "NoSuchCloudWatchLogsLogGroup";
|
|
1138
|
-
this.$fault = "client";
|
|
1139
1193
|
Object.setPrototypeOf(this, _NoSuchCloudWatchLogsLogGroup.prototype);
|
|
1140
1194
|
}
|
|
1141
1195
|
};
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1196
|
+
var QueryLoggingConfigAlreadyExists = class _QueryLoggingConfigAlreadyExists extends Route53ServiceException {
|
|
1197
|
+
static {
|
|
1198
|
+
__name(this, "QueryLoggingConfigAlreadyExists");
|
|
1199
|
+
}
|
|
1200
|
+
name = "QueryLoggingConfigAlreadyExists";
|
|
1201
|
+
$fault = "client";
|
|
1145
1202
|
/**
|
|
1146
1203
|
* @internal
|
|
1147
1204
|
*/
|
|
@@ -1151,14 +1208,15 @@ var _QueryLoggingConfigAlreadyExists = class _QueryLoggingConfigAlreadyExists ex
|
|
|
1151
1208
|
$fault: "client",
|
|
1152
1209
|
...opts
|
|
1153
1210
|
});
|
|
1154
|
-
this.name = "QueryLoggingConfigAlreadyExists";
|
|
1155
|
-
this.$fault = "client";
|
|
1156
1211
|
Object.setPrototypeOf(this, _QueryLoggingConfigAlreadyExists.prototype);
|
|
1157
1212
|
}
|
|
1158
1213
|
};
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1214
|
+
var DelegationSetAlreadyCreated = class _DelegationSetAlreadyCreated extends Route53ServiceException {
|
|
1215
|
+
static {
|
|
1216
|
+
__name(this, "DelegationSetAlreadyCreated");
|
|
1217
|
+
}
|
|
1218
|
+
name = "DelegationSetAlreadyCreated";
|
|
1219
|
+
$fault = "client";
|
|
1162
1220
|
/**
|
|
1163
1221
|
* @internal
|
|
1164
1222
|
*/
|
|
@@ -1168,14 +1226,15 @@ var _DelegationSetAlreadyCreated = class _DelegationSetAlreadyCreated extends Ro
|
|
|
1168
1226
|
$fault: "client",
|
|
1169
1227
|
...opts
|
|
1170
1228
|
});
|
|
1171
|
-
this.name = "DelegationSetAlreadyCreated";
|
|
1172
|
-
this.$fault = "client";
|
|
1173
1229
|
Object.setPrototypeOf(this, _DelegationSetAlreadyCreated.prototype);
|
|
1174
1230
|
}
|
|
1175
1231
|
};
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1232
|
+
var DelegationSetAlreadyReusable = class _DelegationSetAlreadyReusable extends Route53ServiceException {
|
|
1233
|
+
static {
|
|
1234
|
+
__name(this, "DelegationSetAlreadyReusable");
|
|
1235
|
+
}
|
|
1236
|
+
name = "DelegationSetAlreadyReusable";
|
|
1237
|
+
$fault = "client";
|
|
1179
1238
|
/**
|
|
1180
1239
|
* @internal
|
|
1181
1240
|
*/
|
|
@@ -1185,14 +1244,15 @@ var _DelegationSetAlreadyReusable = class _DelegationSetAlreadyReusable extends
|
|
|
1185
1244
|
$fault: "client",
|
|
1186
1245
|
...opts
|
|
1187
1246
|
});
|
|
1188
|
-
this.name = "DelegationSetAlreadyReusable";
|
|
1189
|
-
this.$fault = "client";
|
|
1190
1247
|
Object.setPrototypeOf(this, _DelegationSetAlreadyReusable.prototype);
|
|
1191
1248
|
}
|
|
1192
1249
|
};
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1250
|
+
var HostedZoneNotFound = class _HostedZoneNotFound extends Route53ServiceException {
|
|
1251
|
+
static {
|
|
1252
|
+
__name(this, "HostedZoneNotFound");
|
|
1253
|
+
}
|
|
1254
|
+
name = "HostedZoneNotFound";
|
|
1255
|
+
$fault = "client";
|
|
1196
1256
|
/**
|
|
1197
1257
|
* @internal
|
|
1198
1258
|
*/
|
|
@@ -1202,14 +1262,15 @@ var _HostedZoneNotFound = class _HostedZoneNotFound extends Route53ServiceExcept
|
|
|
1202
1262
|
$fault: "client",
|
|
1203
1263
|
...opts
|
|
1204
1264
|
});
|
|
1205
|
-
this.name = "HostedZoneNotFound";
|
|
1206
|
-
this.$fault = "client";
|
|
1207
1265
|
Object.setPrototypeOf(this, _HostedZoneNotFound.prototype);
|
|
1208
1266
|
}
|
|
1209
1267
|
};
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1268
|
+
var InvalidTrafficPolicyDocument = class _InvalidTrafficPolicyDocument extends Route53ServiceException {
|
|
1269
|
+
static {
|
|
1270
|
+
__name(this, "InvalidTrafficPolicyDocument");
|
|
1271
|
+
}
|
|
1272
|
+
name = "InvalidTrafficPolicyDocument";
|
|
1273
|
+
$fault = "client";
|
|
1213
1274
|
/**
|
|
1214
1275
|
* @internal
|
|
1215
1276
|
*/
|
|
@@ -1219,14 +1280,15 @@ var _InvalidTrafficPolicyDocument = class _InvalidTrafficPolicyDocument extends
|
|
|
1219
1280
|
$fault: "client",
|
|
1220
1281
|
...opts
|
|
1221
1282
|
});
|
|
1222
|
-
this.name = "InvalidTrafficPolicyDocument";
|
|
1223
|
-
this.$fault = "client";
|
|
1224
1283
|
Object.setPrototypeOf(this, _InvalidTrafficPolicyDocument.prototype);
|
|
1225
1284
|
}
|
|
1226
1285
|
};
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1286
|
+
var TooManyTrafficPolicies = class _TooManyTrafficPolicies extends Route53ServiceException {
|
|
1287
|
+
static {
|
|
1288
|
+
__name(this, "TooManyTrafficPolicies");
|
|
1289
|
+
}
|
|
1290
|
+
name = "TooManyTrafficPolicies";
|
|
1291
|
+
$fault = "client";
|
|
1230
1292
|
/**
|
|
1231
1293
|
* @internal
|
|
1232
1294
|
*/
|
|
@@ -1236,14 +1298,15 @@ var _TooManyTrafficPolicies = class _TooManyTrafficPolicies extends Route53Servi
|
|
|
1236
1298
|
$fault: "client",
|
|
1237
1299
|
...opts
|
|
1238
1300
|
});
|
|
1239
|
-
this.name = "TooManyTrafficPolicies";
|
|
1240
|
-
this.$fault = "client";
|
|
1241
1301
|
Object.setPrototypeOf(this, _TooManyTrafficPolicies.prototype);
|
|
1242
1302
|
}
|
|
1243
1303
|
};
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1304
|
+
var TrafficPolicyAlreadyExists = class _TrafficPolicyAlreadyExists extends Route53ServiceException {
|
|
1305
|
+
static {
|
|
1306
|
+
__name(this, "TrafficPolicyAlreadyExists");
|
|
1307
|
+
}
|
|
1308
|
+
name = "TrafficPolicyAlreadyExists";
|
|
1309
|
+
$fault = "client";
|
|
1247
1310
|
/**
|
|
1248
1311
|
* @internal
|
|
1249
1312
|
*/
|
|
@@ -1253,14 +1316,15 @@ var _TrafficPolicyAlreadyExists = class _TrafficPolicyAlreadyExists extends Rout
|
|
|
1253
1316
|
$fault: "client",
|
|
1254
1317
|
...opts
|
|
1255
1318
|
});
|
|
1256
|
-
this.name = "TrafficPolicyAlreadyExists";
|
|
1257
|
-
this.$fault = "client";
|
|
1258
1319
|
Object.setPrototypeOf(this, _TrafficPolicyAlreadyExists.prototype);
|
|
1259
1320
|
}
|
|
1260
1321
|
};
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1322
|
+
var NoSuchTrafficPolicy = class _NoSuchTrafficPolicy extends Route53ServiceException {
|
|
1323
|
+
static {
|
|
1324
|
+
__name(this, "NoSuchTrafficPolicy");
|
|
1325
|
+
}
|
|
1326
|
+
name = "NoSuchTrafficPolicy";
|
|
1327
|
+
$fault = "client";
|
|
1264
1328
|
/**
|
|
1265
1329
|
* @internal
|
|
1266
1330
|
*/
|
|
@@ -1270,14 +1334,15 @@ var _NoSuchTrafficPolicy = class _NoSuchTrafficPolicy extends Route53ServiceExce
|
|
|
1270
1334
|
$fault: "client",
|
|
1271
1335
|
...opts
|
|
1272
1336
|
});
|
|
1273
|
-
this.name = "NoSuchTrafficPolicy";
|
|
1274
|
-
this.$fault = "client";
|
|
1275
1337
|
Object.setPrototypeOf(this, _NoSuchTrafficPolicy.prototype);
|
|
1276
1338
|
}
|
|
1277
1339
|
};
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1340
|
+
var TooManyTrafficPolicyInstances = class _TooManyTrafficPolicyInstances extends Route53ServiceException {
|
|
1341
|
+
static {
|
|
1342
|
+
__name(this, "TooManyTrafficPolicyInstances");
|
|
1343
|
+
}
|
|
1344
|
+
name = "TooManyTrafficPolicyInstances";
|
|
1345
|
+
$fault = "client";
|
|
1281
1346
|
/**
|
|
1282
1347
|
* @internal
|
|
1283
1348
|
*/
|
|
@@ -1287,14 +1352,15 @@ var _TooManyTrafficPolicyInstances = class _TooManyTrafficPolicyInstances extend
|
|
|
1287
1352
|
$fault: "client",
|
|
1288
1353
|
...opts
|
|
1289
1354
|
});
|
|
1290
|
-
this.name = "TooManyTrafficPolicyInstances";
|
|
1291
|
-
this.$fault = "client";
|
|
1292
1355
|
Object.setPrototypeOf(this, _TooManyTrafficPolicyInstances.prototype);
|
|
1293
1356
|
}
|
|
1294
1357
|
};
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1358
|
+
var TrafficPolicyInstanceAlreadyExists = class _TrafficPolicyInstanceAlreadyExists extends Route53ServiceException {
|
|
1359
|
+
static {
|
|
1360
|
+
__name(this, "TrafficPolicyInstanceAlreadyExists");
|
|
1361
|
+
}
|
|
1362
|
+
name = "TrafficPolicyInstanceAlreadyExists";
|
|
1363
|
+
$fault = "client";
|
|
1298
1364
|
/**
|
|
1299
1365
|
* @internal
|
|
1300
1366
|
*/
|
|
@@ -1304,14 +1370,15 @@ var _TrafficPolicyInstanceAlreadyExists = class _TrafficPolicyInstanceAlreadyExi
|
|
|
1304
1370
|
$fault: "client",
|
|
1305
1371
|
...opts
|
|
1306
1372
|
});
|
|
1307
|
-
this.name = "TrafficPolicyInstanceAlreadyExists";
|
|
1308
|
-
this.$fault = "client";
|
|
1309
1373
|
Object.setPrototypeOf(this, _TrafficPolicyInstanceAlreadyExists.prototype);
|
|
1310
1374
|
}
|
|
1311
1375
|
};
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1376
|
+
var TooManyTrafficPolicyVersionsForCurrentPolicy = class _TooManyTrafficPolicyVersionsForCurrentPolicy extends Route53ServiceException {
|
|
1377
|
+
static {
|
|
1378
|
+
__name(this, "TooManyTrafficPolicyVersionsForCurrentPolicy");
|
|
1379
|
+
}
|
|
1380
|
+
name = "TooManyTrafficPolicyVersionsForCurrentPolicy";
|
|
1381
|
+
$fault = "client";
|
|
1315
1382
|
/**
|
|
1316
1383
|
* @internal
|
|
1317
1384
|
*/
|
|
@@ -1321,14 +1388,15 @@ var _TooManyTrafficPolicyVersionsForCurrentPolicy = class _TooManyTrafficPolicyV
|
|
|
1321
1388
|
$fault: "client",
|
|
1322
1389
|
...opts
|
|
1323
1390
|
});
|
|
1324
|
-
this.name = "TooManyTrafficPolicyVersionsForCurrentPolicy";
|
|
1325
|
-
this.$fault = "client";
|
|
1326
1391
|
Object.setPrototypeOf(this, _TooManyTrafficPolicyVersionsForCurrentPolicy.prototype);
|
|
1327
1392
|
}
|
|
1328
1393
|
};
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1394
|
+
var TooManyVPCAssociationAuthorizations = class _TooManyVPCAssociationAuthorizations extends Route53ServiceException {
|
|
1395
|
+
static {
|
|
1396
|
+
__name(this, "TooManyVPCAssociationAuthorizations");
|
|
1397
|
+
}
|
|
1398
|
+
name = "TooManyVPCAssociationAuthorizations";
|
|
1399
|
+
$fault = "client";
|
|
1332
1400
|
/**
|
|
1333
1401
|
* @internal
|
|
1334
1402
|
*/
|
|
@@ -1338,14 +1406,15 @@ var _TooManyVPCAssociationAuthorizations = class _TooManyVPCAssociationAuthoriza
|
|
|
1338
1406
|
$fault: "client",
|
|
1339
1407
|
...opts
|
|
1340
1408
|
});
|
|
1341
|
-
this.name = "TooManyVPCAssociationAuthorizations";
|
|
1342
|
-
this.$fault = "client";
|
|
1343
1409
|
Object.setPrototypeOf(this, _TooManyVPCAssociationAuthorizations.prototype);
|
|
1344
1410
|
}
|
|
1345
1411
|
};
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1412
|
+
var KeySigningKeyInParentDSRecord = class _KeySigningKeyInParentDSRecord extends Route53ServiceException {
|
|
1413
|
+
static {
|
|
1414
|
+
__name(this, "KeySigningKeyInParentDSRecord");
|
|
1415
|
+
}
|
|
1416
|
+
name = "KeySigningKeyInParentDSRecord";
|
|
1417
|
+
$fault = "client";
|
|
1349
1418
|
/**
|
|
1350
1419
|
* @internal
|
|
1351
1420
|
*/
|
|
@@ -1355,14 +1424,15 @@ var _KeySigningKeyInParentDSRecord = class _KeySigningKeyInParentDSRecord extend
|
|
|
1355
1424
|
$fault: "client",
|
|
1356
1425
|
...opts
|
|
1357
1426
|
});
|
|
1358
|
-
this.name = "KeySigningKeyInParentDSRecord";
|
|
1359
|
-
this.$fault = "client";
|
|
1360
1427
|
Object.setPrototypeOf(this, _KeySigningKeyInParentDSRecord.prototype);
|
|
1361
1428
|
}
|
|
1362
1429
|
};
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1430
|
+
var KeySigningKeyInUse = class _KeySigningKeyInUse extends Route53ServiceException {
|
|
1431
|
+
static {
|
|
1432
|
+
__name(this, "KeySigningKeyInUse");
|
|
1433
|
+
}
|
|
1434
|
+
name = "KeySigningKeyInUse";
|
|
1435
|
+
$fault = "client";
|
|
1366
1436
|
/**
|
|
1367
1437
|
* @internal
|
|
1368
1438
|
*/
|
|
@@ -1372,14 +1442,16 @@ var _KeySigningKeyInUse = class _KeySigningKeyInUse extends Route53ServiceExcept
|
|
|
1372
1442
|
$fault: "client",
|
|
1373
1443
|
...opts
|
|
1374
1444
|
});
|
|
1375
|
-
this.name = "KeySigningKeyInUse";
|
|
1376
|
-
this.$fault = "client";
|
|
1377
1445
|
Object.setPrototypeOf(this, _KeySigningKeyInUse.prototype);
|
|
1378
1446
|
}
|
|
1379
1447
|
};
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1448
|
+
var CidrCollectionInUseException = class _CidrCollectionInUseException extends Route53ServiceException {
|
|
1449
|
+
static {
|
|
1450
|
+
__name(this, "CidrCollectionInUseException");
|
|
1451
|
+
}
|
|
1452
|
+
name = "CidrCollectionInUseException";
|
|
1453
|
+
$fault = "client";
|
|
1454
|
+
Message;
|
|
1383
1455
|
/**
|
|
1384
1456
|
* @internal
|
|
1385
1457
|
*/
|
|
@@ -1389,15 +1461,16 @@ var _CidrCollectionInUseException = class _CidrCollectionInUseException extends
|
|
|
1389
1461
|
$fault: "client",
|
|
1390
1462
|
...opts
|
|
1391
1463
|
});
|
|
1392
|
-
this.name = "CidrCollectionInUseException";
|
|
1393
|
-
this.$fault = "client";
|
|
1394
1464
|
Object.setPrototypeOf(this, _CidrCollectionInUseException.prototype);
|
|
1395
1465
|
this.Message = opts.Message;
|
|
1396
1466
|
}
|
|
1397
1467
|
};
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1468
|
+
var HealthCheckInUse = class _HealthCheckInUse extends Route53ServiceException {
|
|
1469
|
+
static {
|
|
1470
|
+
__name(this, "HealthCheckInUse");
|
|
1471
|
+
}
|
|
1472
|
+
name = "HealthCheckInUse";
|
|
1473
|
+
$fault = "client";
|
|
1401
1474
|
/**
|
|
1402
1475
|
* @internal
|
|
1403
1476
|
*/
|
|
@@ -1407,14 +1480,15 @@ var _HealthCheckInUse = class _HealthCheckInUse extends Route53ServiceException
|
|
|
1407
1480
|
$fault: "client",
|
|
1408
1481
|
...opts
|
|
1409
1482
|
});
|
|
1410
|
-
this.name = "HealthCheckInUse";
|
|
1411
|
-
this.$fault = "client";
|
|
1412
1483
|
Object.setPrototypeOf(this, _HealthCheckInUse.prototype);
|
|
1413
1484
|
}
|
|
1414
1485
|
};
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1486
|
+
var HostedZoneNotEmpty = class _HostedZoneNotEmpty extends Route53ServiceException {
|
|
1487
|
+
static {
|
|
1488
|
+
__name(this, "HostedZoneNotEmpty");
|
|
1489
|
+
}
|
|
1490
|
+
name = "HostedZoneNotEmpty";
|
|
1491
|
+
$fault = "client";
|
|
1418
1492
|
/**
|
|
1419
1493
|
* @internal
|
|
1420
1494
|
*/
|
|
@@ -1424,14 +1498,15 @@ var _HostedZoneNotEmpty = class _HostedZoneNotEmpty extends Route53ServiceExcept
|
|
|
1424
1498
|
$fault: "client",
|
|
1425
1499
|
...opts
|
|
1426
1500
|
});
|
|
1427
|
-
this.name = "HostedZoneNotEmpty";
|
|
1428
|
-
this.$fault = "client";
|
|
1429
1501
|
Object.setPrototypeOf(this, _HostedZoneNotEmpty.prototype);
|
|
1430
1502
|
}
|
|
1431
1503
|
};
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1504
|
+
var NoSuchQueryLoggingConfig = class _NoSuchQueryLoggingConfig extends Route53ServiceException {
|
|
1505
|
+
static {
|
|
1506
|
+
__name(this, "NoSuchQueryLoggingConfig");
|
|
1507
|
+
}
|
|
1508
|
+
name = "NoSuchQueryLoggingConfig";
|
|
1509
|
+
$fault = "client";
|
|
1435
1510
|
/**
|
|
1436
1511
|
* @internal
|
|
1437
1512
|
*/
|
|
@@ -1441,14 +1516,15 @@ var _NoSuchQueryLoggingConfig = class _NoSuchQueryLoggingConfig extends Route53S
|
|
|
1441
1516
|
$fault: "client",
|
|
1442
1517
|
...opts
|
|
1443
1518
|
});
|
|
1444
|
-
this.name = "NoSuchQueryLoggingConfig";
|
|
1445
|
-
this.$fault = "client";
|
|
1446
1519
|
Object.setPrototypeOf(this, _NoSuchQueryLoggingConfig.prototype);
|
|
1447
1520
|
}
|
|
1448
1521
|
};
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1522
|
+
var DelegationSetInUse = class _DelegationSetInUse extends Route53ServiceException {
|
|
1523
|
+
static {
|
|
1524
|
+
__name(this, "DelegationSetInUse");
|
|
1525
|
+
}
|
|
1526
|
+
name = "DelegationSetInUse";
|
|
1527
|
+
$fault = "client";
|
|
1452
1528
|
/**
|
|
1453
1529
|
* @internal
|
|
1454
1530
|
*/
|
|
@@ -1458,14 +1534,15 @@ var _DelegationSetInUse = class _DelegationSetInUse extends Route53ServiceExcept
|
|
|
1458
1534
|
$fault: "client",
|
|
1459
1535
|
...opts
|
|
1460
1536
|
});
|
|
1461
|
-
this.name = "DelegationSetInUse";
|
|
1462
|
-
this.$fault = "client";
|
|
1463
1537
|
Object.setPrototypeOf(this, _DelegationSetInUse.prototype);
|
|
1464
1538
|
}
|
|
1465
1539
|
};
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1540
|
+
var TrafficPolicyInUse = class _TrafficPolicyInUse extends Route53ServiceException {
|
|
1541
|
+
static {
|
|
1542
|
+
__name(this, "TrafficPolicyInUse");
|
|
1543
|
+
}
|
|
1544
|
+
name = "TrafficPolicyInUse";
|
|
1545
|
+
$fault = "client";
|
|
1469
1546
|
/**
|
|
1470
1547
|
* @internal
|
|
1471
1548
|
*/
|
|
@@ -1475,14 +1552,15 @@ var _TrafficPolicyInUse = class _TrafficPolicyInUse extends Route53ServiceExcept
|
|
|
1475
1552
|
$fault: "client",
|
|
1476
1553
|
...opts
|
|
1477
1554
|
});
|
|
1478
|
-
this.name = "TrafficPolicyInUse";
|
|
1479
|
-
this.$fault = "client";
|
|
1480
1555
|
Object.setPrototypeOf(this, _TrafficPolicyInUse.prototype);
|
|
1481
1556
|
}
|
|
1482
1557
|
};
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1558
|
+
var NoSuchTrafficPolicyInstance = class _NoSuchTrafficPolicyInstance extends Route53ServiceException {
|
|
1559
|
+
static {
|
|
1560
|
+
__name(this, "NoSuchTrafficPolicyInstance");
|
|
1561
|
+
}
|
|
1562
|
+
name = "NoSuchTrafficPolicyInstance";
|
|
1563
|
+
$fault = "client";
|
|
1486
1564
|
/**
|
|
1487
1565
|
* @internal
|
|
1488
1566
|
*/
|
|
@@ -1492,14 +1570,15 @@ var _NoSuchTrafficPolicyInstance = class _NoSuchTrafficPolicyInstance extends Ro
|
|
|
1492
1570
|
$fault: "client",
|
|
1493
1571
|
...opts
|
|
1494
1572
|
});
|
|
1495
|
-
this.name = "NoSuchTrafficPolicyInstance";
|
|
1496
|
-
this.$fault = "client";
|
|
1497
1573
|
Object.setPrototypeOf(this, _NoSuchTrafficPolicyInstance.prototype);
|
|
1498
1574
|
}
|
|
1499
1575
|
};
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1576
|
+
var VPCAssociationAuthorizationNotFound = class _VPCAssociationAuthorizationNotFound extends Route53ServiceException {
|
|
1577
|
+
static {
|
|
1578
|
+
__name(this, "VPCAssociationAuthorizationNotFound");
|
|
1579
|
+
}
|
|
1580
|
+
name = "VPCAssociationAuthorizationNotFound";
|
|
1581
|
+
$fault = "client";
|
|
1503
1582
|
/**
|
|
1504
1583
|
* @internal
|
|
1505
1584
|
*/
|
|
@@ -1509,14 +1588,15 @@ var _VPCAssociationAuthorizationNotFound = class _VPCAssociationAuthorizationNot
|
|
|
1509
1588
|
$fault: "client",
|
|
1510
1589
|
...opts
|
|
1511
1590
|
});
|
|
1512
|
-
this.name = "VPCAssociationAuthorizationNotFound";
|
|
1513
|
-
this.$fault = "client";
|
|
1514
1591
|
Object.setPrototypeOf(this, _VPCAssociationAuthorizationNotFound.prototype);
|
|
1515
1592
|
}
|
|
1516
1593
|
};
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1594
|
+
var DNSSECNotFound = class _DNSSECNotFound extends Route53ServiceException {
|
|
1595
|
+
static {
|
|
1596
|
+
__name(this, "DNSSECNotFound");
|
|
1597
|
+
}
|
|
1598
|
+
name = "DNSSECNotFound";
|
|
1599
|
+
$fault = "client";
|
|
1520
1600
|
/**
|
|
1521
1601
|
* @internal
|
|
1522
1602
|
*/
|
|
@@ -1526,14 +1606,15 @@ var _DNSSECNotFound = class _DNSSECNotFound extends Route53ServiceException {
|
|
|
1526
1606
|
$fault: "client",
|
|
1527
1607
|
...opts
|
|
1528
1608
|
});
|
|
1529
|
-
this.name = "DNSSECNotFound";
|
|
1530
|
-
this.$fault = "client";
|
|
1531
1609
|
Object.setPrototypeOf(this, _DNSSECNotFound.prototype);
|
|
1532
1610
|
}
|
|
1533
1611
|
};
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1612
|
+
var LastVPCAssociation = class _LastVPCAssociation extends Route53ServiceException {
|
|
1613
|
+
static {
|
|
1614
|
+
__name(this, "LastVPCAssociation");
|
|
1615
|
+
}
|
|
1616
|
+
name = "LastVPCAssociation";
|
|
1617
|
+
$fault = "client";
|
|
1537
1618
|
/**
|
|
1538
1619
|
* @internal
|
|
1539
1620
|
*/
|
|
@@ -1543,14 +1624,15 @@ var _LastVPCAssociation = class _LastVPCAssociation extends Route53ServiceExcept
|
|
|
1543
1624
|
$fault: "client",
|
|
1544
1625
|
...opts
|
|
1545
1626
|
});
|
|
1546
|
-
this.name = "LastVPCAssociation";
|
|
1547
|
-
this.$fault = "client";
|
|
1548
1627
|
Object.setPrototypeOf(this, _LastVPCAssociation.prototype);
|
|
1549
1628
|
}
|
|
1550
1629
|
};
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1630
|
+
var VPCAssociationNotFound = class _VPCAssociationNotFound extends Route53ServiceException {
|
|
1631
|
+
static {
|
|
1632
|
+
__name(this, "VPCAssociationNotFound");
|
|
1633
|
+
}
|
|
1634
|
+
name = "VPCAssociationNotFound";
|
|
1635
|
+
$fault = "client";
|
|
1554
1636
|
/**
|
|
1555
1637
|
* @internal
|
|
1556
1638
|
*/
|
|
@@ -1560,14 +1642,15 @@ var _VPCAssociationNotFound = class _VPCAssociationNotFound extends Route53Servi
|
|
|
1560
1642
|
$fault: "client",
|
|
1561
1643
|
...opts
|
|
1562
1644
|
});
|
|
1563
|
-
this.name = "VPCAssociationNotFound";
|
|
1564
|
-
this.$fault = "client";
|
|
1565
1645
|
Object.setPrototypeOf(this, _VPCAssociationNotFound.prototype);
|
|
1566
1646
|
}
|
|
1567
1647
|
};
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1648
|
+
var HostedZonePartiallyDelegated = class _HostedZonePartiallyDelegated extends Route53ServiceException {
|
|
1649
|
+
static {
|
|
1650
|
+
__name(this, "HostedZonePartiallyDelegated");
|
|
1651
|
+
}
|
|
1652
|
+
name = "HostedZonePartiallyDelegated";
|
|
1653
|
+
$fault = "client";
|
|
1571
1654
|
/**
|
|
1572
1655
|
* @internal
|
|
1573
1656
|
*/
|
|
@@ -1577,14 +1660,15 @@ var _HostedZonePartiallyDelegated = class _HostedZonePartiallyDelegated extends
|
|
|
1577
1660
|
$fault: "client",
|
|
1578
1661
|
...opts
|
|
1579
1662
|
});
|
|
1580
|
-
this.name = "HostedZonePartiallyDelegated";
|
|
1581
|
-
this.$fault = "client";
|
|
1582
1663
|
Object.setPrototypeOf(this, _HostedZonePartiallyDelegated.prototype);
|
|
1583
1664
|
}
|
|
1584
1665
|
};
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1666
|
+
var KeySigningKeyWithActiveStatusNotFound = class _KeySigningKeyWithActiveStatusNotFound extends Route53ServiceException {
|
|
1667
|
+
static {
|
|
1668
|
+
__name(this, "KeySigningKeyWithActiveStatusNotFound");
|
|
1669
|
+
}
|
|
1670
|
+
name = "KeySigningKeyWithActiveStatusNotFound";
|
|
1671
|
+
$fault = "client";
|
|
1588
1672
|
/**
|
|
1589
1673
|
* @internal
|
|
1590
1674
|
*/
|
|
@@ -1594,14 +1678,15 @@ var _KeySigningKeyWithActiveStatusNotFound = class _KeySigningKeyWithActiveStatu
|
|
|
1594
1678
|
$fault: "client",
|
|
1595
1679
|
...opts
|
|
1596
1680
|
});
|
|
1597
|
-
this.name = "KeySigningKeyWithActiveStatusNotFound";
|
|
1598
|
-
this.$fault = "client";
|
|
1599
1681
|
Object.setPrototypeOf(this, _KeySigningKeyWithActiveStatusNotFound.prototype);
|
|
1600
1682
|
}
|
|
1601
1683
|
};
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1684
|
+
var NoSuchChange = class _NoSuchChange extends Route53ServiceException {
|
|
1685
|
+
static {
|
|
1686
|
+
__name(this, "NoSuchChange");
|
|
1687
|
+
}
|
|
1688
|
+
name = "NoSuchChange";
|
|
1689
|
+
$fault = "client";
|
|
1605
1690
|
/**
|
|
1606
1691
|
* @internal
|
|
1607
1692
|
*/
|
|
@@ -1611,14 +1696,15 @@ var _NoSuchChange = class _NoSuchChange extends Route53ServiceException {
|
|
|
1611
1696
|
$fault: "client",
|
|
1612
1697
|
...opts
|
|
1613
1698
|
});
|
|
1614
|
-
this.name = "NoSuchChange";
|
|
1615
|
-
this.$fault = "client";
|
|
1616
1699
|
Object.setPrototypeOf(this, _NoSuchChange.prototype);
|
|
1617
1700
|
}
|
|
1618
1701
|
};
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1702
|
+
var NoSuchGeoLocation = class _NoSuchGeoLocation extends Route53ServiceException {
|
|
1703
|
+
static {
|
|
1704
|
+
__name(this, "NoSuchGeoLocation");
|
|
1705
|
+
}
|
|
1706
|
+
name = "NoSuchGeoLocation";
|
|
1707
|
+
$fault = "client";
|
|
1622
1708
|
/**
|
|
1623
1709
|
* @internal
|
|
1624
1710
|
*/
|
|
@@ -1628,14 +1714,15 @@ var _NoSuchGeoLocation = class _NoSuchGeoLocation extends Route53ServiceExceptio
|
|
|
1628
1714
|
$fault: "client",
|
|
1629
1715
|
...opts
|
|
1630
1716
|
});
|
|
1631
|
-
this.name = "NoSuchGeoLocation";
|
|
1632
|
-
this.$fault = "client";
|
|
1633
1717
|
Object.setPrototypeOf(this, _NoSuchGeoLocation.prototype);
|
|
1634
1718
|
}
|
|
1635
1719
|
};
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1720
|
+
var IncompatibleVersion = class _IncompatibleVersion extends Route53ServiceException {
|
|
1721
|
+
static {
|
|
1722
|
+
__name(this, "IncompatibleVersion");
|
|
1723
|
+
}
|
|
1724
|
+
name = "IncompatibleVersion";
|
|
1725
|
+
$fault = "client";
|
|
1639
1726
|
/**
|
|
1640
1727
|
* @internal
|
|
1641
1728
|
*/
|
|
@@ -1645,18 +1732,19 @@ var _IncompatibleVersion = class _IncompatibleVersion extends Route53ServiceExce
|
|
|
1645
1732
|
$fault: "client",
|
|
1646
1733
|
...opts
|
|
1647
1734
|
});
|
|
1648
|
-
this.name = "IncompatibleVersion";
|
|
1649
|
-
this.$fault = "client";
|
|
1650
1735
|
Object.setPrototypeOf(this, _IncompatibleVersion.prototype);
|
|
1651
1736
|
}
|
|
1652
1737
|
};
|
|
1653
|
-
__name(_IncompatibleVersion, "IncompatibleVersion");
|
|
1654
|
-
var IncompatibleVersion = _IncompatibleVersion;
|
|
1655
1738
|
var HostedZoneLimitType = {
|
|
1656
1739
|
MAX_RRSETS_BY_ZONE: "MAX_RRSETS_BY_ZONE",
|
|
1657
1740
|
MAX_VPCS_ASSOCIATED_BY_ZONE: "MAX_VPCS_ASSOCIATED_BY_ZONE"
|
|
1658
1741
|
};
|
|
1659
|
-
var
|
|
1742
|
+
var HostedZoneNotPrivate = class _HostedZoneNotPrivate extends Route53ServiceException {
|
|
1743
|
+
static {
|
|
1744
|
+
__name(this, "HostedZoneNotPrivate");
|
|
1745
|
+
}
|
|
1746
|
+
name = "HostedZoneNotPrivate";
|
|
1747
|
+
$fault = "client";
|
|
1660
1748
|
/**
|
|
1661
1749
|
* @internal
|
|
1662
1750
|
*/
|
|
@@ -1666,17 +1754,19 @@ var _HostedZoneNotPrivate = class _HostedZoneNotPrivate extends Route53ServiceEx
|
|
|
1666
1754
|
$fault: "client",
|
|
1667
1755
|
...opts
|
|
1668
1756
|
});
|
|
1669
|
-
this.name = "HostedZoneNotPrivate";
|
|
1670
|
-
this.$fault = "client";
|
|
1671
1757
|
Object.setPrototypeOf(this, _HostedZoneNotPrivate.prototype);
|
|
1672
1758
|
}
|
|
1673
1759
|
};
|
|
1674
|
-
__name(_HostedZoneNotPrivate, "HostedZoneNotPrivate");
|
|
1675
|
-
var HostedZoneNotPrivate = _HostedZoneNotPrivate;
|
|
1676
1760
|
var ReusableDelegationSetLimitType = {
|
|
1677
1761
|
MAX_ZONES_BY_REUSABLE_DELEGATION_SET: "MAX_ZONES_BY_REUSABLE_DELEGATION_SET"
|
|
1678
1762
|
};
|
|
1679
|
-
var
|
|
1763
|
+
var NoSuchCidrLocationException = class _NoSuchCidrLocationException extends Route53ServiceException {
|
|
1764
|
+
static {
|
|
1765
|
+
__name(this, "NoSuchCidrLocationException");
|
|
1766
|
+
}
|
|
1767
|
+
name = "NoSuchCidrLocationException";
|
|
1768
|
+
$fault = "client";
|
|
1769
|
+
Message;
|
|
1680
1770
|
/**
|
|
1681
1771
|
* @internal
|
|
1682
1772
|
*/
|
|
@@ -1686,18 +1776,19 @@ var _NoSuchCidrLocationException = class _NoSuchCidrLocationException extends Ro
|
|
|
1686
1776
|
$fault: "client",
|
|
1687
1777
|
...opts
|
|
1688
1778
|
});
|
|
1689
|
-
this.name = "NoSuchCidrLocationException";
|
|
1690
|
-
this.$fault = "client";
|
|
1691
1779
|
Object.setPrototypeOf(this, _NoSuchCidrLocationException.prototype);
|
|
1692
1780
|
this.Message = opts.Message;
|
|
1693
1781
|
}
|
|
1694
1782
|
};
|
|
1695
|
-
__name(_NoSuchCidrLocationException, "NoSuchCidrLocationException");
|
|
1696
|
-
var NoSuchCidrLocationException = _NoSuchCidrLocationException;
|
|
1697
1783
|
var HostedZoneType = {
|
|
1698
1784
|
PRIVATE_HOSTED_ZONE: "PrivateHostedZone"
|
|
1699
1785
|
};
|
|
1700
|
-
var
|
|
1786
|
+
var InvalidPaginationToken = class _InvalidPaginationToken extends Route53ServiceException {
|
|
1787
|
+
static {
|
|
1788
|
+
__name(this, "InvalidPaginationToken");
|
|
1789
|
+
}
|
|
1790
|
+
name = "InvalidPaginationToken";
|
|
1791
|
+
$fault = "client";
|
|
1701
1792
|
/**
|
|
1702
1793
|
* @internal
|
|
1703
1794
|
*/
|
|
@@ -1707,14 +1798,15 @@ var _InvalidPaginationToken = class _InvalidPaginationToken extends Route53Servi
|
|
|
1707
1798
|
$fault: "client",
|
|
1708
1799
|
...opts
|
|
1709
1800
|
});
|
|
1710
|
-
this.name = "InvalidPaginationToken";
|
|
1711
|
-
this.$fault = "client";
|
|
1712
1801
|
Object.setPrototypeOf(this, _InvalidPaginationToken.prototype);
|
|
1713
1802
|
}
|
|
1714
1803
|
};
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1804
|
+
var HealthCheckVersionMismatch = class _HealthCheckVersionMismatch extends Route53ServiceException {
|
|
1805
|
+
static {
|
|
1806
|
+
__name(this, "HealthCheckVersionMismatch");
|
|
1807
|
+
}
|
|
1808
|
+
name = "HealthCheckVersionMismatch";
|
|
1809
|
+
$fault = "client";
|
|
1718
1810
|
/**
|
|
1719
1811
|
* @internal
|
|
1720
1812
|
*/
|
|
@@ -1724,20 +1816,21 @@ var _HealthCheckVersionMismatch = class _HealthCheckVersionMismatch extends Rout
|
|
|
1724
1816
|
$fault: "client",
|
|
1725
1817
|
...opts
|
|
1726
1818
|
});
|
|
1727
|
-
this.name = "HealthCheckVersionMismatch";
|
|
1728
|
-
this.$fault = "client";
|
|
1729
1819
|
Object.setPrototypeOf(this, _HealthCheckVersionMismatch.prototype);
|
|
1730
1820
|
}
|
|
1731
1821
|
};
|
|
1732
|
-
__name(_HealthCheckVersionMismatch, "HealthCheckVersionMismatch");
|
|
1733
|
-
var HealthCheckVersionMismatch = _HealthCheckVersionMismatch;
|
|
1734
1822
|
var ResettableElementName = {
|
|
1735
1823
|
ChildHealthChecks: "ChildHealthChecks",
|
|
1736
1824
|
FullyQualifiedDomainName: "FullyQualifiedDomainName",
|
|
1737
1825
|
Regions: "Regions",
|
|
1738
1826
|
ResourcePath: "ResourcePath"
|
|
1739
1827
|
};
|
|
1740
|
-
var
|
|
1828
|
+
var ConflictingTypes = class _ConflictingTypes extends Route53ServiceException {
|
|
1829
|
+
static {
|
|
1830
|
+
__name(this, "ConflictingTypes");
|
|
1831
|
+
}
|
|
1832
|
+
name = "ConflictingTypes";
|
|
1833
|
+
$fault = "client";
|
|
1741
1834
|
/**
|
|
1742
1835
|
* @internal
|
|
1743
1836
|
*/
|
|
@@ -1747,13 +1840,9 @@ var _ConflictingTypes = class _ConflictingTypes extends Route53ServiceException
|
|
|
1747
1840
|
$fault: "client",
|
|
1748
1841
|
...opts
|
|
1749
1842
|
});
|
|
1750
|
-
this.name = "ConflictingTypes";
|
|
1751
|
-
this.$fault = "client";
|
|
1752
1843
|
Object.setPrototypeOf(this, _ConflictingTypes.prototype);
|
|
1753
1844
|
}
|
|
1754
1845
|
};
|
|
1755
|
-
__name(_ConflictingTypes, "ConflictingTypes");
|
|
1756
|
-
var ConflictingTypes = _ConflictingTypes;
|
|
1757
1846
|
|
|
1758
1847
|
// src/protocols/Aws_restXml.ts
|
|
1759
1848
|
var se_ActivateKeySigningKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -6332,55 +6421,58 @@ var _ver = "version";
|
|
|
6332
6421
|
var _vp = "vpcregion";
|
|
6333
6422
|
|
|
6334
6423
|
// src/commands/ActivateKeySigningKeyCommand.ts
|
|
6335
|
-
var
|
|
6424
|
+
var ActivateKeySigningKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6336
6425
|
return [
|
|
6337
6426
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6338
6427
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6339
6428
|
(0, import_middleware_sdk_route53.getIdNormalizerPlugin)(config)
|
|
6340
6429
|
];
|
|
6341
6430
|
}).s("AWSDnsV20130401", "ActivateKeySigningKey", {}).n("Route53Client", "ActivateKeySigningKeyCommand").f(void 0, void 0).ser(se_ActivateKeySigningKeyCommand).de(de_ActivateKeySigningKeyCommand).build() {
|
|
6431
|
+
static {
|
|
6432
|
+
__name(this, "ActivateKeySigningKeyCommand");
|
|
6433
|
+
}
|
|
6342
6434
|
};
|
|
6343
|
-
__name(_ActivateKeySigningKeyCommand, "ActivateKeySigningKeyCommand");
|
|
6344
|
-
var ActivateKeySigningKeyCommand = _ActivateKeySigningKeyCommand;
|
|
6345
6435
|
|
|
6346
6436
|
// src/commands/AssociateVPCWithHostedZoneCommand.ts
|
|
6347
6437
|
var import_middleware_sdk_route532 = require("@aws-sdk/middleware-sdk-route53");
|
|
6348
6438
|
|
|
6349
6439
|
|
|
6350
6440
|
|
|
6351
|
-
var
|
|
6441
|
+
var AssociateVPCWithHostedZoneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6352
6442
|
return [
|
|
6353
6443
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6354
6444
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6355
6445
|
(0, import_middleware_sdk_route532.getIdNormalizerPlugin)(config)
|
|
6356
6446
|
];
|
|
6357
6447
|
}).s("AWSDnsV20130401", "AssociateVPCWithHostedZone", {}).n("Route53Client", "AssociateVPCWithHostedZoneCommand").f(void 0, void 0).ser(se_AssociateVPCWithHostedZoneCommand).de(de_AssociateVPCWithHostedZoneCommand).build() {
|
|
6448
|
+
static {
|
|
6449
|
+
__name(this, "AssociateVPCWithHostedZoneCommand");
|
|
6450
|
+
}
|
|
6358
6451
|
};
|
|
6359
|
-
__name(_AssociateVPCWithHostedZoneCommand, "AssociateVPCWithHostedZoneCommand");
|
|
6360
|
-
var AssociateVPCWithHostedZoneCommand = _AssociateVPCWithHostedZoneCommand;
|
|
6361
6452
|
|
|
6362
6453
|
// src/commands/ChangeCidrCollectionCommand.ts
|
|
6363
6454
|
var import_middleware_sdk_route533 = require("@aws-sdk/middleware-sdk-route53");
|
|
6364
6455
|
|
|
6365
6456
|
|
|
6366
6457
|
|
|
6367
|
-
var
|
|
6458
|
+
var ChangeCidrCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6368
6459
|
return [
|
|
6369
6460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6370
6461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6371
6462
|
(0, import_middleware_sdk_route533.getIdNormalizerPlugin)(config)
|
|
6372
6463
|
];
|
|
6373
6464
|
}).s("AWSDnsV20130401", "ChangeCidrCollection", {}).n("Route53Client", "ChangeCidrCollectionCommand").f(void 0, void 0).ser(se_ChangeCidrCollectionCommand).de(de_ChangeCidrCollectionCommand).build() {
|
|
6465
|
+
static {
|
|
6466
|
+
__name(this, "ChangeCidrCollectionCommand");
|
|
6467
|
+
}
|
|
6374
6468
|
};
|
|
6375
|
-
__name(_ChangeCidrCollectionCommand, "ChangeCidrCollectionCommand");
|
|
6376
|
-
var ChangeCidrCollectionCommand = _ChangeCidrCollectionCommand;
|
|
6377
6469
|
|
|
6378
6470
|
// src/commands/ChangeResourceRecordSetsCommand.ts
|
|
6379
6471
|
var import_middleware_sdk_route534 = require("@aws-sdk/middleware-sdk-route53");
|
|
6380
6472
|
|
|
6381
6473
|
|
|
6382
6474
|
|
|
6383
|
-
var
|
|
6475
|
+
var ChangeResourceRecordSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6384
6476
|
return [
|
|
6385
6477
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6386
6478
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
@@ -6388,1011 +6480,1078 @@ var _ChangeResourceRecordSetsCommand = class _ChangeResourceRecordSetsCommand ex
|
|
|
6388
6480
|
(0, import_middleware_sdk_route534.getIdNormalizerPlugin)(config)
|
|
6389
6481
|
];
|
|
6390
6482
|
}).s("AWSDnsV20130401", "ChangeResourceRecordSets", {}).n("Route53Client", "ChangeResourceRecordSetsCommand").f(void 0, void 0).ser(se_ChangeResourceRecordSetsCommand).de(de_ChangeResourceRecordSetsCommand).build() {
|
|
6483
|
+
static {
|
|
6484
|
+
__name(this, "ChangeResourceRecordSetsCommand");
|
|
6485
|
+
}
|
|
6391
6486
|
};
|
|
6392
|
-
__name(_ChangeResourceRecordSetsCommand, "ChangeResourceRecordSetsCommand");
|
|
6393
|
-
var ChangeResourceRecordSetsCommand = _ChangeResourceRecordSetsCommand;
|
|
6394
6487
|
|
|
6395
6488
|
// src/commands/ChangeTagsForResourceCommand.ts
|
|
6396
6489
|
|
|
6397
6490
|
|
|
6398
6491
|
|
|
6399
|
-
var
|
|
6492
|
+
var ChangeTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6400
6493
|
return [
|
|
6401
6494
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6402
6495
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6403
6496
|
];
|
|
6404
6497
|
}).s("AWSDnsV20130401", "ChangeTagsForResource", {}).n("Route53Client", "ChangeTagsForResourceCommand").f(void 0, void 0).ser(se_ChangeTagsForResourceCommand).de(de_ChangeTagsForResourceCommand).build() {
|
|
6498
|
+
static {
|
|
6499
|
+
__name(this, "ChangeTagsForResourceCommand");
|
|
6500
|
+
}
|
|
6405
6501
|
};
|
|
6406
|
-
__name(_ChangeTagsForResourceCommand, "ChangeTagsForResourceCommand");
|
|
6407
|
-
var ChangeTagsForResourceCommand = _ChangeTagsForResourceCommand;
|
|
6408
6502
|
|
|
6409
6503
|
// src/commands/CreateCidrCollectionCommand.ts
|
|
6410
6504
|
|
|
6411
6505
|
|
|
6412
6506
|
|
|
6413
|
-
var
|
|
6507
|
+
var CreateCidrCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6414
6508
|
return [
|
|
6415
6509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6416
6510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6417
6511
|
];
|
|
6418
6512
|
}).s("AWSDnsV20130401", "CreateCidrCollection", {}).n("Route53Client", "CreateCidrCollectionCommand").f(void 0, void 0).ser(se_CreateCidrCollectionCommand).de(de_CreateCidrCollectionCommand).build() {
|
|
6513
|
+
static {
|
|
6514
|
+
__name(this, "CreateCidrCollectionCommand");
|
|
6515
|
+
}
|
|
6419
6516
|
};
|
|
6420
|
-
__name(_CreateCidrCollectionCommand, "CreateCidrCollectionCommand");
|
|
6421
|
-
var CreateCidrCollectionCommand = _CreateCidrCollectionCommand;
|
|
6422
6517
|
|
|
6423
6518
|
// src/commands/CreateHealthCheckCommand.ts
|
|
6424
6519
|
|
|
6425
6520
|
|
|
6426
6521
|
|
|
6427
|
-
var
|
|
6522
|
+
var CreateHealthCheckCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6428
6523
|
return [
|
|
6429
6524
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6430
6525
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6431
6526
|
];
|
|
6432
6527
|
}).s("AWSDnsV20130401", "CreateHealthCheck", {}).n("Route53Client", "CreateHealthCheckCommand").f(void 0, void 0).ser(se_CreateHealthCheckCommand).de(de_CreateHealthCheckCommand).build() {
|
|
6528
|
+
static {
|
|
6529
|
+
__name(this, "CreateHealthCheckCommand");
|
|
6530
|
+
}
|
|
6433
6531
|
};
|
|
6434
|
-
__name(_CreateHealthCheckCommand, "CreateHealthCheckCommand");
|
|
6435
|
-
var CreateHealthCheckCommand = _CreateHealthCheckCommand;
|
|
6436
6532
|
|
|
6437
6533
|
// src/commands/CreateHostedZoneCommand.ts
|
|
6438
6534
|
var import_middleware_sdk_route535 = require("@aws-sdk/middleware-sdk-route53");
|
|
6439
6535
|
|
|
6440
6536
|
|
|
6441
6537
|
|
|
6442
|
-
var
|
|
6538
|
+
var CreateHostedZoneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6443
6539
|
return [
|
|
6444
6540
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6445
6541
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6446
6542
|
(0, import_middleware_sdk_route535.getIdNormalizerPlugin)(config)
|
|
6447
6543
|
];
|
|
6448
6544
|
}).s("AWSDnsV20130401", "CreateHostedZone", {}).n("Route53Client", "CreateHostedZoneCommand").f(void 0, void 0).ser(se_CreateHostedZoneCommand).de(de_CreateHostedZoneCommand).build() {
|
|
6545
|
+
static {
|
|
6546
|
+
__name(this, "CreateHostedZoneCommand");
|
|
6547
|
+
}
|
|
6449
6548
|
};
|
|
6450
|
-
__name(_CreateHostedZoneCommand, "CreateHostedZoneCommand");
|
|
6451
|
-
var CreateHostedZoneCommand = _CreateHostedZoneCommand;
|
|
6452
6549
|
|
|
6453
6550
|
// src/commands/CreateKeySigningKeyCommand.ts
|
|
6454
6551
|
var import_middleware_sdk_route536 = require("@aws-sdk/middleware-sdk-route53");
|
|
6455
6552
|
|
|
6456
6553
|
|
|
6457
6554
|
|
|
6458
|
-
var
|
|
6555
|
+
var CreateKeySigningKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6459
6556
|
return [
|
|
6460
6557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6461
6558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6462
6559
|
(0, import_middleware_sdk_route536.getIdNormalizerPlugin)(config)
|
|
6463
6560
|
];
|
|
6464
6561
|
}).s("AWSDnsV20130401", "CreateKeySigningKey", {}).n("Route53Client", "CreateKeySigningKeyCommand").f(void 0, void 0).ser(se_CreateKeySigningKeyCommand).de(de_CreateKeySigningKeyCommand).build() {
|
|
6562
|
+
static {
|
|
6563
|
+
__name(this, "CreateKeySigningKeyCommand");
|
|
6564
|
+
}
|
|
6465
6565
|
};
|
|
6466
|
-
__name(_CreateKeySigningKeyCommand, "CreateKeySigningKeyCommand");
|
|
6467
|
-
var CreateKeySigningKeyCommand = _CreateKeySigningKeyCommand;
|
|
6468
6566
|
|
|
6469
6567
|
// src/commands/CreateQueryLoggingConfigCommand.ts
|
|
6470
6568
|
var import_middleware_sdk_route537 = require("@aws-sdk/middleware-sdk-route53");
|
|
6471
6569
|
|
|
6472
6570
|
|
|
6473
6571
|
|
|
6474
|
-
var
|
|
6572
|
+
var CreateQueryLoggingConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6475
6573
|
return [
|
|
6476
6574
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6477
6575
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6478
6576
|
(0, import_middleware_sdk_route537.getIdNormalizerPlugin)(config)
|
|
6479
6577
|
];
|
|
6480
6578
|
}).s("AWSDnsV20130401", "CreateQueryLoggingConfig", {}).n("Route53Client", "CreateQueryLoggingConfigCommand").f(void 0, void 0).ser(se_CreateQueryLoggingConfigCommand).de(de_CreateQueryLoggingConfigCommand).build() {
|
|
6579
|
+
static {
|
|
6580
|
+
__name(this, "CreateQueryLoggingConfigCommand");
|
|
6581
|
+
}
|
|
6481
6582
|
};
|
|
6482
|
-
__name(_CreateQueryLoggingConfigCommand, "CreateQueryLoggingConfigCommand");
|
|
6483
|
-
var CreateQueryLoggingConfigCommand = _CreateQueryLoggingConfigCommand;
|
|
6484
6583
|
|
|
6485
6584
|
// src/commands/CreateReusableDelegationSetCommand.ts
|
|
6486
6585
|
var import_middleware_sdk_route538 = require("@aws-sdk/middleware-sdk-route53");
|
|
6487
6586
|
|
|
6488
6587
|
|
|
6489
6588
|
|
|
6490
|
-
var
|
|
6589
|
+
var CreateReusableDelegationSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6491
6590
|
return [
|
|
6492
6591
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6493
6592
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6494
6593
|
(0, import_middleware_sdk_route538.getIdNormalizerPlugin)(config)
|
|
6495
6594
|
];
|
|
6496
6595
|
}).s("AWSDnsV20130401", "CreateReusableDelegationSet", {}).n("Route53Client", "CreateReusableDelegationSetCommand").f(void 0, void 0).ser(se_CreateReusableDelegationSetCommand).de(de_CreateReusableDelegationSetCommand).build() {
|
|
6596
|
+
static {
|
|
6597
|
+
__name(this, "CreateReusableDelegationSetCommand");
|
|
6598
|
+
}
|
|
6497
6599
|
};
|
|
6498
|
-
__name(_CreateReusableDelegationSetCommand, "CreateReusableDelegationSetCommand");
|
|
6499
|
-
var CreateReusableDelegationSetCommand = _CreateReusableDelegationSetCommand;
|
|
6500
6600
|
|
|
6501
6601
|
// src/commands/CreateTrafficPolicyCommand.ts
|
|
6502
6602
|
|
|
6503
6603
|
|
|
6504
6604
|
|
|
6505
|
-
var
|
|
6605
|
+
var CreateTrafficPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6506
6606
|
return [
|
|
6507
6607
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6508
6608
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6509
6609
|
];
|
|
6510
6610
|
}).s("AWSDnsV20130401", "CreateTrafficPolicy", {}).n("Route53Client", "CreateTrafficPolicyCommand").f(void 0, void 0).ser(se_CreateTrafficPolicyCommand).de(de_CreateTrafficPolicyCommand).build() {
|
|
6611
|
+
static {
|
|
6612
|
+
__name(this, "CreateTrafficPolicyCommand");
|
|
6613
|
+
}
|
|
6511
6614
|
};
|
|
6512
|
-
__name(_CreateTrafficPolicyCommand, "CreateTrafficPolicyCommand");
|
|
6513
|
-
var CreateTrafficPolicyCommand = _CreateTrafficPolicyCommand;
|
|
6514
6615
|
|
|
6515
6616
|
// src/commands/CreateTrafficPolicyInstanceCommand.ts
|
|
6516
6617
|
var import_middleware_sdk_route539 = require("@aws-sdk/middleware-sdk-route53");
|
|
6517
6618
|
|
|
6518
6619
|
|
|
6519
6620
|
|
|
6520
|
-
var
|
|
6621
|
+
var CreateTrafficPolicyInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6521
6622
|
return [
|
|
6522
6623
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6523
6624
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6524
6625
|
(0, import_middleware_sdk_route539.getIdNormalizerPlugin)(config)
|
|
6525
6626
|
];
|
|
6526
6627
|
}).s("AWSDnsV20130401", "CreateTrafficPolicyInstance", {}).n("Route53Client", "CreateTrafficPolicyInstanceCommand").f(void 0, void 0).ser(se_CreateTrafficPolicyInstanceCommand).de(de_CreateTrafficPolicyInstanceCommand).build() {
|
|
6628
|
+
static {
|
|
6629
|
+
__name(this, "CreateTrafficPolicyInstanceCommand");
|
|
6630
|
+
}
|
|
6527
6631
|
};
|
|
6528
|
-
__name(_CreateTrafficPolicyInstanceCommand, "CreateTrafficPolicyInstanceCommand");
|
|
6529
|
-
var CreateTrafficPolicyInstanceCommand = _CreateTrafficPolicyInstanceCommand;
|
|
6530
6632
|
|
|
6531
6633
|
// src/commands/CreateTrafficPolicyVersionCommand.ts
|
|
6532
6634
|
var import_middleware_sdk_route5310 = require("@aws-sdk/middleware-sdk-route53");
|
|
6533
6635
|
|
|
6534
6636
|
|
|
6535
6637
|
|
|
6536
|
-
var
|
|
6638
|
+
var CreateTrafficPolicyVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6537
6639
|
return [
|
|
6538
6640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6539
6641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6540
6642
|
(0, import_middleware_sdk_route5310.getIdNormalizerPlugin)(config)
|
|
6541
6643
|
];
|
|
6542
6644
|
}).s("AWSDnsV20130401", "CreateTrafficPolicyVersion", {}).n("Route53Client", "CreateTrafficPolicyVersionCommand").f(void 0, void 0).ser(se_CreateTrafficPolicyVersionCommand).de(de_CreateTrafficPolicyVersionCommand).build() {
|
|
6645
|
+
static {
|
|
6646
|
+
__name(this, "CreateTrafficPolicyVersionCommand");
|
|
6647
|
+
}
|
|
6543
6648
|
};
|
|
6544
|
-
__name(_CreateTrafficPolicyVersionCommand, "CreateTrafficPolicyVersionCommand");
|
|
6545
|
-
var CreateTrafficPolicyVersionCommand = _CreateTrafficPolicyVersionCommand;
|
|
6546
6649
|
|
|
6547
6650
|
// src/commands/CreateVPCAssociationAuthorizationCommand.ts
|
|
6548
6651
|
var import_middleware_sdk_route5311 = require("@aws-sdk/middleware-sdk-route53");
|
|
6549
6652
|
|
|
6550
6653
|
|
|
6551
6654
|
|
|
6552
|
-
var
|
|
6655
|
+
var CreateVPCAssociationAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6553
6656
|
return [
|
|
6554
6657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6555
6658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6556
6659
|
(0, import_middleware_sdk_route5311.getIdNormalizerPlugin)(config)
|
|
6557
6660
|
];
|
|
6558
6661
|
}).s("AWSDnsV20130401", "CreateVPCAssociationAuthorization", {}).n("Route53Client", "CreateVPCAssociationAuthorizationCommand").f(void 0, void 0).ser(se_CreateVPCAssociationAuthorizationCommand).de(de_CreateVPCAssociationAuthorizationCommand).build() {
|
|
6662
|
+
static {
|
|
6663
|
+
__name(this, "CreateVPCAssociationAuthorizationCommand");
|
|
6664
|
+
}
|
|
6559
6665
|
};
|
|
6560
|
-
__name(_CreateVPCAssociationAuthorizationCommand, "CreateVPCAssociationAuthorizationCommand");
|
|
6561
|
-
var CreateVPCAssociationAuthorizationCommand = _CreateVPCAssociationAuthorizationCommand;
|
|
6562
6666
|
|
|
6563
6667
|
// src/commands/DeactivateKeySigningKeyCommand.ts
|
|
6564
6668
|
var import_middleware_sdk_route5312 = require("@aws-sdk/middleware-sdk-route53");
|
|
6565
6669
|
|
|
6566
6670
|
|
|
6567
6671
|
|
|
6568
|
-
var
|
|
6672
|
+
var DeactivateKeySigningKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6569
6673
|
return [
|
|
6570
6674
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6571
6675
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6572
6676
|
(0, import_middleware_sdk_route5312.getIdNormalizerPlugin)(config)
|
|
6573
6677
|
];
|
|
6574
6678
|
}).s("AWSDnsV20130401", "DeactivateKeySigningKey", {}).n("Route53Client", "DeactivateKeySigningKeyCommand").f(void 0, void 0).ser(se_DeactivateKeySigningKeyCommand).de(de_DeactivateKeySigningKeyCommand).build() {
|
|
6679
|
+
static {
|
|
6680
|
+
__name(this, "DeactivateKeySigningKeyCommand");
|
|
6681
|
+
}
|
|
6575
6682
|
};
|
|
6576
|
-
__name(_DeactivateKeySigningKeyCommand, "DeactivateKeySigningKeyCommand");
|
|
6577
|
-
var DeactivateKeySigningKeyCommand = _DeactivateKeySigningKeyCommand;
|
|
6578
6683
|
|
|
6579
6684
|
// src/commands/DeleteCidrCollectionCommand.ts
|
|
6580
6685
|
var import_middleware_sdk_route5313 = require("@aws-sdk/middleware-sdk-route53");
|
|
6581
6686
|
|
|
6582
6687
|
|
|
6583
6688
|
|
|
6584
|
-
var
|
|
6689
|
+
var DeleteCidrCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6585
6690
|
return [
|
|
6586
6691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6587
6692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6588
6693
|
(0, import_middleware_sdk_route5313.getIdNormalizerPlugin)(config)
|
|
6589
6694
|
];
|
|
6590
6695
|
}).s("AWSDnsV20130401", "DeleteCidrCollection", {}).n("Route53Client", "DeleteCidrCollectionCommand").f(void 0, void 0).ser(se_DeleteCidrCollectionCommand).de(de_DeleteCidrCollectionCommand).build() {
|
|
6696
|
+
static {
|
|
6697
|
+
__name(this, "DeleteCidrCollectionCommand");
|
|
6698
|
+
}
|
|
6591
6699
|
};
|
|
6592
|
-
__name(_DeleteCidrCollectionCommand, "DeleteCidrCollectionCommand");
|
|
6593
|
-
var DeleteCidrCollectionCommand = _DeleteCidrCollectionCommand;
|
|
6594
6700
|
|
|
6595
6701
|
// src/commands/DeleteHealthCheckCommand.ts
|
|
6596
6702
|
|
|
6597
6703
|
|
|
6598
6704
|
|
|
6599
|
-
var
|
|
6705
|
+
var DeleteHealthCheckCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6600
6706
|
return [
|
|
6601
6707
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6602
6708
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6603
6709
|
];
|
|
6604
6710
|
}).s("AWSDnsV20130401", "DeleteHealthCheck", {}).n("Route53Client", "DeleteHealthCheckCommand").f(void 0, void 0).ser(se_DeleteHealthCheckCommand).de(de_DeleteHealthCheckCommand).build() {
|
|
6711
|
+
static {
|
|
6712
|
+
__name(this, "DeleteHealthCheckCommand");
|
|
6713
|
+
}
|
|
6605
6714
|
};
|
|
6606
|
-
__name(_DeleteHealthCheckCommand, "DeleteHealthCheckCommand");
|
|
6607
|
-
var DeleteHealthCheckCommand = _DeleteHealthCheckCommand;
|
|
6608
6715
|
|
|
6609
6716
|
// src/commands/DeleteHostedZoneCommand.ts
|
|
6610
6717
|
var import_middleware_sdk_route5314 = require("@aws-sdk/middleware-sdk-route53");
|
|
6611
6718
|
|
|
6612
6719
|
|
|
6613
6720
|
|
|
6614
|
-
var
|
|
6721
|
+
var DeleteHostedZoneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6615
6722
|
return [
|
|
6616
6723
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6617
6724
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6618
6725
|
(0, import_middleware_sdk_route5314.getIdNormalizerPlugin)(config)
|
|
6619
6726
|
];
|
|
6620
6727
|
}).s("AWSDnsV20130401", "DeleteHostedZone", {}).n("Route53Client", "DeleteHostedZoneCommand").f(void 0, void 0).ser(se_DeleteHostedZoneCommand).de(de_DeleteHostedZoneCommand).build() {
|
|
6728
|
+
static {
|
|
6729
|
+
__name(this, "DeleteHostedZoneCommand");
|
|
6730
|
+
}
|
|
6621
6731
|
};
|
|
6622
|
-
__name(_DeleteHostedZoneCommand, "DeleteHostedZoneCommand");
|
|
6623
|
-
var DeleteHostedZoneCommand = _DeleteHostedZoneCommand;
|
|
6624
6732
|
|
|
6625
6733
|
// src/commands/DeleteKeySigningKeyCommand.ts
|
|
6626
6734
|
var import_middleware_sdk_route5315 = require("@aws-sdk/middleware-sdk-route53");
|
|
6627
6735
|
|
|
6628
6736
|
|
|
6629
6737
|
|
|
6630
|
-
var
|
|
6738
|
+
var DeleteKeySigningKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6631
6739
|
return [
|
|
6632
6740
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6633
6741
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6634
6742
|
(0, import_middleware_sdk_route5315.getIdNormalizerPlugin)(config)
|
|
6635
6743
|
];
|
|
6636
6744
|
}).s("AWSDnsV20130401", "DeleteKeySigningKey", {}).n("Route53Client", "DeleteKeySigningKeyCommand").f(void 0, void 0).ser(se_DeleteKeySigningKeyCommand).de(de_DeleteKeySigningKeyCommand).build() {
|
|
6745
|
+
static {
|
|
6746
|
+
__name(this, "DeleteKeySigningKeyCommand");
|
|
6747
|
+
}
|
|
6637
6748
|
};
|
|
6638
|
-
__name(_DeleteKeySigningKeyCommand, "DeleteKeySigningKeyCommand");
|
|
6639
|
-
var DeleteKeySigningKeyCommand = _DeleteKeySigningKeyCommand;
|
|
6640
6749
|
|
|
6641
6750
|
// src/commands/DeleteQueryLoggingConfigCommand.ts
|
|
6642
6751
|
var import_middleware_sdk_route5316 = require("@aws-sdk/middleware-sdk-route53");
|
|
6643
6752
|
|
|
6644
6753
|
|
|
6645
6754
|
|
|
6646
|
-
var
|
|
6755
|
+
var DeleteQueryLoggingConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6647
6756
|
return [
|
|
6648
6757
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6649
6758
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6650
6759
|
(0, import_middleware_sdk_route5316.getIdNormalizerPlugin)(config)
|
|
6651
6760
|
];
|
|
6652
6761
|
}).s("AWSDnsV20130401", "DeleteQueryLoggingConfig", {}).n("Route53Client", "DeleteQueryLoggingConfigCommand").f(void 0, void 0).ser(se_DeleteQueryLoggingConfigCommand).de(de_DeleteQueryLoggingConfigCommand).build() {
|
|
6762
|
+
static {
|
|
6763
|
+
__name(this, "DeleteQueryLoggingConfigCommand");
|
|
6764
|
+
}
|
|
6653
6765
|
};
|
|
6654
|
-
__name(_DeleteQueryLoggingConfigCommand, "DeleteQueryLoggingConfigCommand");
|
|
6655
|
-
var DeleteQueryLoggingConfigCommand = _DeleteQueryLoggingConfigCommand;
|
|
6656
6766
|
|
|
6657
6767
|
// src/commands/DeleteReusableDelegationSetCommand.ts
|
|
6658
6768
|
var import_middleware_sdk_route5317 = require("@aws-sdk/middleware-sdk-route53");
|
|
6659
6769
|
|
|
6660
6770
|
|
|
6661
6771
|
|
|
6662
|
-
var
|
|
6772
|
+
var DeleteReusableDelegationSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6663
6773
|
return [
|
|
6664
6774
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6665
6775
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6666
6776
|
(0, import_middleware_sdk_route5317.getIdNormalizerPlugin)(config)
|
|
6667
6777
|
];
|
|
6668
6778
|
}).s("AWSDnsV20130401", "DeleteReusableDelegationSet", {}).n("Route53Client", "DeleteReusableDelegationSetCommand").f(void 0, void 0).ser(se_DeleteReusableDelegationSetCommand).de(de_DeleteReusableDelegationSetCommand).build() {
|
|
6779
|
+
static {
|
|
6780
|
+
__name(this, "DeleteReusableDelegationSetCommand");
|
|
6781
|
+
}
|
|
6669
6782
|
};
|
|
6670
|
-
__name(_DeleteReusableDelegationSetCommand, "DeleteReusableDelegationSetCommand");
|
|
6671
|
-
var DeleteReusableDelegationSetCommand = _DeleteReusableDelegationSetCommand;
|
|
6672
6783
|
|
|
6673
6784
|
// src/commands/DeleteTrafficPolicyCommand.ts
|
|
6674
6785
|
var import_middleware_sdk_route5318 = require("@aws-sdk/middleware-sdk-route53");
|
|
6675
6786
|
|
|
6676
6787
|
|
|
6677
6788
|
|
|
6678
|
-
var
|
|
6789
|
+
var DeleteTrafficPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6679
6790
|
return [
|
|
6680
6791
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6681
6792
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6682
6793
|
(0, import_middleware_sdk_route5318.getIdNormalizerPlugin)(config)
|
|
6683
6794
|
];
|
|
6684
6795
|
}).s("AWSDnsV20130401", "DeleteTrafficPolicy", {}).n("Route53Client", "DeleteTrafficPolicyCommand").f(void 0, void 0).ser(se_DeleteTrafficPolicyCommand).de(de_DeleteTrafficPolicyCommand).build() {
|
|
6796
|
+
static {
|
|
6797
|
+
__name(this, "DeleteTrafficPolicyCommand");
|
|
6798
|
+
}
|
|
6685
6799
|
};
|
|
6686
|
-
__name(_DeleteTrafficPolicyCommand, "DeleteTrafficPolicyCommand");
|
|
6687
|
-
var DeleteTrafficPolicyCommand = _DeleteTrafficPolicyCommand;
|
|
6688
6800
|
|
|
6689
6801
|
// src/commands/DeleteTrafficPolicyInstanceCommand.ts
|
|
6690
6802
|
var import_middleware_sdk_route5319 = require("@aws-sdk/middleware-sdk-route53");
|
|
6691
6803
|
|
|
6692
6804
|
|
|
6693
6805
|
|
|
6694
|
-
var
|
|
6806
|
+
var DeleteTrafficPolicyInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6695
6807
|
return [
|
|
6696
6808
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6697
6809
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6698
6810
|
(0, import_middleware_sdk_route5319.getIdNormalizerPlugin)(config)
|
|
6699
6811
|
];
|
|
6700
6812
|
}).s("AWSDnsV20130401", "DeleteTrafficPolicyInstance", {}).n("Route53Client", "DeleteTrafficPolicyInstanceCommand").f(void 0, void 0).ser(se_DeleteTrafficPolicyInstanceCommand).de(de_DeleteTrafficPolicyInstanceCommand).build() {
|
|
6813
|
+
static {
|
|
6814
|
+
__name(this, "DeleteTrafficPolicyInstanceCommand");
|
|
6815
|
+
}
|
|
6701
6816
|
};
|
|
6702
|
-
__name(_DeleteTrafficPolicyInstanceCommand, "DeleteTrafficPolicyInstanceCommand");
|
|
6703
|
-
var DeleteTrafficPolicyInstanceCommand = _DeleteTrafficPolicyInstanceCommand;
|
|
6704
6817
|
|
|
6705
6818
|
// src/commands/DeleteVPCAssociationAuthorizationCommand.ts
|
|
6706
6819
|
var import_middleware_sdk_route5320 = require("@aws-sdk/middleware-sdk-route53");
|
|
6707
6820
|
|
|
6708
6821
|
|
|
6709
6822
|
|
|
6710
|
-
var
|
|
6823
|
+
var DeleteVPCAssociationAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6711
6824
|
return [
|
|
6712
6825
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6713
6826
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6714
6827
|
(0, import_middleware_sdk_route5320.getIdNormalizerPlugin)(config)
|
|
6715
6828
|
];
|
|
6716
6829
|
}).s("AWSDnsV20130401", "DeleteVPCAssociationAuthorization", {}).n("Route53Client", "DeleteVPCAssociationAuthorizationCommand").f(void 0, void 0).ser(se_DeleteVPCAssociationAuthorizationCommand).de(de_DeleteVPCAssociationAuthorizationCommand).build() {
|
|
6830
|
+
static {
|
|
6831
|
+
__name(this, "DeleteVPCAssociationAuthorizationCommand");
|
|
6832
|
+
}
|
|
6717
6833
|
};
|
|
6718
|
-
__name(_DeleteVPCAssociationAuthorizationCommand, "DeleteVPCAssociationAuthorizationCommand");
|
|
6719
|
-
var DeleteVPCAssociationAuthorizationCommand = _DeleteVPCAssociationAuthorizationCommand;
|
|
6720
6834
|
|
|
6721
6835
|
// src/commands/DisableHostedZoneDNSSECCommand.ts
|
|
6722
6836
|
var import_middleware_sdk_route5321 = require("@aws-sdk/middleware-sdk-route53");
|
|
6723
6837
|
|
|
6724
6838
|
|
|
6725
6839
|
|
|
6726
|
-
var
|
|
6840
|
+
var DisableHostedZoneDNSSECCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6727
6841
|
return [
|
|
6728
6842
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6729
6843
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6730
6844
|
(0, import_middleware_sdk_route5321.getIdNormalizerPlugin)(config)
|
|
6731
6845
|
];
|
|
6732
6846
|
}).s("AWSDnsV20130401", "DisableHostedZoneDNSSEC", {}).n("Route53Client", "DisableHostedZoneDNSSECCommand").f(void 0, void 0).ser(se_DisableHostedZoneDNSSECCommand).de(de_DisableHostedZoneDNSSECCommand).build() {
|
|
6847
|
+
static {
|
|
6848
|
+
__name(this, "DisableHostedZoneDNSSECCommand");
|
|
6849
|
+
}
|
|
6733
6850
|
};
|
|
6734
|
-
__name(_DisableHostedZoneDNSSECCommand, "DisableHostedZoneDNSSECCommand");
|
|
6735
|
-
var DisableHostedZoneDNSSECCommand = _DisableHostedZoneDNSSECCommand;
|
|
6736
6851
|
|
|
6737
6852
|
// src/commands/DisassociateVPCFromHostedZoneCommand.ts
|
|
6738
6853
|
var import_middleware_sdk_route5322 = require("@aws-sdk/middleware-sdk-route53");
|
|
6739
6854
|
|
|
6740
6855
|
|
|
6741
6856
|
|
|
6742
|
-
var
|
|
6857
|
+
var DisassociateVPCFromHostedZoneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6743
6858
|
return [
|
|
6744
6859
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6745
6860
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6746
6861
|
(0, import_middleware_sdk_route5322.getIdNormalizerPlugin)(config)
|
|
6747
6862
|
];
|
|
6748
6863
|
}).s("AWSDnsV20130401", "DisassociateVPCFromHostedZone", {}).n("Route53Client", "DisassociateVPCFromHostedZoneCommand").f(void 0, void 0).ser(se_DisassociateVPCFromHostedZoneCommand).de(de_DisassociateVPCFromHostedZoneCommand).build() {
|
|
6864
|
+
static {
|
|
6865
|
+
__name(this, "DisassociateVPCFromHostedZoneCommand");
|
|
6866
|
+
}
|
|
6749
6867
|
};
|
|
6750
|
-
__name(_DisassociateVPCFromHostedZoneCommand, "DisassociateVPCFromHostedZoneCommand");
|
|
6751
|
-
var DisassociateVPCFromHostedZoneCommand = _DisassociateVPCFromHostedZoneCommand;
|
|
6752
6868
|
|
|
6753
6869
|
// src/commands/EnableHostedZoneDNSSECCommand.ts
|
|
6754
6870
|
var import_middleware_sdk_route5323 = require("@aws-sdk/middleware-sdk-route53");
|
|
6755
6871
|
|
|
6756
6872
|
|
|
6757
6873
|
|
|
6758
|
-
var
|
|
6874
|
+
var EnableHostedZoneDNSSECCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6759
6875
|
return [
|
|
6760
6876
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6761
6877
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6762
6878
|
(0, import_middleware_sdk_route5323.getIdNormalizerPlugin)(config)
|
|
6763
6879
|
];
|
|
6764
6880
|
}).s("AWSDnsV20130401", "EnableHostedZoneDNSSEC", {}).n("Route53Client", "EnableHostedZoneDNSSECCommand").f(void 0, void 0).ser(se_EnableHostedZoneDNSSECCommand).de(de_EnableHostedZoneDNSSECCommand).build() {
|
|
6881
|
+
static {
|
|
6882
|
+
__name(this, "EnableHostedZoneDNSSECCommand");
|
|
6883
|
+
}
|
|
6765
6884
|
};
|
|
6766
|
-
__name(_EnableHostedZoneDNSSECCommand, "EnableHostedZoneDNSSECCommand");
|
|
6767
|
-
var EnableHostedZoneDNSSECCommand = _EnableHostedZoneDNSSECCommand;
|
|
6768
6885
|
|
|
6769
6886
|
// src/commands/GetAccountLimitCommand.ts
|
|
6770
6887
|
|
|
6771
6888
|
|
|
6772
6889
|
|
|
6773
|
-
var
|
|
6890
|
+
var GetAccountLimitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6774
6891
|
return [
|
|
6775
6892
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6776
6893
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6777
6894
|
];
|
|
6778
6895
|
}).s("AWSDnsV20130401", "GetAccountLimit", {}).n("Route53Client", "GetAccountLimitCommand").f(void 0, void 0).ser(se_GetAccountLimitCommand).de(de_GetAccountLimitCommand).build() {
|
|
6896
|
+
static {
|
|
6897
|
+
__name(this, "GetAccountLimitCommand");
|
|
6898
|
+
}
|
|
6779
6899
|
};
|
|
6780
|
-
__name(_GetAccountLimitCommand, "GetAccountLimitCommand");
|
|
6781
|
-
var GetAccountLimitCommand = _GetAccountLimitCommand;
|
|
6782
6900
|
|
|
6783
6901
|
// src/commands/GetChangeCommand.ts
|
|
6784
6902
|
var import_middleware_sdk_route5324 = require("@aws-sdk/middleware-sdk-route53");
|
|
6785
6903
|
|
|
6786
6904
|
|
|
6787
6905
|
|
|
6788
|
-
var
|
|
6906
|
+
var GetChangeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6789
6907
|
return [
|
|
6790
6908
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6791
6909
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6792
6910
|
(0, import_middleware_sdk_route5324.getIdNormalizerPlugin)(config)
|
|
6793
6911
|
];
|
|
6794
6912
|
}).s("AWSDnsV20130401", "GetChange", {}).n("Route53Client", "GetChangeCommand").f(void 0, void 0).ser(se_GetChangeCommand).de(de_GetChangeCommand).build() {
|
|
6913
|
+
static {
|
|
6914
|
+
__name(this, "GetChangeCommand");
|
|
6915
|
+
}
|
|
6795
6916
|
};
|
|
6796
|
-
__name(_GetChangeCommand, "GetChangeCommand");
|
|
6797
|
-
var GetChangeCommand = _GetChangeCommand;
|
|
6798
6917
|
|
|
6799
6918
|
// src/commands/GetCheckerIpRangesCommand.ts
|
|
6800
6919
|
|
|
6801
6920
|
|
|
6802
6921
|
|
|
6803
|
-
var
|
|
6922
|
+
var GetCheckerIpRangesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6804
6923
|
return [
|
|
6805
6924
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6806
6925
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6807
6926
|
];
|
|
6808
6927
|
}).s("AWSDnsV20130401", "GetCheckerIpRanges", {}).n("Route53Client", "GetCheckerIpRangesCommand").f(void 0, void 0).ser(se_GetCheckerIpRangesCommand).de(de_GetCheckerIpRangesCommand).build() {
|
|
6928
|
+
static {
|
|
6929
|
+
__name(this, "GetCheckerIpRangesCommand");
|
|
6930
|
+
}
|
|
6809
6931
|
};
|
|
6810
|
-
__name(_GetCheckerIpRangesCommand, "GetCheckerIpRangesCommand");
|
|
6811
|
-
var GetCheckerIpRangesCommand = _GetCheckerIpRangesCommand;
|
|
6812
6932
|
|
|
6813
6933
|
// src/commands/GetDNSSECCommand.ts
|
|
6814
6934
|
var import_middleware_sdk_route5325 = require("@aws-sdk/middleware-sdk-route53");
|
|
6815
6935
|
|
|
6816
6936
|
|
|
6817
6937
|
|
|
6818
|
-
var
|
|
6938
|
+
var GetDNSSECCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6819
6939
|
return [
|
|
6820
6940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6821
6941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6822
6942
|
(0, import_middleware_sdk_route5325.getIdNormalizerPlugin)(config)
|
|
6823
6943
|
];
|
|
6824
6944
|
}).s("AWSDnsV20130401", "GetDNSSEC", {}).n("Route53Client", "GetDNSSECCommand").f(void 0, void 0).ser(se_GetDNSSECCommand).de(de_GetDNSSECCommand).build() {
|
|
6945
|
+
static {
|
|
6946
|
+
__name(this, "GetDNSSECCommand");
|
|
6947
|
+
}
|
|
6825
6948
|
};
|
|
6826
|
-
__name(_GetDNSSECCommand, "GetDNSSECCommand");
|
|
6827
|
-
var GetDNSSECCommand = _GetDNSSECCommand;
|
|
6828
6949
|
|
|
6829
6950
|
// src/commands/GetGeoLocationCommand.ts
|
|
6830
6951
|
|
|
6831
6952
|
|
|
6832
6953
|
|
|
6833
|
-
var
|
|
6954
|
+
var GetGeoLocationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6834
6955
|
return [
|
|
6835
6956
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6836
6957
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6837
6958
|
];
|
|
6838
6959
|
}).s("AWSDnsV20130401", "GetGeoLocation", {}).n("Route53Client", "GetGeoLocationCommand").f(void 0, void 0).ser(se_GetGeoLocationCommand).de(de_GetGeoLocationCommand).build() {
|
|
6960
|
+
static {
|
|
6961
|
+
__name(this, "GetGeoLocationCommand");
|
|
6962
|
+
}
|
|
6839
6963
|
};
|
|
6840
|
-
__name(_GetGeoLocationCommand, "GetGeoLocationCommand");
|
|
6841
|
-
var GetGeoLocationCommand = _GetGeoLocationCommand;
|
|
6842
6964
|
|
|
6843
6965
|
// src/commands/GetHealthCheckCommand.ts
|
|
6844
6966
|
|
|
6845
6967
|
|
|
6846
6968
|
|
|
6847
|
-
var
|
|
6969
|
+
var GetHealthCheckCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6848
6970
|
return [
|
|
6849
6971
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6850
6972
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6851
6973
|
];
|
|
6852
6974
|
}).s("AWSDnsV20130401", "GetHealthCheck", {}).n("Route53Client", "GetHealthCheckCommand").f(void 0, void 0).ser(se_GetHealthCheckCommand).de(de_GetHealthCheckCommand).build() {
|
|
6975
|
+
static {
|
|
6976
|
+
__name(this, "GetHealthCheckCommand");
|
|
6977
|
+
}
|
|
6853
6978
|
};
|
|
6854
|
-
__name(_GetHealthCheckCommand, "GetHealthCheckCommand");
|
|
6855
|
-
var GetHealthCheckCommand = _GetHealthCheckCommand;
|
|
6856
6979
|
|
|
6857
6980
|
// src/commands/GetHealthCheckCountCommand.ts
|
|
6858
6981
|
|
|
6859
6982
|
|
|
6860
6983
|
|
|
6861
|
-
var
|
|
6984
|
+
var GetHealthCheckCountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6862
6985
|
return [
|
|
6863
6986
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6864
6987
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6865
6988
|
];
|
|
6866
6989
|
}).s("AWSDnsV20130401", "GetHealthCheckCount", {}).n("Route53Client", "GetHealthCheckCountCommand").f(void 0, void 0).ser(se_GetHealthCheckCountCommand).de(de_GetHealthCheckCountCommand).build() {
|
|
6990
|
+
static {
|
|
6991
|
+
__name(this, "GetHealthCheckCountCommand");
|
|
6992
|
+
}
|
|
6867
6993
|
};
|
|
6868
|
-
__name(_GetHealthCheckCountCommand, "GetHealthCheckCountCommand");
|
|
6869
|
-
var GetHealthCheckCountCommand = _GetHealthCheckCountCommand;
|
|
6870
6994
|
|
|
6871
6995
|
// src/commands/GetHealthCheckLastFailureReasonCommand.ts
|
|
6872
6996
|
|
|
6873
6997
|
|
|
6874
6998
|
|
|
6875
|
-
var
|
|
6999
|
+
var GetHealthCheckLastFailureReasonCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6876
7000
|
return [
|
|
6877
7001
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6878
7002
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6879
7003
|
];
|
|
6880
7004
|
}).s("AWSDnsV20130401", "GetHealthCheckLastFailureReason", {}).n("Route53Client", "GetHealthCheckLastFailureReasonCommand").f(void 0, void 0).ser(se_GetHealthCheckLastFailureReasonCommand).de(de_GetHealthCheckLastFailureReasonCommand).build() {
|
|
7005
|
+
static {
|
|
7006
|
+
__name(this, "GetHealthCheckLastFailureReasonCommand");
|
|
7007
|
+
}
|
|
6881
7008
|
};
|
|
6882
|
-
__name(_GetHealthCheckLastFailureReasonCommand, "GetHealthCheckLastFailureReasonCommand");
|
|
6883
|
-
var GetHealthCheckLastFailureReasonCommand = _GetHealthCheckLastFailureReasonCommand;
|
|
6884
7009
|
|
|
6885
7010
|
// src/commands/GetHealthCheckStatusCommand.ts
|
|
6886
7011
|
|
|
6887
7012
|
|
|
6888
7013
|
|
|
6889
|
-
var
|
|
7014
|
+
var GetHealthCheckStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6890
7015
|
return [
|
|
6891
7016
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6892
7017
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6893
7018
|
];
|
|
6894
7019
|
}).s("AWSDnsV20130401", "GetHealthCheckStatus", {}).n("Route53Client", "GetHealthCheckStatusCommand").f(void 0, void 0).ser(se_GetHealthCheckStatusCommand).de(de_GetHealthCheckStatusCommand).build() {
|
|
7020
|
+
static {
|
|
7021
|
+
__name(this, "GetHealthCheckStatusCommand");
|
|
7022
|
+
}
|
|
6895
7023
|
};
|
|
6896
|
-
__name(_GetHealthCheckStatusCommand, "GetHealthCheckStatusCommand");
|
|
6897
|
-
var GetHealthCheckStatusCommand = _GetHealthCheckStatusCommand;
|
|
6898
7024
|
|
|
6899
7025
|
// src/commands/GetHostedZoneCommand.ts
|
|
6900
7026
|
var import_middleware_sdk_route5326 = require("@aws-sdk/middleware-sdk-route53");
|
|
6901
7027
|
|
|
6902
7028
|
|
|
6903
7029
|
|
|
6904
|
-
var
|
|
7030
|
+
var GetHostedZoneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6905
7031
|
return [
|
|
6906
7032
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6907
7033
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6908
7034
|
(0, import_middleware_sdk_route5326.getIdNormalizerPlugin)(config)
|
|
6909
7035
|
];
|
|
6910
7036
|
}).s("AWSDnsV20130401", "GetHostedZone", {}).n("Route53Client", "GetHostedZoneCommand").f(void 0, void 0).ser(se_GetHostedZoneCommand).de(de_GetHostedZoneCommand).build() {
|
|
7037
|
+
static {
|
|
7038
|
+
__name(this, "GetHostedZoneCommand");
|
|
7039
|
+
}
|
|
6911
7040
|
};
|
|
6912
|
-
__name(_GetHostedZoneCommand, "GetHostedZoneCommand");
|
|
6913
|
-
var GetHostedZoneCommand = _GetHostedZoneCommand;
|
|
6914
7041
|
|
|
6915
7042
|
// src/commands/GetHostedZoneCountCommand.ts
|
|
6916
7043
|
|
|
6917
7044
|
|
|
6918
7045
|
|
|
6919
|
-
var
|
|
7046
|
+
var GetHostedZoneCountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6920
7047
|
return [
|
|
6921
7048
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6922
7049
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6923
7050
|
];
|
|
6924
7051
|
}).s("AWSDnsV20130401", "GetHostedZoneCount", {}).n("Route53Client", "GetHostedZoneCountCommand").f(void 0, void 0).ser(se_GetHostedZoneCountCommand).de(de_GetHostedZoneCountCommand).build() {
|
|
7052
|
+
static {
|
|
7053
|
+
__name(this, "GetHostedZoneCountCommand");
|
|
7054
|
+
}
|
|
6925
7055
|
};
|
|
6926
|
-
__name(_GetHostedZoneCountCommand, "GetHostedZoneCountCommand");
|
|
6927
|
-
var GetHostedZoneCountCommand = _GetHostedZoneCountCommand;
|
|
6928
7056
|
|
|
6929
7057
|
// src/commands/GetHostedZoneLimitCommand.ts
|
|
6930
7058
|
var import_middleware_sdk_route5327 = require("@aws-sdk/middleware-sdk-route53");
|
|
6931
7059
|
|
|
6932
7060
|
|
|
6933
7061
|
|
|
6934
|
-
var
|
|
7062
|
+
var GetHostedZoneLimitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6935
7063
|
return [
|
|
6936
7064
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6937
7065
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6938
7066
|
(0, import_middleware_sdk_route5327.getIdNormalizerPlugin)(config)
|
|
6939
7067
|
];
|
|
6940
7068
|
}).s("AWSDnsV20130401", "GetHostedZoneLimit", {}).n("Route53Client", "GetHostedZoneLimitCommand").f(void 0, void 0).ser(se_GetHostedZoneLimitCommand).de(de_GetHostedZoneLimitCommand).build() {
|
|
7069
|
+
static {
|
|
7070
|
+
__name(this, "GetHostedZoneLimitCommand");
|
|
7071
|
+
}
|
|
6941
7072
|
};
|
|
6942
|
-
__name(_GetHostedZoneLimitCommand, "GetHostedZoneLimitCommand");
|
|
6943
|
-
var GetHostedZoneLimitCommand = _GetHostedZoneLimitCommand;
|
|
6944
7073
|
|
|
6945
7074
|
// src/commands/GetQueryLoggingConfigCommand.ts
|
|
6946
7075
|
var import_middleware_sdk_route5328 = require("@aws-sdk/middleware-sdk-route53");
|
|
6947
7076
|
|
|
6948
7077
|
|
|
6949
7078
|
|
|
6950
|
-
var
|
|
7079
|
+
var GetQueryLoggingConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6951
7080
|
return [
|
|
6952
7081
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6953
7082
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6954
7083
|
(0, import_middleware_sdk_route5328.getIdNormalizerPlugin)(config)
|
|
6955
7084
|
];
|
|
6956
7085
|
}).s("AWSDnsV20130401", "GetQueryLoggingConfig", {}).n("Route53Client", "GetQueryLoggingConfigCommand").f(void 0, void 0).ser(se_GetQueryLoggingConfigCommand).de(de_GetQueryLoggingConfigCommand).build() {
|
|
7086
|
+
static {
|
|
7087
|
+
__name(this, "GetQueryLoggingConfigCommand");
|
|
7088
|
+
}
|
|
6957
7089
|
};
|
|
6958
|
-
__name(_GetQueryLoggingConfigCommand, "GetQueryLoggingConfigCommand");
|
|
6959
|
-
var GetQueryLoggingConfigCommand = _GetQueryLoggingConfigCommand;
|
|
6960
7090
|
|
|
6961
7091
|
// src/commands/GetReusableDelegationSetCommand.ts
|
|
6962
7092
|
var import_middleware_sdk_route5329 = require("@aws-sdk/middleware-sdk-route53");
|
|
6963
7093
|
|
|
6964
7094
|
|
|
6965
7095
|
|
|
6966
|
-
var
|
|
7096
|
+
var GetReusableDelegationSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6967
7097
|
return [
|
|
6968
7098
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6969
7099
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6970
7100
|
(0, import_middleware_sdk_route5329.getIdNormalizerPlugin)(config)
|
|
6971
7101
|
];
|
|
6972
7102
|
}).s("AWSDnsV20130401", "GetReusableDelegationSet", {}).n("Route53Client", "GetReusableDelegationSetCommand").f(void 0, void 0).ser(se_GetReusableDelegationSetCommand).de(de_GetReusableDelegationSetCommand).build() {
|
|
7103
|
+
static {
|
|
7104
|
+
__name(this, "GetReusableDelegationSetCommand");
|
|
7105
|
+
}
|
|
6973
7106
|
};
|
|
6974
|
-
__name(_GetReusableDelegationSetCommand, "GetReusableDelegationSetCommand");
|
|
6975
|
-
var GetReusableDelegationSetCommand = _GetReusableDelegationSetCommand;
|
|
6976
7107
|
|
|
6977
7108
|
// src/commands/GetReusableDelegationSetLimitCommand.ts
|
|
6978
7109
|
var import_middleware_sdk_route5330 = require("@aws-sdk/middleware-sdk-route53");
|
|
6979
7110
|
|
|
6980
7111
|
|
|
6981
7112
|
|
|
6982
|
-
var
|
|
7113
|
+
var GetReusableDelegationSetLimitCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6983
7114
|
return [
|
|
6984
7115
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6985
7116
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
6986
7117
|
(0, import_middleware_sdk_route5330.getIdNormalizerPlugin)(config)
|
|
6987
7118
|
];
|
|
6988
7119
|
}).s("AWSDnsV20130401", "GetReusableDelegationSetLimit", {}).n("Route53Client", "GetReusableDelegationSetLimitCommand").f(void 0, void 0).ser(se_GetReusableDelegationSetLimitCommand).de(de_GetReusableDelegationSetLimitCommand).build() {
|
|
7120
|
+
static {
|
|
7121
|
+
__name(this, "GetReusableDelegationSetLimitCommand");
|
|
7122
|
+
}
|
|
6989
7123
|
};
|
|
6990
|
-
__name(_GetReusableDelegationSetLimitCommand, "GetReusableDelegationSetLimitCommand");
|
|
6991
|
-
var GetReusableDelegationSetLimitCommand = _GetReusableDelegationSetLimitCommand;
|
|
6992
7124
|
|
|
6993
7125
|
// src/commands/GetTrafficPolicyCommand.ts
|
|
6994
7126
|
var import_middleware_sdk_route5331 = require("@aws-sdk/middleware-sdk-route53");
|
|
6995
7127
|
|
|
6996
7128
|
|
|
6997
7129
|
|
|
6998
|
-
var
|
|
7130
|
+
var GetTrafficPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6999
7131
|
return [
|
|
7000
7132
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7001
7133
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7002
7134
|
(0, import_middleware_sdk_route5331.getIdNormalizerPlugin)(config)
|
|
7003
7135
|
];
|
|
7004
7136
|
}).s("AWSDnsV20130401", "GetTrafficPolicy", {}).n("Route53Client", "GetTrafficPolicyCommand").f(void 0, void 0).ser(se_GetTrafficPolicyCommand).de(de_GetTrafficPolicyCommand).build() {
|
|
7137
|
+
static {
|
|
7138
|
+
__name(this, "GetTrafficPolicyCommand");
|
|
7139
|
+
}
|
|
7005
7140
|
};
|
|
7006
|
-
__name(_GetTrafficPolicyCommand, "GetTrafficPolicyCommand");
|
|
7007
|
-
var GetTrafficPolicyCommand = _GetTrafficPolicyCommand;
|
|
7008
7141
|
|
|
7009
7142
|
// src/commands/GetTrafficPolicyInstanceCommand.ts
|
|
7010
7143
|
var import_middleware_sdk_route5332 = require("@aws-sdk/middleware-sdk-route53");
|
|
7011
7144
|
|
|
7012
7145
|
|
|
7013
7146
|
|
|
7014
|
-
var
|
|
7147
|
+
var GetTrafficPolicyInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7015
7148
|
return [
|
|
7016
7149
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7017
7150
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7018
7151
|
(0, import_middleware_sdk_route5332.getIdNormalizerPlugin)(config)
|
|
7019
7152
|
];
|
|
7020
7153
|
}).s("AWSDnsV20130401", "GetTrafficPolicyInstance", {}).n("Route53Client", "GetTrafficPolicyInstanceCommand").f(void 0, void 0).ser(se_GetTrafficPolicyInstanceCommand).de(de_GetTrafficPolicyInstanceCommand).build() {
|
|
7154
|
+
static {
|
|
7155
|
+
__name(this, "GetTrafficPolicyInstanceCommand");
|
|
7156
|
+
}
|
|
7021
7157
|
};
|
|
7022
|
-
__name(_GetTrafficPolicyInstanceCommand, "GetTrafficPolicyInstanceCommand");
|
|
7023
|
-
var GetTrafficPolicyInstanceCommand = _GetTrafficPolicyInstanceCommand;
|
|
7024
7158
|
|
|
7025
7159
|
// src/commands/GetTrafficPolicyInstanceCountCommand.ts
|
|
7026
7160
|
|
|
7027
7161
|
|
|
7028
7162
|
|
|
7029
|
-
var
|
|
7163
|
+
var GetTrafficPolicyInstanceCountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7030
7164
|
return [
|
|
7031
7165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7032
7166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7033
7167
|
];
|
|
7034
7168
|
}).s("AWSDnsV20130401", "GetTrafficPolicyInstanceCount", {}).n("Route53Client", "GetTrafficPolicyInstanceCountCommand").f(void 0, void 0).ser(se_GetTrafficPolicyInstanceCountCommand).de(de_GetTrafficPolicyInstanceCountCommand).build() {
|
|
7169
|
+
static {
|
|
7170
|
+
__name(this, "GetTrafficPolicyInstanceCountCommand");
|
|
7171
|
+
}
|
|
7035
7172
|
};
|
|
7036
|
-
__name(_GetTrafficPolicyInstanceCountCommand, "GetTrafficPolicyInstanceCountCommand");
|
|
7037
|
-
var GetTrafficPolicyInstanceCountCommand = _GetTrafficPolicyInstanceCountCommand;
|
|
7038
7173
|
|
|
7039
7174
|
// src/commands/ListCidrBlocksCommand.ts
|
|
7040
7175
|
|
|
7041
7176
|
|
|
7042
7177
|
|
|
7043
|
-
var
|
|
7178
|
+
var ListCidrBlocksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7044
7179
|
return [
|
|
7045
7180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7046
7181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7047
7182
|
];
|
|
7048
7183
|
}).s("AWSDnsV20130401", "ListCidrBlocks", {}).n("Route53Client", "ListCidrBlocksCommand").f(void 0, void 0).ser(se_ListCidrBlocksCommand).de(de_ListCidrBlocksCommand).build() {
|
|
7184
|
+
static {
|
|
7185
|
+
__name(this, "ListCidrBlocksCommand");
|
|
7186
|
+
}
|
|
7049
7187
|
};
|
|
7050
|
-
__name(_ListCidrBlocksCommand, "ListCidrBlocksCommand");
|
|
7051
|
-
var ListCidrBlocksCommand = _ListCidrBlocksCommand;
|
|
7052
7188
|
|
|
7053
7189
|
// src/commands/ListCidrCollectionsCommand.ts
|
|
7054
7190
|
|
|
7055
7191
|
|
|
7056
7192
|
|
|
7057
|
-
var
|
|
7193
|
+
var ListCidrCollectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7058
7194
|
return [
|
|
7059
7195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7060
7196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7061
7197
|
];
|
|
7062
7198
|
}).s("AWSDnsV20130401", "ListCidrCollections", {}).n("Route53Client", "ListCidrCollectionsCommand").f(void 0, void 0).ser(se_ListCidrCollectionsCommand).de(de_ListCidrCollectionsCommand).build() {
|
|
7199
|
+
static {
|
|
7200
|
+
__name(this, "ListCidrCollectionsCommand");
|
|
7201
|
+
}
|
|
7063
7202
|
};
|
|
7064
|
-
__name(_ListCidrCollectionsCommand, "ListCidrCollectionsCommand");
|
|
7065
|
-
var ListCidrCollectionsCommand = _ListCidrCollectionsCommand;
|
|
7066
7203
|
|
|
7067
7204
|
// src/commands/ListCidrLocationsCommand.ts
|
|
7068
7205
|
|
|
7069
7206
|
|
|
7070
7207
|
|
|
7071
|
-
var
|
|
7208
|
+
var ListCidrLocationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7072
7209
|
return [
|
|
7073
7210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7074
7211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7075
7212
|
];
|
|
7076
7213
|
}).s("AWSDnsV20130401", "ListCidrLocations", {}).n("Route53Client", "ListCidrLocationsCommand").f(void 0, void 0).ser(se_ListCidrLocationsCommand).de(de_ListCidrLocationsCommand).build() {
|
|
7214
|
+
static {
|
|
7215
|
+
__name(this, "ListCidrLocationsCommand");
|
|
7216
|
+
}
|
|
7077
7217
|
};
|
|
7078
|
-
__name(_ListCidrLocationsCommand, "ListCidrLocationsCommand");
|
|
7079
|
-
var ListCidrLocationsCommand = _ListCidrLocationsCommand;
|
|
7080
7218
|
|
|
7081
7219
|
// src/commands/ListGeoLocationsCommand.ts
|
|
7082
7220
|
|
|
7083
7221
|
|
|
7084
7222
|
|
|
7085
|
-
var
|
|
7223
|
+
var ListGeoLocationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7086
7224
|
return [
|
|
7087
7225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7088
7226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7089
7227
|
];
|
|
7090
7228
|
}).s("AWSDnsV20130401", "ListGeoLocations", {}).n("Route53Client", "ListGeoLocationsCommand").f(void 0, void 0).ser(se_ListGeoLocationsCommand).de(de_ListGeoLocationsCommand).build() {
|
|
7229
|
+
static {
|
|
7230
|
+
__name(this, "ListGeoLocationsCommand");
|
|
7231
|
+
}
|
|
7091
7232
|
};
|
|
7092
|
-
__name(_ListGeoLocationsCommand, "ListGeoLocationsCommand");
|
|
7093
|
-
var ListGeoLocationsCommand = _ListGeoLocationsCommand;
|
|
7094
7233
|
|
|
7095
7234
|
// src/commands/ListHealthChecksCommand.ts
|
|
7096
7235
|
|
|
7097
7236
|
|
|
7098
7237
|
|
|
7099
|
-
var
|
|
7238
|
+
var ListHealthChecksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7100
7239
|
return [
|
|
7101
7240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7102
7241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7103
7242
|
];
|
|
7104
7243
|
}).s("AWSDnsV20130401", "ListHealthChecks", {}).n("Route53Client", "ListHealthChecksCommand").f(void 0, void 0).ser(se_ListHealthChecksCommand).de(de_ListHealthChecksCommand).build() {
|
|
7244
|
+
static {
|
|
7245
|
+
__name(this, "ListHealthChecksCommand");
|
|
7246
|
+
}
|
|
7105
7247
|
};
|
|
7106
|
-
__name(_ListHealthChecksCommand, "ListHealthChecksCommand");
|
|
7107
|
-
var ListHealthChecksCommand = _ListHealthChecksCommand;
|
|
7108
7248
|
|
|
7109
7249
|
// src/commands/ListHostedZonesByNameCommand.ts
|
|
7110
7250
|
var import_middleware_sdk_route5333 = require("@aws-sdk/middleware-sdk-route53");
|
|
7111
7251
|
|
|
7112
7252
|
|
|
7113
7253
|
|
|
7114
|
-
var
|
|
7254
|
+
var ListHostedZonesByNameCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7115
7255
|
return [
|
|
7116
7256
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7117
7257
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7118
7258
|
(0, import_middleware_sdk_route5333.getIdNormalizerPlugin)(config)
|
|
7119
7259
|
];
|
|
7120
7260
|
}).s("AWSDnsV20130401", "ListHostedZonesByName", {}).n("Route53Client", "ListHostedZonesByNameCommand").f(void 0, void 0).ser(se_ListHostedZonesByNameCommand).de(de_ListHostedZonesByNameCommand).build() {
|
|
7261
|
+
static {
|
|
7262
|
+
__name(this, "ListHostedZonesByNameCommand");
|
|
7263
|
+
}
|
|
7121
7264
|
};
|
|
7122
|
-
__name(_ListHostedZonesByNameCommand, "ListHostedZonesByNameCommand");
|
|
7123
|
-
var ListHostedZonesByNameCommand = _ListHostedZonesByNameCommand;
|
|
7124
7265
|
|
|
7125
7266
|
// src/commands/ListHostedZonesByVPCCommand.ts
|
|
7126
7267
|
|
|
7127
7268
|
|
|
7128
7269
|
|
|
7129
|
-
var
|
|
7270
|
+
var ListHostedZonesByVPCCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7130
7271
|
return [
|
|
7131
7272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7132
7273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7133
7274
|
];
|
|
7134
7275
|
}).s("AWSDnsV20130401", "ListHostedZonesByVPC", {}).n("Route53Client", "ListHostedZonesByVPCCommand").f(void 0, void 0).ser(se_ListHostedZonesByVPCCommand).de(de_ListHostedZonesByVPCCommand).build() {
|
|
7276
|
+
static {
|
|
7277
|
+
__name(this, "ListHostedZonesByVPCCommand");
|
|
7278
|
+
}
|
|
7135
7279
|
};
|
|
7136
|
-
__name(_ListHostedZonesByVPCCommand, "ListHostedZonesByVPCCommand");
|
|
7137
|
-
var ListHostedZonesByVPCCommand = _ListHostedZonesByVPCCommand;
|
|
7138
7280
|
|
|
7139
7281
|
// src/commands/ListHostedZonesCommand.ts
|
|
7140
7282
|
var import_middleware_sdk_route5334 = require("@aws-sdk/middleware-sdk-route53");
|
|
7141
7283
|
|
|
7142
7284
|
|
|
7143
7285
|
|
|
7144
|
-
var
|
|
7286
|
+
var ListHostedZonesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7145
7287
|
return [
|
|
7146
7288
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7147
7289
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7148
7290
|
(0, import_middleware_sdk_route5334.getIdNormalizerPlugin)(config)
|
|
7149
7291
|
];
|
|
7150
7292
|
}).s("AWSDnsV20130401", "ListHostedZones", {}).n("Route53Client", "ListHostedZonesCommand").f(void 0, void 0).ser(se_ListHostedZonesCommand).de(de_ListHostedZonesCommand).build() {
|
|
7293
|
+
static {
|
|
7294
|
+
__name(this, "ListHostedZonesCommand");
|
|
7295
|
+
}
|
|
7151
7296
|
};
|
|
7152
|
-
__name(_ListHostedZonesCommand, "ListHostedZonesCommand");
|
|
7153
|
-
var ListHostedZonesCommand = _ListHostedZonesCommand;
|
|
7154
7297
|
|
|
7155
7298
|
// src/commands/ListQueryLoggingConfigsCommand.ts
|
|
7156
7299
|
var import_middleware_sdk_route5335 = require("@aws-sdk/middleware-sdk-route53");
|
|
7157
7300
|
|
|
7158
7301
|
|
|
7159
7302
|
|
|
7160
|
-
var
|
|
7303
|
+
var ListQueryLoggingConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7161
7304
|
return [
|
|
7162
7305
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7163
7306
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7164
7307
|
(0, import_middleware_sdk_route5335.getIdNormalizerPlugin)(config)
|
|
7165
7308
|
];
|
|
7166
7309
|
}).s("AWSDnsV20130401", "ListQueryLoggingConfigs", {}).n("Route53Client", "ListQueryLoggingConfigsCommand").f(void 0, void 0).ser(se_ListQueryLoggingConfigsCommand).de(de_ListQueryLoggingConfigsCommand).build() {
|
|
7310
|
+
static {
|
|
7311
|
+
__name(this, "ListQueryLoggingConfigsCommand");
|
|
7312
|
+
}
|
|
7167
7313
|
};
|
|
7168
|
-
__name(_ListQueryLoggingConfigsCommand, "ListQueryLoggingConfigsCommand");
|
|
7169
|
-
var ListQueryLoggingConfigsCommand = _ListQueryLoggingConfigsCommand;
|
|
7170
7314
|
|
|
7171
7315
|
// src/commands/ListResourceRecordSetsCommand.ts
|
|
7172
7316
|
var import_middleware_sdk_route5336 = require("@aws-sdk/middleware-sdk-route53");
|
|
7173
7317
|
|
|
7174
7318
|
|
|
7175
7319
|
|
|
7176
|
-
var
|
|
7320
|
+
var ListResourceRecordSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7177
7321
|
return [
|
|
7178
7322
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7179
7323
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7180
7324
|
(0, import_middleware_sdk_route5336.getIdNormalizerPlugin)(config)
|
|
7181
7325
|
];
|
|
7182
7326
|
}).s("AWSDnsV20130401", "ListResourceRecordSets", {}).n("Route53Client", "ListResourceRecordSetsCommand").f(void 0, void 0).ser(se_ListResourceRecordSetsCommand).de(de_ListResourceRecordSetsCommand).build() {
|
|
7327
|
+
static {
|
|
7328
|
+
__name(this, "ListResourceRecordSetsCommand");
|
|
7329
|
+
}
|
|
7183
7330
|
};
|
|
7184
|
-
__name(_ListResourceRecordSetsCommand, "ListResourceRecordSetsCommand");
|
|
7185
|
-
var ListResourceRecordSetsCommand = _ListResourceRecordSetsCommand;
|
|
7186
7331
|
|
|
7187
7332
|
// src/commands/ListReusableDelegationSetsCommand.ts
|
|
7188
7333
|
|
|
7189
7334
|
|
|
7190
7335
|
|
|
7191
|
-
var
|
|
7336
|
+
var ListReusableDelegationSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7192
7337
|
return [
|
|
7193
7338
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7194
7339
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7195
7340
|
];
|
|
7196
7341
|
}).s("AWSDnsV20130401", "ListReusableDelegationSets", {}).n("Route53Client", "ListReusableDelegationSetsCommand").f(void 0, void 0).ser(se_ListReusableDelegationSetsCommand).de(de_ListReusableDelegationSetsCommand).build() {
|
|
7342
|
+
static {
|
|
7343
|
+
__name(this, "ListReusableDelegationSetsCommand");
|
|
7344
|
+
}
|
|
7197
7345
|
};
|
|
7198
|
-
__name(_ListReusableDelegationSetsCommand, "ListReusableDelegationSetsCommand");
|
|
7199
|
-
var ListReusableDelegationSetsCommand = _ListReusableDelegationSetsCommand;
|
|
7200
7346
|
|
|
7201
7347
|
// src/commands/ListTagsForResourceCommand.ts
|
|
7202
7348
|
|
|
7203
7349
|
|
|
7204
7350
|
|
|
7205
|
-
var
|
|
7351
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7206
7352
|
return [
|
|
7207
7353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7208
7354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7209
7355
|
];
|
|
7210
7356
|
}).s("AWSDnsV20130401", "ListTagsForResource", {}).n("Route53Client", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
7357
|
+
static {
|
|
7358
|
+
__name(this, "ListTagsForResourceCommand");
|
|
7359
|
+
}
|
|
7211
7360
|
};
|
|
7212
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
7213
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
7214
7361
|
|
|
7215
7362
|
// src/commands/ListTagsForResourcesCommand.ts
|
|
7216
7363
|
|
|
7217
7364
|
|
|
7218
7365
|
|
|
7219
|
-
var
|
|
7366
|
+
var ListTagsForResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7220
7367
|
return [
|
|
7221
7368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7222
7369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7223
7370
|
];
|
|
7224
7371
|
}).s("AWSDnsV20130401", "ListTagsForResources", {}).n("Route53Client", "ListTagsForResourcesCommand").f(void 0, void 0).ser(se_ListTagsForResourcesCommand).de(de_ListTagsForResourcesCommand).build() {
|
|
7372
|
+
static {
|
|
7373
|
+
__name(this, "ListTagsForResourcesCommand");
|
|
7374
|
+
}
|
|
7225
7375
|
};
|
|
7226
|
-
__name(_ListTagsForResourcesCommand, "ListTagsForResourcesCommand");
|
|
7227
|
-
var ListTagsForResourcesCommand = _ListTagsForResourcesCommand;
|
|
7228
7376
|
|
|
7229
7377
|
// src/commands/ListTrafficPoliciesCommand.ts
|
|
7230
7378
|
|
|
7231
7379
|
|
|
7232
7380
|
|
|
7233
|
-
var
|
|
7381
|
+
var ListTrafficPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7234
7382
|
return [
|
|
7235
7383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7236
7384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7237
7385
|
];
|
|
7238
7386
|
}).s("AWSDnsV20130401", "ListTrafficPolicies", {}).n("Route53Client", "ListTrafficPoliciesCommand").f(void 0, void 0).ser(se_ListTrafficPoliciesCommand).de(de_ListTrafficPoliciesCommand).build() {
|
|
7387
|
+
static {
|
|
7388
|
+
__name(this, "ListTrafficPoliciesCommand");
|
|
7389
|
+
}
|
|
7239
7390
|
};
|
|
7240
|
-
__name(_ListTrafficPoliciesCommand, "ListTrafficPoliciesCommand");
|
|
7241
|
-
var ListTrafficPoliciesCommand = _ListTrafficPoliciesCommand;
|
|
7242
7391
|
|
|
7243
7392
|
// src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts
|
|
7244
7393
|
var import_middleware_sdk_route5337 = require("@aws-sdk/middleware-sdk-route53");
|
|
7245
7394
|
|
|
7246
7395
|
|
|
7247
7396
|
|
|
7248
|
-
var
|
|
7397
|
+
var ListTrafficPolicyInstancesByHostedZoneCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7249
7398
|
return [
|
|
7250
7399
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7251
7400
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7252
7401
|
(0, import_middleware_sdk_route5337.getIdNormalizerPlugin)(config)
|
|
7253
7402
|
];
|
|
7254
7403
|
}).s("AWSDnsV20130401", "ListTrafficPolicyInstancesByHostedZone", {}).n("Route53Client", "ListTrafficPolicyInstancesByHostedZoneCommand").f(void 0, void 0).ser(se_ListTrafficPolicyInstancesByHostedZoneCommand).de(de_ListTrafficPolicyInstancesByHostedZoneCommand).build() {
|
|
7404
|
+
static {
|
|
7405
|
+
__name(this, "ListTrafficPolicyInstancesByHostedZoneCommand");
|
|
7406
|
+
}
|
|
7255
7407
|
};
|
|
7256
|
-
__name(_ListTrafficPolicyInstancesByHostedZoneCommand, "ListTrafficPolicyInstancesByHostedZoneCommand");
|
|
7257
|
-
var ListTrafficPolicyInstancesByHostedZoneCommand = _ListTrafficPolicyInstancesByHostedZoneCommand;
|
|
7258
7408
|
|
|
7259
7409
|
// src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts
|
|
7260
7410
|
|
|
7261
7411
|
|
|
7262
7412
|
|
|
7263
|
-
var
|
|
7413
|
+
var ListTrafficPolicyInstancesByPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7264
7414
|
return [
|
|
7265
7415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7266
7416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7267
7417
|
];
|
|
7268
7418
|
}).s("AWSDnsV20130401", "ListTrafficPolicyInstancesByPolicy", {}).n("Route53Client", "ListTrafficPolicyInstancesByPolicyCommand").f(void 0, void 0).ser(se_ListTrafficPolicyInstancesByPolicyCommand).de(de_ListTrafficPolicyInstancesByPolicyCommand).build() {
|
|
7419
|
+
static {
|
|
7420
|
+
__name(this, "ListTrafficPolicyInstancesByPolicyCommand");
|
|
7421
|
+
}
|
|
7269
7422
|
};
|
|
7270
|
-
__name(_ListTrafficPolicyInstancesByPolicyCommand, "ListTrafficPolicyInstancesByPolicyCommand");
|
|
7271
|
-
var ListTrafficPolicyInstancesByPolicyCommand = _ListTrafficPolicyInstancesByPolicyCommand;
|
|
7272
7423
|
|
|
7273
7424
|
// src/commands/ListTrafficPolicyInstancesCommand.ts
|
|
7274
7425
|
|
|
7275
7426
|
|
|
7276
7427
|
|
|
7277
|
-
var
|
|
7428
|
+
var ListTrafficPolicyInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7278
7429
|
return [
|
|
7279
7430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7280
7431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7281
7432
|
];
|
|
7282
7433
|
}).s("AWSDnsV20130401", "ListTrafficPolicyInstances", {}).n("Route53Client", "ListTrafficPolicyInstancesCommand").f(void 0, void 0).ser(se_ListTrafficPolicyInstancesCommand).de(de_ListTrafficPolicyInstancesCommand).build() {
|
|
7434
|
+
static {
|
|
7435
|
+
__name(this, "ListTrafficPolicyInstancesCommand");
|
|
7436
|
+
}
|
|
7283
7437
|
};
|
|
7284
|
-
__name(_ListTrafficPolicyInstancesCommand, "ListTrafficPolicyInstancesCommand");
|
|
7285
|
-
var ListTrafficPolicyInstancesCommand = _ListTrafficPolicyInstancesCommand;
|
|
7286
7438
|
|
|
7287
7439
|
// src/commands/ListTrafficPolicyVersionsCommand.ts
|
|
7288
7440
|
var import_middleware_sdk_route5338 = require("@aws-sdk/middleware-sdk-route53");
|
|
7289
7441
|
|
|
7290
7442
|
|
|
7291
7443
|
|
|
7292
|
-
var
|
|
7444
|
+
var ListTrafficPolicyVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7293
7445
|
return [
|
|
7294
7446
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7295
7447
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7296
7448
|
(0, import_middleware_sdk_route5338.getIdNormalizerPlugin)(config)
|
|
7297
7449
|
];
|
|
7298
7450
|
}).s("AWSDnsV20130401", "ListTrafficPolicyVersions", {}).n("Route53Client", "ListTrafficPolicyVersionsCommand").f(void 0, void 0).ser(se_ListTrafficPolicyVersionsCommand).de(de_ListTrafficPolicyVersionsCommand).build() {
|
|
7451
|
+
static {
|
|
7452
|
+
__name(this, "ListTrafficPolicyVersionsCommand");
|
|
7453
|
+
}
|
|
7299
7454
|
};
|
|
7300
|
-
__name(_ListTrafficPolicyVersionsCommand, "ListTrafficPolicyVersionsCommand");
|
|
7301
|
-
var ListTrafficPolicyVersionsCommand = _ListTrafficPolicyVersionsCommand;
|
|
7302
7455
|
|
|
7303
7456
|
// src/commands/ListVPCAssociationAuthorizationsCommand.ts
|
|
7304
7457
|
var import_middleware_sdk_route5339 = require("@aws-sdk/middleware-sdk-route53");
|
|
7305
7458
|
|
|
7306
7459
|
|
|
7307
7460
|
|
|
7308
|
-
var
|
|
7461
|
+
var ListVPCAssociationAuthorizationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7309
7462
|
return [
|
|
7310
7463
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7311
7464
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7312
7465
|
(0, import_middleware_sdk_route5339.getIdNormalizerPlugin)(config)
|
|
7313
7466
|
];
|
|
7314
7467
|
}).s("AWSDnsV20130401", "ListVPCAssociationAuthorizations", {}).n("Route53Client", "ListVPCAssociationAuthorizationsCommand").f(void 0, void 0).ser(se_ListVPCAssociationAuthorizationsCommand).de(de_ListVPCAssociationAuthorizationsCommand).build() {
|
|
7468
|
+
static {
|
|
7469
|
+
__name(this, "ListVPCAssociationAuthorizationsCommand");
|
|
7470
|
+
}
|
|
7315
7471
|
};
|
|
7316
|
-
__name(_ListVPCAssociationAuthorizationsCommand, "ListVPCAssociationAuthorizationsCommand");
|
|
7317
|
-
var ListVPCAssociationAuthorizationsCommand = _ListVPCAssociationAuthorizationsCommand;
|
|
7318
7472
|
|
|
7319
7473
|
// src/commands/TestDNSAnswerCommand.ts
|
|
7320
7474
|
var import_middleware_sdk_route5340 = require("@aws-sdk/middleware-sdk-route53");
|
|
7321
7475
|
|
|
7322
7476
|
|
|
7323
7477
|
|
|
7324
|
-
var
|
|
7478
|
+
var TestDNSAnswerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7325
7479
|
return [
|
|
7326
7480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7327
7481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7328
7482
|
(0, import_middleware_sdk_route5340.getIdNormalizerPlugin)(config)
|
|
7329
7483
|
];
|
|
7330
7484
|
}).s("AWSDnsV20130401", "TestDNSAnswer", {}).n("Route53Client", "TestDNSAnswerCommand").f(void 0, void 0).ser(se_TestDNSAnswerCommand).de(de_TestDNSAnswerCommand).build() {
|
|
7485
|
+
static {
|
|
7486
|
+
__name(this, "TestDNSAnswerCommand");
|
|
7487
|
+
}
|
|
7331
7488
|
};
|
|
7332
|
-
__name(_TestDNSAnswerCommand, "TestDNSAnswerCommand");
|
|
7333
|
-
var TestDNSAnswerCommand = _TestDNSAnswerCommand;
|
|
7334
7489
|
|
|
7335
7490
|
// src/commands/UpdateHealthCheckCommand.ts
|
|
7336
7491
|
|
|
7337
7492
|
|
|
7338
7493
|
|
|
7339
|
-
var
|
|
7494
|
+
var UpdateHealthCheckCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7340
7495
|
return [
|
|
7341
7496
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7342
7497
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7343
7498
|
];
|
|
7344
7499
|
}).s("AWSDnsV20130401", "UpdateHealthCheck", {}).n("Route53Client", "UpdateHealthCheckCommand").f(void 0, void 0).ser(se_UpdateHealthCheckCommand).de(de_UpdateHealthCheckCommand).build() {
|
|
7500
|
+
static {
|
|
7501
|
+
__name(this, "UpdateHealthCheckCommand");
|
|
7502
|
+
}
|
|
7345
7503
|
};
|
|
7346
|
-
__name(_UpdateHealthCheckCommand, "UpdateHealthCheckCommand");
|
|
7347
|
-
var UpdateHealthCheckCommand = _UpdateHealthCheckCommand;
|
|
7348
7504
|
|
|
7349
7505
|
// src/commands/UpdateHostedZoneCommentCommand.ts
|
|
7350
7506
|
var import_middleware_sdk_route5341 = require("@aws-sdk/middleware-sdk-route53");
|
|
7351
7507
|
|
|
7352
7508
|
|
|
7353
7509
|
|
|
7354
|
-
var
|
|
7510
|
+
var UpdateHostedZoneCommentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7355
7511
|
return [
|
|
7356
7512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7357
7513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7358
7514
|
(0, import_middleware_sdk_route5341.getIdNormalizerPlugin)(config)
|
|
7359
7515
|
];
|
|
7360
7516
|
}).s("AWSDnsV20130401", "UpdateHostedZoneComment", {}).n("Route53Client", "UpdateHostedZoneCommentCommand").f(void 0, void 0).ser(se_UpdateHostedZoneCommentCommand).de(de_UpdateHostedZoneCommentCommand).build() {
|
|
7517
|
+
static {
|
|
7518
|
+
__name(this, "UpdateHostedZoneCommentCommand");
|
|
7519
|
+
}
|
|
7361
7520
|
};
|
|
7362
|
-
__name(_UpdateHostedZoneCommentCommand, "UpdateHostedZoneCommentCommand");
|
|
7363
|
-
var UpdateHostedZoneCommentCommand = _UpdateHostedZoneCommentCommand;
|
|
7364
7521
|
|
|
7365
7522
|
// src/commands/UpdateTrafficPolicyCommentCommand.ts
|
|
7366
7523
|
var import_middleware_sdk_route5342 = require("@aws-sdk/middleware-sdk-route53");
|
|
7367
7524
|
|
|
7368
7525
|
|
|
7369
7526
|
|
|
7370
|
-
var
|
|
7527
|
+
var UpdateTrafficPolicyCommentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7371
7528
|
return [
|
|
7372
7529
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7373
7530
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7374
7531
|
(0, import_middleware_sdk_route5342.getIdNormalizerPlugin)(config)
|
|
7375
7532
|
];
|
|
7376
7533
|
}).s("AWSDnsV20130401", "UpdateTrafficPolicyComment", {}).n("Route53Client", "UpdateTrafficPolicyCommentCommand").f(void 0, void 0).ser(se_UpdateTrafficPolicyCommentCommand).de(de_UpdateTrafficPolicyCommentCommand).build() {
|
|
7534
|
+
static {
|
|
7535
|
+
__name(this, "UpdateTrafficPolicyCommentCommand");
|
|
7536
|
+
}
|
|
7377
7537
|
};
|
|
7378
|
-
__name(_UpdateTrafficPolicyCommentCommand, "UpdateTrafficPolicyCommentCommand");
|
|
7379
|
-
var UpdateTrafficPolicyCommentCommand = _UpdateTrafficPolicyCommentCommand;
|
|
7380
7538
|
|
|
7381
7539
|
// src/commands/UpdateTrafficPolicyInstanceCommand.ts
|
|
7382
7540
|
var import_middleware_sdk_route5343 = require("@aws-sdk/middleware-sdk-route53");
|
|
7383
7541
|
|
|
7384
7542
|
|
|
7385
7543
|
|
|
7386
|
-
var
|
|
7544
|
+
var UpdateTrafficPolicyInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7387
7545
|
return [
|
|
7388
7546
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7389
7547
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
7390
7548
|
(0, import_middleware_sdk_route5343.getIdNormalizerPlugin)(config)
|
|
7391
7549
|
];
|
|
7392
7550
|
}).s("AWSDnsV20130401", "UpdateTrafficPolicyInstance", {}).n("Route53Client", "UpdateTrafficPolicyInstanceCommand").f(void 0, void 0).ser(se_UpdateTrafficPolicyInstanceCommand).de(de_UpdateTrafficPolicyInstanceCommand).build() {
|
|
7551
|
+
static {
|
|
7552
|
+
__name(this, "UpdateTrafficPolicyInstanceCommand");
|
|
7553
|
+
}
|
|
7393
7554
|
};
|
|
7394
|
-
__name(_UpdateTrafficPolicyInstanceCommand, "UpdateTrafficPolicyInstanceCommand");
|
|
7395
|
-
var UpdateTrafficPolicyInstanceCommand = _UpdateTrafficPolicyInstanceCommand;
|
|
7396
7555
|
|
|
7397
7556
|
// src/Route53.ts
|
|
7398
7557
|
var commands = {
|
|
@@ -7467,10 +7626,11 @@ var commands = {
|
|
|
7467
7626
|
UpdateTrafficPolicyCommentCommand,
|
|
7468
7627
|
UpdateTrafficPolicyInstanceCommand
|
|
7469
7628
|
};
|
|
7470
|
-
var
|
|
7629
|
+
var Route53 = class extends Route53Client {
|
|
7630
|
+
static {
|
|
7631
|
+
__name(this, "Route53");
|
|
7632
|
+
}
|
|
7471
7633
|
};
|
|
7472
|
-
__name(_Route53, "Route53");
|
|
7473
|
-
var Route53 = _Route53;
|
|
7474
7634
|
(0, import_smithy_client.createAggregatedClient)(commands, Route53);
|
|
7475
7635
|
|
|
7476
7636
|
// src/pagination/ListCidrBlocksPaginator.ts
|