@aws-sdk/client-route53globalresolver 3.942.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/LICENSE +201 -0
- package/README.md +581 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +2674 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +36 -0
- package/dist-es/Route53GlobalResolver.js +101 -0
- package/dist-es/Route53GlobalResolverClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AssociateHostedZoneCommand.js +16 -0
- package/dist-es/commands/BatchCreateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/BatchDeleteFirewallRuleCommand.js +16 -0
- package/dist-es/commands/BatchUpdateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/CreateAccessSourceCommand.js +16 -0
- package/dist-es/commands/CreateAccessTokenCommand.js +16 -0
- package/dist-es/commands/CreateDNSViewCommand.js +16 -0
- package/dist-es/commands/CreateFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/CreateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/CreateGlobalResolverCommand.js +16 -0
- package/dist-es/commands/DeleteAccessSourceCommand.js +16 -0
- package/dist-es/commands/DeleteAccessTokenCommand.js +16 -0
- package/dist-es/commands/DeleteDNSViewCommand.js +16 -0
- package/dist-es/commands/DeleteFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/DeleteFirewallRuleCommand.js +16 -0
- package/dist-es/commands/DeleteGlobalResolverCommand.js +16 -0
- package/dist-es/commands/DisableDNSViewCommand.js +16 -0
- package/dist-es/commands/DisassociateHostedZoneCommand.js +16 -0
- package/dist-es/commands/EnableDNSViewCommand.js +16 -0
- package/dist-es/commands/GetAccessSourceCommand.js +16 -0
- package/dist-es/commands/GetAccessTokenCommand.js +16 -0
- package/dist-es/commands/GetDNSViewCommand.js +16 -0
- package/dist-es/commands/GetFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/GetFirewallRuleCommand.js +16 -0
- package/dist-es/commands/GetGlobalResolverCommand.js +16 -0
- package/dist-es/commands/GetHostedZoneAssociationCommand.js +16 -0
- package/dist-es/commands/GetManagedFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/ImportFirewallDomainsCommand.js +16 -0
- package/dist-es/commands/ListAccessSourcesCommand.js +16 -0
- package/dist-es/commands/ListAccessTokensCommand.js +16 -0
- package/dist-es/commands/ListDNSViewsCommand.js +16 -0
- package/dist-es/commands/ListFirewallDomainListsCommand.js +16 -0
- package/dist-es/commands/ListFirewallDomainsCommand.js +16 -0
- package/dist-es/commands/ListFirewallRulesCommand.js +16 -0
- package/dist-es/commands/ListGlobalResolversCommand.js +16 -0
- package/dist-es/commands/ListHostedZoneAssociationsCommand.js +16 -0
- package/dist-es/commands/ListManagedFirewallDomainListsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateAccessSourceCommand.js +16 -0
- package/dist-es/commands/UpdateAccessTokenCommand.js +16 -0
- package/dist-es/commands/UpdateDNSViewCommand.js +16 -0
- package/dist-es/commands/UpdateFirewallDomainsCommand.js +16 -0
- package/dist-es/commands/UpdateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/UpdateGlobalResolverCommand.js +16 -0
- package/dist-es/commands/UpdateHostedZoneAssociationCommand.js +16 -0
- package/dist-es/commands/index.js +47 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/Route53GlobalResolverServiceException.js +8 -0
- package/dist-es/models/enums.js +74 -0
- package/dist-es/models/errors.js +117 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAccessSourcesPaginator.js +4 -0
- package/dist-es/pagination/ListAccessTokensPaginator.js +4 -0
- package/dist-es/pagination/ListDNSViewsPaginator.js +4 -0
- package/dist-es/pagination/ListFirewallDomainListsPaginator.js +4 -0
- package/dist-es/pagination/ListFirewallDomainsPaginator.js +4 -0
- package/dist-es/pagination/ListFirewallRulesPaginator.js +4 -0
- package/dist-es/pagination/ListGlobalResolversPaginator.js +4 -0
- package/dist-es/pagination/ListHostedZoneAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListManagedFirewallDomainListsPaginator.js +4 -0
- package/dist-es/pagination/index.js +10 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +32 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1651 -0
- package/dist-types/Route53GlobalResolver.d.ts +342 -0
- package/dist-types/Route53GlobalResolverClient.d.ts +243 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AssociateHostedZoneCommand.d.ts +104 -0
- package/dist-types/commands/BatchCreateFirewallRuleCommand.d.ts +156 -0
- package/dist-types/commands/BatchDeleteFirewallRuleCommand.d.ts +113 -0
- package/dist-types/commands/BatchUpdateFirewallRuleCommand.d.ts +151 -0
- package/dist-types/commands/CreateAccessSourceCommand.d.ts +144 -0
- package/dist-types/commands/CreateAccessTokenCommand.d.ts +109 -0
- package/dist-types/commands/CreateDNSViewCommand.d.ts +115 -0
- package/dist-types/commands/CreateFirewallDomainListCommand.d.ts +109 -0
- package/dist-types/commands/CreateFirewallRuleCommand.d.ts +124 -0
- package/dist-types/commands/CreateGlobalResolverCommand.d.ts +116 -0
- package/dist-types/commands/DeleteAccessSourceCommand.d.ts +101 -0
- package/dist-types/commands/DeleteAccessTokenCommand.d.ts +91 -0
- package/dist-types/commands/DeleteDNSViewCommand.d.ts +103 -0
- package/dist-types/commands/DeleteFirewallDomainListCommand.d.ts +95 -0
- package/dist-types/commands/DeleteFirewallRuleCommand.d.ts +108 -0
- package/dist-types/commands/DeleteGlobalResolverCommand.d.ts +107 -0
- package/dist-types/commands/DisableDNSViewCommand.d.ts +103 -0
- package/dist-types/commands/DisassociateHostedZoneCommand.d.ts +100 -0
- package/dist-types/commands/EnableDNSViewCommand.d.ts +103 -0
- package/dist-types/commands/GetAccessSourceCommand.d.ts +98 -0
- package/dist-types/commands/GetAccessTokenCommand.d.ts +99 -0
- package/dist-types/commands/GetDNSViewCommand.d.ts +100 -0
- package/dist-types/commands/GetFirewallDomainListCommand.d.ts +99 -0
- package/dist-types/commands/GetFirewallRuleCommand.d.ts +105 -0
- package/dist-types/commands/GetGlobalResolverCommand.d.ts +104 -0
- package/dist-types/commands/GetHostedZoneAssociationCommand.d.ts +96 -0
- package/dist-types/commands/GetManagedFirewallDomainListCommand.d.ts +92 -0
- package/dist-types/commands/ImportFirewallDomainsCommand.d.ts +96 -0
- package/dist-types/commands/ListAccessSourcesCommand.d.ts +106 -0
- package/dist-types/commands/ListAccessTokensCommand.d.ts +109 -0
- package/dist-types/commands/ListDNSViewsCommand.d.ts +107 -0
- package/dist-types/commands/ListFirewallDomainListsCommand.d.ts +103 -0
- package/dist-types/commands/ListFirewallDomainsCommand.d.ts +94 -0
- package/dist-types/commands/ListFirewallRulesCommand.d.ts +117 -0
- package/dist-types/commands/ListGlobalResolversCommand.d.ts +107 -0
- package/dist-types/commands/ListHostedZoneAssociationsCommand.d.ts +103 -0
- package/dist-types/commands/ListManagedFirewallDomainListsCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +79 -0
- package/dist-types/commands/TagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +81 -0
- package/dist-types/commands/UpdateAccessSourceCommand.d.ts +108 -0
- package/dist-types/commands/UpdateAccessTokenCommand.d.ts +94 -0
- package/dist-types/commands/UpdateDNSViewCommand.d.ts +108 -0
- package/dist-types/commands/UpdateFirewallDomainsCommand.d.ts +98 -0
- package/dist-types/commands/UpdateFirewallRuleCommand.d.ts +119 -0
- package/dist-types/commands/UpdateGlobalResolverCommand.d.ts +110 -0
- package/dist-types/commands/UpdateHostedZoneAssociationCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +47 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/Route53GlobalResolverServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +194 -0
- package/dist-types/models/errors.d.ts +162 -0
- package/dist-types/models/models_0.d.ts +3784 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAccessSourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAccessTokensPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDNSViewsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFirewallDomainListsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFirewallDomainsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFirewallRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGlobalResolversPaginator.d.ts +7 -0
- package/dist-types/pagination/ListHostedZoneAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListManagedFirewallDomainListsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +10 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +192 -0
- package/dist-types/ts3.4/Route53GlobalResolver.d.ts +809 -0
- package/dist-types/ts3.4/Route53GlobalResolverClient.d.ts +408 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AssociateHostedZoneCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchCreateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchDeleteFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchUpdateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAccessSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAccessTokenCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGlobalResolverCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAccessSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAccessTokenCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGlobalResolverCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisassociateHostedZoneCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAccessSourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetFirewallRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetGlobalResolverCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetHostedZoneAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetManagedFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ImportFirewallDomainsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAccessSourcesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAccessTokensCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDNSViewsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListFirewallDomainListsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFirewallDomainsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFirewallRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListGlobalResolversCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListHostedZoneAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListManagedFirewallDomainListsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAccessSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAccessTokenCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateFirewallDomainsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGlobalResolverCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateHostedZoneAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +47 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/Route53GlobalResolverServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +101 -0
- package/dist-types/ts3.4/models/errors.d.ts +69 -0
- package/dist-types/ts3.4/models/models_0.d.ts +879 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAccessSourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAccessTokensPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDNSViewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFirewallDomainListsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFirewallDomainsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFirewallRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGlobalResolversPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListHostedZoneAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListManagedFirewallDomainListsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +10 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +199 -0
- package/package.json +99 -0
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { AssociateHostedZoneCommandInput, AssociateHostedZoneCommandOutput } from "./commands/AssociateHostedZoneCommand";
|
|
3
|
+
import { BatchCreateFirewallRuleCommandInput, BatchCreateFirewallRuleCommandOutput } from "./commands/BatchCreateFirewallRuleCommand";
|
|
4
|
+
import { BatchDeleteFirewallRuleCommandInput, BatchDeleteFirewallRuleCommandOutput } from "./commands/BatchDeleteFirewallRuleCommand";
|
|
5
|
+
import { BatchUpdateFirewallRuleCommandInput, BatchUpdateFirewallRuleCommandOutput } from "./commands/BatchUpdateFirewallRuleCommand";
|
|
6
|
+
import { CreateAccessSourceCommandInput, CreateAccessSourceCommandOutput } from "./commands/CreateAccessSourceCommand";
|
|
7
|
+
import { CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput } from "./commands/CreateAccessTokenCommand";
|
|
8
|
+
import { CreateDNSViewCommandInput, CreateDNSViewCommandOutput } from "./commands/CreateDNSViewCommand";
|
|
9
|
+
import { CreateFirewallDomainListCommandInput, CreateFirewallDomainListCommandOutput } from "./commands/CreateFirewallDomainListCommand";
|
|
10
|
+
import { CreateFirewallRuleCommandInput, CreateFirewallRuleCommandOutput } from "./commands/CreateFirewallRuleCommand";
|
|
11
|
+
import { CreateGlobalResolverCommandInput, CreateGlobalResolverCommandOutput } from "./commands/CreateGlobalResolverCommand";
|
|
12
|
+
import { DeleteAccessSourceCommandInput, DeleteAccessSourceCommandOutput } from "./commands/DeleteAccessSourceCommand";
|
|
13
|
+
import { DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput } from "./commands/DeleteAccessTokenCommand";
|
|
14
|
+
import { DeleteDNSViewCommandInput, DeleteDNSViewCommandOutput } from "./commands/DeleteDNSViewCommand";
|
|
15
|
+
import { DeleteFirewallDomainListCommandInput, DeleteFirewallDomainListCommandOutput } from "./commands/DeleteFirewallDomainListCommand";
|
|
16
|
+
import { DeleteFirewallRuleCommandInput, DeleteFirewallRuleCommandOutput } from "./commands/DeleteFirewallRuleCommand";
|
|
17
|
+
import { DeleteGlobalResolverCommandInput, DeleteGlobalResolverCommandOutput } from "./commands/DeleteGlobalResolverCommand";
|
|
18
|
+
import { DisableDNSViewCommandInput, DisableDNSViewCommandOutput } from "./commands/DisableDNSViewCommand";
|
|
19
|
+
import { DisassociateHostedZoneCommandInput, DisassociateHostedZoneCommandOutput } from "./commands/DisassociateHostedZoneCommand";
|
|
20
|
+
import { EnableDNSViewCommandInput, EnableDNSViewCommandOutput } from "./commands/EnableDNSViewCommand";
|
|
21
|
+
import { GetAccessSourceCommandInput, GetAccessSourceCommandOutput } from "./commands/GetAccessSourceCommand";
|
|
22
|
+
import { GetAccessTokenCommandInput, GetAccessTokenCommandOutput } from "./commands/GetAccessTokenCommand";
|
|
23
|
+
import { GetDNSViewCommandInput, GetDNSViewCommandOutput } from "./commands/GetDNSViewCommand";
|
|
24
|
+
import { GetFirewallDomainListCommandInput, GetFirewallDomainListCommandOutput } from "./commands/GetFirewallDomainListCommand";
|
|
25
|
+
import { GetFirewallRuleCommandInput, GetFirewallRuleCommandOutput } from "./commands/GetFirewallRuleCommand";
|
|
26
|
+
import { GetGlobalResolverCommandInput, GetGlobalResolverCommandOutput } from "./commands/GetGlobalResolverCommand";
|
|
27
|
+
import { GetHostedZoneAssociationCommandInput, GetHostedZoneAssociationCommandOutput } from "./commands/GetHostedZoneAssociationCommand";
|
|
28
|
+
import { GetManagedFirewallDomainListCommandInput, GetManagedFirewallDomainListCommandOutput } from "./commands/GetManagedFirewallDomainListCommand";
|
|
29
|
+
import { ImportFirewallDomainsCommandInput, ImportFirewallDomainsCommandOutput } from "./commands/ImportFirewallDomainsCommand";
|
|
30
|
+
import { ListAccessSourcesCommandInput, ListAccessSourcesCommandOutput } from "./commands/ListAccessSourcesCommand";
|
|
31
|
+
import { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "./commands/ListAccessTokensCommand";
|
|
32
|
+
import { ListDNSViewsCommandInput, ListDNSViewsCommandOutput } from "./commands/ListDNSViewsCommand";
|
|
33
|
+
import { ListFirewallDomainListsCommandInput, ListFirewallDomainListsCommandOutput } from "./commands/ListFirewallDomainListsCommand";
|
|
34
|
+
import { ListFirewallDomainsCommandInput, ListFirewallDomainsCommandOutput } from "./commands/ListFirewallDomainsCommand";
|
|
35
|
+
import { ListFirewallRulesCommandInput, ListFirewallRulesCommandOutput } from "./commands/ListFirewallRulesCommand";
|
|
36
|
+
import { ListGlobalResolversCommandInput, ListGlobalResolversCommandOutput } from "./commands/ListGlobalResolversCommand";
|
|
37
|
+
import { ListHostedZoneAssociationsCommandInput, ListHostedZoneAssociationsCommandOutput } from "./commands/ListHostedZoneAssociationsCommand";
|
|
38
|
+
import { ListManagedFirewallDomainListsCommandInput, ListManagedFirewallDomainListsCommandOutput } from "./commands/ListManagedFirewallDomainListsCommand";
|
|
39
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
40
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
41
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
42
|
+
import { UpdateAccessSourceCommandInput, UpdateAccessSourceCommandOutput } from "./commands/UpdateAccessSourceCommand";
|
|
43
|
+
import { UpdateAccessTokenCommandInput, UpdateAccessTokenCommandOutput } from "./commands/UpdateAccessTokenCommand";
|
|
44
|
+
import { UpdateDNSViewCommandInput, UpdateDNSViewCommandOutput } from "./commands/UpdateDNSViewCommand";
|
|
45
|
+
import { UpdateFirewallDomainsCommandInput, UpdateFirewallDomainsCommandOutput } from "./commands/UpdateFirewallDomainsCommand";
|
|
46
|
+
import { UpdateFirewallRuleCommandInput, UpdateFirewallRuleCommandOutput } from "./commands/UpdateFirewallRuleCommand";
|
|
47
|
+
import { UpdateGlobalResolverCommandInput, UpdateGlobalResolverCommandOutput } from "./commands/UpdateGlobalResolverCommand";
|
|
48
|
+
import { UpdateHostedZoneAssociationCommandInput, UpdateHostedZoneAssociationCommandOutput } from "./commands/UpdateHostedZoneAssociationCommand";
|
|
49
|
+
import { Route53GlobalResolverClient } from "./Route53GlobalResolverClient";
|
|
50
|
+
export interface Route53GlobalResolver {
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link AssociateHostedZoneCommand}
|
|
53
|
+
*/
|
|
54
|
+
associateHostedZone(args: AssociateHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<AssociateHostedZoneCommandOutput>;
|
|
55
|
+
associateHostedZone(args: AssociateHostedZoneCommandInput, cb: (err: any, data?: AssociateHostedZoneCommandOutput) => void): void;
|
|
56
|
+
associateHostedZone(args: AssociateHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateHostedZoneCommandOutput) => void): void;
|
|
57
|
+
/**
|
|
58
|
+
* @see {@link BatchCreateFirewallRuleCommand}
|
|
59
|
+
*/
|
|
60
|
+
batchCreateFirewallRule(args: BatchCreateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateFirewallRuleCommandOutput>;
|
|
61
|
+
batchCreateFirewallRule(args: BatchCreateFirewallRuleCommandInput, cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void): void;
|
|
62
|
+
batchCreateFirewallRule(args: BatchCreateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void): void;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link BatchDeleteFirewallRuleCommand}
|
|
65
|
+
*/
|
|
66
|
+
batchDeleteFirewallRule(args: BatchDeleteFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteFirewallRuleCommandOutput>;
|
|
67
|
+
batchDeleteFirewallRule(args: BatchDeleteFirewallRuleCommandInput, cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void): void;
|
|
68
|
+
batchDeleteFirewallRule(args: BatchDeleteFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void): void;
|
|
69
|
+
/**
|
|
70
|
+
* @see {@link BatchUpdateFirewallRuleCommand}
|
|
71
|
+
*/
|
|
72
|
+
batchUpdateFirewallRule(args: BatchUpdateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateFirewallRuleCommandOutput>;
|
|
73
|
+
batchUpdateFirewallRule(args: BatchUpdateFirewallRuleCommandInput, cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void): void;
|
|
74
|
+
batchUpdateFirewallRule(args: BatchUpdateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void): void;
|
|
75
|
+
/**
|
|
76
|
+
* @see {@link CreateAccessSourceCommand}
|
|
77
|
+
*/
|
|
78
|
+
createAccessSource(args: CreateAccessSourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateAccessSourceCommandOutput>;
|
|
79
|
+
createAccessSource(args: CreateAccessSourceCommandInput, cb: (err: any, data?: CreateAccessSourceCommandOutput) => void): void;
|
|
80
|
+
createAccessSource(args: CreateAccessSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAccessSourceCommandOutput) => void): void;
|
|
81
|
+
/**
|
|
82
|
+
* @see {@link CreateAccessTokenCommand}
|
|
83
|
+
*/
|
|
84
|
+
createAccessToken(args: CreateAccessTokenCommandInput, options?: __HttpHandlerOptions): Promise<CreateAccessTokenCommandOutput>;
|
|
85
|
+
createAccessToken(args: CreateAccessTokenCommandInput, cb: (err: any, data?: CreateAccessTokenCommandOutput) => void): void;
|
|
86
|
+
createAccessToken(args: CreateAccessTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAccessTokenCommandOutput) => void): void;
|
|
87
|
+
/**
|
|
88
|
+
* @see {@link CreateDNSViewCommand}
|
|
89
|
+
*/
|
|
90
|
+
createDNSView(args: CreateDNSViewCommandInput, options?: __HttpHandlerOptions): Promise<CreateDNSViewCommandOutput>;
|
|
91
|
+
createDNSView(args: CreateDNSViewCommandInput, cb: (err: any, data?: CreateDNSViewCommandOutput) => void): void;
|
|
92
|
+
createDNSView(args: CreateDNSViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDNSViewCommandOutput) => void): void;
|
|
93
|
+
/**
|
|
94
|
+
* @see {@link CreateFirewallDomainListCommand}
|
|
95
|
+
*/
|
|
96
|
+
createFirewallDomainList(args: CreateFirewallDomainListCommandInput, options?: __HttpHandlerOptions): Promise<CreateFirewallDomainListCommandOutput>;
|
|
97
|
+
createFirewallDomainList(args: CreateFirewallDomainListCommandInput, cb: (err: any, data?: CreateFirewallDomainListCommandOutput) => void): void;
|
|
98
|
+
createFirewallDomainList(args: CreateFirewallDomainListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallDomainListCommandOutput) => void): void;
|
|
99
|
+
/**
|
|
100
|
+
* @see {@link CreateFirewallRuleCommand}
|
|
101
|
+
*/
|
|
102
|
+
createFirewallRule(args: CreateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateFirewallRuleCommandOutput>;
|
|
103
|
+
createFirewallRule(args: CreateFirewallRuleCommandInput, cb: (err: any, data?: CreateFirewallRuleCommandOutput) => void): void;
|
|
104
|
+
createFirewallRule(args: CreateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallRuleCommandOutput) => void): void;
|
|
105
|
+
/**
|
|
106
|
+
* @see {@link CreateGlobalResolverCommand}
|
|
107
|
+
*/
|
|
108
|
+
createGlobalResolver(args: CreateGlobalResolverCommandInput, options?: __HttpHandlerOptions): Promise<CreateGlobalResolverCommandOutput>;
|
|
109
|
+
createGlobalResolver(args: CreateGlobalResolverCommandInput, cb: (err: any, data?: CreateGlobalResolverCommandOutput) => void): void;
|
|
110
|
+
createGlobalResolver(args: CreateGlobalResolverCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGlobalResolverCommandOutput) => void): void;
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link DeleteAccessSourceCommand}
|
|
113
|
+
*/
|
|
114
|
+
deleteAccessSource(args: DeleteAccessSourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAccessSourceCommandOutput>;
|
|
115
|
+
deleteAccessSource(args: DeleteAccessSourceCommandInput, cb: (err: any, data?: DeleteAccessSourceCommandOutput) => void): void;
|
|
116
|
+
deleteAccessSource(args: DeleteAccessSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAccessSourceCommandOutput) => void): void;
|
|
117
|
+
/**
|
|
118
|
+
* @see {@link DeleteAccessTokenCommand}
|
|
119
|
+
*/
|
|
120
|
+
deleteAccessToken(args: DeleteAccessTokenCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAccessTokenCommandOutput>;
|
|
121
|
+
deleteAccessToken(args: DeleteAccessTokenCommandInput, cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void): void;
|
|
122
|
+
deleteAccessToken(args: DeleteAccessTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void): void;
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link DeleteDNSViewCommand}
|
|
125
|
+
*/
|
|
126
|
+
deleteDNSView(args: DeleteDNSViewCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDNSViewCommandOutput>;
|
|
127
|
+
deleteDNSView(args: DeleteDNSViewCommandInput, cb: (err: any, data?: DeleteDNSViewCommandOutput) => void): void;
|
|
128
|
+
deleteDNSView(args: DeleteDNSViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDNSViewCommandOutput) => void): void;
|
|
129
|
+
/**
|
|
130
|
+
* @see {@link DeleteFirewallDomainListCommand}
|
|
131
|
+
*/
|
|
132
|
+
deleteFirewallDomainList(args: DeleteFirewallDomainListCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFirewallDomainListCommandOutput>;
|
|
133
|
+
deleteFirewallDomainList(args: DeleteFirewallDomainListCommandInput, cb: (err: any, data?: DeleteFirewallDomainListCommandOutput) => void): void;
|
|
134
|
+
deleteFirewallDomainList(args: DeleteFirewallDomainListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFirewallDomainListCommandOutput) => void): void;
|
|
135
|
+
/**
|
|
136
|
+
* @see {@link DeleteFirewallRuleCommand}
|
|
137
|
+
*/
|
|
138
|
+
deleteFirewallRule(args: DeleteFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFirewallRuleCommandOutput>;
|
|
139
|
+
deleteFirewallRule(args: DeleteFirewallRuleCommandInput, cb: (err: any, data?: DeleteFirewallRuleCommandOutput) => void): void;
|
|
140
|
+
deleteFirewallRule(args: DeleteFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFirewallRuleCommandOutput) => void): void;
|
|
141
|
+
/**
|
|
142
|
+
* @see {@link DeleteGlobalResolverCommand}
|
|
143
|
+
*/
|
|
144
|
+
deleteGlobalResolver(args: DeleteGlobalResolverCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGlobalResolverCommandOutput>;
|
|
145
|
+
deleteGlobalResolver(args: DeleteGlobalResolverCommandInput, cb: (err: any, data?: DeleteGlobalResolverCommandOutput) => void): void;
|
|
146
|
+
deleteGlobalResolver(args: DeleteGlobalResolverCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGlobalResolverCommandOutput) => void): void;
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link DisableDNSViewCommand}
|
|
149
|
+
*/
|
|
150
|
+
disableDNSView(args: DisableDNSViewCommandInput, options?: __HttpHandlerOptions): Promise<DisableDNSViewCommandOutput>;
|
|
151
|
+
disableDNSView(args: DisableDNSViewCommandInput, cb: (err: any, data?: DisableDNSViewCommandOutput) => void): void;
|
|
152
|
+
disableDNSView(args: DisableDNSViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableDNSViewCommandOutput) => void): void;
|
|
153
|
+
/**
|
|
154
|
+
* @see {@link DisassociateHostedZoneCommand}
|
|
155
|
+
*/
|
|
156
|
+
disassociateHostedZone(args: DisassociateHostedZoneCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateHostedZoneCommandOutput>;
|
|
157
|
+
disassociateHostedZone(args: DisassociateHostedZoneCommandInput, cb: (err: any, data?: DisassociateHostedZoneCommandOutput) => void): void;
|
|
158
|
+
disassociateHostedZone(args: DisassociateHostedZoneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateHostedZoneCommandOutput) => void): void;
|
|
159
|
+
/**
|
|
160
|
+
* @see {@link EnableDNSViewCommand}
|
|
161
|
+
*/
|
|
162
|
+
enableDNSView(args: EnableDNSViewCommandInput, options?: __HttpHandlerOptions): Promise<EnableDNSViewCommandOutput>;
|
|
163
|
+
enableDNSView(args: EnableDNSViewCommandInput, cb: (err: any, data?: EnableDNSViewCommandOutput) => void): void;
|
|
164
|
+
enableDNSView(args: EnableDNSViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableDNSViewCommandOutput) => void): void;
|
|
165
|
+
/**
|
|
166
|
+
* @see {@link GetAccessSourceCommand}
|
|
167
|
+
*/
|
|
168
|
+
getAccessSource(args: GetAccessSourceCommandInput, options?: __HttpHandlerOptions): Promise<GetAccessSourceCommandOutput>;
|
|
169
|
+
getAccessSource(args: GetAccessSourceCommandInput, cb: (err: any, data?: GetAccessSourceCommandOutput) => void): void;
|
|
170
|
+
getAccessSource(args: GetAccessSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccessSourceCommandOutput) => void): void;
|
|
171
|
+
/**
|
|
172
|
+
* @see {@link GetAccessTokenCommand}
|
|
173
|
+
*/
|
|
174
|
+
getAccessToken(args: GetAccessTokenCommandInput, options?: __HttpHandlerOptions): Promise<GetAccessTokenCommandOutput>;
|
|
175
|
+
getAccessToken(args: GetAccessTokenCommandInput, cb: (err: any, data?: GetAccessTokenCommandOutput) => void): void;
|
|
176
|
+
getAccessToken(args: GetAccessTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccessTokenCommandOutput) => void): void;
|
|
177
|
+
/**
|
|
178
|
+
* @see {@link GetDNSViewCommand}
|
|
179
|
+
*/
|
|
180
|
+
getDNSView(args: GetDNSViewCommandInput, options?: __HttpHandlerOptions): Promise<GetDNSViewCommandOutput>;
|
|
181
|
+
getDNSView(args: GetDNSViewCommandInput, cb: (err: any, data?: GetDNSViewCommandOutput) => void): void;
|
|
182
|
+
getDNSView(args: GetDNSViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDNSViewCommandOutput) => void): void;
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link GetFirewallDomainListCommand}
|
|
185
|
+
*/
|
|
186
|
+
getFirewallDomainList(args: GetFirewallDomainListCommandInput, options?: __HttpHandlerOptions): Promise<GetFirewallDomainListCommandOutput>;
|
|
187
|
+
getFirewallDomainList(args: GetFirewallDomainListCommandInput, cb: (err: any, data?: GetFirewallDomainListCommandOutput) => void): void;
|
|
188
|
+
getFirewallDomainList(args: GetFirewallDomainListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallDomainListCommandOutput) => void): void;
|
|
189
|
+
/**
|
|
190
|
+
* @see {@link GetFirewallRuleCommand}
|
|
191
|
+
*/
|
|
192
|
+
getFirewallRule(args: GetFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetFirewallRuleCommandOutput>;
|
|
193
|
+
getFirewallRule(args: GetFirewallRuleCommandInput, cb: (err: any, data?: GetFirewallRuleCommandOutput) => void): void;
|
|
194
|
+
getFirewallRule(args: GetFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFirewallRuleCommandOutput) => void): void;
|
|
195
|
+
/**
|
|
196
|
+
* @see {@link GetGlobalResolverCommand}
|
|
197
|
+
*/
|
|
198
|
+
getGlobalResolver(args: GetGlobalResolverCommandInput, options?: __HttpHandlerOptions): Promise<GetGlobalResolverCommandOutput>;
|
|
199
|
+
getGlobalResolver(args: GetGlobalResolverCommandInput, cb: (err: any, data?: GetGlobalResolverCommandOutput) => void): void;
|
|
200
|
+
getGlobalResolver(args: GetGlobalResolverCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGlobalResolverCommandOutput) => void): void;
|
|
201
|
+
/**
|
|
202
|
+
* @see {@link GetHostedZoneAssociationCommand}
|
|
203
|
+
*/
|
|
204
|
+
getHostedZoneAssociation(args: GetHostedZoneAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetHostedZoneAssociationCommandOutput>;
|
|
205
|
+
getHostedZoneAssociation(args: GetHostedZoneAssociationCommandInput, cb: (err: any, data?: GetHostedZoneAssociationCommandOutput) => void): void;
|
|
206
|
+
getHostedZoneAssociation(args: GetHostedZoneAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHostedZoneAssociationCommandOutput) => void): void;
|
|
207
|
+
/**
|
|
208
|
+
* @see {@link GetManagedFirewallDomainListCommand}
|
|
209
|
+
*/
|
|
210
|
+
getManagedFirewallDomainList(args: GetManagedFirewallDomainListCommandInput, options?: __HttpHandlerOptions): Promise<GetManagedFirewallDomainListCommandOutput>;
|
|
211
|
+
getManagedFirewallDomainList(args: GetManagedFirewallDomainListCommandInput, cb: (err: any, data?: GetManagedFirewallDomainListCommandOutput) => void): void;
|
|
212
|
+
getManagedFirewallDomainList(args: GetManagedFirewallDomainListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedFirewallDomainListCommandOutput) => void): void;
|
|
213
|
+
/**
|
|
214
|
+
* @see {@link ImportFirewallDomainsCommand}
|
|
215
|
+
*/
|
|
216
|
+
importFirewallDomains(args: ImportFirewallDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ImportFirewallDomainsCommandOutput>;
|
|
217
|
+
importFirewallDomains(args: ImportFirewallDomainsCommandInput, cb: (err: any, data?: ImportFirewallDomainsCommandOutput) => void): void;
|
|
218
|
+
importFirewallDomains(args: ImportFirewallDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportFirewallDomainsCommandOutput) => void): void;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link ListAccessSourcesCommand}
|
|
221
|
+
*/
|
|
222
|
+
listAccessSources(): Promise<ListAccessSourcesCommandOutput>;
|
|
223
|
+
listAccessSources(args: ListAccessSourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListAccessSourcesCommandOutput>;
|
|
224
|
+
listAccessSources(args: ListAccessSourcesCommandInput, cb: (err: any, data?: ListAccessSourcesCommandOutput) => void): void;
|
|
225
|
+
listAccessSources(args: ListAccessSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessSourcesCommandOutput) => void): void;
|
|
226
|
+
/**
|
|
227
|
+
* @see {@link ListAccessTokensCommand}
|
|
228
|
+
*/
|
|
229
|
+
listAccessTokens(args: ListAccessTokensCommandInput, options?: __HttpHandlerOptions): Promise<ListAccessTokensCommandOutput>;
|
|
230
|
+
listAccessTokens(args: ListAccessTokensCommandInput, cb: (err: any, data?: ListAccessTokensCommandOutput) => void): void;
|
|
231
|
+
listAccessTokens(args: ListAccessTokensCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessTokensCommandOutput) => void): void;
|
|
232
|
+
/**
|
|
233
|
+
* @see {@link ListDNSViewsCommand}
|
|
234
|
+
*/
|
|
235
|
+
listDNSViews(args: ListDNSViewsCommandInput, options?: __HttpHandlerOptions): Promise<ListDNSViewsCommandOutput>;
|
|
236
|
+
listDNSViews(args: ListDNSViewsCommandInput, cb: (err: any, data?: ListDNSViewsCommandOutput) => void): void;
|
|
237
|
+
listDNSViews(args: ListDNSViewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDNSViewsCommandOutput) => void): void;
|
|
238
|
+
/**
|
|
239
|
+
* @see {@link ListFirewallDomainListsCommand}
|
|
240
|
+
*/
|
|
241
|
+
listFirewallDomainLists(): Promise<ListFirewallDomainListsCommandOutput>;
|
|
242
|
+
listFirewallDomainLists(args: ListFirewallDomainListsCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallDomainListsCommandOutput>;
|
|
243
|
+
listFirewallDomainLists(args: ListFirewallDomainListsCommandInput, cb: (err: any, data?: ListFirewallDomainListsCommandOutput) => void): void;
|
|
244
|
+
listFirewallDomainLists(args: ListFirewallDomainListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallDomainListsCommandOutput) => void): void;
|
|
245
|
+
/**
|
|
246
|
+
* @see {@link ListFirewallDomainsCommand}
|
|
247
|
+
*/
|
|
248
|
+
listFirewallDomains(args: ListFirewallDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallDomainsCommandOutput>;
|
|
249
|
+
listFirewallDomains(args: ListFirewallDomainsCommandInput, cb: (err: any, data?: ListFirewallDomainsCommandOutput) => void): void;
|
|
250
|
+
listFirewallDomains(args: ListFirewallDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallDomainsCommandOutput) => void): void;
|
|
251
|
+
/**
|
|
252
|
+
* @see {@link ListFirewallRulesCommand}
|
|
253
|
+
*/
|
|
254
|
+
listFirewallRules(args: ListFirewallRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListFirewallRulesCommandOutput>;
|
|
255
|
+
listFirewallRules(args: ListFirewallRulesCommandInput, cb: (err: any, data?: ListFirewallRulesCommandOutput) => void): void;
|
|
256
|
+
listFirewallRules(args: ListFirewallRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallRulesCommandOutput) => void): void;
|
|
257
|
+
/**
|
|
258
|
+
* @see {@link ListGlobalResolversCommand}
|
|
259
|
+
*/
|
|
260
|
+
listGlobalResolvers(): Promise<ListGlobalResolversCommandOutput>;
|
|
261
|
+
listGlobalResolvers(args: ListGlobalResolversCommandInput, options?: __HttpHandlerOptions): Promise<ListGlobalResolversCommandOutput>;
|
|
262
|
+
listGlobalResolvers(args: ListGlobalResolversCommandInput, cb: (err: any, data?: ListGlobalResolversCommandOutput) => void): void;
|
|
263
|
+
listGlobalResolvers(args: ListGlobalResolversCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGlobalResolversCommandOutput) => void): void;
|
|
264
|
+
/**
|
|
265
|
+
* @see {@link ListHostedZoneAssociationsCommand}
|
|
266
|
+
*/
|
|
267
|
+
listHostedZoneAssociations(args: ListHostedZoneAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListHostedZoneAssociationsCommandOutput>;
|
|
268
|
+
listHostedZoneAssociations(args: ListHostedZoneAssociationsCommandInput, cb: (err: any, data?: ListHostedZoneAssociationsCommandOutput) => void): void;
|
|
269
|
+
listHostedZoneAssociations(args: ListHostedZoneAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHostedZoneAssociationsCommandOutput) => void): void;
|
|
270
|
+
/**
|
|
271
|
+
* @see {@link ListManagedFirewallDomainListsCommand}
|
|
272
|
+
*/
|
|
273
|
+
listManagedFirewallDomainLists(args: ListManagedFirewallDomainListsCommandInput, options?: __HttpHandlerOptions): Promise<ListManagedFirewallDomainListsCommandOutput>;
|
|
274
|
+
listManagedFirewallDomainLists(args: ListManagedFirewallDomainListsCommandInput, cb: (err: any, data?: ListManagedFirewallDomainListsCommandOutput) => void): void;
|
|
275
|
+
listManagedFirewallDomainLists(args: ListManagedFirewallDomainListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListManagedFirewallDomainListsCommandOutput) => void): void;
|
|
276
|
+
/**
|
|
277
|
+
* @see {@link ListTagsForResourceCommand}
|
|
278
|
+
*/
|
|
279
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
280
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
281
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
282
|
+
/**
|
|
283
|
+
* @see {@link TagResourceCommand}
|
|
284
|
+
*/
|
|
285
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
286
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
287
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
288
|
+
/**
|
|
289
|
+
* @see {@link UntagResourceCommand}
|
|
290
|
+
*/
|
|
291
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
292
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
293
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
294
|
+
/**
|
|
295
|
+
* @see {@link UpdateAccessSourceCommand}
|
|
296
|
+
*/
|
|
297
|
+
updateAccessSource(args: UpdateAccessSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccessSourceCommandOutput>;
|
|
298
|
+
updateAccessSource(args: UpdateAccessSourceCommandInput, cb: (err: any, data?: UpdateAccessSourceCommandOutput) => void): void;
|
|
299
|
+
updateAccessSource(args: UpdateAccessSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccessSourceCommandOutput) => void): void;
|
|
300
|
+
/**
|
|
301
|
+
* @see {@link UpdateAccessTokenCommand}
|
|
302
|
+
*/
|
|
303
|
+
updateAccessToken(args: UpdateAccessTokenCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccessTokenCommandOutput>;
|
|
304
|
+
updateAccessToken(args: UpdateAccessTokenCommandInput, cb: (err: any, data?: UpdateAccessTokenCommandOutput) => void): void;
|
|
305
|
+
updateAccessToken(args: UpdateAccessTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccessTokenCommandOutput) => void): void;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link UpdateDNSViewCommand}
|
|
308
|
+
*/
|
|
309
|
+
updateDNSView(args: UpdateDNSViewCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDNSViewCommandOutput>;
|
|
310
|
+
updateDNSView(args: UpdateDNSViewCommandInput, cb: (err: any, data?: UpdateDNSViewCommandOutput) => void): void;
|
|
311
|
+
updateDNSView(args: UpdateDNSViewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDNSViewCommandOutput) => void): void;
|
|
312
|
+
/**
|
|
313
|
+
* @see {@link UpdateFirewallDomainsCommand}
|
|
314
|
+
*/
|
|
315
|
+
updateFirewallDomains(args: UpdateFirewallDomainsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallDomainsCommandOutput>;
|
|
316
|
+
updateFirewallDomains(args: UpdateFirewallDomainsCommandInput, cb: (err: any, data?: UpdateFirewallDomainsCommandOutput) => void): void;
|
|
317
|
+
updateFirewallDomains(args: UpdateFirewallDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallDomainsCommandOutput) => void): void;
|
|
318
|
+
/**
|
|
319
|
+
* @see {@link UpdateFirewallRuleCommand}
|
|
320
|
+
*/
|
|
321
|
+
updateFirewallRule(args: UpdateFirewallRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallRuleCommandOutput>;
|
|
322
|
+
updateFirewallRule(args: UpdateFirewallRuleCommandInput, cb: (err: any, data?: UpdateFirewallRuleCommandOutput) => void): void;
|
|
323
|
+
updateFirewallRule(args: UpdateFirewallRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallRuleCommandOutput) => void): void;
|
|
324
|
+
/**
|
|
325
|
+
* @see {@link UpdateGlobalResolverCommand}
|
|
326
|
+
*/
|
|
327
|
+
updateGlobalResolver(args: UpdateGlobalResolverCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGlobalResolverCommandOutput>;
|
|
328
|
+
updateGlobalResolver(args: UpdateGlobalResolverCommandInput, cb: (err: any, data?: UpdateGlobalResolverCommandOutput) => void): void;
|
|
329
|
+
updateGlobalResolver(args: UpdateGlobalResolverCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGlobalResolverCommandOutput) => void): void;
|
|
330
|
+
/**
|
|
331
|
+
* @see {@link UpdateHostedZoneAssociationCommand}
|
|
332
|
+
*/
|
|
333
|
+
updateHostedZoneAssociation(args: UpdateHostedZoneAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHostedZoneAssociationCommandOutput>;
|
|
334
|
+
updateHostedZoneAssociation(args: UpdateHostedZoneAssociationCommandInput, cb: (err: any, data?: UpdateHostedZoneAssociationCommandOutput) => void): void;
|
|
335
|
+
updateHostedZoneAssociation(args: UpdateHostedZoneAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHostedZoneAssociationCommandOutput) => void): void;
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* <p> Amazon Route 53 Global Resolver is a global, internet-accessible DNS resolver that enables customers to resolve and forward traffic for both public and private domains while ensuring security and authenticity of queries over the internet. Route 53 Global Resolver supports DNS-over-port 53 (Do53), DNS-over-TLS (DoT), and DNS-over-HTTPS (DoH) protocols through global anycast IP addresses. </p>
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
export declare class Route53GlobalResolver extends Route53GlobalResolverClient implements Route53GlobalResolver {
|
|
342
|
+
}
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
2
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
3
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
|
|
4
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
5
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
|
+
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
+
import { AssociateHostedZoneCommandInput, AssociateHostedZoneCommandOutput } from "./commands/AssociateHostedZoneCommand";
|
|
11
|
+
import { BatchCreateFirewallRuleCommandInput, BatchCreateFirewallRuleCommandOutput } from "./commands/BatchCreateFirewallRuleCommand";
|
|
12
|
+
import { BatchDeleteFirewallRuleCommandInput, BatchDeleteFirewallRuleCommandOutput } from "./commands/BatchDeleteFirewallRuleCommand";
|
|
13
|
+
import { BatchUpdateFirewallRuleCommandInput, BatchUpdateFirewallRuleCommandOutput } from "./commands/BatchUpdateFirewallRuleCommand";
|
|
14
|
+
import { CreateAccessSourceCommandInput, CreateAccessSourceCommandOutput } from "./commands/CreateAccessSourceCommand";
|
|
15
|
+
import { CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput } from "./commands/CreateAccessTokenCommand";
|
|
16
|
+
import { CreateDNSViewCommandInput, CreateDNSViewCommandOutput } from "./commands/CreateDNSViewCommand";
|
|
17
|
+
import { CreateFirewallDomainListCommandInput, CreateFirewallDomainListCommandOutput } from "./commands/CreateFirewallDomainListCommand";
|
|
18
|
+
import { CreateFirewallRuleCommandInput, CreateFirewallRuleCommandOutput } from "./commands/CreateFirewallRuleCommand";
|
|
19
|
+
import { CreateGlobalResolverCommandInput, CreateGlobalResolverCommandOutput } from "./commands/CreateGlobalResolverCommand";
|
|
20
|
+
import { DeleteAccessSourceCommandInput, DeleteAccessSourceCommandOutput } from "./commands/DeleteAccessSourceCommand";
|
|
21
|
+
import { DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput } from "./commands/DeleteAccessTokenCommand";
|
|
22
|
+
import { DeleteDNSViewCommandInput, DeleteDNSViewCommandOutput } from "./commands/DeleteDNSViewCommand";
|
|
23
|
+
import { DeleteFirewallDomainListCommandInput, DeleteFirewallDomainListCommandOutput } from "./commands/DeleteFirewallDomainListCommand";
|
|
24
|
+
import { DeleteFirewallRuleCommandInput, DeleteFirewallRuleCommandOutput } from "./commands/DeleteFirewallRuleCommand";
|
|
25
|
+
import { DeleteGlobalResolverCommandInput, DeleteGlobalResolverCommandOutput } from "./commands/DeleteGlobalResolverCommand";
|
|
26
|
+
import { DisableDNSViewCommandInput, DisableDNSViewCommandOutput } from "./commands/DisableDNSViewCommand";
|
|
27
|
+
import { DisassociateHostedZoneCommandInput, DisassociateHostedZoneCommandOutput } from "./commands/DisassociateHostedZoneCommand";
|
|
28
|
+
import { EnableDNSViewCommandInput, EnableDNSViewCommandOutput } from "./commands/EnableDNSViewCommand";
|
|
29
|
+
import { GetAccessSourceCommandInput, GetAccessSourceCommandOutput } from "./commands/GetAccessSourceCommand";
|
|
30
|
+
import { GetAccessTokenCommandInput, GetAccessTokenCommandOutput } from "./commands/GetAccessTokenCommand";
|
|
31
|
+
import { GetDNSViewCommandInput, GetDNSViewCommandOutput } from "./commands/GetDNSViewCommand";
|
|
32
|
+
import { GetFirewallDomainListCommandInput, GetFirewallDomainListCommandOutput } from "./commands/GetFirewallDomainListCommand";
|
|
33
|
+
import { GetFirewallRuleCommandInput, GetFirewallRuleCommandOutput } from "./commands/GetFirewallRuleCommand";
|
|
34
|
+
import { GetGlobalResolverCommandInput, GetGlobalResolverCommandOutput } from "./commands/GetGlobalResolverCommand";
|
|
35
|
+
import { GetHostedZoneAssociationCommandInput, GetHostedZoneAssociationCommandOutput } from "./commands/GetHostedZoneAssociationCommand";
|
|
36
|
+
import { GetManagedFirewallDomainListCommandInput, GetManagedFirewallDomainListCommandOutput } from "./commands/GetManagedFirewallDomainListCommand";
|
|
37
|
+
import { ImportFirewallDomainsCommandInput, ImportFirewallDomainsCommandOutput } from "./commands/ImportFirewallDomainsCommand";
|
|
38
|
+
import { ListAccessSourcesCommandInput, ListAccessSourcesCommandOutput } from "./commands/ListAccessSourcesCommand";
|
|
39
|
+
import { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "./commands/ListAccessTokensCommand";
|
|
40
|
+
import { ListDNSViewsCommandInput, ListDNSViewsCommandOutput } from "./commands/ListDNSViewsCommand";
|
|
41
|
+
import { ListFirewallDomainListsCommandInput, ListFirewallDomainListsCommandOutput } from "./commands/ListFirewallDomainListsCommand";
|
|
42
|
+
import { ListFirewallDomainsCommandInput, ListFirewallDomainsCommandOutput } from "./commands/ListFirewallDomainsCommand";
|
|
43
|
+
import { ListFirewallRulesCommandInput, ListFirewallRulesCommandOutput } from "./commands/ListFirewallRulesCommand";
|
|
44
|
+
import { ListGlobalResolversCommandInput, ListGlobalResolversCommandOutput } from "./commands/ListGlobalResolversCommand";
|
|
45
|
+
import { ListHostedZoneAssociationsCommandInput, ListHostedZoneAssociationsCommandOutput } from "./commands/ListHostedZoneAssociationsCommand";
|
|
46
|
+
import { ListManagedFirewallDomainListsCommandInput, ListManagedFirewallDomainListsCommandOutput } from "./commands/ListManagedFirewallDomainListsCommand";
|
|
47
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
48
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
49
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
50
|
+
import { UpdateAccessSourceCommandInput, UpdateAccessSourceCommandOutput } from "./commands/UpdateAccessSourceCommand";
|
|
51
|
+
import { UpdateAccessTokenCommandInput, UpdateAccessTokenCommandOutput } from "./commands/UpdateAccessTokenCommand";
|
|
52
|
+
import { UpdateDNSViewCommandInput, UpdateDNSViewCommandOutput } from "./commands/UpdateDNSViewCommand";
|
|
53
|
+
import { UpdateFirewallDomainsCommandInput, UpdateFirewallDomainsCommandOutput } from "./commands/UpdateFirewallDomainsCommand";
|
|
54
|
+
import { UpdateFirewallRuleCommandInput, UpdateFirewallRuleCommandOutput } from "./commands/UpdateFirewallRuleCommand";
|
|
55
|
+
import { UpdateGlobalResolverCommandInput, UpdateGlobalResolverCommandOutput } from "./commands/UpdateGlobalResolverCommand";
|
|
56
|
+
import { UpdateHostedZoneAssociationCommandInput, UpdateHostedZoneAssociationCommandOutput } from "./commands/UpdateHostedZoneAssociationCommand";
|
|
57
|
+
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
58
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
59
|
+
export { __Client };
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export type ServiceInputTypes = AssociateHostedZoneCommandInput | BatchCreateFirewallRuleCommandInput | BatchDeleteFirewallRuleCommandInput | BatchUpdateFirewallRuleCommandInput | CreateAccessSourceCommandInput | CreateAccessTokenCommandInput | CreateDNSViewCommandInput | CreateFirewallDomainListCommandInput | CreateFirewallRuleCommandInput | CreateGlobalResolverCommandInput | DeleteAccessSourceCommandInput | DeleteAccessTokenCommandInput | DeleteDNSViewCommandInput | DeleteFirewallDomainListCommandInput | DeleteFirewallRuleCommandInput | DeleteGlobalResolverCommandInput | DisableDNSViewCommandInput | DisassociateHostedZoneCommandInput | EnableDNSViewCommandInput | GetAccessSourceCommandInput | GetAccessTokenCommandInput | GetDNSViewCommandInput | GetFirewallDomainListCommandInput | GetFirewallRuleCommandInput | GetGlobalResolverCommandInput | GetHostedZoneAssociationCommandInput | GetManagedFirewallDomainListCommandInput | ImportFirewallDomainsCommandInput | ListAccessSourcesCommandInput | ListAccessTokensCommandInput | ListDNSViewsCommandInput | ListFirewallDomainListsCommandInput | ListFirewallDomainsCommandInput | ListFirewallRulesCommandInput | ListGlobalResolversCommandInput | ListHostedZoneAssociationsCommandInput | ListManagedFirewallDomainListsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessSourceCommandInput | UpdateAccessTokenCommandInput | UpdateDNSViewCommandInput | UpdateFirewallDomainsCommandInput | UpdateFirewallRuleCommandInput | UpdateGlobalResolverCommandInput | UpdateHostedZoneAssociationCommandInput;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export type ServiceOutputTypes = AssociateHostedZoneCommandOutput | BatchCreateFirewallRuleCommandOutput | BatchDeleteFirewallRuleCommandOutput | BatchUpdateFirewallRuleCommandOutput | CreateAccessSourceCommandOutput | CreateAccessTokenCommandOutput | CreateDNSViewCommandOutput | CreateFirewallDomainListCommandOutput | CreateFirewallRuleCommandOutput | CreateGlobalResolverCommandOutput | DeleteAccessSourceCommandOutput | DeleteAccessTokenCommandOutput | DeleteDNSViewCommandOutput | DeleteFirewallDomainListCommandOutput | DeleteFirewallRuleCommandOutput | DeleteGlobalResolverCommandOutput | DisableDNSViewCommandOutput | DisassociateHostedZoneCommandOutput | EnableDNSViewCommandOutput | GetAccessSourceCommandOutput | GetAccessTokenCommandOutput | GetDNSViewCommandOutput | GetFirewallDomainListCommandOutput | GetFirewallRuleCommandOutput | GetGlobalResolverCommandOutput | GetHostedZoneAssociationCommandOutput | GetManagedFirewallDomainListCommandOutput | ImportFirewallDomainsCommandOutput | ListAccessSourcesCommandOutput | ListAccessTokensCommandOutput | ListDNSViewsCommandOutput | ListFirewallDomainListsCommandOutput | ListFirewallDomainsCommandOutput | ListFirewallRulesCommandOutput | ListGlobalResolversCommandOutput | ListHostedZoneAssociationsCommandOutput | ListManagedFirewallDomainListsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessSourceCommandOutput | UpdateAccessTokenCommandOutput | UpdateDNSViewCommandOutput | UpdateFirewallDomainsCommandOutput | UpdateFirewallRuleCommandOutput | UpdateGlobalResolverCommandOutput | UpdateHostedZoneAssociationCommandOutput;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
72
|
+
/**
|
|
73
|
+
* The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
|
|
74
|
+
*/
|
|
75
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
76
|
+
/**
|
|
77
|
+
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
|
|
78
|
+
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
82
|
+
/**
|
|
83
|
+
* The function that will be used to convert strings into HTTP endpoints.
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
urlParser?: __UrlParser;
|
|
87
|
+
/**
|
|
88
|
+
* A function that can calculate the length of a request body.
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
91
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
92
|
+
/**
|
|
93
|
+
* A function that converts a stream into an array of bytes.
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
streamCollector?: __StreamCollector;
|
|
97
|
+
/**
|
|
98
|
+
* The function that will be used to convert a base64-encoded string to a byte array.
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
base64Decoder?: __Decoder;
|
|
102
|
+
/**
|
|
103
|
+
* The function that will be used to convert binary data to a base64-encoded string.
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
base64Encoder?: __Encoder;
|
|
107
|
+
/**
|
|
108
|
+
* The function that will be used to convert a UTF8-encoded string to a byte array.
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
utf8Decoder?: __Decoder;
|
|
112
|
+
/**
|
|
113
|
+
* The function that will be used to convert binary data to a UTF-8 encoded string.
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
116
|
+
utf8Encoder?: __Encoder;
|
|
117
|
+
/**
|
|
118
|
+
* The runtime environment.
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
runtime?: string;
|
|
122
|
+
/**
|
|
123
|
+
* Disable dynamically changing the endpoint of the client based on the hostPrefix
|
|
124
|
+
* trait of an operation.
|
|
125
|
+
*/
|
|
126
|
+
disableHostPrefix?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Unique service identifier.
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
131
|
+
serviceId?: string;
|
|
132
|
+
/**
|
|
133
|
+
* Enables IPv6/IPv4 dualstack endpoint.
|
|
134
|
+
*/
|
|
135
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
136
|
+
/**
|
|
137
|
+
* Enables FIPS compatible endpoints.
|
|
138
|
+
*/
|
|
139
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
140
|
+
/**
|
|
141
|
+
* The AWS region to which this client will send requests
|
|
142
|
+
*/
|
|
143
|
+
region?: string | __Provider<string>;
|
|
144
|
+
/**
|
|
145
|
+
* Setting a client profile is similar to setting a value for the
|
|
146
|
+
* AWS_PROFILE environment variable. Setting a profile on a client
|
|
147
|
+
* in code only affects the single client instance, unlike AWS_PROFILE.
|
|
148
|
+
*
|
|
149
|
+
* When set, and only for environments where an AWS configuration
|
|
150
|
+
* file exists, fields configurable by this file will be retrieved
|
|
151
|
+
* from the specified profile within that file.
|
|
152
|
+
* Conflicting code configuration and environment variables will
|
|
153
|
+
* still have higher priority.
|
|
154
|
+
*
|
|
155
|
+
* For client credential resolution that involves checking the AWS
|
|
156
|
+
* configuration file, the client's profile (this value) will be
|
|
157
|
+
* used unless a different profile is set in the credential
|
|
158
|
+
* provider options.
|
|
159
|
+
*
|
|
160
|
+
*/
|
|
161
|
+
profile?: string;
|
|
162
|
+
/**
|
|
163
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
164
|
+
* @internal
|
|
165
|
+
*/
|
|
166
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
167
|
+
/**
|
|
168
|
+
* Default credentials provider; Not available in browser runtime.
|
|
169
|
+
* @deprecated
|
|
170
|
+
* @internal
|
|
171
|
+
*/
|
|
172
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
173
|
+
/**
|
|
174
|
+
* Value for how many times a request will be made at most in case of retry.
|
|
175
|
+
*/
|
|
176
|
+
maxAttempts?: number | __Provider<number>;
|
|
177
|
+
/**
|
|
178
|
+
* Specifies which retry algorithm to use.
|
|
179
|
+
* @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
|
|
180
|
+
*
|
|
181
|
+
*/
|
|
182
|
+
retryMode?: string | __Provider<string>;
|
|
183
|
+
/**
|
|
184
|
+
* Optional logger for logging debug/info/warn/error.
|
|
185
|
+
*/
|
|
186
|
+
logger?: __Logger;
|
|
187
|
+
/**
|
|
188
|
+
* Optional extensions
|
|
189
|
+
*/
|
|
190
|
+
extensions?: RuntimeExtension[];
|
|
191
|
+
/**
|
|
192
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
193
|
+
* may be overridden. A default will always be set by the client.
|
|
194
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
195
|
+
* the client.
|
|
196
|
+
* @alpha
|
|
197
|
+
*
|
|
198
|
+
*/
|
|
199
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
200
|
+
/**
|
|
201
|
+
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
202
|
+
*/
|
|
203
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
export type Route53GlobalResolverClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*
|
|
212
|
+
* The configuration interface of Route53GlobalResolverClient class constructor that set the region, credentials and other options.
|
|
213
|
+
*/
|
|
214
|
+
export interface Route53GlobalResolverClientConfig extends Route53GlobalResolverClientConfigType {
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
219
|
+
export type Route53GlobalResolverClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
*
|
|
223
|
+
* The resolved configuration interface of Route53GlobalResolverClient class. This is resolved and normalized from the {@link Route53GlobalResolverClientConfig | constructor configuration interface}.
|
|
224
|
+
*/
|
|
225
|
+
export interface Route53GlobalResolverClientResolvedConfig extends Route53GlobalResolverClientResolvedConfigType {
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* <p> Amazon Route 53 Global Resolver is a global, internet-accessible DNS resolver that enables customers to resolve and forward traffic for both public and private domains while ensuring security and authenticity of queries over the internet. Route 53 Global Resolver supports DNS-over-port 53 (Do53), DNS-over-TLS (DoT), and DNS-over-HTTPS (DoH) protocols through global anycast IP addresses. </p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
export declare class Route53GlobalResolverClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Route53GlobalResolverClientResolvedConfig> {
|
|
232
|
+
/**
|
|
233
|
+
* The resolved configuration of Route53GlobalResolverClient class. This is resolved and normalized from the {@link Route53GlobalResolverClientConfig | constructor configuration interface}.
|
|
234
|
+
*/
|
|
235
|
+
readonly config: Route53GlobalResolverClientResolvedConfig;
|
|
236
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<Route53GlobalResolverClientConfig>);
|
|
237
|
+
/**
|
|
238
|
+
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
239
|
+
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
240
|
+
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
241
|
+
*/
|
|
242
|
+
destroy(): void;
|
|
243
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
|
+
import { Route53GlobalResolverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export interface HttpAuthExtensionConfiguration {
|
|
7
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
8
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
9
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: Route53GlobalResolverHttpAuthSchemeProvider): void;
|
|
10
|
+
httpAuthSchemeProvider(): Route53GlobalResolverHttpAuthSchemeProvider;
|
|
11
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
12
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
18
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
19
|
+
httpAuthSchemeProvider: Route53GlobalResolverHttpAuthSchemeProvider;
|
|
20
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
21
|
+
}>;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
|