@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,809 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AssociateHostedZoneCommandInput,
|
|
4
|
+
AssociateHostedZoneCommandOutput,
|
|
5
|
+
} from "./commands/AssociateHostedZoneCommand";
|
|
6
|
+
import {
|
|
7
|
+
BatchCreateFirewallRuleCommandInput,
|
|
8
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
9
|
+
} from "./commands/BatchCreateFirewallRuleCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
12
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
13
|
+
} from "./commands/BatchDeleteFirewallRuleCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
16
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
17
|
+
} from "./commands/BatchUpdateFirewallRuleCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateAccessSourceCommandInput,
|
|
20
|
+
CreateAccessSourceCommandOutput,
|
|
21
|
+
} from "./commands/CreateAccessSourceCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateAccessTokenCommandInput,
|
|
24
|
+
CreateAccessTokenCommandOutput,
|
|
25
|
+
} from "./commands/CreateAccessTokenCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateDNSViewCommandInput,
|
|
28
|
+
CreateDNSViewCommandOutput,
|
|
29
|
+
} from "./commands/CreateDNSViewCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateFirewallDomainListCommandInput,
|
|
32
|
+
CreateFirewallDomainListCommandOutput,
|
|
33
|
+
} from "./commands/CreateFirewallDomainListCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateFirewallRuleCommandInput,
|
|
36
|
+
CreateFirewallRuleCommandOutput,
|
|
37
|
+
} from "./commands/CreateFirewallRuleCommand";
|
|
38
|
+
import {
|
|
39
|
+
CreateGlobalResolverCommandInput,
|
|
40
|
+
CreateGlobalResolverCommandOutput,
|
|
41
|
+
} from "./commands/CreateGlobalResolverCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteAccessSourceCommandInput,
|
|
44
|
+
DeleteAccessSourceCommandOutput,
|
|
45
|
+
} from "./commands/DeleteAccessSourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteAccessTokenCommandInput,
|
|
48
|
+
DeleteAccessTokenCommandOutput,
|
|
49
|
+
} from "./commands/DeleteAccessTokenCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteDNSViewCommandInput,
|
|
52
|
+
DeleteDNSViewCommandOutput,
|
|
53
|
+
} from "./commands/DeleteDNSViewCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteFirewallDomainListCommandInput,
|
|
56
|
+
DeleteFirewallDomainListCommandOutput,
|
|
57
|
+
} from "./commands/DeleteFirewallDomainListCommand";
|
|
58
|
+
import {
|
|
59
|
+
DeleteFirewallRuleCommandInput,
|
|
60
|
+
DeleteFirewallRuleCommandOutput,
|
|
61
|
+
} from "./commands/DeleteFirewallRuleCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteGlobalResolverCommandInput,
|
|
64
|
+
DeleteGlobalResolverCommandOutput,
|
|
65
|
+
} from "./commands/DeleteGlobalResolverCommand";
|
|
66
|
+
import {
|
|
67
|
+
DisableDNSViewCommandInput,
|
|
68
|
+
DisableDNSViewCommandOutput,
|
|
69
|
+
} from "./commands/DisableDNSViewCommand";
|
|
70
|
+
import {
|
|
71
|
+
DisassociateHostedZoneCommandInput,
|
|
72
|
+
DisassociateHostedZoneCommandOutput,
|
|
73
|
+
} from "./commands/DisassociateHostedZoneCommand";
|
|
74
|
+
import {
|
|
75
|
+
EnableDNSViewCommandInput,
|
|
76
|
+
EnableDNSViewCommandOutput,
|
|
77
|
+
} from "./commands/EnableDNSViewCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetAccessSourceCommandInput,
|
|
80
|
+
GetAccessSourceCommandOutput,
|
|
81
|
+
} from "./commands/GetAccessSourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetAccessTokenCommandInput,
|
|
84
|
+
GetAccessTokenCommandOutput,
|
|
85
|
+
} from "./commands/GetAccessTokenCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetDNSViewCommandInput,
|
|
88
|
+
GetDNSViewCommandOutput,
|
|
89
|
+
} from "./commands/GetDNSViewCommand";
|
|
90
|
+
import {
|
|
91
|
+
GetFirewallDomainListCommandInput,
|
|
92
|
+
GetFirewallDomainListCommandOutput,
|
|
93
|
+
} from "./commands/GetFirewallDomainListCommand";
|
|
94
|
+
import {
|
|
95
|
+
GetFirewallRuleCommandInput,
|
|
96
|
+
GetFirewallRuleCommandOutput,
|
|
97
|
+
} from "./commands/GetFirewallRuleCommand";
|
|
98
|
+
import {
|
|
99
|
+
GetGlobalResolverCommandInput,
|
|
100
|
+
GetGlobalResolverCommandOutput,
|
|
101
|
+
} from "./commands/GetGlobalResolverCommand";
|
|
102
|
+
import {
|
|
103
|
+
GetHostedZoneAssociationCommandInput,
|
|
104
|
+
GetHostedZoneAssociationCommandOutput,
|
|
105
|
+
} from "./commands/GetHostedZoneAssociationCommand";
|
|
106
|
+
import {
|
|
107
|
+
GetManagedFirewallDomainListCommandInput,
|
|
108
|
+
GetManagedFirewallDomainListCommandOutput,
|
|
109
|
+
} from "./commands/GetManagedFirewallDomainListCommand";
|
|
110
|
+
import {
|
|
111
|
+
ImportFirewallDomainsCommandInput,
|
|
112
|
+
ImportFirewallDomainsCommandOutput,
|
|
113
|
+
} from "./commands/ImportFirewallDomainsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListAccessSourcesCommandInput,
|
|
116
|
+
ListAccessSourcesCommandOutput,
|
|
117
|
+
} from "./commands/ListAccessSourcesCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListAccessTokensCommandInput,
|
|
120
|
+
ListAccessTokensCommandOutput,
|
|
121
|
+
} from "./commands/ListAccessTokensCommand";
|
|
122
|
+
import {
|
|
123
|
+
ListDNSViewsCommandInput,
|
|
124
|
+
ListDNSViewsCommandOutput,
|
|
125
|
+
} from "./commands/ListDNSViewsCommand";
|
|
126
|
+
import {
|
|
127
|
+
ListFirewallDomainListsCommandInput,
|
|
128
|
+
ListFirewallDomainListsCommandOutput,
|
|
129
|
+
} from "./commands/ListFirewallDomainListsCommand";
|
|
130
|
+
import {
|
|
131
|
+
ListFirewallDomainsCommandInput,
|
|
132
|
+
ListFirewallDomainsCommandOutput,
|
|
133
|
+
} from "./commands/ListFirewallDomainsCommand";
|
|
134
|
+
import {
|
|
135
|
+
ListFirewallRulesCommandInput,
|
|
136
|
+
ListFirewallRulesCommandOutput,
|
|
137
|
+
} from "./commands/ListFirewallRulesCommand";
|
|
138
|
+
import {
|
|
139
|
+
ListGlobalResolversCommandInput,
|
|
140
|
+
ListGlobalResolversCommandOutput,
|
|
141
|
+
} from "./commands/ListGlobalResolversCommand";
|
|
142
|
+
import {
|
|
143
|
+
ListHostedZoneAssociationsCommandInput,
|
|
144
|
+
ListHostedZoneAssociationsCommandOutput,
|
|
145
|
+
} from "./commands/ListHostedZoneAssociationsCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListManagedFirewallDomainListsCommandInput,
|
|
148
|
+
ListManagedFirewallDomainListsCommandOutput,
|
|
149
|
+
} from "./commands/ListManagedFirewallDomainListsCommand";
|
|
150
|
+
import {
|
|
151
|
+
ListTagsForResourceCommandInput,
|
|
152
|
+
ListTagsForResourceCommandOutput,
|
|
153
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
154
|
+
import {
|
|
155
|
+
TagResourceCommandInput,
|
|
156
|
+
TagResourceCommandOutput,
|
|
157
|
+
} from "./commands/TagResourceCommand";
|
|
158
|
+
import {
|
|
159
|
+
UntagResourceCommandInput,
|
|
160
|
+
UntagResourceCommandOutput,
|
|
161
|
+
} from "./commands/UntagResourceCommand";
|
|
162
|
+
import {
|
|
163
|
+
UpdateAccessSourceCommandInput,
|
|
164
|
+
UpdateAccessSourceCommandOutput,
|
|
165
|
+
} from "./commands/UpdateAccessSourceCommand";
|
|
166
|
+
import {
|
|
167
|
+
UpdateAccessTokenCommandInput,
|
|
168
|
+
UpdateAccessTokenCommandOutput,
|
|
169
|
+
} from "./commands/UpdateAccessTokenCommand";
|
|
170
|
+
import {
|
|
171
|
+
UpdateDNSViewCommandInput,
|
|
172
|
+
UpdateDNSViewCommandOutput,
|
|
173
|
+
} from "./commands/UpdateDNSViewCommand";
|
|
174
|
+
import {
|
|
175
|
+
UpdateFirewallDomainsCommandInput,
|
|
176
|
+
UpdateFirewallDomainsCommandOutput,
|
|
177
|
+
} from "./commands/UpdateFirewallDomainsCommand";
|
|
178
|
+
import {
|
|
179
|
+
UpdateFirewallRuleCommandInput,
|
|
180
|
+
UpdateFirewallRuleCommandOutput,
|
|
181
|
+
} from "./commands/UpdateFirewallRuleCommand";
|
|
182
|
+
import {
|
|
183
|
+
UpdateGlobalResolverCommandInput,
|
|
184
|
+
UpdateGlobalResolverCommandOutput,
|
|
185
|
+
} from "./commands/UpdateGlobalResolverCommand";
|
|
186
|
+
import {
|
|
187
|
+
UpdateHostedZoneAssociationCommandInput,
|
|
188
|
+
UpdateHostedZoneAssociationCommandOutput,
|
|
189
|
+
} from "./commands/UpdateHostedZoneAssociationCommand";
|
|
190
|
+
import { Route53GlobalResolverClient } from "./Route53GlobalResolverClient";
|
|
191
|
+
export interface Route53GlobalResolver {
|
|
192
|
+
associateHostedZone(
|
|
193
|
+
args: AssociateHostedZoneCommandInput,
|
|
194
|
+
options?: __HttpHandlerOptions
|
|
195
|
+
): Promise<AssociateHostedZoneCommandOutput>;
|
|
196
|
+
associateHostedZone(
|
|
197
|
+
args: AssociateHostedZoneCommandInput,
|
|
198
|
+
cb: (err: any, data?: AssociateHostedZoneCommandOutput) => void
|
|
199
|
+
): void;
|
|
200
|
+
associateHostedZone(
|
|
201
|
+
args: AssociateHostedZoneCommandInput,
|
|
202
|
+
options: __HttpHandlerOptions,
|
|
203
|
+
cb: (err: any, data?: AssociateHostedZoneCommandOutput) => void
|
|
204
|
+
): void;
|
|
205
|
+
batchCreateFirewallRule(
|
|
206
|
+
args: BatchCreateFirewallRuleCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<BatchCreateFirewallRuleCommandOutput>;
|
|
209
|
+
batchCreateFirewallRule(
|
|
210
|
+
args: BatchCreateFirewallRuleCommandInput,
|
|
211
|
+
cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
batchCreateFirewallRule(
|
|
214
|
+
args: BatchCreateFirewallRuleCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: BatchCreateFirewallRuleCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
batchDeleteFirewallRule(
|
|
219
|
+
args: BatchDeleteFirewallRuleCommandInput,
|
|
220
|
+
options?: __HttpHandlerOptions
|
|
221
|
+
): Promise<BatchDeleteFirewallRuleCommandOutput>;
|
|
222
|
+
batchDeleteFirewallRule(
|
|
223
|
+
args: BatchDeleteFirewallRuleCommandInput,
|
|
224
|
+
cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void
|
|
225
|
+
): void;
|
|
226
|
+
batchDeleteFirewallRule(
|
|
227
|
+
args: BatchDeleteFirewallRuleCommandInput,
|
|
228
|
+
options: __HttpHandlerOptions,
|
|
229
|
+
cb: (err: any, data?: BatchDeleteFirewallRuleCommandOutput) => void
|
|
230
|
+
): void;
|
|
231
|
+
batchUpdateFirewallRule(
|
|
232
|
+
args: BatchUpdateFirewallRuleCommandInput,
|
|
233
|
+
options?: __HttpHandlerOptions
|
|
234
|
+
): Promise<BatchUpdateFirewallRuleCommandOutput>;
|
|
235
|
+
batchUpdateFirewallRule(
|
|
236
|
+
args: BatchUpdateFirewallRuleCommandInput,
|
|
237
|
+
cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void
|
|
238
|
+
): void;
|
|
239
|
+
batchUpdateFirewallRule(
|
|
240
|
+
args: BatchUpdateFirewallRuleCommandInput,
|
|
241
|
+
options: __HttpHandlerOptions,
|
|
242
|
+
cb: (err: any, data?: BatchUpdateFirewallRuleCommandOutput) => void
|
|
243
|
+
): void;
|
|
244
|
+
createAccessSource(
|
|
245
|
+
args: CreateAccessSourceCommandInput,
|
|
246
|
+
options?: __HttpHandlerOptions
|
|
247
|
+
): Promise<CreateAccessSourceCommandOutput>;
|
|
248
|
+
createAccessSource(
|
|
249
|
+
args: CreateAccessSourceCommandInput,
|
|
250
|
+
cb: (err: any, data?: CreateAccessSourceCommandOutput) => void
|
|
251
|
+
): void;
|
|
252
|
+
createAccessSource(
|
|
253
|
+
args: CreateAccessSourceCommandInput,
|
|
254
|
+
options: __HttpHandlerOptions,
|
|
255
|
+
cb: (err: any, data?: CreateAccessSourceCommandOutput) => void
|
|
256
|
+
): void;
|
|
257
|
+
createAccessToken(
|
|
258
|
+
args: CreateAccessTokenCommandInput,
|
|
259
|
+
options?: __HttpHandlerOptions
|
|
260
|
+
): Promise<CreateAccessTokenCommandOutput>;
|
|
261
|
+
createAccessToken(
|
|
262
|
+
args: CreateAccessTokenCommandInput,
|
|
263
|
+
cb: (err: any, data?: CreateAccessTokenCommandOutput) => void
|
|
264
|
+
): void;
|
|
265
|
+
createAccessToken(
|
|
266
|
+
args: CreateAccessTokenCommandInput,
|
|
267
|
+
options: __HttpHandlerOptions,
|
|
268
|
+
cb: (err: any, data?: CreateAccessTokenCommandOutput) => void
|
|
269
|
+
): void;
|
|
270
|
+
createDNSView(
|
|
271
|
+
args: CreateDNSViewCommandInput,
|
|
272
|
+
options?: __HttpHandlerOptions
|
|
273
|
+
): Promise<CreateDNSViewCommandOutput>;
|
|
274
|
+
createDNSView(
|
|
275
|
+
args: CreateDNSViewCommandInput,
|
|
276
|
+
cb: (err: any, data?: CreateDNSViewCommandOutput) => void
|
|
277
|
+
): void;
|
|
278
|
+
createDNSView(
|
|
279
|
+
args: CreateDNSViewCommandInput,
|
|
280
|
+
options: __HttpHandlerOptions,
|
|
281
|
+
cb: (err: any, data?: CreateDNSViewCommandOutput) => void
|
|
282
|
+
): void;
|
|
283
|
+
createFirewallDomainList(
|
|
284
|
+
args: CreateFirewallDomainListCommandInput,
|
|
285
|
+
options?: __HttpHandlerOptions
|
|
286
|
+
): Promise<CreateFirewallDomainListCommandOutput>;
|
|
287
|
+
createFirewallDomainList(
|
|
288
|
+
args: CreateFirewallDomainListCommandInput,
|
|
289
|
+
cb: (err: any, data?: CreateFirewallDomainListCommandOutput) => void
|
|
290
|
+
): void;
|
|
291
|
+
createFirewallDomainList(
|
|
292
|
+
args: CreateFirewallDomainListCommandInput,
|
|
293
|
+
options: __HttpHandlerOptions,
|
|
294
|
+
cb: (err: any, data?: CreateFirewallDomainListCommandOutput) => void
|
|
295
|
+
): void;
|
|
296
|
+
createFirewallRule(
|
|
297
|
+
args: CreateFirewallRuleCommandInput,
|
|
298
|
+
options?: __HttpHandlerOptions
|
|
299
|
+
): Promise<CreateFirewallRuleCommandOutput>;
|
|
300
|
+
createFirewallRule(
|
|
301
|
+
args: CreateFirewallRuleCommandInput,
|
|
302
|
+
cb: (err: any, data?: CreateFirewallRuleCommandOutput) => void
|
|
303
|
+
): void;
|
|
304
|
+
createFirewallRule(
|
|
305
|
+
args: CreateFirewallRuleCommandInput,
|
|
306
|
+
options: __HttpHandlerOptions,
|
|
307
|
+
cb: (err: any, data?: CreateFirewallRuleCommandOutput) => void
|
|
308
|
+
): void;
|
|
309
|
+
createGlobalResolver(
|
|
310
|
+
args: CreateGlobalResolverCommandInput,
|
|
311
|
+
options?: __HttpHandlerOptions
|
|
312
|
+
): Promise<CreateGlobalResolverCommandOutput>;
|
|
313
|
+
createGlobalResolver(
|
|
314
|
+
args: CreateGlobalResolverCommandInput,
|
|
315
|
+
cb: (err: any, data?: CreateGlobalResolverCommandOutput) => void
|
|
316
|
+
): void;
|
|
317
|
+
createGlobalResolver(
|
|
318
|
+
args: CreateGlobalResolverCommandInput,
|
|
319
|
+
options: __HttpHandlerOptions,
|
|
320
|
+
cb: (err: any, data?: CreateGlobalResolverCommandOutput) => void
|
|
321
|
+
): void;
|
|
322
|
+
deleteAccessSource(
|
|
323
|
+
args: DeleteAccessSourceCommandInput,
|
|
324
|
+
options?: __HttpHandlerOptions
|
|
325
|
+
): Promise<DeleteAccessSourceCommandOutput>;
|
|
326
|
+
deleteAccessSource(
|
|
327
|
+
args: DeleteAccessSourceCommandInput,
|
|
328
|
+
cb: (err: any, data?: DeleteAccessSourceCommandOutput) => void
|
|
329
|
+
): void;
|
|
330
|
+
deleteAccessSource(
|
|
331
|
+
args: DeleteAccessSourceCommandInput,
|
|
332
|
+
options: __HttpHandlerOptions,
|
|
333
|
+
cb: (err: any, data?: DeleteAccessSourceCommandOutput) => void
|
|
334
|
+
): void;
|
|
335
|
+
deleteAccessToken(
|
|
336
|
+
args: DeleteAccessTokenCommandInput,
|
|
337
|
+
options?: __HttpHandlerOptions
|
|
338
|
+
): Promise<DeleteAccessTokenCommandOutput>;
|
|
339
|
+
deleteAccessToken(
|
|
340
|
+
args: DeleteAccessTokenCommandInput,
|
|
341
|
+
cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void
|
|
342
|
+
): void;
|
|
343
|
+
deleteAccessToken(
|
|
344
|
+
args: DeleteAccessTokenCommandInput,
|
|
345
|
+
options: __HttpHandlerOptions,
|
|
346
|
+
cb: (err: any, data?: DeleteAccessTokenCommandOutput) => void
|
|
347
|
+
): void;
|
|
348
|
+
deleteDNSView(
|
|
349
|
+
args: DeleteDNSViewCommandInput,
|
|
350
|
+
options?: __HttpHandlerOptions
|
|
351
|
+
): Promise<DeleteDNSViewCommandOutput>;
|
|
352
|
+
deleteDNSView(
|
|
353
|
+
args: DeleteDNSViewCommandInput,
|
|
354
|
+
cb: (err: any, data?: DeleteDNSViewCommandOutput) => void
|
|
355
|
+
): void;
|
|
356
|
+
deleteDNSView(
|
|
357
|
+
args: DeleteDNSViewCommandInput,
|
|
358
|
+
options: __HttpHandlerOptions,
|
|
359
|
+
cb: (err: any, data?: DeleteDNSViewCommandOutput) => void
|
|
360
|
+
): void;
|
|
361
|
+
deleteFirewallDomainList(
|
|
362
|
+
args: DeleteFirewallDomainListCommandInput,
|
|
363
|
+
options?: __HttpHandlerOptions
|
|
364
|
+
): Promise<DeleteFirewallDomainListCommandOutput>;
|
|
365
|
+
deleteFirewallDomainList(
|
|
366
|
+
args: DeleteFirewallDomainListCommandInput,
|
|
367
|
+
cb: (err: any, data?: DeleteFirewallDomainListCommandOutput) => void
|
|
368
|
+
): void;
|
|
369
|
+
deleteFirewallDomainList(
|
|
370
|
+
args: DeleteFirewallDomainListCommandInput,
|
|
371
|
+
options: __HttpHandlerOptions,
|
|
372
|
+
cb: (err: any, data?: DeleteFirewallDomainListCommandOutput) => void
|
|
373
|
+
): void;
|
|
374
|
+
deleteFirewallRule(
|
|
375
|
+
args: DeleteFirewallRuleCommandInput,
|
|
376
|
+
options?: __HttpHandlerOptions
|
|
377
|
+
): Promise<DeleteFirewallRuleCommandOutput>;
|
|
378
|
+
deleteFirewallRule(
|
|
379
|
+
args: DeleteFirewallRuleCommandInput,
|
|
380
|
+
cb: (err: any, data?: DeleteFirewallRuleCommandOutput) => void
|
|
381
|
+
): void;
|
|
382
|
+
deleteFirewallRule(
|
|
383
|
+
args: DeleteFirewallRuleCommandInput,
|
|
384
|
+
options: __HttpHandlerOptions,
|
|
385
|
+
cb: (err: any, data?: DeleteFirewallRuleCommandOutput) => void
|
|
386
|
+
): void;
|
|
387
|
+
deleteGlobalResolver(
|
|
388
|
+
args: DeleteGlobalResolverCommandInput,
|
|
389
|
+
options?: __HttpHandlerOptions
|
|
390
|
+
): Promise<DeleteGlobalResolverCommandOutput>;
|
|
391
|
+
deleteGlobalResolver(
|
|
392
|
+
args: DeleteGlobalResolverCommandInput,
|
|
393
|
+
cb: (err: any, data?: DeleteGlobalResolverCommandOutput) => void
|
|
394
|
+
): void;
|
|
395
|
+
deleteGlobalResolver(
|
|
396
|
+
args: DeleteGlobalResolverCommandInput,
|
|
397
|
+
options: __HttpHandlerOptions,
|
|
398
|
+
cb: (err: any, data?: DeleteGlobalResolverCommandOutput) => void
|
|
399
|
+
): void;
|
|
400
|
+
disableDNSView(
|
|
401
|
+
args: DisableDNSViewCommandInput,
|
|
402
|
+
options?: __HttpHandlerOptions
|
|
403
|
+
): Promise<DisableDNSViewCommandOutput>;
|
|
404
|
+
disableDNSView(
|
|
405
|
+
args: DisableDNSViewCommandInput,
|
|
406
|
+
cb: (err: any, data?: DisableDNSViewCommandOutput) => void
|
|
407
|
+
): void;
|
|
408
|
+
disableDNSView(
|
|
409
|
+
args: DisableDNSViewCommandInput,
|
|
410
|
+
options: __HttpHandlerOptions,
|
|
411
|
+
cb: (err: any, data?: DisableDNSViewCommandOutput) => void
|
|
412
|
+
): void;
|
|
413
|
+
disassociateHostedZone(
|
|
414
|
+
args: DisassociateHostedZoneCommandInput,
|
|
415
|
+
options?: __HttpHandlerOptions
|
|
416
|
+
): Promise<DisassociateHostedZoneCommandOutput>;
|
|
417
|
+
disassociateHostedZone(
|
|
418
|
+
args: DisassociateHostedZoneCommandInput,
|
|
419
|
+
cb: (err: any, data?: DisassociateHostedZoneCommandOutput) => void
|
|
420
|
+
): void;
|
|
421
|
+
disassociateHostedZone(
|
|
422
|
+
args: DisassociateHostedZoneCommandInput,
|
|
423
|
+
options: __HttpHandlerOptions,
|
|
424
|
+
cb: (err: any, data?: DisassociateHostedZoneCommandOutput) => void
|
|
425
|
+
): void;
|
|
426
|
+
enableDNSView(
|
|
427
|
+
args: EnableDNSViewCommandInput,
|
|
428
|
+
options?: __HttpHandlerOptions
|
|
429
|
+
): Promise<EnableDNSViewCommandOutput>;
|
|
430
|
+
enableDNSView(
|
|
431
|
+
args: EnableDNSViewCommandInput,
|
|
432
|
+
cb: (err: any, data?: EnableDNSViewCommandOutput) => void
|
|
433
|
+
): void;
|
|
434
|
+
enableDNSView(
|
|
435
|
+
args: EnableDNSViewCommandInput,
|
|
436
|
+
options: __HttpHandlerOptions,
|
|
437
|
+
cb: (err: any, data?: EnableDNSViewCommandOutput) => void
|
|
438
|
+
): void;
|
|
439
|
+
getAccessSource(
|
|
440
|
+
args: GetAccessSourceCommandInput,
|
|
441
|
+
options?: __HttpHandlerOptions
|
|
442
|
+
): Promise<GetAccessSourceCommandOutput>;
|
|
443
|
+
getAccessSource(
|
|
444
|
+
args: GetAccessSourceCommandInput,
|
|
445
|
+
cb: (err: any, data?: GetAccessSourceCommandOutput) => void
|
|
446
|
+
): void;
|
|
447
|
+
getAccessSource(
|
|
448
|
+
args: GetAccessSourceCommandInput,
|
|
449
|
+
options: __HttpHandlerOptions,
|
|
450
|
+
cb: (err: any, data?: GetAccessSourceCommandOutput) => void
|
|
451
|
+
): void;
|
|
452
|
+
getAccessToken(
|
|
453
|
+
args: GetAccessTokenCommandInput,
|
|
454
|
+
options?: __HttpHandlerOptions
|
|
455
|
+
): Promise<GetAccessTokenCommandOutput>;
|
|
456
|
+
getAccessToken(
|
|
457
|
+
args: GetAccessTokenCommandInput,
|
|
458
|
+
cb: (err: any, data?: GetAccessTokenCommandOutput) => void
|
|
459
|
+
): void;
|
|
460
|
+
getAccessToken(
|
|
461
|
+
args: GetAccessTokenCommandInput,
|
|
462
|
+
options: __HttpHandlerOptions,
|
|
463
|
+
cb: (err: any, data?: GetAccessTokenCommandOutput) => void
|
|
464
|
+
): void;
|
|
465
|
+
getDNSView(
|
|
466
|
+
args: GetDNSViewCommandInput,
|
|
467
|
+
options?: __HttpHandlerOptions
|
|
468
|
+
): Promise<GetDNSViewCommandOutput>;
|
|
469
|
+
getDNSView(
|
|
470
|
+
args: GetDNSViewCommandInput,
|
|
471
|
+
cb: (err: any, data?: GetDNSViewCommandOutput) => void
|
|
472
|
+
): void;
|
|
473
|
+
getDNSView(
|
|
474
|
+
args: GetDNSViewCommandInput,
|
|
475
|
+
options: __HttpHandlerOptions,
|
|
476
|
+
cb: (err: any, data?: GetDNSViewCommandOutput) => void
|
|
477
|
+
): void;
|
|
478
|
+
getFirewallDomainList(
|
|
479
|
+
args: GetFirewallDomainListCommandInput,
|
|
480
|
+
options?: __HttpHandlerOptions
|
|
481
|
+
): Promise<GetFirewallDomainListCommandOutput>;
|
|
482
|
+
getFirewallDomainList(
|
|
483
|
+
args: GetFirewallDomainListCommandInput,
|
|
484
|
+
cb: (err: any, data?: GetFirewallDomainListCommandOutput) => void
|
|
485
|
+
): void;
|
|
486
|
+
getFirewallDomainList(
|
|
487
|
+
args: GetFirewallDomainListCommandInput,
|
|
488
|
+
options: __HttpHandlerOptions,
|
|
489
|
+
cb: (err: any, data?: GetFirewallDomainListCommandOutput) => void
|
|
490
|
+
): void;
|
|
491
|
+
getFirewallRule(
|
|
492
|
+
args: GetFirewallRuleCommandInput,
|
|
493
|
+
options?: __HttpHandlerOptions
|
|
494
|
+
): Promise<GetFirewallRuleCommandOutput>;
|
|
495
|
+
getFirewallRule(
|
|
496
|
+
args: GetFirewallRuleCommandInput,
|
|
497
|
+
cb: (err: any, data?: GetFirewallRuleCommandOutput) => void
|
|
498
|
+
): void;
|
|
499
|
+
getFirewallRule(
|
|
500
|
+
args: GetFirewallRuleCommandInput,
|
|
501
|
+
options: __HttpHandlerOptions,
|
|
502
|
+
cb: (err: any, data?: GetFirewallRuleCommandOutput) => void
|
|
503
|
+
): void;
|
|
504
|
+
getGlobalResolver(
|
|
505
|
+
args: GetGlobalResolverCommandInput,
|
|
506
|
+
options?: __HttpHandlerOptions
|
|
507
|
+
): Promise<GetGlobalResolverCommandOutput>;
|
|
508
|
+
getGlobalResolver(
|
|
509
|
+
args: GetGlobalResolverCommandInput,
|
|
510
|
+
cb: (err: any, data?: GetGlobalResolverCommandOutput) => void
|
|
511
|
+
): void;
|
|
512
|
+
getGlobalResolver(
|
|
513
|
+
args: GetGlobalResolverCommandInput,
|
|
514
|
+
options: __HttpHandlerOptions,
|
|
515
|
+
cb: (err: any, data?: GetGlobalResolverCommandOutput) => void
|
|
516
|
+
): void;
|
|
517
|
+
getHostedZoneAssociation(
|
|
518
|
+
args: GetHostedZoneAssociationCommandInput,
|
|
519
|
+
options?: __HttpHandlerOptions
|
|
520
|
+
): Promise<GetHostedZoneAssociationCommandOutput>;
|
|
521
|
+
getHostedZoneAssociation(
|
|
522
|
+
args: GetHostedZoneAssociationCommandInput,
|
|
523
|
+
cb: (err: any, data?: GetHostedZoneAssociationCommandOutput) => void
|
|
524
|
+
): void;
|
|
525
|
+
getHostedZoneAssociation(
|
|
526
|
+
args: GetHostedZoneAssociationCommandInput,
|
|
527
|
+
options: __HttpHandlerOptions,
|
|
528
|
+
cb: (err: any, data?: GetHostedZoneAssociationCommandOutput) => void
|
|
529
|
+
): void;
|
|
530
|
+
getManagedFirewallDomainList(
|
|
531
|
+
args: GetManagedFirewallDomainListCommandInput,
|
|
532
|
+
options?: __HttpHandlerOptions
|
|
533
|
+
): Promise<GetManagedFirewallDomainListCommandOutput>;
|
|
534
|
+
getManagedFirewallDomainList(
|
|
535
|
+
args: GetManagedFirewallDomainListCommandInput,
|
|
536
|
+
cb: (err: any, data?: GetManagedFirewallDomainListCommandOutput) => void
|
|
537
|
+
): void;
|
|
538
|
+
getManagedFirewallDomainList(
|
|
539
|
+
args: GetManagedFirewallDomainListCommandInput,
|
|
540
|
+
options: __HttpHandlerOptions,
|
|
541
|
+
cb: (err: any, data?: GetManagedFirewallDomainListCommandOutput) => void
|
|
542
|
+
): void;
|
|
543
|
+
importFirewallDomains(
|
|
544
|
+
args: ImportFirewallDomainsCommandInput,
|
|
545
|
+
options?: __HttpHandlerOptions
|
|
546
|
+
): Promise<ImportFirewallDomainsCommandOutput>;
|
|
547
|
+
importFirewallDomains(
|
|
548
|
+
args: ImportFirewallDomainsCommandInput,
|
|
549
|
+
cb: (err: any, data?: ImportFirewallDomainsCommandOutput) => void
|
|
550
|
+
): void;
|
|
551
|
+
importFirewallDomains(
|
|
552
|
+
args: ImportFirewallDomainsCommandInput,
|
|
553
|
+
options: __HttpHandlerOptions,
|
|
554
|
+
cb: (err: any, data?: ImportFirewallDomainsCommandOutput) => void
|
|
555
|
+
): void;
|
|
556
|
+
listAccessSources(): Promise<ListAccessSourcesCommandOutput>;
|
|
557
|
+
listAccessSources(
|
|
558
|
+
args: ListAccessSourcesCommandInput,
|
|
559
|
+
options?: __HttpHandlerOptions
|
|
560
|
+
): Promise<ListAccessSourcesCommandOutput>;
|
|
561
|
+
listAccessSources(
|
|
562
|
+
args: ListAccessSourcesCommandInput,
|
|
563
|
+
cb: (err: any, data?: ListAccessSourcesCommandOutput) => void
|
|
564
|
+
): void;
|
|
565
|
+
listAccessSources(
|
|
566
|
+
args: ListAccessSourcesCommandInput,
|
|
567
|
+
options: __HttpHandlerOptions,
|
|
568
|
+
cb: (err: any, data?: ListAccessSourcesCommandOutput) => void
|
|
569
|
+
): void;
|
|
570
|
+
listAccessTokens(
|
|
571
|
+
args: ListAccessTokensCommandInput,
|
|
572
|
+
options?: __HttpHandlerOptions
|
|
573
|
+
): Promise<ListAccessTokensCommandOutput>;
|
|
574
|
+
listAccessTokens(
|
|
575
|
+
args: ListAccessTokensCommandInput,
|
|
576
|
+
cb: (err: any, data?: ListAccessTokensCommandOutput) => void
|
|
577
|
+
): void;
|
|
578
|
+
listAccessTokens(
|
|
579
|
+
args: ListAccessTokensCommandInput,
|
|
580
|
+
options: __HttpHandlerOptions,
|
|
581
|
+
cb: (err: any, data?: ListAccessTokensCommandOutput) => void
|
|
582
|
+
): void;
|
|
583
|
+
listDNSViews(
|
|
584
|
+
args: ListDNSViewsCommandInput,
|
|
585
|
+
options?: __HttpHandlerOptions
|
|
586
|
+
): Promise<ListDNSViewsCommandOutput>;
|
|
587
|
+
listDNSViews(
|
|
588
|
+
args: ListDNSViewsCommandInput,
|
|
589
|
+
cb: (err: any, data?: ListDNSViewsCommandOutput) => void
|
|
590
|
+
): void;
|
|
591
|
+
listDNSViews(
|
|
592
|
+
args: ListDNSViewsCommandInput,
|
|
593
|
+
options: __HttpHandlerOptions,
|
|
594
|
+
cb: (err: any, data?: ListDNSViewsCommandOutput) => void
|
|
595
|
+
): void;
|
|
596
|
+
listFirewallDomainLists(): Promise<ListFirewallDomainListsCommandOutput>;
|
|
597
|
+
listFirewallDomainLists(
|
|
598
|
+
args: ListFirewallDomainListsCommandInput,
|
|
599
|
+
options?: __HttpHandlerOptions
|
|
600
|
+
): Promise<ListFirewallDomainListsCommandOutput>;
|
|
601
|
+
listFirewallDomainLists(
|
|
602
|
+
args: ListFirewallDomainListsCommandInput,
|
|
603
|
+
cb: (err: any, data?: ListFirewallDomainListsCommandOutput) => void
|
|
604
|
+
): void;
|
|
605
|
+
listFirewallDomainLists(
|
|
606
|
+
args: ListFirewallDomainListsCommandInput,
|
|
607
|
+
options: __HttpHandlerOptions,
|
|
608
|
+
cb: (err: any, data?: ListFirewallDomainListsCommandOutput) => void
|
|
609
|
+
): void;
|
|
610
|
+
listFirewallDomains(
|
|
611
|
+
args: ListFirewallDomainsCommandInput,
|
|
612
|
+
options?: __HttpHandlerOptions
|
|
613
|
+
): Promise<ListFirewallDomainsCommandOutput>;
|
|
614
|
+
listFirewallDomains(
|
|
615
|
+
args: ListFirewallDomainsCommandInput,
|
|
616
|
+
cb: (err: any, data?: ListFirewallDomainsCommandOutput) => void
|
|
617
|
+
): void;
|
|
618
|
+
listFirewallDomains(
|
|
619
|
+
args: ListFirewallDomainsCommandInput,
|
|
620
|
+
options: __HttpHandlerOptions,
|
|
621
|
+
cb: (err: any, data?: ListFirewallDomainsCommandOutput) => void
|
|
622
|
+
): void;
|
|
623
|
+
listFirewallRules(
|
|
624
|
+
args: ListFirewallRulesCommandInput,
|
|
625
|
+
options?: __HttpHandlerOptions
|
|
626
|
+
): Promise<ListFirewallRulesCommandOutput>;
|
|
627
|
+
listFirewallRules(
|
|
628
|
+
args: ListFirewallRulesCommandInput,
|
|
629
|
+
cb: (err: any, data?: ListFirewallRulesCommandOutput) => void
|
|
630
|
+
): void;
|
|
631
|
+
listFirewallRules(
|
|
632
|
+
args: ListFirewallRulesCommandInput,
|
|
633
|
+
options: __HttpHandlerOptions,
|
|
634
|
+
cb: (err: any, data?: ListFirewallRulesCommandOutput) => void
|
|
635
|
+
): void;
|
|
636
|
+
listGlobalResolvers(): Promise<ListGlobalResolversCommandOutput>;
|
|
637
|
+
listGlobalResolvers(
|
|
638
|
+
args: ListGlobalResolversCommandInput,
|
|
639
|
+
options?: __HttpHandlerOptions
|
|
640
|
+
): Promise<ListGlobalResolversCommandOutput>;
|
|
641
|
+
listGlobalResolvers(
|
|
642
|
+
args: ListGlobalResolversCommandInput,
|
|
643
|
+
cb: (err: any, data?: ListGlobalResolversCommandOutput) => void
|
|
644
|
+
): void;
|
|
645
|
+
listGlobalResolvers(
|
|
646
|
+
args: ListGlobalResolversCommandInput,
|
|
647
|
+
options: __HttpHandlerOptions,
|
|
648
|
+
cb: (err: any, data?: ListGlobalResolversCommandOutput) => void
|
|
649
|
+
): void;
|
|
650
|
+
listHostedZoneAssociations(
|
|
651
|
+
args: ListHostedZoneAssociationsCommandInput,
|
|
652
|
+
options?: __HttpHandlerOptions
|
|
653
|
+
): Promise<ListHostedZoneAssociationsCommandOutput>;
|
|
654
|
+
listHostedZoneAssociations(
|
|
655
|
+
args: ListHostedZoneAssociationsCommandInput,
|
|
656
|
+
cb: (err: any, data?: ListHostedZoneAssociationsCommandOutput) => void
|
|
657
|
+
): void;
|
|
658
|
+
listHostedZoneAssociations(
|
|
659
|
+
args: ListHostedZoneAssociationsCommandInput,
|
|
660
|
+
options: __HttpHandlerOptions,
|
|
661
|
+
cb: (err: any, data?: ListHostedZoneAssociationsCommandOutput) => void
|
|
662
|
+
): void;
|
|
663
|
+
listManagedFirewallDomainLists(
|
|
664
|
+
args: ListManagedFirewallDomainListsCommandInput,
|
|
665
|
+
options?: __HttpHandlerOptions
|
|
666
|
+
): Promise<ListManagedFirewallDomainListsCommandOutput>;
|
|
667
|
+
listManagedFirewallDomainLists(
|
|
668
|
+
args: ListManagedFirewallDomainListsCommandInput,
|
|
669
|
+
cb: (err: any, data?: ListManagedFirewallDomainListsCommandOutput) => void
|
|
670
|
+
): void;
|
|
671
|
+
listManagedFirewallDomainLists(
|
|
672
|
+
args: ListManagedFirewallDomainListsCommandInput,
|
|
673
|
+
options: __HttpHandlerOptions,
|
|
674
|
+
cb: (err: any, data?: ListManagedFirewallDomainListsCommandOutput) => void
|
|
675
|
+
): void;
|
|
676
|
+
listTagsForResource(
|
|
677
|
+
args: ListTagsForResourceCommandInput,
|
|
678
|
+
options?: __HttpHandlerOptions
|
|
679
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
680
|
+
listTagsForResource(
|
|
681
|
+
args: ListTagsForResourceCommandInput,
|
|
682
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
683
|
+
): void;
|
|
684
|
+
listTagsForResource(
|
|
685
|
+
args: ListTagsForResourceCommandInput,
|
|
686
|
+
options: __HttpHandlerOptions,
|
|
687
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
688
|
+
): void;
|
|
689
|
+
tagResource(
|
|
690
|
+
args: TagResourceCommandInput,
|
|
691
|
+
options?: __HttpHandlerOptions
|
|
692
|
+
): Promise<TagResourceCommandOutput>;
|
|
693
|
+
tagResource(
|
|
694
|
+
args: TagResourceCommandInput,
|
|
695
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
696
|
+
): void;
|
|
697
|
+
tagResource(
|
|
698
|
+
args: TagResourceCommandInput,
|
|
699
|
+
options: __HttpHandlerOptions,
|
|
700
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
701
|
+
): void;
|
|
702
|
+
untagResource(
|
|
703
|
+
args: UntagResourceCommandInput,
|
|
704
|
+
options?: __HttpHandlerOptions
|
|
705
|
+
): Promise<UntagResourceCommandOutput>;
|
|
706
|
+
untagResource(
|
|
707
|
+
args: UntagResourceCommandInput,
|
|
708
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
709
|
+
): void;
|
|
710
|
+
untagResource(
|
|
711
|
+
args: UntagResourceCommandInput,
|
|
712
|
+
options: __HttpHandlerOptions,
|
|
713
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
714
|
+
): void;
|
|
715
|
+
updateAccessSource(
|
|
716
|
+
args: UpdateAccessSourceCommandInput,
|
|
717
|
+
options?: __HttpHandlerOptions
|
|
718
|
+
): Promise<UpdateAccessSourceCommandOutput>;
|
|
719
|
+
updateAccessSource(
|
|
720
|
+
args: UpdateAccessSourceCommandInput,
|
|
721
|
+
cb: (err: any, data?: UpdateAccessSourceCommandOutput) => void
|
|
722
|
+
): void;
|
|
723
|
+
updateAccessSource(
|
|
724
|
+
args: UpdateAccessSourceCommandInput,
|
|
725
|
+
options: __HttpHandlerOptions,
|
|
726
|
+
cb: (err: any, data?: UpdateAccessSourceCommandOutput) => void
|
|
727
|
+
): void;
|
|
728
|
+
updateAccessToken(
|
|
729
|
+
args: UpdateAccessTokenCommandInput,
|
|
730
|
+
options?: __HttpHandlerOptions
|
|
731
|
+
): Promise<UpdateAccessTokenCommandOutput>;
|
|
732
|
+
updateAccessToken(
|
|
733
|
+
args: UpdateAccessTokenCommandInput,
|
|
734
|
+
cb: (err: any, data?: UpdateAccessTokenCommandOutput) => void
|
|
735
|
+
): void;
|
|
736
|
+
updateAccessToken(
|
|
737
|
+
args: UpdateAccessTokenCommandInput,
|
|
738
|
+
options: __HttpHandlerOptions,
|
|
739
|
+
cb: (err: any, data?: UpdateAccessTokenCommandOutput) => void
|
|
740
|
+
): void;
|
|
741
|
+
updateDNSView(
|
|
742
|
+
args: UpdateDNSViewCommandInput,
|
|
743
|
+
options?: __HttpHandlerOptions
|
|
744
|
+
): Promise<UpdateDNSViewCommandOutput>;
|
|
745
|
+
updateDNSView(
|
|
746
|
+
args: UpdateDNSViewCommandInput,
|
|
747
|
+
cb: (err: any, data?: UpdateDNSViewCommandOutput) => void
|
|
748
|
+
): void;
|
|
749
|
+
updateDNSView(
|
|
750
|
+
args: UpdateDNSViewCommandInput,
|
|
751
|
+
options: __HttpHandlerOptions,
|
|
752
|
+
cb: (err: any, data?: UpdateDNSViewCommandOutput) => void
|
|
753
|
+
): void;
|
|
754
|
+
updateFirewallDomains(
|
|
755
|
+
args: UpdateFirewallDomainsCommandInput,
|
|
756
|
+
options?: __HttpHandlerOptions
|
|
757
|
+
): Promise<UpdateFirewallDomainsCommandOutput>;
|
|
758
|
+
updateFirewallDomains(
|
|
759
|
+
args: UpdateFirewallDomainsCommandInput,
|
|
760
|
+
cb: (err: any, data?: UpdateFirewallDomainsCommandOutput) => void
|
|
761
|
+
): void;
|
|
762
|
+
updateFirewallDomains(
|
|
763
|
+
args: UpdateFirewallDomainsCommandInput,
|
|
764
|
+
options: __HttpHandlerOptions,
|
|
765
|
+
cb: (err: any, data?: UpdateFirewallDomainsCommandOutput) => void
|
|
766
|
+
): void;
|
|
767
|
+
updateFirewallRule(
|
|
768
|
+
args: UpdateFirewallRuleCommandInput,
|
|
769
|
+
options?: __HttpHandlerOptions
|
|
770
|
+
): Promise<UpdateFirewallRuleCommandOutput>;
|
|
771
|
+
updateFirewallRule(
|
|
772
|
+
args: UpdateFirewallRuleCommandInput,
|
|
773
|
+
cb: (err: any, data?: UpdateFirewallRuleCommandOutput) => void
|
|
774
|
+
): void;
|
|
775
|
+
updateFirewallRule(
|
|
776
|
+
args: UpdateFirewallRuleCommandInput,
|
|
777
|
+
options: __HttpHandlerOptions,
|
|
778
|
+
cb: (err: any, data?: UpdateFirewallRuleCommandOutput) => void
|
|
779
|
+
): void;
|
|
780
|
+
updateGlobalResolver(
|
|
781
|
+
args: UpdateGlobalResolverCommandInput,
|
|
782
|
+
options?: __HttpHandlerOptions
|
|
783
|
+
): Promise<UpdateGlobalResolverCommandOutput>;
|
|
784
|
+
updateGlobalResolver(
|
|
785
|
+
args: UpdateGlobalResolverCommandInput,
|
|
786
|
+
cb: (err: any, data?: UpdateGlobalResolverCommandOutput) => void
|
|
787
|
+
): void;
|
|
788
|
+
updateGlobalResolver(
|
|
789
|
+
args: UpdateGlobalResolverCommandInput,
|
|
790
|
+
options: __HttpHandlerOptions,
|
|
791
|
+
cb: (err: any, data?: UpdateGlobalResolverCommandOutput) => void
|
|
792
|
+
): void;
|
|
793
|
+
updateHostedZoneAssociation(
|
|
794
|
+
args: UpdateHostedZoneAssociationCommandInput,
|
|
795
|
+
options?: __HttpHandlerOptions
|
|
796
|
+
): Promise<UpdateHostedZoneAssociationCommandOutput>;
|
|
797
|
+
updateHostedZoneAssociation(
|
|
798
|
+
args: UpdateHostedZoneAssociationCommandInput,
|
|
799
|
+
cb: (err: any, data?: UpdateHostedZoneAssociationCommandOutput) => void
|
|
800
|
+
): void;
|
|
801
|
+
updateHostedZoneAssociation(
|
|
802
|
+
args: UpdateHostedZoneAssociationCommandInput,
|
|
803
|
+
options: __HttpHandlerOptions,
|
|
804
|
+
cb: (err: any, data?: UpdateHostedZoneAssociationCommandOutput) => void
|
|
805
|
+
): void;
|
|
806
|
+
}
|
|
807
|
+
export declare class Route53GlobalResolver
|
|
808
|
+
extends Route53GlobalResolverClient
|
|
809
|
+
implements Route53GlobalResolver {}
|