@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,408 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
34
|
+
Decoder as __Decoder,
|
|
35
|
+
Encoder as __Encoder,
|
|
36
|
+
HashConstructor as __HashConstructor,
|
|
37
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
40
|
+
Logger as __Logger,
|
|
41
|
+
Provider as __Provider,
|
|
42
|
+
Provider,
|
|
43
|
+
StreamCollector as __StreamCollector,
|
|
44
|
+
UrlParser as __UrlParser,
|
|
45
|
+
UserAgent as __UserAgent,
|
|
46
|
+
} from "@smithy/types";
|
|
47
|
+
import {
|
|
48
|
+
HttpAuthSchemeInputConfig,
|
|
49
|
+
HttpAuthSchemeResolvedConfig,
|
|
50
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
51
|
+
import {
|
|
52
|
+
AssociateHostedZoneCommandInput,
|
|
53
|
+
AssociateHostedZoneCommandOutput,
|
|
54
|
+
} from "./commands/AssociateHostedZoneCommand";
|
|
55
|
+
import {
|
|
56
|
+
BatchCreateFirewallRuleCommandInput,
|
|
57
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
58
|
+
} from "./commands/BatchCreateFirewallRuleCommand";
|
|
59
|
+
import {
|
|
60
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
61
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
62
|
+
} from "./commands/BatchDeleteFirewallRuleCommand";
|
|
63
|
+
import {
|
|
64
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
65
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
66
|
+
} from "./commands/BatchUpdateFirewallRuleCommand";
|
|
67
|
+
import {
|
|
68
|
+
CreateAccessSourceCommandInput,
|
|
69
|
+
CreateAccessSourceCommandOutput,
|
|
70
|
+
} from "./commands/CreateAccessSourceCommand";
|
|
71
|
+
import {
|
|
72
|
+
CreateAccessTokenCommandInput,
|
|
73
|
+
CreateAccessTokenCommandOutput,
|
|
74
|
+
} from "./commands/CreateAccessTokenCommand";
|
|
75
|
+
import {
|
|
76
|
+
CreateDNSViewCommandInput,
|
|
77
|
+
CreateDNSViewCommandOutput,
|
|
78
|
+
} from "./commands/CreateDNSViewCommand";
|
|
79
|
+
import {
|
|
80
|
+
CreateFirewallDomainListCommandInput,
|
|
81
|
+
CreateFirewallDomainListCommandOutput,
|
|
82
|
+
} from "./commands/CreateFirewallDomainListCommand";
|
|
83
|
+
import {
|
|
84
|
+
CreateFirewallRuleCommandInput,
|
|
85
|
+
CreateFirewallRuleCommandOutput,
|
|
86
|
+
} from "./commands/CreateFirewallRuleCommand";
|
|
87
|
+
import {
|
|
88
|
+
CreateGlobalResolverCommandInput,
|
|
89
|
+
CreateGlobalResolverCommandOutput,
|
|
90
|
+
} from "./commands/CreateGlobalResolverCommand";
|
|
91
|
+
import {
|
|
92
|
+
DeleteAccessSourceCommandInput,
|
|
93
|
+
DeleteAccessSourceCommandOutput,
|
|
94
|
+
} from "./commands/DeleteAccessSourceCommand";
|
|
95
|
+
import {
|
|
96
|
+
DeleteAccessTokenCommandInput,
|
|
97
|
+
DeleteAccessTokenCommandOutput,
|
|
98
|
+
} from "./commands/DeleteAccessTokenCommand";
|
|
99
|
+
import {
|
|
100
|
+
DeleteDNSViewCommandInput,
|
|
101
|
+
DeleteDNSViewCommandOutput,
|
|
102
|
+
} from "./commands/DeleteDNSViewCommand";
|
|
103
|
+
import {
|
|
104
|
+
DeleteFirewallDomainListCommandInput,
|
|
105
|
+
DeleteFirewallDomainListCommandOutput,
|
|
106
|
+
} from "./commands/DeleteFirewallDomainListCommand";
|
|
107
|
+
import {
|
|
108
|
+
DeleteFirewallRuleCommandInput,
|
|
109
|
+
DeleteFirewallRuleCommandOutput,
|
|
110
|
+
} from "./commands/DeleteFirewallRuleCommand";
|
|
111
|
+
import {
|
|
112
|
+
DeleteGlobalResolverCommandInput,
|
|
113
|
+
DeleteGlobalResolverCommandOutput,
|
|
114
|
+
} from "./commands/DeleteGlobalResolverCommand";
|
|
115
|
+
import {
|
|
116
|
+
DisableDNSViewCommandInput,
|
|
117
|
+
DisableDNSViewCommandOutput,
|
|
118
|
+
} from "./commands/DisableDNSViewCommand";
|
|
119
|
+
import {
|
|
120
|
+
DisassociateHostedZoneCommandInput,
|
|
121
|
+
DisassociateHostedZoneCommandOutput,
|
|
122
|
+
} from "./commands/DisassociateHostedZoneCommand";
|
|
123
|
+
import {
|
|
124
|
+
EnableDNSViewCommandInput,
|
|
125
|
+
EnableDNSViewCommandOutput,
|
|
126
|
+
} from "./commands/EnableDNSViewCommand";
|
|
127
|
+
import {
|
|
128
|
+
GetAccessSourceCommandInput,
|
|
129
|
+
GetAccessSourceCommandOutput,
|
|
130
|
+
} from "./commands/GetAccessSourceCommand";
|
|
131
|
+
import {
|
|
132
|
+
GetAccessTokenCommandInput,
|
|
133
|
+
GetAccessTokenCommandOutput,
|
|
134
|
+
} from "./commands/GetAccessTokenCommand";
|
|
135
|
+
import {
|
|
136
|
+
GetDNSViewCommandInput,
|
|
137
|
+
GetDNSViewCommandOutput,
|
|
138
|
+
} from "./commands/GetDNSViewCommand";
|
|
139
|
+
import {
|
|
140
|
+
GetFirewallDomainListCommandInput,
|
|
141
|
+
GetFirewallDomainListCommandOutput,
|
|
142
|
+
} from "./commands/GetFirewallDomainListCommand";
|
|
143
|
+
import {
|
|
144
|
+
GetFirewallRuleCommandInput,
|
|
145
|
+
GetFirewallRuleCommandOutput,
|
|
146
|
+
} from "./commands/GetFirewallRuleCommand";
|
|
147
|
+
import {
|
|
148
|
+
GetGlobalResolverCommandInput,
|
|
149
|
+
GetGlobalResolverCommandOutput,
|
|
150
|
+
} from "./commands/GetGlobalResolverCommand";
|
|
151
|
+
import {
|
|
152
|
+
GetHostedZoneAssociationCommandInput,
|
|
153
|
+
GetHostedZoneAssociationCommandOutput,
|
|
154
|
+
} from "./commands/GetHostedZoneAssociationCommand";
|
|
155
|
+
import {
|
|
156
|
+
GetManagedFirewallDomainListCommandInput,
|
|
157
|
+
GetManagedFirewallDomainListCommandOutput,
|
|
158
|
+
} from "./commands/GetManagedFirewallDomainListCommand";
|
|
159
|
+
import {
|
|
160
|
+
ImportFirewallDomainsCommandInput,
|
|
161
|
+
ImportFirewallDomainsCommandOutput,
|
|
162
|
+
} from "./commands/ImportFirewallDomainsCommand";
|
|
163
|
+
import {
|
|
164
|
+
ListAccessSourcesCommandInput,
|
|
165
|
+
ListAccessSourcesCommandOutput,
|
|
166
|
+
} from "./commands/ListAccessSourcesCommand";
|
|
167
|
+
import {
|
|
168
|
+
ListAccessTokensCommandInput,
|
|
169
|
+
ListAccessTokensCommandOutput,
|
|
170
|
+
} from "./commands/ListAccessTokensCommand";
|
|
171
|
+
import {
|
|
172
|
+
ListDNSViewsCommandInput,
|
|
173
|
+
ListDNSViewsCommandOutput,
|
|
174
|
+
} from "./commands/ListDNSViewsCommand";
|
|
175
|
+
import {
|
|
176
|
+
ListFirewallDomainListsCommandInput,
|
|
177
|
+
ListFirewallDomainListsCommandOutput,
|
|
178
|
+
} from "./commands/ListFirewallDomainListsCommand";
|
|
179
|
+
import {
|
|
180
|
+
ListFirewallDomainsCommandInput,
|
|
181
|
+
ListFirewallDomainsCommandOutput,
|
|
182
|
+
} from "./commands/ListFirewallDomainsCommand";
|
|
183
|
+
import {
|
|
184
|
+
ListFirewallRulesCommandInput,
|
|
185
|
+
ListFirewallRulesCommandOutput,
|
|
186
|
+
} from "./commands/ListFirewallRulesCommand";
|
|
187
|
+
import {
|
|
188
|
+
ListGlobalResolversCommandInput,
|
|
189
|
+
ListGlobalResolversCommandOutput,
|
|
190
|
+
} from "./commands/ListGlobalResolversCommand";
|
|
191
|
+
import {
|
|
192
|
+
ListHostedZoneAssociationsCommandInput,
|
|
193
|
+
ListHostedZoneAssociationsCommandOutput,
|
|
194
|
+
} from "./commands/ListHostedZoneAssociationsCommand";
|
|
195
|
+
import {
|
|
196
|
+
ListManagedFirewallDomainListsCommandInput,
|
|
197
|
+
ListManagedFirewallDomainListsCommandOutput,
|
|
198
|
+
} from "./commands/ListManagedFirewallDomainListsCommand";
|
|
199
|
+
import {
|
|
200
|
+
ListTagsForResourceCommandInput,
|
|
201
|
+
ListTagsForResourceCommandOutput,
|
|
202
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
203
|
+
import {
|
|
204
|
+
TagResourceCommandInput,
|
|
205
|
+
TagResourceCommandOutput,
|
|
206
|
+
} from "./commands/TagResourceCommand";
|
|
207
|
+
import {
|
|
208
|
+
UntagResourceCommandInput,
|
|
209
|
+
UntagResourceCommandOutput,
|
|
210
|
+
} from "./commands/UntagResourceCommand";
|
|
211
|
+
import {
|
|
212
|
+
UpdateAccessSourceCommandInput,
|
|
213
|
+
UpdateAccessSourceCommandOutput,
|
|
214
|
+
} from "./commands/UpdateAccessSourceCommand";
|
|
215
|
+
import {
|
|
216
|
+
UpdateAccessTokenCommandInput,
|
|
217
|
+
UpdateAccessTokenCommandOutput,
|
|
218
|
+
} from "./commands/UpdateAccessTokenCommand";
|
|
219
|
+
import {
|
|
220
|
+
UpdateDNSViewCommandInput,
|
|
221
|
+
UpdateDNSViewCommandOutput,
|
|
222
|
+
} from "./commands/UpdateDNSViewCommand";
|
|
223
|
+
import {
|
|
224
|
+
UpdateFirewallDomainsCommandInput,
|
|
225
|
+
UpdateFirewallDomainsCommandOutput,
|
|
226
|
+
} from "./commands/UpdateFirewallDomainsCommand";
|
|
227
|
+
import {
|
|
228
|
+
UpdateFirewallRuleCommandInput,
|
|
229
|
+
UpdateFirewallRuleCommandOutput,
|
|
230
|
+
} from "./commands/UpdateFirewallRuleCommand";
|
|
231
|
+
import {
|
|
232
|
+
UpdateGlobalResolverCommandInput,
|
|
233
|
+
UpdateGlobalResolverCommandOutput,
|
|
234
|
+
} from "./commands/UpdateGlobalResolverCommand";
|
|
235
|
+
import {
|
|
236
|
+
UpdateHostedZoneAssociationCommandInput,
|
|
237
|
+
UpdateHostedZoneAssociationCommandOutput,
|
|
238
|
+
} from "./commands/UpdateHostedZoneAssociationCommand";
|
|
239
|
+
import {
|
|
240
|
+
ClientInputEndpointParameters,
|
|
241
|
+
ClientResolvedEndpointParameters,
|
|
242
|
+
EndpointParameters,
|
|
243
|
+
} from "./endpoint/EndpointParameters";
|
|
244
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
245
|
+
export { __Client };
|
|
246
|
+
export type ServiceInputTypes =
|
|
247
|
+
| AssociateHostedZoneCommandInput
|
|
248
|
+
| BatchCreateFirewallRuleCommandInput
|
|
249
|
+
| BatchDeleteFirewallRuleCommandInput
|
|
250
|
+
| BatchUpdateFirewallRuleCommandInput
|
|
251
|
+
| CreateAccessSourceCommandInput
|
|
252
|
+
| CreateAccessTokenCommandInput
|
|
253
|
+
| CreateDNSViewCommandInput
|
|
254
|
+
| CreateFirewallDomainListCommandInput
|
|
255
|
+
| CreateFirewallRuleCommandInput
|
|
256
|
+
| CreateGlobalResolverCommandInput
|
|
257
|
+
| DeleteAccessSourceCommandInput
|
|
258
|
+
| DeleteAccessTokenCommandInput
|
|
259
|
+
| DeleteDNSViewCommandInput
|
|
260
|
+
| DeleteFirewallDomainListCommandInput
|
|
261
|
+
| DeleteFirewallRuleCommandInput
|
|
262
|
+
| DeleteGlobalResolverCommandInput
|
|
263
|
+
| DisableDNSViewCommandInput
|
|
264
|
+
| DisassociateHostedZoneCommandInput
|
|
265
|
+
| EnableDNSViewCommandInput
|
|
266
|
+
| GetAccessSourceCommandInput
|
|
267
|
+
| GetAccessTokenCommandInput
|
|
268
|
+
| GetDNSViewCommandInput
|
|
269
|
+
| GetFirewallDomainListCommandInput
|
|
270
|
+
| GetFirewallRuleCommandInput
|
|
271
|
+
| GetGlobalResolverCommandInput
|
|
272
|
+
| GetHostedZoneAssociationCommandInput
|
|
273
|
+
| GetManagedFirewallDomainListCommandInput
|
|
274
|
+
| ImportFirewallDomainsCommandInput
|
|
275
|
+
| ListAccessSourcesCommandInput
|
|
276
|
+
| ListAccessTokensCommandInput
|
|
277
|
+
| ListDNSViewsCommandInput
|
|
278
|
+
| ListFirewallDomainListsCommandInput
|
|
279
|
+
| ListFirewallDomainsCommandInput
|
|
280
|
+
| ListFirewallRulesCommandInput
|
|
281
|
+
| ListGlobalResolversCommandInput
|
|
282
|
+
| ListHostedZoneAssociationsCommandInput
|
|
283
|
+
| ListManagedFirewallDomainListsCommandInput
|
|
284
|
+
| ListTagsForResourceCommandInput
|
|
285
|
+
| TagResourceCommandInput
|
|
286
|
+
| UntagResourceCommandInput
|
|
287
|
+
| UpdateAccessSourceCommandInput
|
|
288
|
+
| UpdateAccessTokenCommandInput
|
|
289
|
+
| UpdateDNSViewCommandInput
|
|
290
|
+
| UpdateFirewallDomainsCommandInput
|
|
291
|
+
| UpdateFirewallRuleCommandInput
|
|
292
|
+
| UpdateGlobalResolverCommandInput
|
|
293
|
+
| UpdateHostedZoneAssociationCommandInput;
|
|
294
|
+
export type ServiceOutputTypes =
|
|
295
|
+
| AssociateHostedZoneCommandOutput
|
|
296
|
+
| BatchCreateFirewallRuleCommandOutput
|
|
297
|
+
| BatchDeleteFirewallRuleCommandOutput
|
|
298
|
+
| BatchUpdateFirewallRuleCommandOutput
|
|
299
|
+
| CreateAccessSourceCommandOutput
|
|
300
|
+
| CreateAccessTokenCommandOutput
|
|
301
|
+
| CreateDNSViewCommandOutput
|
|
302
|
+
| CreateFirewallDomainListCommandOutput
|
|
303
|
+
| CreateFirewallRuleCommandOutput
|
|
304
|
+
| CreateGlobalResolverCommandOutput
|
|
305
|
+
| DeleteAccessSourceCommandOutput
|
|
306
|
+
| DeleteAccessTokenCommandOutput
|
|
307
|
+
| DeleteDNSViewCommandOutput
|
|
308
|
+
| DeleteFirewallDomainListCommandOutput
|
|
309
|
+
| DeleteFirewallRuleCommandOutput
|
|
310
|
+
| DeleteGlobalResolverCommandOutput
|
|
311
|
+
| DisableDNSViewCommandOutput
|
|
312
|
+
| DisassociateHostedZoneCommandOutput
|
|
313
|
+
| EnableDNSViewCommandOutput
|
|
314
|
+
| GetAccessSourceCommandOutput
|
|
315
|
+
| GetAccessTokenCommandOutput
|
|
316
|
+
| GetDNSViewCommandOutput
|
|
317
|
+
| GetFirewallDomainListCommandOutput
|
|
318
|
+
| GetFirewallRuleCommandOutput
|
|
319
|
+
| GetGlobalResolverCommandOutput
|
|
320
|
+
| GetHostedZoneAssociationCommandOutput
|
|
321
|
+
| GetManagedFirewallDomainListCommandOutput
|
|
322
|
+
| ImportFirewallDomainsCommandOutput
|
|
323
|
+
| ListAccessSourcesCommandOutput
|
|
324
|
+
| ListAccessTokensCommandOutput
|
|
325
|
+
| ListDNSViewsCommandOutput
|
|
326
|
+
| ListFirewallDomainListsCommandOutput
|
|
327
|
+
| ListFirewallDomainsCommandOutput
|
|
328
|
+
| ListFirewallRulesCommandOutput
|
|
329
|
+
| ListGlobalResolversCommandOutput
|
|
330
|
+
| ListHostedZoneAssociationsCommandOutput
|
|
331
|
+
| ListManagedFirewallDomainListsCommandOutput
|
|
332
|
+
| ListTagsForResourceCommandOutput
|
|
333
|
+
| TagResourceCommandOutput
|
|
334
|
+
| UntagResourceCommandOutput
|
|
335
|
+
| UpdateAccessSourceCommandOutput
|
|
336
|
+
| UpdateAccessTokenCommandOutput
|
|
337
|
+
| UpdateDNSViewCommandOutput
|
|
338
|
+
| UpdateFirewallDomainsCommandOutput
|
|
339
|
+
| UpdateFirewallRuleCommandOutput
|
|
340
|
+
| UpdateGlobalResolverCommandOutput
|
|
341
|
+
| UpdateHostedZoneAssociationCommandOutput;
|
|
342
|
+
export interface ClientDefaults
|
|
343
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
344
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
345
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
346
|
+
urlParser?: __UrlParser;
|
|
347
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
348
|
+
streamCollector?: __StreamCollector;
|
|
349
|
+
base64Decoder?: __Decoder;
|
|
350
|
+
base64Encoder?: __Encoder;
|
|
351
|
+
utf8Decoder?: __Decoder;
|
|
352
|
+
utf8Encoder?: __Encoder;
|
|
353
|
+
runtime?: string;
|
|
354
|
+
disableHostPrefix?: boolean;
|
|
355
|
+
serviceId?: string;
|
|
356
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
357
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
358
|
+
region?: string | __Provider<string>;
|
|
359
|
+
profile?: string;
|
|
360
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
361
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
362
|
+
maxAttempts?: number | __Provider<number>;
|
|
363
|
+
retryMode?: string | __Provider<string>;
|
|
364
|
+
logger?: __Logger;
|
|
365
|
+
extensions?: RuntimeExtension[];
|
|
366
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
367
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
368
|
+
}
|
|
369
|
+
export type Route53GlobalResolverClientConfigType = Partial<
|
|
370
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
371
|
+
> &
|
|
372
|
+
ClientDefaults &
|
|
373
|
+
UserAgentInputConfig &
|
|
374
|
+
RetryInputConfig &
|
|
375
|
+
RegionInputConfig &
|
|
376
|
+
HostHeaderInputConfig &
|
|
377
|
+
EndpointInputConfig<EndpointParameters> &
|
|
378
|
+
HttpAuthSchemeInputConfig &
|
|
379
|
+
ClientInputEndpointParameters;
|
|
380
|
+
export interface Route53GlobalResolverClientConfig
|
|
381
|
+
extends Route53GlobalResolverClientConfigType {}
|
|
382
|
+
export type Route53GlobalResolverClientResolvedConfigType =
|
|
383
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
384
|
+
Required<ClientDefaults> &
|
|
385
|
+
RuntimeExtensionsConfig &
|
|
386
|
+
UserAgentResolvedConfig &
|
|
387
|
+
RetryResolvedConfig &
|
|
388
|
+
RegionResolvedConfig &
|
|
389
|
+
HostHeaderResolvedConfig &
|
|
390
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
391
|
+
HttpAuthSchemeResolvedConfig &
|
|
392
|
+
ClientResolvedEndpointParameters;
|
|
393
|
+
export interface Route53GlobalResolverClientResolvedConfig
|
|
394
|
+
extends Route53GlobalResolverClientResolvedConfigType {}
|
|
395
|
+
export declare class Route53GlobalResolverClient extends __Client<
|
|
396
|
+
__HttpHandlerOptions,
|
|
397
|
+
ServiceInputTypes,
|
|
398
|
+
ServiceOutputTypes,
|
|
399
|
+
Route53GlobalResolverClientResolvedConfig
|
|
400
|
+
> {
|
|
401
|
+
readonly config: Route53GlobalResolverClientResolvedConfig;
|
|
402
|
+
constructor(
|
|
403
|
+
...[
|
|
404
|
+
configuration,
|
|
405
|
+
]: __CheckOptionalClientConfig<Route53GlobalResolverClientConfig>
|
|
406
|
+
);
|
|
407
|
+
destroy(): void;
|
|
408
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { Route53GlobalResolverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: Route53GlobalResolverHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): Route53GlobalResolverHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: Route53GlobalResolverHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { Route53GlobalResolverClientResolvedConfig } from "../Route53GlobalResolverClient";
|
|
15
|
+
export interface Route53GlobalResolverHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface Route53GlobalResolverHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
Route53GlobalResolverHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: Route53GlobalResolverClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<Route53GlobalResolverHttpAuthSchemeParameters>;
|
|
31
|
+
export interface Route53GlobalResolverHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<Route53GlobalResolverHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultRoute53GlobalResolverHttpAuthSchemeProvider: Route53GlobalResolverHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: Route53GlobalResolverHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: Route53GlobalResolverHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AssociateHostedZoneInput,
|
|
5
|
+
AssociateHostedZoneOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53GlobalResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateHostedZoneCommandInput
|
|
15
|
+
extends AssociateHostedZoneInput {}
|
|
16
|
+
export interface AssociateHostedZoneCommandOutput
|
|
17
|
+
extends AssociateHostedZoneOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateHostedZoneCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateHostedZoneCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateHostedZoneCommandInput,
|
|
24
|
+
AssociateHostedZoneCommandOutput,
|
|
25
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateHostedZoneCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateHostedZoneCommandInput,
|
|
33
|
+
AssociateHostedZoneCommandOutput,
|
|
34
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateHostedZoneCommand extends AssociateHostedZoneCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AssociateHostedZoneInput;
|
|
44
|
+
output: AssociateHostedZoneOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AssociateHostedZoneCommandInput;
|
|
48
|
+
output: AssociateHostedZoneCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchCreateFirewallRuleInput,
|
|
5
|
+
BatchCreateFirewallRuleOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53GlobalResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchCreateFirewallRuleCommandInput
|
|
15
|
+
extends BatchCreateFirewallRuleInput {}
|
|
16
|
+
export interface BatchCreateFirewallRuleCommandOutput
|
|
17
|
+
extends BatchCreateFirewallRuleOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchCreateFirewallRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchCreateFirewallRuleCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchCreateFirewallRuleCommandInput,
|
|
24
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
25
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchCreateFirewallRuleCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchCreateFirewallRuleCommandInput,
|
|
33
|
+
BatchCreateFirewallRuleCommandOutput,
|
|
34
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchCreateFirewallRuleCommand extends BatchCreateFirewallRuleCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchCreateFirewallRuleInput;
|
|
44
|
+
output: BatchCreateFirewallRuleOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchCreateFirewallRuleCommandInput;
|
|
48
|
+
output: BatchCreateFirewallRuleCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchDeleteFirewallRuleInput,
|
|
5
|
+
BatchDeleteFirewallRuleOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53GlobalResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchDeleteFirewallRuleCommandInput
|
|
15
|
+
extends BatchDeleteFirewallRuleInput {}
|
|
16
|
+
export interface BatchDeleteFirewallRuleCommandOutput
|
|
17
|
+
extends BatchDeleteFirewallRuleOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchDeleteFirewallRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchDeleteFirewallRuleCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
24
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
25
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchDeleteFirewallRuleCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchDeleteFirewallRuleCommandInput,
|
|
33
|
+
BatchDeleteFirewallRuleCommandOutput,
|
|
34
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchDeleteFirewallRuleCommand extends BatchDeleteFirewallRuleCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchDeleteFirewallRuleInput;
|
|
44
|
+
output: BatchDeleteFirewallRuleOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchDeleteFirewallRuleCommandInput;
|
|
48
|
+
output: BatchDeleteFirewallRuleCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchUpdateFirewallRuleInput,
|
|
5
|
+
BatchUpdateFirewallRuleOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Route53GlobalResolverClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchUpdateFirewallRuleCommandInput
|
|
15
|
+
extends BatchUpdateFirewallRuleInput {}
|
|
16
|
+
export interface BatchUpdateFirewallRuleCommandOutput
|
|
17
|
+
extends BatchUpdateFirewallRuleOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchUpdateFirewallRuleCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchUpdateFirewallRuleCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
24
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
25
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchUpdateFirewallRuleCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchUpdateFirewallRuleCommandInput,
|
|
33
|
+
BatchUpdateFirewallRuleCommandOutput,
|
|
34
|
+
Route53GlobalResolverClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchUpdateFirewallRuleCommand extends BatchUpdateFirewallRuleCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchUpdateFirewallRuleInput;
|
|
44
|
+
output: BatchUpdateFirewallRuleOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchUpdateFirewallRuleCommandInput;
|
|
48
|
+
output: BatchUpdateFirewallRuleCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|