@aws-sdk/client-route53resolver 3.1019.0 → 3.1020.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-es/Route53Resolver.js +1 -1
- package/dist-types/Route53Resolver.d.ts +68 -68
- package/dist-types/Route53ResolverClient.d.ts +71 -71
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/pagination/ListFirewallConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFirewallDomainListsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFirewallDomainsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFirewallRuleGroupAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFirewallRuleGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFirewallRulesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOutpostResolversPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverDnssecConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverEndpointIpAddressesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverEndpointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverQueryLogConfigAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverQueryLogConfigsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverRuleAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListResolverRulesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +1 -1
- package/dist-types/ts3.4/Route53ResolverClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/package.json +13 -13
|
@@ -56,7 +56,7 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
|
|
|
56
56
|
import { PutFirewallRuleGroupPolicyCommand, } from "./commands/PutFirewallRuleGroupPolicyCommand";
|
|
57
57
|
import { PutResolverQueryLogConfigPolicyCommand, } from "./commands/PutResolverQueryLogConfigPolicyCommand";
|
|
58
58
|
import { PutResolverRulePolicyCommand, } from "./commands/PutResolverRulePolicyCommand";
|
|
59
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
59
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
60
60
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
61
61
|
import { UpdateFirewallConfigCommand, } from "./commands/UpdateFirewallConfigCommand";
|
|
62
62
|
import { UpdateFirewallDomainsCommand, } from "./commands/UpdateFirewallDomainsCommand";
|
|
@@ -1,72 +1,72 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { AssociateFirewallRuleGroupCommandInput, AssociateFirewallRuleGroupCommandOutput } from "./commands/AssociateFirewallRuleGroupCommand";
|
|
3
|
-
import { AssociateResolverEndpointIpAddressCommandInput, AssociateResolverEndpointIpAddressCommandOutput } from "./commands/AssociateResolverEndpointIpAddressCommand";
|
|
4
|
-
import { AssociateResolverQueryLogConfigCommandInput, AssociateResolverQueryLogConfigCommandOutput } from "./commands/AssociateResolverQueryLogConfigCommand";
|
|
5
|
-
import { AssociateResolverRuleCommandInput, AssociateResolverRuleCommandOutput } from "./commands/AssociateResolverRuleCommand";
|
|
6
|
-
import { CreateFirewallDomainListCommandInput, CreateFirewallDomainListCommandOutput } from "./commands/CreateFirewallDomainListCommand";
|
|
7
|
-
import { CreateFirewallRuleCommandInput, CreateFirewallRuleCommandOutput } from "./commands/CreateFirewallRuleCommand";
|
|
8
|
-
import { CreateFirewallRuleGroupCommandInput, CreateFirewallRuleGroupCommandOutput } from "./commands/CreateFirewallRuleGroupCommand";
|
|
9
|
-
import { CreateOutpostResolverCommandInput, CreateOutpostResolverCommandOutput } from "./commands/CreateOutpostResolverCommand";
|
|
10
|
-
import { CreateResolverEndpointCommandInput, CreateResolverEndpointCommandOutput } from "./commands/CreateResolverEndpointCommand";
|
|
11
|
-
import { CreateResolverQueryLogConfigCommandInput, CreateResolverQueryLogConfigCommandOutput } from "./commands/CreateResolverQueryLogConfigCommand";
|
|
12
|
-
import { CreateResolverRuleCommandInput, CreateResolverRuleCommandOutput } from "./commands/CreateResolverRuleCommand";
|
|
13
|
-
import { DeleteFirewallDomainListCommandInput, DeleteFirewallDomainListCommandOutput } from "./commands/DeleteFirewallDomainListCommand";
|
|
14
|
-
import { DeleteFirewallRuleCommandInput, DeleteFirewallRuleCommandOutput } from "./commands/DeleteFirewallRuleCommand";
|
|
15
|
-
import { DeleteFirewallRuleGroupCommandInput, DeleteFirewallRuleGroupCommandOutput } from "./commands/DeleteFirewallRuleGroupCommand";
|
|
16
|
-
import { DeleteOutpostResolverCommandInput, DeleteOutpostResolverCommandOutput } from "./commands/DeleteOutpostResolverCommand";
|
|
17
|
-
import { DeleteResolverEndpointCommandInput, DeleteResolverEndpointCommandOutput } from "./commands/DeleteResolverEndpointCommand";
|
|
18
|
-
import { DeleteResolverQueryLogConfigCommandInput, DeleteResolverQueryLogConfigCommandOutput } from "./commands/DeleteResolverQueryLogConfigCommand";
|
|
19
|
-
import { DeleteResolverRuleCommandInput, DeleteResolverRuleCommandOutput } from "./commands/DeleteResolverRuleCommand";
|
|
20
|
-
import { DisassociateFirewallRuleGroupCommandInput, DisassociateFirewallRuleGroupCommandOutput } from "./commands/DisassociateFirewallRuleGroupCommand";
|
|
21
|
-
import { DisassociateResolverEndpointIpAddressCommandInput, DisassociateResolverEndpointIpAddressCommandOutput } from "./commands/DisassociateResolverEndpointIpAddressCommand";
|
|
22
|
-
import { DisassociateResolverQueryLogConfigCommandInput, DisassociateResolverQueryLogConfigCommandOutput } from "./commands/DisassociateResolverQueryLogConfigCommand";
|
|
23
|
-
import { DisassociateResolverRuleCommandInput, DisassociateResolverRuleCommandOutput } from "./commands/DisassociateResolverRuleCommand";
|
|
24
|
-
import { GetFirewallConfigCommandInput, GetFirewallConfigCommandOutput } from "./commands/GetFirewallConfigCommand";
|
|
25
|
-
import { GetFirewallDomainListCommandInput, GetFirewallDomainListCommandOutput } from "./commands/GetFirewallDomainListCommand";
|
|
26
|
-
import { GetFirewallRuleGroupAssociationCommandInput, GetFirewallRuleGroupAssociationCommandOutput } from "./commands/GetFirewallRuleGroupAssociationCommand";
|
|
27
|
-
import { GetFirewallRuleGroupCommandInput, GetFirewallRuleGroupCommandOutput } from "./commands/GetFirewallRuleGroupCommand";
|
|
28
|
-
import { GetFirewallRuleGroupPolicyCommandInput, GetFirewallRuleGroupPolicyCommandOutput } from "./commands/GetFirewallRuleGroupPolicyCommand";
|
|
29
|
-
import { GetOutpostResolverCommandInput, GetOutpostResolverCommandOutput } from "./commands/GetOutpostResolverCommand";
|
|
30
|
-
import { GetResolverConfigCommandInput, GetResolverConfigCommandOutput } from "./commands/GetResolverConfigCommand";
|
|
31
|
-
import { GetResolverDnssecConfigCommandInput, GetResolverDnssecConfigCommandOutput } from "./commands/GetResolverDnssecConfigCommand";
|
|
32
|
-
import { GetResolverEndpointCommandInput, GetResolverEndpointCommandOutput } from "./commands/GetResolverEndpointCommand";
|
|
33
|
-
import { GetResolverQueryLogConfigAssociationCommandInput, GetResolverQueryLogConfigAssociationCommandOutput } from "./commands/GetResolverQueryLogConfigAssociationCommand";
|
|
34
|
-
import { GetResolverQueryLogConfigCommandInput, GetResolverQueryLogConfigCommandOutput } from "./commands/GetResolverQueryLogConfigCommand";
|
|
35
|
-
import { GetResolverQueryLogConfigPolicyCommandInput, GetResolverQueryLogConfigPolicyCommandOutput } from "./commands/GetResolverQueryLogConfigPolicyCommand";
|
|
36
|
-
import { GetResolverRuleAssociationCommandInput, GetResolverRuleAssociationCommandOutput } from "./commands/GetResolverRuleAssociationCommand";
|
|
37
|
-
import { GetResolverRuleCommandInput, GetResolverRuleCommandOutput } from "./commands/GetResolverRuleCommand";
|
|
38
|
-
import { GetResolverRulePolicyCommandInput, GetResolverRulePolicyCommandOutput } from "./commands/GetResolverRulePolicyCommand";
|
|
39
|
-
import { ImportFirewallDomainsCommandInput, ImportFirewallDomainsCommandOutput } from "./commands/ImportFirewallDomainsCommand";
|
|
40
|
-
import { ListFirewallConfigsCommandInput, ListFirewallConfigsCommandOutput } from "./commands/ListFirewallConfigsCommand";
|
|
41
|
-
import { ListFirewallDomainListsCommandInput, ListFirewallDomainListsCommandOutput } from "./commands/ListFirewallDomainListsCommand";
|
|
42
|
-
import { ListFirewallDomainsCommandInput, ListFirewallDomainsCommandOutput } from "./commands/ListFirewallDomainsCommand";
|
|
43
|
-
import { ListFirewallRuleGroupAssociationsCommandInput, ListFirewallRuleGroupAssociationsCommandOutput } from "./commands/ListFirewallRuleGroupAssociationsCommand";
|
|
44
|
-
import { ListFirewallRuleGroupsCommandInput, ListFirewallRuleGroupsCommandOutput } from "./commands/ListFirewallRuleGroupsCommand";
|
|
45
|
-
import { ListFirewallRulesCommandInput, ListFirewallRulesCommandOutput } from "./commands/ListFirewallRulesCommand";
|
|
46
|
-
import { ListOutpostResolversCommandInput, ListOutpostResolversCommandOutput } from "./commands/ListOutpostResolversCommand";
|
|
47
|
-
import { ListResolverConfigsCommandInput, ListResolverConfigsCommandOutput } from "./commands/ListResolverConfigsCommand";
|
|
48
|
-
import { ListResolverDnssecConfigsCommandInput, ListResolverDnssecConfigsCommandOutput } from "./commands/ListResolverDnssecConfigsCommand";
|
|
49
|
-
import { ListResolverEndpointIpAddressesCommandInput, ListResolverEndpointIpAddressesCommandOutput } from "./commands/ListResolverEndpointIpAddressesCommand";
|
|
50
|
-
import { ListResolverEndpointsCommandInput, ListResolverEndpointsCommandOutput } from "./commands/ListResolverEndpointsCommand";
|
|
51
|
-
import { ListResolverQueryLogConfigAssociationsCommandInput, ListResolverQueryLogConfigAssociationsCommandOutput } from "./commands/ListResolverQueryLogConfigAssociationsCommand";
|
|
52
|
-
import { ListResolverQueryLogConfigsCommandInput, ListResolverQueryLogConfigsCommandOutput } from "./commands/ListResolverQueryLogConfigsCommand";
|
|
53
|
-
import { ListResolverRuleAssociationsCommandInput, ListResolverRuleAssociationsCommandOutput } from "./commands/ListResolverRuleAssociationsCommand";
|
|
54
|
-
import { ListResolverRulesCommandInput, ListResolverRulesCommandOutput } from "./commands/ListResolverRulesCommand";
|
|
55
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
56
|
-
import { PutFirewallRuleGroupPolicyCommandInput, PutFirewallRuleGroupPolicyCommandOutput } from "./commands/PutFirewallRuleGroupPolicyCommand";
|
|
57
|
-
import { PutResolverQueryLogConfigPolicyCommandInput, PutResolverQueryLogConfigPolicyCommandOutput } from "./commands/PutResolverQueryLogConfigPolicyCommand";
|
|
58
|
-
import { PutResolverRulePolicyCommandInput, PutResolverRulePolicyCommandOutput } from "./commands/PutResolverRulePolicyCommand";
|
|
59
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
60
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
61
|
-
import { UpdateFirewallConfigCommandInput, UpdateFirewallConfigCommandOutput } from "./commands/UpdateFirewallConfigCommand";
|
|
62
|
-
import { UpdateFirewallDomainsCommandInput, UpdateFirewallDomainsCommandOutput } from "./commands/UpdateFirewallDomainsCommand";
|
|
63
|
-
import { UpdateFirewallRuleCommandInput, UpdateFirewallRuleCommandOutput } from "./commands/UpdateFirewallRuleCommand";
|
|
64
|
-
import { UpdateFirewallRuleGroupAssociationCommandInput, UpdateFirewallRuleGroupAssociationCommandOutput } from "./commands/UpdateFirewallRuleGroupAssociationCommand";
|
|
65
|
-
import { UpdateOutpostResolverCommandInput, UpdateOutpostResolverCommandOutput } from "./commands/UpdateOutpostResolverCommand";
|
|
66
|
-
import { UpdateResolverConfigCommandInput, UpdateResolverConfigCommandOutput } from "./commands/UpdateResolverConfigCommand";
|
|
67
|
-
import { UpdateResolverDnssecConfigCommandInput, UpdateResolverDnssecConfigCommandOutput } from "./commands/UpdateResolverDnssecConfigCommand";
|
|
68
|
-
import { UpdateResolverEndpointCommandInput, UpdateResolverEndpointCommandOutput } from "./commands/UpdateResolverEndpointCommand";
|
|
69
|
-
import { UpdateResolverRuleCommandInput, UpdateResolverRuleCommandOutput } from "./commands/UpdateResolverRuleCommand";
|
|
2
|
+
import { type AssociateFirewallRuleGroupCommandInput, type AssociateFirewallRuleGroupCommandOutput } from "./commands/AssociateFirewallRuleGroupCommand";
|
|
3
|
+
import { type AssociateResolverEndpointIpAddressCommandInput, type AssociateResolverEndpointIpAddressCommandOutput } from "./commands/AssociateResolverEndpointIpAddressCommand";
|
|
4
|
+
import { type AssociateResolverQueryLogConfigCommandInput, type AssociateResolverQueryLogConfigCommandOutput } from "./commands/AssociateResolverQueryLogConfigCommand";
|
|
5
|
+
import { type AssociateResolverRuleCommandInput, type AssociateResolverRuleCommandOutput } from "./commands/AssociateResolverRuleCommand";
|
|
6
|
+
import { type CreateFirewallDomainListCommandInput, type CreateFirewallDomainListCommandOutput } from "./commands/CreateFirewallDomainListCommand";
|
|
7
|
+
import { type CreateFirewallRuleCommandInput, type CreateFirewallRuleCommandOutput } from "./commands/CreateFirewallRuleCommand";
|
|
8
|
+
import { type CreateFirewallRuleGroupCommandInput, type CreateFirewallRuleGroupCommandOutput } from "./commands/CreateFirewallRuleGroupCommand";
|
|
9
|
+
import { type CreateOutpostResolverCommandInput, type CreateOutpostResolverCommandOutput } from "./commands/CreateOutpostResolverCommand";
|
|
10
|
+
import { type CreateResolverEndpointCommandInput, type CreateResolverEndpointCommandOutput } from "./commands/CreateResolverEndpointCommand";
|
|
11
|
+
import { type CreateResolverQueryLogConfigCommandInput, type CreateResolverQueryLogConfigCommandOutput } from "./commands/CreateResolverQueryLogConfigCommand";
|
|
12
|
+
import { type CreateResolverRuleCommandInput, type CreateResolverRuleCommandOutput } from "./commands/CreateResolverRuleCommand";
|
|
13
|
+
import { type DeleteFirewallDomainListCommandInput, type DeleteFirewallDomainListCommandOutput } from "./commands/DeleteFirewallDomainListCommand";
|
|
14
|
+
import { type DeleteFirewallRuleCommandInput, type DeleteFirewallRuleCommandOutput } from "./commands/DeleteFirewallRuleCommand";
|
|
15
|
+
import { type DeleteFirewallRuleGroupCommandInput, type DeleteFirewallRuleGroupCommandOutput } from "./commands/DeleteFirewallRuleGroupCommand";
|
|
16
|
+
import { type DeleteOutpostResolverCommandInput, type DeleteOutpostResolverCommandOutput } from "./commands/DeleteOutpostResolverCommand";
|
|
17
|
+
import { type DeleteResolverEndpointCommandInput, type DeleteResolverEndpointCommandOutput } from "./commands/DeleteResolverEndpointCommand";
|
|
18
|
+
import { type DeleteResolverQueryLogConfigCommandInput, type DeleteResolverQueryLogConfigCommandOutput } from "./commands/DeleteResolverQueryLogConfigCommand";
|
|
19
|
+
import { type DeleteResolverRuleCommandInput, type DeleteResolverRuleCommandOutput } from "./commands/DeleteResolverRuleCommand";
|
|
20
|
+
import { type DisassociateFirewallRuleGroupCommandInput, type DisassociateFirewallRuleGroupCommandOutput } from "./commands/DisassociateFirewallRuleGroupCommand";
|
|
21
|
+
import { type DisassociateResolverEndpointIpAddressCommandInput, type DisassociateResolverEndpointIpAddressCommandOutput } from "./commands/DisassociateResolverEndpointIpAddressCommand";
|
|
22
|
+
import { type DisassociateResolverQueryLogConfigCommandInput, type DisassociateResolverQueryLogConfigCommandOutput } from "./commands/DisassociateResolverQueryLogConfigCommand";
|
|
23
|
+
import { type DisassociateResolverRuleCommandInput, type DisassociateResolverRuleCommandOutput } from "./commands/DisassociateResolverRuleCommand";
|
|
24
|
+
import { type GetFirewallConfigCommandInput, type GetFirewallConfigCommandOutput } from "./commands/GetFirewallConfigCommand";
|
|
25
|
+
import { type GetFirewallDomainListCommandInput, type GetFirewallDomainListCommandOutput } from "./commands/GetFirewallDomainListCommand";
|
|
26
|
+
import { type GetFirewallRuleGroupAssociationCommandInput, type GetFirewallRuleGroupAssociationCommandOutput } from "./commands/GetFirewallRuleGroupAssociationCommand";
|
|
27
|
+
import { type GetFirewallRuleGroupCommandInput, type GetFirewallRuleGroupCommandOutput } from "./commands/GetFirewallRuleGroupCommand";
|
|
28
|
+
import { type GetFirewallRuleGroupPolicyCommandInput, type GetFirewallRuleGroupPolicyCommandOutput } from "./commands/GetFirewallRuleGroupPolicyCommand";
|
|
29
|
+
import { type GetOutpostResolverCommandInput, type GetOutpostResolverCommandOutput } from "./commands/GetOutpostResolverCommand";
|
|
30
|
+
import { type GetResolverConfigCommandInput, type GetResolverConfigCommandOutput } from "./commands/GetResolverConfigCommand";
|
|
31
|
+
import { type GetResolverDnssecConfigCommandInput, type GetResolverDnssecConfigCommandOutput } from "./commands/GetResolverDnssecConfigCommand";
|
|
32
|
+
import { type GetResolverEndpointCommandInput, type GetResolverEndpointCommandOutput } from "./commands/GetResolverEndpointCommand";
|
|
33
|
+
import { type GetResolverQueryLogConfigAssociationCommandInput, type GetResolverQueryLogConfigAssociationCommandOutput } from "./commands/GetResolverQueryLogConfigAssociationCommand";
|
|
34
|
+
import { type GetResolverQueryLogConfigCommandInput, type GetResolverQueryLogConfigCommandOutput } from "./commands/GetResolverQueryLogConfigCommand";
|
|
35
|
+
import { type GetResolverQueryLogConfigPolicyCommandInput, type GetResolverQueryLogConfigPolicyCommandOutput } from "./commands/GetResolverQueryLogConfigPolicyCommand";
|
|
36
|
+
import { type GetResolverRuleAssociationCommandInput, type GetResolverRuleAssociationCommandOutput } from "./commands/GetResolverRuleAssociationCommand";
|
|
37
|
+
import { type GetResolverRuleCommandInput, type GetResolverRuleCommandOutput } from "./commands/GetResolverRuleCommand";
|
|
38
|
+
import { type GetResolverRulePolicyCommandInput, type GetResolverRulePolicyCommandOutput } from "./commands/GetResolverRulePolicyCommand";
|
|
39
|
+
import { type ImportFirewallDomainsCommandInput, type ImportFirewallDomainsCommandOutput } from "./commands/ImportFirewallDomainsCommand";
|
|
40
|
+
import { type ListFirewallConfigsCommandInput, type ListFirewallConfigsCommandOutput } from "./commands/ListFirewallConfigsCommand";
|
|
41
|
+
import { type ListFirewallDomainListsCommandInput, type ListFirewallDomainListsCommandOutput } from "./commands/ListFirewallDomainListsCommand";
|
|
42
|
+
import { type ListFirewallDomainsCommandInput, type ListFirewallDomainsCommandOutput } from "./commands/ListFirewallDomainsCommand";
|
|
43
|
+
import { type ListFirewallRuleGroupAssociationsCommandInput, type ListFirewallRuleGroupAssociationsCommandOutput } from "./commands/ListFirewallRuleGroupAssociationsCommand";
|
|
44
|
+
import { type ListFirewallRuleGroupsCommandInput, type ListFirewallRuleGroupsCommandOutput } from "./commands/ListFirewallRuleGroupsCommand";
|
|
45
|
+
import { type ListFirewallRulesCommandInput, type ListFirewallRulesCommandOutput } from "./commands/ListFirewallRulesCommand";
|
|
46
|
+
import { type ListOutpostResolversCommandInput, type ListOutpostResolversCommandOutput } from "./commands/ListOutpostResolversCommand";
|
|
47
|
+
import { type ListResolverConfigsCommandInput, type ListResolverConfigsCommandOutput } from "./commands/ListResolverConfigsCommand";
|
|
48
|
+
import { type ListResolverDnssecConfigsCommandInput, type ListResolverDnssecConfigsCommandOutput } from "./commands/ListResolverDnssecConfigsCommand";
|
|
49
|
+
import { type ListResolverEndpointIpAddressesCommandInput, type ListResolverEndpointIpAddressesCommandOutput } from "./commands/ListResolverEndpointIpAddressesCommand";
|
|
50
|
+
import { type ListResolverEndpointsCommandInput, type ListResolverEndpointsCommandOutput } from "./commands/ListResolverEndpointsCommand";
|
|
51
|
+
import { type ListResolverQueryLogConfigAssociationsCommandInput, type ListResolverQueryLogConfigAssociationsCommandOutput } from "./commands/ListResolverQueryLogConfigAssociationsCommand";
|
|
52
|
+
import { type ListResolverQueryLogConfigsCommandInput, type ListResolverQueryLogConfigsCommandOutput } from "./commands/ListResolverQueryLogConfigsCommand";
|
|
53
|
+
import { type ListResolverRuleAssociationsCommandInput, type ListResolverRuleAssociationsCommandOutput } from "./commands/ListResolverRuleAssociationsCommand";
|
|
54
|
+
import { type ListResolverRulesCommandInput, type ListResolverRulesCommandOutput } from "./commands/ListResolverRulesCommand";
|
|
55
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
56
|
+
import { type PutFirewallRuleGroupPolicyCommandInput, type PutFirewallRuleGroupPolicyCommandOutput } from "./commands/PutFirewallRuleGroupPolicyCommand";
|
|
57
|
+
import { type PutResolverQueryLogConfigPolicyCommandInput, type PutResolverQueryLogConfigPolicyCommandOutput } from "./commands/PutResolverQueryLogConfigPolicyCommand";
|
|
58
|
+
import { type PutResolverRulePolicyCommandInput, type PutResolverRulePolicyCommandOutput } from "./commands/PutResolverRulePolicyCommand";
|
|
59
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
60
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
61
|
+
import { type UpdateFirewallConfigCommandInput, type UpdateFirewallConfigCommandOutput } from "./commands/UpdateFirewallConfigCommand";
|
|
62
|
+
import { type UpdateFirewallDomainsCommandInput, type UpdateFirewallDomainsCommandOutput } from "./commands/UpdateFirewallDomainsCommand";
|
|
63
|
+
import { type UpdateFirewallRuleCommandInput, type UpdateFirewallRuleCommandOutput } from "./commands/UpdateFirewallRuleCommand";
|
|
64
|
+
import { type UpdateFirewallRuleGroupAssociationCommandInput, type UpdateFirewallRuleGroupAssociationCommandOutput } from "./commands/UpdateFirewallRuleGroupAssociationCommand";
|
|
65
|
+
import { type UpdateOutpostResolverCommandInput, type UpdateOutpostResolverCommandOutput } from "./commands/UpdateOutpostResolverCommand";
|
|
66
|
+
import { type UpdateResolverConfigCommandInput, type UpdateResolverConfigCommandOutput } from "./commands/UpdateResolverConfigCommand";
|
|
67
|
+
import { type UpdateResolverDnssecConfigCommandInput, type UpdateResolverDnssecConfigCommandOutput } from "./commands/UpdateResolverDnssecConfigCommand";
|
|
68
|
+
import { type UpdateResolverEndpointCommandInput, type UpdateResolverEndpointCommandOutput } from "./commands/UpdateResolverEndpointCommand";
|
|
69
|
+
import { type UpdateResolverRuleCommandInput, type UpdateResolverRuleCommandOutput } from "./commands/UpdateResolverRuleCommand";
|
|
70
70
|
import { Route53ResolverClient } from "./Route53ResolverClient";
|
|
71
71
|
export interface Route53Resolver {
|
|
72
72
|
/**
|
|
@@ -5,77 +5,77 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AssociateFirewallRuleGroupCommandInput, AssociateFirewallRuleGroupCommandOutput } from "./commands/AssociateFirewallRuleGroupCommand";
|
|
11
|
-
import { AssociateResolverEndpointIpAddressCommandInput, AssociateResolverEndpointIpAddressCommandOutput } from "./commands/AssociateResolverEndpointIpAddressCommand";
|
|
12
|
-
import { AssociateResolverQueryLogConfigCommandInput, AssociateResolverQueryLogConfigCommandOutput } from "./commands/AssociateResolverQueryLogConfigCommand";
|
|
13
|
-
import { AssociateResolverRuleCommandInput, AssociateResolverRuleCommandOutput } from "./commands/AssociateResolverRuleCommand";
|
|
14
|
-
import { CreateFirewallDomainListCommandInput, CreateFirewallDomainListCommandOutput } from "./commands/CreateFirewallDomainListCommand";
|
|
15
|
-
import { CreateFirewallRuleCommandInput, CreateFirewallRuleCommandOutput } from "./commands/CreateFirewallRuleCommand";
|
|
16
|
-
import { CreateFirewallRuleGroupCommandInput, CreateFirewallRuleGroupCommandOutput } from "./commands/CreateFirewallRuleGroupCommand";
|
|
17
|
-
import { CreateOutpostResolverCommandInput, CreateOutpostResolverCommandOutput } from "./commands/CreateOutpostResolverCommand";
|
|
18
|
-
import { CreateResolverEndpointCommandInput, CreateResolverEndpointCommandOutput } from "./commands/CreateResolverEndpointCommand";
|
|
19
|
-
import { CreateResolverQueryLogConfigCommandInput, CreateResolverQueryLogConfigCommandOutput } from "./commands/CreateResolverQueryLogConfigCommand";
|
|
20
|
-
import { CreateResolverRuleCommandInput, CreateResolverRuleCommandOutput } from "./commands/CreateResolverRuleCommand";
|
|
21
|
-
import { DeleteFirewallDomainListCommandInput, DeleteFirewallDomainListCommandOutput } from "./commands/DeleteFirewallDomainListCommand";
|
|
22
|
-
import { DeleteFirewallRuleCommandInput, DeleteFirewallRuleCommandOutput } from "./commands/DeleteFirewallRuleCommand";
|
|
23
|
-
import { DeleteFirewallRuleGroupCommandInput, DeleteFirewallRuleGroupCommandOutput } from "./commands/DeleteFirewallRuleGroupCommand";
|
|
24
|
-
import { DeleteOutpostResolverCommandInput, DeleteOutpostResolverCommandOutput } from "./commands/DeleteOutpostResolverCommand";
|
|
25
|
-
import { DeleteResolverEndpointCommandInput, DeleteResolverEndpointCommandOutput } from "./commands/DeleteResolverEndpointCommand";
|
|
26
|
-
import { DeleteResolverQueryLogConfigCommandInput, DeleteResolverQueryLogConfigCommandOutput } from "./commands/DeleteResolverQueryLogConfigCommand";
|
|
27
|
-
import { DeleteResolverRuleCommandInput, DeleteResolverRuleCommandOutput } from "./commands/DeleteResolverRuleCommand";
|
|
28
|
-
import { DisassociateFirewallRuleGroupCommandInput, DisassociateFirewallRuleGroupCommandOutput } from "./commands/DisassociateFirewallRuleGroupCommand";
|
|
29
|
-
import { DisassociateResolverEndpointIpAddressCommandInput, DisassociateResolverEndpointIpAddressCommandOutput } from "./commands/DisassociateResolverEndpointIpAddressCommand";
|
|
30
|
-
import { DisassociateResolverQueryLogConfigCommandInput, DisassociateResolverQueryLogConfigCommandOutput } from "./commands/DisassociateResolverQueryLogConfigCommand";
|
|
31
|
-
import { DisassociateResolverRuleCommandInput, DisassociateResolverRuleCommandOutput } from "./commands/DisassociateResolverRuleCommand";
|
|
32
|
-
import { GetFirewallConfigCommandInput, GetFirewallConfigCommandOutput } from "./commands/GetFirewallConfigCommand";
|
|
33
|
-
import { GetFirewallDomainListCommandInput, GetFirewallDomainListCommandOutput } from "./commands/GetFirewallDomainListCommand";
|
|
34
|
-
import { GetFirewallRuleGroupAssociationCommandInput, GetFirewallRuleGroupAssociationCommandOutput } from "./commands/GetFirewallRuleGroupAssociationCommand";
|
|
35
|
-
import { GetFirewallRuleGroupCommandInput, GetFirewallRuleGroupCommandOutput } from "./commands/GetFirewallRuleGroupCommand";
|
|
36
|
-
import { GetFirewallRuleGroupPolicyCommandInput, GetFirewallRuleGroupPolicyCommandOutput } from "./commands/GetFirewallRuleGroupPolicyCommand";
|
|
37
|
-
import { GetOutpostResolverCommandInput, GetOutpostResolverCommandOutput } from "./commands/GetOutpostResolverCommand";
|
|
38
|
-
import { GetResolverConfigCommandInput, GetResolverConfigCommandOutput } from "./commands/GetResolverConfigCommand";
|
|
39
|
-
import { GetResolverDnssecConfigCommandInput, GetResolverDnssecConfigCommandOutput } from "./commands/GetResolverDnssecConfigCommand";
|
|
40
|
-
import { GetResolverEndpointCommandInput, GetResolverEndpointCommandOutput } from "./commands/GetResolverEndpointCommand";
|
|
41
|
-
import { GetResolverQueryLogConfigAssociationCommandInput, GetResolverQueryLogConfigAssociationCommandOutput } from "./commands/GetResolverQueryLogConfigAssociationCommand";
|
|
42
|
-
import { GetResolverQueryLogConfigCommandInput, GetResolverQueryLogConfigCommandOutput } from "./commands/GetResolverQueryLogConfigCommand";
|
|
43
|
-
import { GetResolverQueryLogConfigPolicyCommandInput, GetResolverQueryLogConfigPolicyCommandOutput } from "./commands/GetResolverQueryLogConfigPolicyCommand";
|
|
44
|
-
import { GetResolverRuleAssociationCommandInput, GetResolverRuleAssociationCommandOutput } from "./commands/GetResolverRuleAssociationCommand";
|
|
45
|
-
import { GetResolverRuleCommandInput, GetResolverRuleCommandOutput } from "./commands/GetResolverRuleCommand";
|
|
46
|
-
import { GetResolverRulePolicyCommandInput, GetResolverRulePolicyCommandOutput } from "./commands/GetResolverRulePolicyCommand";
|
|
47
|
-
import { ImportFirewallDomainsCommandInput, ImportFirewallDomainsCommandOutput } from "./commands/ImportFirewallDomainsCommand";
|
|
48
|
-
import { ListFirewallConfigsCommandInput, ListFirewallConfigsCommandOutput } from "./commands/ListFirewallConfigsCommand";
|
|
49
|
-
import { ListFirewallDomainListsCommandInput, ListFirewallDomainListsCommandOutput } from "./commands/ListFirewallDomainListsCommand";
|
|
50
|
-
import { ListFirewallDomainsCommandInput, ListFirewallDomainsCommandOutput } from "./commands/ListFirewallDomainsCommand";
|
|
51
|
-
import { ListFirewallRuleGroupAssociationsCommandInput, ListFirewallRuleGroupAssociationsCommandOutput } from "./commands/ListFirewallRuleGroupAssociationsCommand";
|
|
52
|
-
import { ListFirewallRuleGroupsCommandInput, ListFirewallRuleGroupsCommandOutput } from "./commands/ListFirewallRuleGroupsCommand";
|
|
53
|
-
import { ListFirewallRulesCommandInput, ListFirewallRulesCommandOutput } from "./commands/ListFirewallRulesCommand";
|
|
54
|
-
import { ListOutpostResolversCommandInput, ListOutpostResolversCommandOutput } from "./commands/ListOutpostResolversCommand";
|
|
55
|
-
import { ListResolverConfigsCommandInput, ListResolverConfigsCommandOutput } from "./commands/ListResolverConfigsCommand";
|
|
56
|
-
import { ListResolverDnssecConfigsCommandInput, ListResolverDnssecConfigsCommandOutput } from "./commands/ListResolverDnssecConfigsCommand";
|
|
57
|
-
import { ListResolverEndpointIpAddressesCommandInput, ListResolverEndpointIpAddressesCommandOutput } from "./commands/ListResolverEndpointIpAddressesCommand";
|
|
58
|
-
import { ListResolverEndpointsCommandInput, ListResolverEndpointsCommandOutput } from "./commands/ListResolverEndpointsCommand";
|
|
59
|
-
import { ListResolverQueryLogConfigAssociationsCommandInput, ListResolverQueryLogConfigAssociationsCommandOutput } from "./commands/ListResolverQueryLogConfigAssociationsCommand";
|
|
60
|
-
import { ListResolverQueryLogConfigsCommandInput, ListResolverQueryLogConfigsCommandOutput } from "./commands/ListResolverQueryLogConfigsCommand";
|
|
61
|
-
import { ListResolverRuleAssociationsCommandInput, ListResolverRuleAssociationsCommandOutput } from "./commands/ListResolverRuleAssociationsCommand";
|
|
62
|
-
import { ListResolverRulesCommandInput, ListResolverRulesCommandOutput } from "./commands/ListResolverRulesCommand";
|
|
63
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
64
|
-
import { PutFirewallRuleGroupPolicyCommandInput, PutFirewallRuleGroupPolicyCommandOutput } from "./commands/PutFirewallRuleGroupPolicyCommand";
|
|
65
|
-
import { PutResolverQueryLogConfigPolicyCommandInput, PutResolverQueryLogConfigPolicyCommandOutput } from "./commands/PutResolverQueryLogConfigPolicyCommand";
|
|
66
|
-
import { PutResolverRulePolicyCommandInput, PutResolverRulePolicyCommandOutput } from "./commands/PutResolverRulePolicyCommand";
|
|
67
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
68
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
69
|
-
import { UpdateFirewallConfigCommandInput, UpdateFirewallConfigCommandOutput } from "./commands/UpdateFirewallConfigCommand";
|
|
70
|
-
import { UpdateFirewallDomainsCommandInput, UpdateFirewallDomainsCommandOutput } from "./commands/UpdateFirewallDomainsCommand";
|
|
71
|
-
import { UpdateFirewallRuleCommandInput, UpdateFirewallRuleCommandOutput } from "./commands/UpdateFirewallRuleCommand";
|
|
72
|
-
import { UpdateFirewallRuleGroupAssociationCommandInput, UpdateFirewallRuleGroupAssociationCommandOutput } from "./commands/UpdateFirewallRuleGroupAssociationCommand";
|
|
73
|
-
import { UpdateOutpostResolverCommandInput, UpdateOutpostResolverCommandOutput } from "./commands/UpdateOutpostResolverCommand";
|
|
74
|
-
import { UpdateResolverConfigCommandInput, UpdateResolverConfigCommandOutput } from "./commands/UpdateResolverConfigCommand";
|
|
75
|
-
import { UpdateResolverDnssecConfigCommandInput, UpdateResolverDnssecConfigCommandOutput } from "./commands/UpdateResolverDnssecConfigCommand";
|
|
76
|
-
import { UpdateResolverEndpointCommandInput, UpdateResolverEndpointCommandOutput } from "./commands/UpdateResolverEndpointCommand";
|
|
77
|
-
import { UpdateResolverRuleCommandInput, UpdateResolverRuleCommandOutput } from "./commands/UpdateResolverRuleCommand";
|
|
78
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { AssociateFirewallRuleGroupCommandInput, AssociateFirewallRuleGroupCommandOutput } from "./commands/AssociateFirewallRuleGroupCommand";
|
|
11
|
+
import type { AssociateResolverEndpointIpAddressCommandInput, AssociateResolverEndpointIpAddressCommandOutput } from "./commands/AssociateResolverEndpointIpAddressCommand";
|
|
12
|
+
import type { AssociateResolverQueryLogConfigCommandInput, AssociateResolverQueryLogConfigCommandOutput } from "./commands/AssociateResolverQueryLogConfigCommand";
|
|
13
|
+
import type { AssociateResolverRuleCommandInput, AssociateResolverRuleCommandOutput } from "./commands/AssociateResolverRuleCommand";
|
|
14
|
+
import type { CreateFirewallDomainListCommandInput, CreateFirewallDomainListCommandOutput } from "./commands/CreateFirewallDomainListCommand";
|
|
15
|
+
import type { CreateFirewallRuleCommandInput, CreateFirewallRuleCommandOutput } from "./commands/CreateFirewallRuleCommand";
|
|
16
|
+
import type { CreateFirewallRuleGroupCommandInput, CreateFirewallRuleGroupCommandOutput } from "./commands/CreateFirewallRuleGroupCommand";
|
|
17
|
+
import type { CreateOutpostResolverCommandInput, CreateOutpostResolverCommandOutput } from "./commands/CreateOutpostResolverCommand";
|
|
18
|
+
import type { CreateResolverEndpointCommandInput, CreateResolverEndpointCommandOutput } from "./commands/CreateResolverEndpointCommand";
|
|
19
|
+
import type { CreateResolverQueryLogConfigCommandInput, CreateResolverQueryLogConfigCommandOutput } from "./commands/CreateResolverQueryLogConfigCommand";
|
|
20
|
+
import type { CreateResolverRuleCommandInput, CreateResolverRuleCommandOutput } from "./commands/CreateResolverRuleCommand";
|
|
21
|
+
import type { DeleteFirewallDomainListCommandInput, DeleteFirewallDomainListCommandOutput } from "./commands/DeleteFirewallDomainListCommand";
|
|
22
|
+
import type { DeleteFirewallRuleCommandInput, DeleteFirewallRuleCommandOutput } from "./commands/DeleteFirewallRuleCommand";
|
|
23
|
+
import type { DeleteFirewallRuleGroupCommandInput, DeleteFirewallRuleGroupCommandOutput } from "./commands/DeleteFirewallRuleGroupCommand";
|
|
24
|
+
import type { DeleteOutpostResolverCommandInput, DeleteOutpostResolverCommandOutput } from "./commands/DeleteOutpostResolverCommand";
|
|
25
|
+
import type { DeleteResolverEndpointCommandInput, DeleteResolverEndpointCommandOutput } from "./commands/DeleteResolverEndpointCommand";
|
|
26
|
+
import type { DeleteResolverQueryLogConfigCommandInput, DeleteResolverQueryLogConfigCommandOutput } from "./commands/DeleteResolverQueryLogConfigCommand";
|
|
27
|
+
import type { DeleteResolverRuleCommandInput, DeleteResolverRuleCommandOutput } from "./commands/DeleteResolverRuleCommand";
|
|
28
|
+
import type { DisassociateFirewallRuleGroupCommandInput, DisassociateFirewallRuleGroupCommandOutput } from "./commands/DisassociateFirewallRuleGroupCommand";
|
|
29
|
+
import type { DisassociateResolverEndpointIpAddressCommandInput, DisassociateResolverEndpointIpAddressCommandOutput } from "./commands/DisassociateResolverEndpointIpAddressCommand";
|
|
30
|
+
import type { DisassociateResolverQueryLogConfigCommandInput, DisassociateResolverQueryLogConfigCommandOutput } from "./commands/DisassociateResolverQueryLogConfigCommand";
|
|
31
|
+
import type { DisassociateResolverRuleCommandInput, DisassociateResolverRuleCommandOutput } from "./commands/DisassociateResolverRuleCommand";
|
|
32
|
+
import type { GetFirewallConfigCommandInput, GetFirewallConfigCommandOutput } from "./commands/GetFirewallConfigCommand";
|
|
33
|
+
import type { GetFirewallDomainListCommandInput, GetFirewallDomainListCommandOutput } from "./commands/GetFirewallDomainListCommand";
|
|
34
|
+
import type { GetFirewallRuleGroupAssociationCommandInput, GetFirewallRuleGroupAssociationCommandOutput } from "./commands/GetFirewallRuleGroupAssociationCommand";
|
|
35
|
+
import type { GetFirewallRuleGroupCommandInput, GetFirewallRuleGroupCommandOutput } from "./commands/GetFirewallRuleGroupCommand";
|
|
36
|
+
import type { GetFirewallRuleGroupPolicyCommandInput, GetFirewallRuleGroupPolicyCommandOutput } from "./commands/GetFirewallRuleGroupPolicyCommand";
|
|
37
|
+
import type { GetOutpostResolverCommandInput, GetOutpostResolverCommandOutput } from "./commands/GetOutpostResolverCommand";
|
|
38
|
+
import type { GetResolverConfigCommandInput, GetResolverConfigCommandOutput } from "./commands/GetResolverConfigCommand";
|
|
39
|
+
import type { GetResolverDnssecConfigCommandInput, GetResolverDnssecConfigCommandOutput } from "./commands/GetResolverDnssecConfigCommand";
|
|
40
|
+
import type { GetResolverEndpointCommandInput, GetResolverEndpointCommandOutput } from "./commands/GetResolverEndpointCommand";
|
|
41
|
+
import type { GetResolverQueryLogConfigAssociationCommandInput, GetResolverQueryLogConfigAssociationCommandOutput } from "./commands/GetResolverQueryLogConfigAssociationCommand";
|
|
42
|
+
import type { GetResolverQueryLogConfigCommandInput, GetResolverQueryLogConfigCommandOutput } from "./commands/GetResolverQueryLogConfigCommand";
|
|
43
|
+
import type { GetResolverQueryLogConfigPolicyCommandInput, GetResolverQueryLogConfigPolicyCommandOutput } from "./commands/GetResolverQueryLogConfigPolicyCommand";
|
|
44
|
+
import type { GetResolverRuleAssociationCommandInput, GetResolverRuleAssociationCommandOutput } from "./commands/GetResolverRuleAssociationCommand";
|
|
45
|
+
import type { GetResolverRuleCommandInput, GetResolverRuleCommandOutput } from "./commands/GetResolverRuleCommand";
|
|
46
|
+
import type { GetResolverRulePolicyCommandInput, GetResolverRulePolicyCommandOutput } from "./commands/GetResolverRulePolicyCommand";
|
|
47
|
+
import type { ImportFirewallDomainsCommandInput, ImportFirewallDomainsCommandOutput } from "./commands/ImportFirewallDomainsCommand";
|
|
48
|
+
import type { ListFirewallConfigsCommandInput, ListFirewallConfigsCommandOutput } from "./commands/ListFirewallConfigsCommand";
|
|
49
|
+
import type { ListFirewallDomainListsCommandInput, ListFirewallDomainListsCommandOutput } from "./commands/ListFirewallDomainListsCommand";
|
|
50
|
+
import type { ListFirewallDomainsCommandInput, ListFirewallDomainsCommandOutput } from "./commands/ListFirewallDomainsCommand";
|
|
51
|
+
import type { ListFirewallRuleGroupAssociationsCommandInput, ListFirewallRuleGroupAssociationsCommandOutput } from "./commands/ListFirewallRuleGroupAssociationsCommand";
|
|
52
|
+
import type { ListFirewallRuleGroupsCommandInput, ListFirewallRuleGroupsCommandOutput } from "./commands/ListFirewallRuleGroupsCommand";
|
|
53
|
+
import type { ListFirewallRulesCommandInput, ListFirewallRulesCommandOutput } from "./commands/ListFirewallRulesCommand";
|
|
54
|
+
import type { ListOutpostResolversCommandInput, ListOutpostResolversCommandOutput } from "./commands/ListOutpostResolversCommand";
|
|
55
|
+
import type { ListResolverConfigsCommandInput, ListResolverConfigsCommandOutput } from "./commands/ListResolverConfigsCommand";
|
|
56
|
+
import type { ListResolverDnssecConfigsCommandInput, ListResolverDnssecConfigsCommandOutput } from "./commands/ListResolverDnssecConfigsCommand";
|
|
57
|
+
import type { ListResolverEndpointIpAddressesCommandInput, ListResolverEndpointIpAddressesCommandOutput } from "./commands/ListResolverEndpointIpAddressesCommand";
|
|
58
|
+
import type { ListResolverEndpointsCommandInput, ListResolverEndpointsCommandOutput } from "./commands/ListResolverEndpointsCommand";
|
|
59
|
+
import type { ListResolverQueryLogConfigAssociationsCommandInput, ListResolverQueryLogConfigAssociationsCommandOutput } from "./commands/ListResolverQueryLogConfigAssociationsCommand";
|
|
60
|
+
import type { ListResolverQueryLogConfigsCommandInput, ListResolverQueryLogConfigsCommandOutput } from "./commands/ListResolverQueryLogConfigsCommand";
|
|
61
|
+
import type { ListResolverRuleAssociationsCommandInput, ListResolverRuleAssociationsCommandOutput } from "./commands/ListResolverRuleAssociationsCommand";
|
|
62
|
+
import type { ListResolverRulesCommandInput, ListResolverRulesCommandOutput } from "./commands/ListResolverRulesCommand";
|
|
63
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
64
|
+
import type { PutFirewallRuleGroupPolicyCommandInput, PutFirewallRuleGroupPolicyCommandOutput } from "./commands/PutFirewallRuleGroupPolicyCommand";
|
|
65
|
+
import type { PutResolverQueryLogConfigPolicyCommandInput, PutResolverQueryLogConfigPolicyCommandOutput } from "./commands/PutResolverQueryLogConfigPolicyCommand";
|
|
66
|
+
import type { PutResolverRulePolicyCommandInput, PutResolverRulePolicyCommandOutput } from "./commands/PutResolverRulePolicyCommand";
|
|
67
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
68
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
69
|
+
import type { UpdateFirewallConfigCommandInput, UpdateFirewallConfigCommandOutput } from "./commands/UpdateFirewallConfigCommand";
|
|
70
|
+
import type { UpdateFirewallDomainsCommandInput, UpdateFirewallDomainsCommandOutput } from "./commands/UpdateFirewallDomainsCommand";
|
|
71
|
+
import type { UpdateFirewallRuleCommandInput, UpdateFirewallRuleCommandOutput } from "./commands/UpdateFirewallRuleCommand";
|
|
72
|
+
import type { UpdateFirewallRuleGroupAssociationCommandInput, UpdateFirewallRuleGroupAssociationCommandOutput } from "./commands/UpdateFirewallRuleGroupAssociationCommand";
|
|
73
|
+
import type { UpdateOutpostResolverCommandInput, UpdateOutpostResolverCommandOutput } from "./commands/UpdateOutpostResolverCommand";
|
|
74
|
+
import type { UpdateResolverConfigCommandInput, UpdateResolverConfigCommandOutput } from "./commands/UpdateResolverConfigCommand";
|
|
75
|
+
import type { UpdateResolverDnssecConfigCommandInput, UpdateResolverDnssecConfigCommandOutput } from "./commands/UpdateResolverDnssecConfigCommand";
|
|
76
|
+
import type { UpdateResolverEndpointCommandInput, UpdateResolverEndpointCommandOutput } from "./commands/UpdateResolverEndpointCommand";
|
|
77
|
+
import type { UpdateResolverRuleCommandInput, UpdateResolverRuleCommandOutput } from "./commands/UpdateResolverRuleCommand";
|
|
78
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
79
79
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
80
80
|
export { __Client };
|
|
81
81
|
/**
|
|
@@ -184,7 +184,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
184
184
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
185
185
|
* @internal
|
|
186
186
|
*/
|
|
187
|
-
defaultUserAgentProvider?:
|
|
187
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
188
188
|
/**
|
|
189
189
|
* Default credentials provider; Not available in browser runtime.
|
|
190
190
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { Route53ResolverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
*/
|
|
32
32
|
export * from "./Route53ResolverClient";
|
|
33
33
|
export * from "./Route53Resolver";
|
|
34
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
34
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
35
35
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
36
36
|
export type { Route53ResolverExtensionConfiguration } from "./extensionConfiguration";
|
|
37
37
|
export * from "./commands";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Action, AutodefinedReverseFlag, BlockOverrideDnsType, BlockResponse, ConfidenceThreshold, DnsThreatProtection, FirewallDomainImportOperation, FirewallDomainListStatus, FirewallDomainRedirectionAction, FirewallDomainUpdateOperation, FirewallFailOpenStatus, FirewallRuleGroupAssociationStatus, FirewallRuleGroupStatus, IpAddressStatus, MutationProtectionStatus, OutpostResolverStatus, Protocol, ResolverAutodefinedReverseStatus, ResolverDNSSECValidationStatus, ResolverEndpointDirection, ResolverEndpointStatus, ResolverEndpointType, ResolverQueryLogConfigAssociationError, ResolverQueryLogConfigAssociationStatus, ResolverQueryLogConfigStatus, ResolverRuleAssociationStatus, ResolverRuleStatus, RuleTypeOption, ShareStatus, SortOrder, Validation } from "./enums";
|
|
1
|
+
import type { Action, AutodefinedReverseFlag, BlockOverrideDnsType, BlockResponse, ConfidenceThreshold, DnsThreatProtection, FirewallDomainImportOperation, FirewallDomainListStatus, FirewallDomainRedirectionAction, FirewallDomainUpdateOperation, FirewallFailOpenStatus, FirewallRuleGroupAssociationStatus, FirewallRuleGroupStatus, IpAddressStatus, MutationProtectionStatus, OutpostResolverStatus, Protocol, ResolverAutodefinedReverseStatus, ResolverDNSSECValidationStatus, ResolverEndpointDirection, ResolverEndpointStatus, ResolverEndpointType, ResolverQueryLogConfigAssociationError, ResolverQueryLogConfigAssociationStatus, ResolverQueryLogConfigStatus, ResolverRuleAssociationStatus, ResolverRuleStatus, RuleTypeOption, ShareStatus, SortOrder, Validation } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>One tag that you want to add to the specified resource. A tag consists of a <code>Key</code> (a name for the tag) and a <code>Value</code>.</p>
|
|
4
4
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFirewallConfigsCommandInput, ListFirewallConfigsCommandOutput } from "../commands/ListFirewallConfigsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFirewallDomainListsCommandInput, ListFirewallDomainListsCommandOutput } from "../commands/ListFirewallDomainListsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFirewallDomainsCommandInput, ListFirewallDomainsCommandOutput } from "../commands/ListFirewallDomainsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFirewallRuleGroupAssociationsCommandInput, ListFirewallRuleGroupAssociationsCommandOutput } from "../commands/ListFirewallRuleGroupAssociationsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFirewallRuleGroupsCommandInput, ListFirewallRuleGroupsCommandOutput } from "../commands/ListFirewallRuleGroupsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFirewallRulesCommandInput, ListFirewallRulesCommandOutput } from "../commands/ListFirewallRulesCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListOutpostResolversCommandInput, ListOutpostResolversCommandOutput } from "../commands/ListOutpostResolversCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverConfigsCommandInput, ListResolverConfigsCommandOutput } from "../commands/ListResolverConfigsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverDnssecConfigsCommandInput, ListResolverDnssecConfigsCommandOutput } from "../commands/ListResolverDnssecConfigsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverEndpointIpAddressesCommandInput, ListResolverEndpointIpAddressesCommandOutput } from "../commands/ListResolverEndpointIpAddressesCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverEndpointsCommandInput, ListResolverEndpointsCommandOutput } from "../commands/ListResolverEndpointsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverQueryLogConfigAssociationsCommandInput, ListResolverQueryLogConfigAssociationsCommandOutput } from "../commands/ListResolverQueryLogConfigAssociationsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverQueryLogConfigsCommandInput, ListResolverQueryLogConfigsCommandOutput } from "../commands/ListResolverQueryLogConfigsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverRuleAssociationsCommandInput, ListResolverRuleAssociationsCommandOutput } from "../commands/ListResolverRuleAssociationsCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListResolverRulesCommandInput, ListResolverRulesCommandOutput } from "../commands/ListResolverRulesCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
3
|
-
import { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { Route53ResolverPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -480,7 +479,7 @@ export interface ClientDefaults
|
|
|
480
479
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
481
480
|
region?: string | __Provider<string>;
|
|
482
481
|
profile?: string;
|
|
483
|
-
defaultUserAgentProvider?:
|
|
482
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
484
483
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
485
484
|
maxAttempts?: number | __Provider<number>;
|
|
486
485
|
retryMode?: string | __Provider<string>;
|
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.1020.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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.13",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|