@aws-sdk/client-route53resolver 3.975.0 → 3.978.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 +51 -33
- package/dist-es/Route53Resolver.js +35 -1
- package/dist-types/Route53Resolver.d.ts +113 -1
- package/dist-types/ts3.4/Route53Resolver.d.ts +117 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2713,6 +2713,38 @@ class UpdateResolverRuleCommand extends smithyClient.Command
|
|
|
2713
2713
|
.build() {
|
|
2714
2714
|
}
|
|
2715
2715
|
|
|
2716
|
+
const paginateListFirewallConfigs = core.createPaginator(Route53ResolverClient, ListFirewallConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2717
|
+
|
|
2718
|
+
const paginateListFirewallDomainLists = core.createPaginator(Route53ResolverClient, ListFirewallDomainListsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2719
|
+
|
|
2720
|
+
const paginateListFirewallDomains = core.createPaginator(Route53ResolverClient, ListFirewallDomainsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2721
|
+
|
|
2722
|
+
const paginateListFirewallRuleGroupAssociations = core.createPaginator(Route53ResolverClient, ListFirewallRuleGroupAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2723
|
+
|
|
2724
|
+
const paginateListFirewallRuleGroups = core.createPaginator(Route53ResolverClient, ListFirewallRuleGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2725
|
+
|
|
2726
|
+
const paginateListFirewallRules = core.createPaginator(Route53ResolverClient, ListFirewallRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2727
|
+
|
|
2728
|
+
const paginateListOutpostResolvers = core.createPaginator(Route53ResolverClient, ListOutpostResolversCommand, "NextToken", "NextToken", "MaxResults");
|
|
2729
|
+
|
|
2730
|
+
const paginateListResolverConfigs = core.createPaginator(Route53ResolverClient, ListResolverConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2731
|
+
|
|
2732
|
+
const paginateListResolverDnssecConfigs = core.createPaginator(Route53ResolverClient, ListResolverDnssecConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2733
|
+
|
|
2734
|
+
const paginateListResolverEndpointIpAddresses = core.createPaginator(Route53ResolverClient, ListResolverEndpointIpAddressesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2735
|
+
|
|
2736
|
+
const paginateListResolverEndpoints = core.createPaginator(Route53ResolverClient, ListResolverEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2737
|
+
|
|
2738
|
+
const paginateListResolverQueryLogConfigAssociations = core.createPaginator(Route53ResolverClient, ListResolverQueryLogConfigAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2739
|
+
|
|
2740
|
+
const paginateListResolverQueryLogConfigs = core.createPaginator(Route53ResolverClient, ListResolverQueryLogConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2741
|
+
|
|
2742
|
+
const paginateListResolverRuleAssociations = core.createPaginator(Route53ResolverClient, ListResolverRuleAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2743
|
+
|
|
2744
|
+
const paginateListResolverRules = core.createPaginator(Route53ResolverClient, ListResolverRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2745
|
+
|
|
2746
|
+
const paginateListTagsForResource = core.createPaginator(Route53ResolverClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
2747
|
+
|
|
2716
2748
|
const commands = {
|
|
2717
2749
|
AssociateFirewallRuleGroupCommand,
|
|
2718
2750
|
AssociateResolverEndpointIpAddressCommand,
|
|
@@ -2783,41 +2815,27 @@ const commands = {
|
|
|
2783
2815
|
UpdateResolverEndpointCommand,
|
|
2784
2816
|
UpdateResolverRuleCommand,
|
|
2785
2817
|
};
|
|
2818
|
+
const paginators = {
|
|
2819
|
+
paginateListFirewallConfigs,
|
|
2820
|
+
paginateListFirewallDomainLists,
|
|
2821
|
+
paginateListFirewallDomains,
|
|
2822
|
+
paginateListFirewallRuleGroupAssociations,
|
|
2823
|
+
paginateListFirewallRuleGroups,
|
|
2824
|
+
paginateListFirewallRules,
|
|
2825
|
+
paginateListOutpostResolvers,
|
|
2826
|
+
paginateListResolverConfigs,
|
|
2827
|
+
paginateListResolverDnssecConfigs,
|
|
2828
|
+
paginateListResolverEndpointIpAddresses,
|
|
2829
|
+
paginateListResolverEndpoints,
|
|
2830
|
+
paginateListResolverQueryLogConfigAssociations,
|
|
2831
|
+
paginateListResolverQueryLogConfigs,
|
|
2832
|
+
paginateListResolverRuleAssociations,
|
|
2833
|
+
paginateListResolverRules,
|
|
2834
|
+
paginateListTagsForResource,
|
|
2835
|
+
};
|
|
2786
2836
|
class Route53Resolver extends Route53ResolverClient {
|
|
2787
2837
|
}
|
|
2788
|
-
smithyClient.createAggregatedClient(commands, Route53Resolver);
|
|
2789
|
-
|
|
2790
|
-
const paginateListFirewallConfigs = core.createPaginator(Route53ResolverClient, ListFirewallConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2791
|
-
|
|
2792
|
-
const paginateListFirewallDomainLists = core.createPaginator(Route53ResolverClient, ListFirewallDomainListsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2793
|
-
|
|
2794
|
-
const paginateListFirewallDomains = core.createPaginator(Route53ResolverClient, ListFirewallDomainsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2795
|
-
|
|
2796
|
-
const paginateListFirewallRuleGroupAssociations = core.createPaginator(Route53ResolverClient, ListFirewallRuleGroupAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2797
|
-
|
|
2798
|
-
const paginateListFirewallRuleGroups = core.createPaginator(Route53ResolverClient, ListFirewallRuleGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2799
|
-
|
|
2800
|
-
const paginateListFirewallRules = core.createPaginator(Route53ResolverClient, ListFirewallRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2801
|
-
|
|
2802
|
-
const paginateListOutpostResolvers = core.createPaginator(Route53ResolverClient, ListOutpostResolversCommand, "NextToken", "NextToken", "MaxResults");
|
|
2803
|
-
|
|
2804
|
-
const paginateListResolverConfigs = core.createPaginator(Route53ResolverClient, ListResolverConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2805
|
-
|
|
2806
|
-
const paginateListResolverDnssecConfigs = core.createPaginator(Route53ResolverClient, ListResolverDnssecConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2807
|
-
|
|
2808
|
-
const paginateListResolverEndpointIpAddresses = core.createPaginator(Route53ResolverClient, ListResolverEndpointIpAddressesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2809
|
-
|
|
2810
|
-
const paginateListResolverEndpoints = core.createPaginator(Route53ResolverClient, ListResolverEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2811
|
-
|
|
2812
|
-
const paginateListResolverQueryLogConfigAssociations = core.createPaginator(Route53ResolverClient, ListResolverQueryLogConfigAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2813
|
-
|
|
2814
|
-
const paginateListResolverQueryLogConfigs = core.createPaginator(Route53ResolverClient, ListResolverQueryLogConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2815
|
-
|
|
2816
|
-
const paginateListResolverRuleAssociations = core.createPaginator(Route53ResolverClient, ListResolverRuleAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2817
|
-
|
|
2818
|
-
const paginateListResolverRules = core.createPaginator(Route53ResolverClient, ListResolverRulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2819
|
-
|
|
2820
|
-
const paginateListTagsForResource = core.createPaginator(Route53ResolverClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
|
|
2838
|
+
smithyClient.createAggregatedClient(commands, Route53Resolver, { paginators });
|
|
2821
2839
|
|
|
2822
2840
|
const Action = {
|
|
2823
2841
|
ALERT: "ALERT",
|
|
@@ -67,6 +67,22 @@ import { UpdateResolverConfigCommand, } from "./commands/UpdateResolverConfigCom
|
|
|
67
67
|
import { UpdateResolverDnssecConfigCommand, } from "./commands/UpdateResolverDnssecConfigCommand";
|
|
68
68
|
import { UpdateResolverEndpointCommand, } from "./commands/UpdateResolverEndpointCommand";
|
|
69
69
|
import { UpdateResolverRuleCommand, } from "./commands/UpdateResolverRuleCommand";
|
|
70
|
+
import { paginateListFirewallConfigs } from "./pagination/ListFirewallConfigsPaginator";
|
|
71
|
+
import { paginateListFirewallDomainLists } from "./pagination/ListFirewallDomainListsPaginator";
|
|
72
|
+
import { paginateListFirewallDomains } from "./pagination/ListFirewallDomainsPaginator";
|
|
73
|
+
import { paginateListFirewallRuleGroupAssociations } from "./pagination/ListFirewallRuleGroupAssociationsPaginator";
|
|
74
|
+
import { paginateListFirewallRuleGroups } from "./pagination/ListFirewallRuleGroupsPaginator";
|
|
75
|
+
import { paginateListFirewallRules } from "./pagination/ListFirewallRulesPaginator";
|
|
76
|
+
import { paginateListOutpostResolvers } from "./pagination/ListOutpostResolversPaginator";
|
|
77
|
+
import { paginateListResolverConfigs } from "./pagination/ListResolverConfigsPaginator";
|
|
78
|
+
import { paginateListResolverDnssecConfigs } from "./pagination/ListResolverDnssecConfigsPaginator";
|
|
79
|
+
import { paginateListResolverEndpointIpAddresses } from "./pagination/ListResolverEndpointIpAddressesPaginator";
|
|
80
|
+
import { paginateListResolverEndpoints } from "./pagination/ListResolverEndpointsPaginator";
|
|
81
|
+
import { paginateListResolverQueryLogConfigAssociations, } from "./pagination/ListResolverQueryLogConfigAssociationsPaginator";
|
|
82
|
+
import { paginateListResolverQueryLogConfigs } from "./pagination/ListResolverQueryLogConfigsPaginator";
|
|
83
|
+
import { paginateListResolverRuleAssociations } from "./pagination/ListResolverRuleAssociationsPaginator";
|
|
84
|
+
import { paginateListResolverRules } from "./pagination/ListResolverRulesPaginator";
|
|
85
|
+
import { paginateListTagsForResource } from "./pagination/ListTagsForResourcePaginator";
|
|
70
86
|
import { Route53ResolverClient } from "./Route53ResolverClient";
|
|
71
87
|
const commands = {
|
|
72
88
|
AssociateFirewallRuleGroupCommand,
|
|
@@ -138,6 +154,24 @@ const commands = {
|
|
|
138
154
|
UpdateResolverEndpointCommand,
|
|
139
155
|
UpdateResolverRuleCommand,
|
|
140
156
|
};
|
|
157
|
+
const paginators = {
|
|
158
|
+
paginateListFirewallConfigs,
|
|
159
|
+
paginateListFirewallDomainLists,
|
|
160
|
+
paginateListFirewallDomains,
|
|
161
|
+
paginateListFirewallRuleGroupAssociations,
|
|
162
|
+
paginateListFirewallRuleGroups,
|
|
163
|
+
paginateListFirewallRules,
|
|
164
|
+
paginateListOutpostResolvers,
|
|
165
|
+
paginateListResolverConfigs,
|
|
166
|
+
paginateListResolverDnssecConfigs,
|
|
167
|
+
paginateListResolverEndpointIpAddresses,
|
|
168
|
+
paginateListResolverEndpoints,
|
|
169
|
+
paginateListResolverQueryLogConfigAssociations,
|
|
170
|
+
paginateListResolverQueryLogConfigs,
|
|
171
|
+
paginateListResolverRuleAssociations,
|
|
172
|
+
paginateListResolverRules,
|
|
173
|
+
paginateListTagsForResource,
|
|
174
|
+
};
|
|
141
175
|
export class Route53Resolver extends Route53ResolverClient {
|
|
142
176
|
}
|
|
143
|
-
createAggregatedClient(commands, Route53Resolver);
|
|
177
|
+
createAggregatedClient(commands, Route53Resolver, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateFirewallRuleGroupCommandInput, AssociateFirewallRuleGroupCommandOutput } from "./commands/AssociateFirewallRuleGroupCommand";
|
|
3
3
|
import { AssociateResolverEndpointIpAddressCommandInput, AssociateResolverEndpointIpAddressCommandOutput } from "./commands/AssociateResolverEndpointIpAddressCommand";
|
|
4
4
|
import { AssociateResolverQueryLogConfigCommandInput, AssociateResolverQueryLogConfigCommandOutput } from "./commands/AssociateResolverQueryLogConfigCommand";
|
|
@@ -489,6 +489,118 @@ export interface Route53Resolver {
|
|
|
489
489
|
updateResolverRule(args: UpdateResolverRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResolverRuleCommandOutput>;
|
|
490
490
|
updateResolverRule(args: UpdateResolverRuleCommandInput, cb: (err: any, data?: UpdateResolverRuleCommandOutput) => void): void;
|
|
491
491
|
updateResolverRule(args: UpdateResolverRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResolverRuleCommandOutput) => void): void;
|
|
492
|
+
/**
|
|
493
|
+
* @see {@link ListFirewallConfigsCommand}
|
|
494
|
+
* @param args - command input.
|
|
495
|
+
* @param paginationConfig - optional pagination config.
|
|
496
|
+
* @returns AsyncIterable of {@link ListFirewallConfigsCommandOutput}.
|
|
497
|
+
*/
|
|
498
|
+
paginateListFirewallConfigs(args?: ListFirewallConfigsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallConfigsCommandOutput>;
|
|
499
|
+
/**
|
|
500
|
+
* @see {@link ListFirewallDomainListsCommand}
|
|
501
|
+
* @param args - command input.
|
|
502
|
+
* @param paginationConfig - optional pagination config.
|
|
503
|
+
* @returns AsyncIterable of {@link ListFirewallDomainListsCommandOutput}.
|
|
504
|
+
*/
|
|
505
|
+
paginateListFirewallDomainLists(args?: ListFirewallDomainListsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallDomainListsCommandOutput>;
|
|
506
|
+
/**
|
|
507
|
+
* @see {@link ListFirewallDomainsCommand}
|
|
508
|
+
* @param args - command input.
|
|
509
|
+
* @param paginationConfig - optional pagination config.
|
|
510
|
+
* @returns AsyncIterable of {@link ListFirewallDomainsCommandOutput}.
|
|
511
|
+
*/
|
|
512
|
+
paginateListFirewallDomains(args: ListFirewallDomainsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallDomainsCommandOutput>;
|
|
513
|
+
/**
|
|
514
|
+
* @see {@link ListFirewallRuleGroupAssociationsCommand}
|
|
515
|
+
* @param args - command input.
|
|
516
|
+
* @param paginationConfig - optional pagination config.
|
|
517
|
+
* @returns AsyncIterable of {@link ListFirewallRuleGroupAssociationsCommandOutput}.
|
|
518
|
+
*/
|
|
519
|
+
paginateListFirewallRuleGroupAssociations(args?: ListFirewallRuleGroupAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallRuleGroupAssociationsCommandOutput>;
|
|
520
|
+
/**
|
|
521
|
+
* @see {@link ListFirewallRuleGroupsCommand}
|
|
522
|
+
* @param args - command input.
|
|
523
|
+
* @param paginationConfig - optional pagination config.
|
|
524
|
+
* @returns AsyncIterable of {@link ListFirewallRuleGroupsCommandOutput}.
|
|
525
|
+
*/
|
|
526
|
+
paginateListFirewallRuleGroups(args?: ListFirewallRuleGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallRuleGroupsCommandOutput>;
|
|
527
|
+
/**
|
|
528
|
+
* @see {@link ListFirewallRulesCommand}
|
|
529
|
+
* @param args - command input.
|
|
530
|
+
* @param paginationConfig - optional pagination config.
|
|
531
|
+
* @returns AsyncIterable of {@link ListFirewallRulesCommandOutput}.
|
|
532
|
+
*/
|
|
533
|
+
paginateListFirewallRules(args: ListFirewallRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFirewallRulesCommandOutput>;
|
|
534
|
+
/**
|
|
535
|
+
* @see {@link ListOutpostResolversCommand}
|
|
536
|
+
* @param args - command input.
|
|
537
|
+
* @param paginationConfig - optional pagination config.
|
|
538
|
+
* @returns AsyncIterable of {@link ListOutpostResolversCommandOutput}.
|
|
539
|
+
*/
|
|
540
|
+
paginateListOutpostResolvers(args?: ListOutpostResolversCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOutpostResolversCommandOutput>;
|
|
541
|
+
/**
|
|
542
|
+
* @see {@link ListResolverConfigsCommand}
|
|
543
|
+
* @param args - command input.
|
|
544
|
+
* @param paginationConfig - optional pagination config.
|
|
545
|
+
* @returns AsyncIterable of {@link ListResolverConfigsCommandOutput}.
|
|
546
|
+
*/
|
|
547
|
+
paginateListResolverConfigs(args?: ListResolverConfigsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverConfigsCommandOutput>;
|
|
548
|
+
/**
|
|
549
|
+
* @see {@link ListResolverDnssecConfigsCommand}
|
|
550
|
+
* @param args - command input.
|
|
551
|
+
* @param paginationConfig - optional pagination config.
|
|
552
|
+
* @returns AsyncIterable of {@link ListResolverDnssecConfigsCommandOutput}.
|
|
553
|
+
*/
|
|
554
|
+
paginateListResolverDnssecConfigs(args?: ListResolverDnssecConfigsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverDnssecConfigsCommandOutput>;
|
|
555
|
+
/**
|
|
556
|
+
* @see {@link ListResolverEndpointIpAddressesCommand}
|
|
557
|
+
* @param args - command input.
|
|
558
|
+
* @param paginationConfig - optional pagination config.
|
|
559
|
+
* @returns AsyncIterable of {@link ListResolverEndpointIpAddressesCommandOutput}.
|
|
560
|
+
*/
|
|
561
|
+
paginateListResolverEndpointIpAddresses(args: ListResolverEndpointIpAddressesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverEndpointIpAddressesCommandOutput>;
|
|
562
|
+
/**
|
|
563
|
+
* @see {@link ListResolverEndpointsCommand}
|
|
564
|
+
* @param args - command input.
|
|
565
|
+
* @param paginationConfig - optional pagination config.
|
|
566
|
+
* @returns AsyncIterable of {@link ListResolverEndpointsCommandOutput}.
|
|
567
|
+
*/
|
|
568
|
+
paginateListResolverEndpoints(args?: ListResolverEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverEndpointsCommandOutput>;
|
|
569
|
+
/**
|
|
570
|
+
* @see {@link ListResolverQueryLogConfigAssociationsCommand}
|
|
571
|
+
* @param args - command input.
|
|
572
|
+
* @param paginationConfig - optional pagination config.
|
|
573
|
+
* @returns AsyncIterable of {@link ListResolverQueryLogConfigAssociationsCommandOutput}.
|
|
574
|
+
*/
|
|
575
|
+
paginateListResolverQueryLogConfigAssociations(args?: ListResolverQueryLogConfigAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverQueryLogConfigAssociationsCommandOutput>;
|
|
576
|
+
/**
|
|
577
|
+
* @see {@link ListResolverQueryLogConfigsCommand}
|
|
578
|
+
* @param args - command input.
|
|
579
|
+
* @param paginationConfig - optional pagination config.
|
|
580
|
+
* @returns AsyncIterable of {@link ListResolverQueryLogConfigsCommandOutput}.
|
|
581
|
+
*/
|
|
582
|
+
paginateListResolverQueryLogConfigs(args?: ListResolverQueryLogConfigsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverQueryLogConfigsCommandOutput>;
|
|
583
|
+
/**
|
|
584
|
+
* @see {@link ListResolverRuleAssociationsCommand}
|
|
585
|
+
* @param args - command input.
|
|
586
|
+
* @param paginationConfig - optional pagination config.
|
|
587
|
+
* @returns AsyncIterable of {@link ListResolverRuleAssociationsCommandOutput}.
|
|
588
|
+
*/
|
|
589
|
+
paginateListResolverRuleAssociations(args?: ListResolverRuleAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverRuleAssociationsCommandOutput>;
|
|
590
|
+
/**
|
|
591
|
+
* @see {@link ListResolverRulesCommand}
|
|
592
|
+
* @param args - command input.
|
|
593
|
+
* @param paginationConfig - optional pagination config.
|
|
594
|
+
* @returns AsyncIterable of {@link ListResolverRulesCommandOutput}.
|
|
595
|
+
*/
|
|
596
|
+
paginateListResolverRules(args?: ListResolverRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResolverRulesCommandOutput>;
|
|
597
|
+
/**
|
|
598
|
+
* @see {@link ListTagsForResourceCommand}
|
|
599
|
+
* @param args - command input.
|
|
600
|
+
* @param paginationConfig - optional pagination config.
|
|
601
|
+
* @returns AsyncIterable of {@link ListTagsForResourceCommandOutput}.
|
|
602
|
+
*/
|
|
603
|
+
paginateListTagsForResource(args: ListTagsForResourceCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTagsForResourceCommandOutput>;
|
|
492
604
|
}
|
|
493
605
|
/**
|
|
494
606
|
* <p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateFirewallRuleGroupCommandInput,
|
|
4
8
|
AssociateFirewallRuleGroupCommandOutput,
|
|
@@ -1211,6 +1215,118 @@ export interface Route53Resolver {
|
|
|
1211
1215
|
options: __HttpHandlerOptions,
|
|
1212
1216
|
cb: (err: any, data?: UpdateResolverRuleCommandOutput) => void
|
|
1213
1217
|
): void;
|
|
1218
|
+
paginateListFirewallConfigs(
|
|
1219
|
+
args?: ListFirewallConfigsCommandInput,
|
|
1220
|
+
paginationConfig?: Pick<
|
|
1221
|
+
PaginationConfiguration,
|
|
1222
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1223
|
+
>
|
|
1224
|
+
): Paginator<ListFirewallConfigsCommandOutput>;
|
|
1225
|
+
paginateListFirewallDomainLists(
|
|
1226
|
+
args?: ListFirewallDomainListsCommandInput,
|
|
1227
|
+
paginationConfig?: Pick<
|
|
1228
|
+
PaginationConfiguration,
|
|
1229
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1230
|
+
>
|
|
1231
|
+
): Paginator<ListFirewallDomainListsCommandOutput>;
|
|
1232
|
+
paginateListFirewallDomains(
|
|
1233
|
+
args: ListFirewallDomainsCommandInput,
|
|
1234
|
+
paginationConfig?: Pick<
|
|
1235
|
+
PaginationConfiguration,
|
|
1236
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1237
|
+
>
|
|
1238
|
+
): Paginator<ListFirewallDomainsCommandOutput>;
|
|
1239
|
+
paginateListFirewallRuleGroupAssociations(
|
|
1240
|
+
args?: ListFirewallRuleGroupAssociationsCommandInput,
|
|
1241
|
+
paginationConfig?: Pick<
|
|
1242
|
+
PaginationConfiguration,
|
|
1243
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1244
|
+
>
|
|
1245
|
+
): Paginator<ListFirewallRuleGroupAssociationsCommandOutput>;
|
|
1246
|
+
paginateListFirewallRuleGroups(
|
|
1247
|
+
args?: ListFirewallRuleGroupsCommandInput,
|
|
1248
|
+
paginationConfig?: Pick<
|
|
1249
|
+
PaginationConfiguration,
|
|
1250
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1251
|
+
>
|
|
1252
|
+
): Paginator<ListFirewallRuleGroupsCommandOutput>;
|
|
1253
|
+
paginateListFirewallRules(
|
|
1254
|
+
args: ListFirewallRulesCommandInput,
|
|
1255
|
+
paginationConfig?: Pick<
|
|
1256
|
+
PaginationConfiguration,
|
|
1257
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1258
|
+
>
|
|
1259
|
+
): Paginator<ListFirewallRulesCommandOutput>;
|
|
1260
|
+
paginateListOutpostResolvers(
|
|
1261
|
+
args?: ListOutpostResolversCommandInput,
|
|
1262
|
+
paginationConfig?: Pick<
|
|
1263
|
+
PaginationConfiguration,
|
|
1264
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1265
|
+
>
|
|
1266
|
+
): Paginator<ListOutpostResolversCommandOutput>;
|
|
1267
|
+
paginateListResolverConfigs(
|
|
1268
|
+
args?: ListResolverConfigsCommandInput,
|
|
1269
|
+
paginationConfig?: Pick<
|
|
1270
|
+
PaginationConfiguration,
|
|
1271
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1272
|
+
>
|
|
1273
|
+
): Paginator<ListResolverConfigsCommandOutput>;
|
|
1274
|
+
paginateListResolverDnssecConfigs(
|
|
1275
|
+
args?: ListResolverDnssecConfigsCommandInput,
|
|
1276
|
+
paginationConfig?: Pick<
|
|
1277
|
+
PaginationConfiguration,
|
|
1278
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1279
|
+
>
|
|
1280
|
+
): Paginator<ListResolverDnssecConfigsCommandOutput>;
|
|
1281
|
+
paginateListResolverEndpointIpAddresses(
|
|
1282
|
+
args: ListResolverEndpointIpAddressesCommandInput,
|
|
1283
|
+
paginationConfig?: Pick<
|
|
1284
|
+
PaginationConfiguration,
|
|
1285
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1286
|
+
>
|
|
1287
|
+
): Paginator<ListResolverEndpointIpAddressesCommandOutput>;
|
|
1288
|
+
paginateListResolverEndpoints(
|
|
1289
|
+
args?: ListResolverEndpointsCommandInput,
|
|
1290
|
+
paginationConfig?: Pick<
|
|
1291
|
+
PaginationConfiguration,
|
|
1292
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1293
|
+
>
|
|
1294
|
+
): Paginator<ListResolverEndpointsCommandOutput>;
|
|
1295
|
+
paginateListResolverQueryLogConfigAssociations(
|
|
1296
|
+
args?: ListResolverQueryLogConfigAssociationsCommandInput,
|
|
1297
|
+
paginationConfig?: Pick<
|
|
1298
|
+
PaginationConfiguration,
|
|
1299
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1300
|
+
>
|
|
1301
|
+
): Paginator<ListResolverQueryLogConfigAssociationsCommandOutput>;
|
|
1302
|
+
paginateListResolverQueryLogConfigs(
|
|
1303
|
+
args?: ListResolverQueryLogConfigsCommandInput,
|
|
1304
|
+
paginationConfig?: Pick<
|
|
1305
|
+
PaginationConfiguration,
|
|
1306
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1307
|
+
>
|
|
1308
|
+
): Paginator<ListResolverQueryLogConfigsCommandOutput>;
|
|
1309
|
+
paginateListResolverRuleAssociations(
|
|
1310
|
+
args?: ListResolverRuleAssociationsCommandInput,
|
|
1311
|
+
paginationConfig?: Pick<
|
|
1312
|
+
PaginationConfiguration,
|
|
1313
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1314
|
+
>
|
|
1315
|
+
): Paginator<ListResolverRuleAssociationsCommandOutput>;
|
|
1316
|
+
paginateListResolverRules(
|
|
1317
|
+
args?: ListResolverRulesCommandInput,
|
|
1318
|
+
paginationConfig?: Pick<
|
|
1319
|
+
PaginationConfiguration,
|
|
1320
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1321
|
+
>
|
|
1322
|
+
): Paginator<ListResolverRulesCommandOutput>;
|
|
1323
|
+
paginateListTagsForResource(
|
|
1324
|
+
args: ListTagsForResourceCommandInput,
|
|
1325
|
+
paginationConfig?: Pick<
|
|
1326
|
+
PaginationConfiguration,
|
|
1327
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1328
|
+
>
|
|
1329
|
+
): Paginator<ListTagsForResourceCommandOutput>;
|
|
1214
1330
|
}
|
|
1215
1331
|
export declare class Route53Resolver
|
|
1216
1332
|
extends Route53ResolverClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53resolver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53resolver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-route53resolver",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|