@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,2674 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var middlewareHostHeader = require('@aws-sdk/middleware-host-header');
|
|
4
|
+
var middlewareLogger = require('@aws-sdk/middleware-logger');
|
|
5
|
+
var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
|
|
6
|
+
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
|
+
var configResolver = require('@smithy/config-resolver');
|
|
8
|
+
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
10
|
+
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
|
+
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
12
|
+
var middlewareRetry = require('@smithy/middleware-retry');
|
|
13
|
+
var smithyClient = require('@smithy/smithy-client');
|
|
14
|
+
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
15
|
+
var runtimeConfig = require('./runtimeConfig');
|
|
16
|
+
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
|
+
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
|
|
19
|
+
const resolveClientEndpointParameters = (options) => {
|
|
20
|
+
return Object.assign(options, {
|
|
21
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
22
|
+
defaultSigningName: "route53globalresolver",
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
const commonParams = {
|
|
26
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
27
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
28
|
+
Region: { type: "builtInParams", name: "region" },
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
32
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
33
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
34
|
+
let _credentials = runtimeConfig.credentials;
|
|
35
|
+
return {
|
|
36
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
37
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
38
|
+
if (index === -1) {
|
|
39
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
40
|
+
}
|
|
41
|
+
else {
|
|
42
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
httpAuthSchemes() {
|
|
46
|
+
return _httpAuthSchemes;
|
|
47
|
+
},
|
|
48
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
49
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
50
|
+
},
|
|
51
|
+
httpAuthSchemeProvider() {
|
|
52
|
+
return _httpAuthSchemeProvider;
|
|
53
|
+
},
|
|
54
|
+
setCredentials(credentials) {
|
|
55
|
+
_credentials = credentials;
|
|
56
|
+
},
|
|
57
|
+
credentials() {
|
|
58
|
+
return _credentials;
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
const resolveHttpAuthRuntimeConfig = (config) => {
|
|
63
|
+
return {
|
|
64
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
65
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
66
|
+
credentials: config.credentials(),
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
+
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig), smithyClient.getDefaultExtensionConfiguration(runtimeConfig), protocolHttp.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
+
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration), smithyClient.resolveDefaultRuntimeConfig(extensionConfiguration), protocolHttp.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
class Route53GlobalResolverClient extends smithyClient.Client {
|
|
77
|
+
config;
|
|
78
|
+
constructor(...[configuration]) {
|
|
79
|
+
const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
|
|
80
|
+
super(_config_0);
|
|
81
|
+
this.initConfig = _config_0;
|
|
82
|
+
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
+
const _config_2 = middlewareUserAgent.resolveUserAgentConfig(_config_1);
|
|
84
|
+
const _config_3 = middlewareRetry.resolveRetryConfig(_config_2);
|
|
85
|
+
const _config_4 = configResolver.resolveRegionConfig(_config_3);
|
|
86
|
+
const _config_5 = middlewareHostHeader.resolveHostHeaderConfig(_config_4);
|
|
87
|
+
const _config_6 = middlewareEndpoint.resolveEndpointConfig(_config_5);
|
|
88
|
+
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
89
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
|
+
this.config = _config_8;
|
|
91
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
92
|
+
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
93
|
+
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
94
|
+
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
99
|
+
httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider,
|
|
100
|
+
identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
|
|
101
|
+
"aws.auth#sigv4": config.credentials,
|
|
102
|
+
}),
|
|
103
|
+
}));
|
|
104
|
+
this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
|
|
105
|
+
}
|
|
106
|
+
destroy() {
|
|
107
|
+
super.destroy();
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
let Route53GlobalResolverServiceException$1 = class Route53GlobalResolverServiceException extends smithyClient.ServiceException {
|
|
112
|
+
constructor(options) {
|
|
113
|
+
super(options);
|
|
114
|
+
Object.setPrototypeOf(this, Route53GlobalResolverServiceException.prototype);
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
let AccessDeniedException$1 = class AccessDeniedException extends Route53GlobalResolverServiceException$1 {
|
|
119
|
+
name = "AccessDeniedException";
|
|
120
|
+
$fault = "client";
|
|
121
|
+
constructor(opts) {
|
|
122
|
+
super({
|
|
123
|
+
name: "AccessDeniedException",
|
|
124
|
+
$fault: "client",
|
|
125
|
+
...opts,
|
|
126
|
+
});
|
|
127
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
let ConflictException$1 = class ConflictException extends Route53GlobalResolverServiceException$1 {
|
|
131
|
+
name = "ConflictException";
|
|
132
|
+
$fault = "client";
|
|
133
|
+
resourceId;
|
|
134
|
+
resourceType;
|
|
135
|
+
constructor(opts) {
|
|
136
|
+
super({
|
|
137
|
+
name: "ConflictException",
|
|
138
|
+
$fault: "client",
|
|
139
|
+
...opts,
|
|
140
|
+
});
|
|
141
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
142
|
+
this.resourceId = opts.resourceId;
|
|
143
|
+
this.resourceType = opts.resourceType;
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
let InternalServerException$1 = class InternalServerException extends Route53GlobalResolverServiceException$1 {
|
|
147
|
+
name = "InternalServerException";
|
|
148
|
+
$fault = "server";
|
|
149
|
+
$retryable = {};
|
|
150
|
+
retryAfterSeconds;
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "InternalServerException",
|
|
154
|
+
$fault: "server",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
158
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
159
|
+
}
|
|
160
|
+
};
|
|
161
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends Route53GlobalResolverServiceException$1 {
|
|
162
|
+
name = "ResourceNotFoundException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
resourceId;
|
|
165
|
+
resourceType;
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "ResourceNotFoundException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
+
this.resourceId = opts.resourceId;
|
|
174
|
+
this.resourceType = opts.resourceType;
|
|
175
|
+
}
|
|
176
|
+
};
|
|
177
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends Route53GlobalResolverServiceException$1 {
|
|
178
|
+
name = "ServiceQuotaExceededException";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
resourceId;
|
|
181
|
+
resourceType;
|
|
182
|
+
serviceCode;
|
|
183
|
+
quotaCode;
|
|
184
|
+
constructor(opts) {
|
|
185
|
+
super({
|
|
186
|
+
name: "ServiceQuotaExceededException",
|
|
187
|
+
$fault: "client",
|
|
188
|
+
...opts,
|
|
189
|
+
});
|
|
190
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
191
|
+
this.resourceId = opts.resourceId;
|
|
192
|
+
this.resourceType = opts.resourceType;
|
|
193
|
+
this.serviceCode = opts.serviceCode;
|
|
194
|
+
this.quotaCode = opts.quotaCode;
|
|
195
|
+
}
|
|
196
|
+
};
|
|
197
|
+
let ThrottlingException$1 = class ThrottlingException extends Route53GlobalResolverServiceException$1 {
|
|
198
|
+
name = "ThrottlingException";
|
|
199
|
+
$fault = "client";
|
|
200
|
+
$retryable = {
|
|
201
|
+
throttling: true,
|
|
202
|
+
};
|
|
203
|
+
serviceCode;
|
|
204
|
+
quotaCode;
|
|
205
|
+
retryAfterSeconds;
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "ThrottlingException",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
213
|
+
this.serviceCode = opts.serviceCode;
|
|
214
|
+
this.quotaCode = opts.quotaCode;
|
|
215
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
216
|
+
}
|
|
217
|
+
};
|
|
218
|
+
let ValidationException$1 = class ValidationException extends Route53GlobalResolverServiceException$1 {
|
|
219
|
+
name = "ValidationException";
|
|
220
|
+
$fault = "client";
|
|
221
|
+
reason;
|
|
222
|
+
fieldList;
|
|
223
|
+
constructor(opts) {
|
|
224
|
+
super({
|
|
225
|
+
name: "ValidationException",
|
|
226
|
+
$fault: "client",
|
|
227
|
+
...opts,
|
|
228
|
+
});
|
|
229
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
230
|
+
this.reason = opts.reason;
|
|
231
|
+
this.fieldList = opts.fieldList;
|
|
232
|
+
}
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
const _ADE = "AccessDeniedException";
|
|
236
|
+
const _AHZ = "AssociateHostedZone";
|
|
237
|
+
const _AHZI = "AssociateHostedZoneInput";
|
|
238
|
+
const _AHZO = "AssociateHostedZoneOutput";
|
|
239
|
+
const _AS = "AccessSources";
|
|
240
|
+
const _ASI = "AccessSourcesItem";
|
|
241
|
+
const _AT = "AccessTokens";
|
|
242
|
+
const _ATI = "AccessTokenItem";
|
|
243
|
+
const _ATV = "AccessTokenValue";
|
|
244
|
+
const _BCFR = "BatchCreateFirewallRule";
|
|
245
|
+
const _BCFRI = "BatchCreateFirewallRuleInput";
|
|
246
|
+
const _BCFRII = "BatchCreateFirewallRuleInputItem";
|
|
247
|
+
const _BCFRIIa = "BatchCreateFirewallRuleInputItems";
|
|
248
|
+
const _BCFRO = "BatchCreateFirewallRuleOutput";
|
|
249
|
+
const _BCFROI = "BatchCreateFirewallRuleOutputItem";
|
|
250
|
+
const _BCFROIa = "BatchCreateFirewallRuleOutputItems";
|
|
251
|
+
const _BCFRR = "BatchCreateFirewallRuleResult";
|
|
252
|
+
const _BDFR = "BatchDeleteFirewallRule";
|
|
253
|
+
const _BDFRI = "BatchDeleteFirewallRuleInput";
|
|
254
|
+
const _BDFRII = "BatchDeleteFirewallRuleInputItem";
|
|
255
|
+
const _BDFRIIa = "BatchDeleteFirewallRuleInputItems";
|
|
256
|
+
const _BDFRO = "BatchDeleteFirewallRuleOutput";
|
|
257
|
+
const _BDFROI = "BatchDeleteFirewallRuleOutputItem";
|
|
258
|
+
const _BDFROIa = "BatchDeleteFirewallRuleOutputItems";
|
|
259
|
+
const _BDFRR = "BatchDeleteFirewallRuleResult";
|
|
260
|
+
const _BUFR = "BatchUpdateFirewallRule";
|
|
261
|
+
const _BUFRI = "BatchUpdateFirewallRuleInput";
|
|
262
|
+
const _BUFRII = "BatchUpdateFirewallRuleInputItem";
|
|
263
|
+
const _BUFRIIa = "BatchUpdateFirewallRuleInputItems";
|
|
264
|
+
const _BUFRO = "BatchUpdateFirewallRuleOutput";
|
|
265
|
+
const _BUFROI = "BatchUpdateFirewallRuleOutputItem";
|
|
266
|
+
const _BUFROIa = "BatchUpdateFirewallRuleOutputItems";
|
|
267
|
+
const _BUFRR = "BatchUpdateFirewallRuleResult";
|
|
268
|
+
const _CAS = "CreateAccessSource";
|
|
269
|
+
const _CASI = "CreateAccessSourceInput";
|
|
270
|
+
const _CASO = "CreateAccessSourceOutput";
|
|
271
|
+
const _CAT = "CreateAccessToken";
|
|
272
|
+
const _CATI = "CreateAccessTokenInput";
|
|
273
|
+
const _CATO = "CreateAccessTokenOutput";
|
|
274
|
+
const _CDNSV = "CreateDNSView";
|
|
275
|
+
const _CDNSVI = "CreateDNSViewInput";
|
|
276
|
+
const _CDNSVO = "CreateDNSViewOutput";
|
|
277
|
+
const _CE = "ConflictException";
|
|
278
|
+
const _CFDL = "CreateFirewallDomainList";
|
|
279
|
+
const _CFDLI = "CreateFirewallDomainListInput";
|
|
280
|
+
const _CFDLO = "CreateFirewallDomainListOutput";
|
|
281
|
+
const _CFR = "CreateFirewallRule";
|
|
282
|
+
const _CFRI = "CreateFirewallRuleInput";
|
|
283
|
+
const _CFRO = "CreateFirewallRuleOutput";
|
|
284
|
+
const _CGR = "CreateGlobalResolver";
|
|
285
|
+
const _CGRI = "CreateGlobalResolverInput";
|
|
286
|
+
const _CGRO = "CreateGlobalResolverOutput";
|
|
287
|
+
const _DAS = "DeleteAccessSource";
|
|
288
|
+
const _DASI = "DeleteAccessSourceInput";
|
|
289
|
+
const _DASO = "DeleteAccessSourceOutput";
|
|
290
|
+
const _DAT = "DeleteAccessToken";
|
|
291
|
+
const _DATI = "DeleteAccessTokenInput";
|
|
292
|
+
const _DATO = "DeleteAccessTokenOutput";
|
|
293
|
+
const _DDNSV = "DeleteDNSView";
|
|
294
|
+
const _DDNSVI = "DeleteDNSViewInput";
|
|
295
|
+
const _DDNSVIi = "DisableDNSViewInput";
|
|
296
|
+
const _DDNSVO = "DeleteDNSViewOutput";
|
|
297
|
+
const _DDNSVOi = "DisableDNSViewOutput";
|
|
298
|
+
const _DDNSVi = "DisableDNSView";
|
|
299
|
+
const _DFDL = "DeleteFirewallDomainList";
|
|
300
|
+
const _DFDLI = "DeleteFirewallDomainListInput";
|
|
301
|
+
const _DFDLO = "DeleteFirewallDomainListOutput";
|
|
302
|
+
const _DFR = "DeleteFirewallRule";
|
|
303
|
+
const _DFRI = "DeleteFirewallRuleInput";
|
|
304
|
+
const _DFRO = "DeleteFirewallRuleOutput";
|
|
305
|
+
const _DGR = "DeleteGlobalResolver";
|
|
306
|
+
const _DGRI = "DeleteGlobalResolverInput";
|
|
307
|
+
const _DGRO = "DeleteGlobalResolverOutput";
|
|
308
|
+
const _DHZ = "DisassociateHostedZone";
|
|
309
|
+
const _DHZI = "DisassociateHostedZoneInput";
|
|
310
|
+
const _DHZO = "DisassociateHostedZoneOutput";
|
|
311
|
+
const _DNSV = "DNSViews";
|
|
312
|
+
const _DNSVS = "DNSViewSummary";
|
|
313
|
+
const _EDNSV = "EnableDNSView";
|
|
314
|
+
const _EDNSVI = "EnableDNSViewInput";
|
|
315
|
+
const _EDNSVO = "EnableDNSViewOutput";
|
|
316
|
+
const _F = "Filters";
|
|
317
|
+
const _FDL = "FirewallDomainLists";
|
|
318
|
+
const _FDLI = "FirewallDomainListsItem";
|
|
319
|
+
const _FR = "FirewallRules";
|
|
320
|
+
const _FRI = "FirewallRulesItem";
|
|
321
|
+
const _GAS = "GetAccessSource";
|
|
322
|
+
const _GASI = "GetAccessSourceInput";
|
|
323
|
+
const _GASO = "GetAccessSourceOutput";
|
|
324
|
+
const _GAT = "GetAccessToken";
|
|
325
|
+
const _GATI = "GetAccessTokenInput";
|
|
326
|
+
const _GATO = "GetAccessTokenOutput";
|
|
327
|
+
const _GDNSV = "GetDNSView";
|
|
328
|
+
const _GDNSVI = "GetDNSViewInput";
|
|
329
|
+
const _GDNSVO = "GetDNSViewOutput";
|
|
330
|
+
const _GFDL = "GetFirewallDomainList";
|
|
331
|
+
const _GFDLI = "GetFirewallDomainListInput";
|
|
332
|
+
const _GFDLO = "GetFirewallDomainListOutput";
|
|
333
|
+
const _GFR = "GetFirewallRule";
|
|
334
|
+
const _GFRI = "GetFirewallRuleInput";
|
|
335
|
+
const _GFRO = "GetFirewallRuleOutput";
|
|
336
|
+
const _GGR = "GetGlobalResolver";
|
|
337
|
+
const _GGRI = "GetGlobalResolverInput";
|
|
338
|
+
const _GGRO = "GetGlobalResolverOutput";
|
|
339
|
+
const _GHZA = "GetHostedZoneAssociation";
|
|
340
|
+
const _GHZAI = "GetHostedZoneAssociationInput";
|
|
341
|
+
const _GHZAO = "GetHostedZoneAssociationOutput";
|
|
342
|
+
const _GMFDL = "GetManagedFirewallDomainList";
|
|
343
|
+
const _GMFDLI = "GetManagedFirewallDomainListInput";
|
|
344
|
+
const _GMFDLO = "GetManagedFirewallDomainListOutput";
|
|
345
|
+
const _GR = "GlobalResolvers";
|
|
346
|
+
const _GRI = "GlobalResolversItem";
|
|
347
|
+
const _HZA = "HostedZoneAssociations";
|
|
348
|
+
const _HZAS = "HostedZoneAssociationSummary";
|
|
349
|
+
const _IFD = "ImportFirewallDomains";
|
|
350
|
+
const _IFDI = "ImportFirewallDomainsInput";
|
|
351
|
+
const _IFDO = "ImportFirewallDomainsOutput";
|
|
352
|
+
const _ISE = "InternalServerException";
|
|
353
|
+
const _LAS = "ListAccessSources";
|
|
354
|
+
const _LASI = "ListAccessSourcesInput";
|
|
355
|
+
const _LASO = "ListAccessSourcesOutput";
|
|
356
|
+
const _LAT = "ListAccessTokens";
|
|
357
|
+
const _LATI = "ListAccessTokensInput";
|
|
358
|
+
const _LATO = "ListAccessTokensOutput";
|
|
359
|
+
const _LDNSV = "ListDNSViews";
|
|
360
|
+
const _LDNSVI = "ListDNSViewsInput";
|
|
361
|
+
const _LDNSVO = "ListDNSViewsOutput";
|
|
362
|
+
const _LFD = "ListFirewallDomains";
|
|
363
|
+
const _LFDI = "ListFirewallDomainsInput";
|
|
364
|
+
const _LFDL = "ListFirewallDomainLists";
|
|
365
|
+
const _LFDLI = "ListFirewallDomainListsInput";
|
|
366
|
+
const _LFDLO = "ListFirewallDomainListsOutput";
|
|
367
|
+
const _LFDO = "ListFirewallDomainsOutput";
|
|
368
|
+
const _LFR = "ListFirewallRules";
|
|
369
|
+
const _LFRI = "ListFirewallRulesInput";
|
|
370
|
+
const _LFRO = "ListFirewallRulesOutput";
|
|
371
|
+
const _LGR = "ListGlobalResolvers";
|
|
372
|
+
const _LGRI = "ListGlobalResolversInput";
|
|
373
|
+
const _LGRO = "ListGlobalResolversOutput";
|
|
374
|
+
const _LHZA = "ListHostedZoneAssociations";
|
|
375
|
+
const _LHZAI = "ListHostedZoneAssociationsInput";
|
|
376
|
+
const _LHZAO = "ListHostedZoneAssociationsOutput";
|
|
377
|
+
const _LMFDL = "ListManagedFirewallDomainLists";
|
|
378
|
+
const _LMFDLI = "ListManagedFirewallDomainListsInput";
|
|
379
|
+
const _LMFDLO = "ListManagedFirewallDomainListsOutput";
|
|
380
|
+
const _LTFR = "ListTagsForResource";
|
|
381
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
382
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
383
|
+
const _MFDL = "ManagedFirewallDomainLists";
|
|
384
|
+
const _MFDLI = "ManagedFirewallDomainListsItem";
|
|
385
|
+
const _RA = "Retry-After";
|
|
386
|
+
const _RNFE = "ResourceNotFoundException";
|
|
387
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
388
|
+
const _TE = "ThrottlingException";
|
|
389
|
+
const _TR = "TagResource";
|
|
390
|
+
const _TRR = "TagResourceRequest";
|
|
391
|
+
const _TRRa = "TagResourceResponse";
|
|
392
|
+
const _UAS = "UpdateAccessSource";
|
|
393
|
+
const _UASI = "UpdateAccessSourceInput";
|
|
394
|
+
const _UASO = "UpdateAccessSourceOutput";
|
|
395
|
+
const _UAT = "UpdateAccessToken";
|
|
396
|
+
const _UATI = "UpdateAccessTokenInput";
|
|
397
|
+
const _UATO = "UpdateAccessTokenOutput";
|
|
398
|
+
const _UDNSV = "UpdateDNSView";
|
|
399
|
+
const _UDNSVI = "UpdateDNSViewInput";
|
|
400
|
+
const _UDNSVO = "UpdateDNSViewOutput";
|
|
401
|
+
const _UFD = "UpdateFirewallDomains";
|
|
402
|
+
const _UFDI = "UpdateFirewallDomainsInput";
|
|
403
|
+
const _UFDO = "UpdateFirewallDomainsOutput";
|
|
404
|
+
const _UFR = "UpdateFirewallRule";
|
|
405
|
+
const _UFRI = "UpdateFirewallRuleInput";
|
|
406
|
+
const _UFRO = "UpdateFirewallRuleOutput";
|
|
407
|
+
const _UGR = "UpdateGlobalResolver";
|
|
408
|
+
const _UGRI = "UpdateGlobalResolverInput";
|
|
409
|
+
const _UGRO = "UpdateGlobalResolverOutput";
|
|
410
|
+
const _UHZA = "UpdateHostedZoneAssociation";
|
|
411
|
+
const _UHZAI = "UpdateHostedZoneAssociationInput";
|
|
412
|
+
const _UHZAO = "UpdateHostedZoneAssociationOutput";
|
|
413
|
+
const _UR = "UntagResource";
|
|
414
|
+
const _URR = "UntagResourceRequest";
|
|
415
|
+
const _URRn = "UntagResourceResponse";
|
|
416
|
+
const _VE = "ValidationException";
|
|
417
|
+
const _VEF = "ValidationExceptionField";
|
|
418
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
419
|
+
const _a = "arn";
|
|
420
|
+
const _aS = "accessSources";
|
|
421
|
+
const _aSI = "accessSourceId";
|
|
422
|
+
const _aT = "accessTokens";
|
|
423
|
+
const _aTI = "accessTokenId";
|
|
424
|
+
const _ac = "action";
|
|
425
|
+
const _bOD = "blockOverrideDomain";
|
|
426
|
+
const _bODT = "blockOverrideDnsType";
|
|
427
|
+
const _bOT = "blockOverrideTtl";
|
|
428
|
+
const _bR = "blockResponse";
|
|
429
|
+
const _c = "client";
|
|
430
|
+
const _cA = "createdAt";
|
|
431
|
+
const _cT = "clientToken";
|
|
432
|
+
const _cTo = "confidenceThreshold";
|
|
433
|
+
const _ci = "cidr";
|
|
434
|
+
const _co = "code";
|
|
435
|
+
const _d = "description";
|
|
436
|
+
const _dA = "deletedAt";
|
|
437
|
+
const _dAP = "dnsAdvancedProtection";
|
|
438
|
+
const _dC = "domainCount";
|
|
439
|
+
const _dFU = "domainFileUrl";
|
|
440
|
+
const _dN = "dnsName";
|
|
441
|
+
const _dV = "dnssecValidation";
|
|
442
|
+
const _dVI = "dnsViewId";
|
|
443
|
+
const _dVn = "dnsViews";
|
|
444
|
+
const _di = "dnsview_id";
|
|
445
|
+
const _do = "domains";
|
|
446
|
+
const _e = "error";
|
|
447
|
+
const _eA = "expiresAt";
|
|
448
|
+
const _eCS = "ednsClientSubnet";
|
|
449
|
+
const _f = "failures";
|
|
450
|
+
const _fDL = "firewallDomainLists";
|
|
451
|
+
const _fDLI = "firewallDomainListId";
|
|
452
|
+
const _fL = "fieldList";
|
|
453
|
+
const _fR = "firewallRules";
|
|
454
|
+
const _fRFO = "firewallRulesFailOpen";
|
|
455
|
+
const _fRI = "firewallRuleId";
|
|
456
|
+
const _fRi = "firewallRule";
|
|
457
|
+
const _fi = "filters";
|
|
458
|
+
const _gR = "globalResolvers";
|
|
459
|
+
const _gRI = "globalResolverId";
|
|
460
|
+
const _gri = "global_resolver_id";
|
|
461
|
+
const _h = "http";
|
|
462
|
+
const _hE = "httpError";
|
|
463
|
+
const _hH = "httpHeader";
|
|
464
|
+
const _hQ = "httpQuery";
|
|
465
|
+
const _hZA = "hostedZoneAssociations";
|
|
466
|
+
const _hZAI = "hostedZoneAssociationId";
|
|
467
|
+
const _hZI = "hostedZoneId";
|
|
468
|
+
const _hZN = "hostedZoneName";
|
|
469
|
+
const _i = "id";
|
|
470
|
+
const _iA = "ipv4Addresses";
|
|
471
|
+
const _iAT = "ipAddressType";
|
|
472
|
+
const _m = "message";
|
|
473
|
+
const _mDLN = "managedDomainListName";
|
|
474
|
+
const _mFDL = "managedFirewallDomainLists";
|
|
475
|
+
const _mFDLI = "managedFirewallDomainListId";
|
|
476
|
+
const _mFDLT = "managedFirewallDomainListType";
|
|
477
|
+
const _mLT = "managedListType";
|
|
478
|
+
const _mR = "maxResults";
|
|
479
|
+
const _mr = "max_results";
|
|
480
|
+
const _n = "name";
|
|
481
|
+
const _nT = "nextToken";
|
|
482
|
+
const _nt = "next_token";
|
|
483
|
+
const _o = "operation";
|
|
484
|
+
const _oR = "observabilityRegion";
|
|
485
|
+
const _p = "protocol";
|
|
486
|
+
const _pr = "priority";
|
|
487
|
+
const _qC = "quotaCode";
|
|
488
|
+
const _qT = "qType";
|
|
489
|
+
const _qTu = "queryType";
|
|
490
|
+
const _r = "regions";
|
|
491
|
+
const _rA = "resourceArn";
|
|
492
|
+
const _rAS = "retryAfterSeconds";
|
|
493
|
+
const _rI = "resourceId";
|
|
494
|
+
const _rT = "resourceType";
|
|
495
|
+
const _re = "reason";
|
|
496
|
+
const _s = "status";
|
|
497
|
+
const _sC = "serviceCode";
|
|
498
|
+
const _sM = "statusMessage";
|
|
499
|
+
const _se = "server";
|
|
500
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53globalresolver";
|
|
501
|
+
const _su = "successes";
|
|
502
|
+
const _t = "tags";
|
|
503
|
+
const _tK = "tagKeys";
|
|
504
|
+
const _uA = "updatedAt";
|
|
505
|
+
const _v = "value";
|
|
506
|
+
const n0 = "com.amazonaws.route53globalresolver";
|
|
507
|
+
var AccessTokenValue = [0, n0, _ATV, 8, 0];
|
|
508
|
+
var AccessDeniedException = [
|
|
509
|
+
-3,
|
|
510
|
+
n0,
|
|
511
|
+
_ADE,
|
|
512
|
+
{
|
|
513
|
+
[_e]: _c,
|
|
514
|
+
[_hE]: 403,
|
|
515
|
+
},
|
|
516
|
+
[_m],
|
|
517
|
+
[0],
|
|
518
|
+
];
|
|
519
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
520
|
+
var AccessSourcesItem = [
|
|
521
|
+
3,
|
|
522
|
+
n0,
|
|
523
|
+
_ASI,
|
|
524
|
+
0,
|
|
525
|
+
[_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
|
|
526
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
|
|
527
|
+
];
|
|
528
|
+
var AccessTokenItem = [
|
|
529
|
+
3,
|
|
530
|
+
n0,
|
|
531
|
+
_ATI,
|
|
532
|
+
0,
|
|
533
|
+
[_i, _a, _cA, _dVI, _eA, _gRI, _n, _s, _uA],
|
|
534
|
+
[0, 0, 5, 0, 5, 0, 0, 0, 5],
|
|
535
|
+
];
|
|
536
|
+
var AssociateHostedZoneInput = [3, n0, _AHZI, 0, [_hZI, _rA, _n], [[0, 1], 0, 0]];
|
|
537
|
+
var AssociateHostedZoneOutput = [
|
|
538
|
+
3,
|
|
539
|
+
n0,
|
|
540
|
+
_AHZO,
|
|
541
|
+
0,
|
|
542
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
543
|
+
[0, 0, 0, 0, 0, 5, 5, 0],
|
|
544
|
+
];
|
|
545
|
+
var BatchCreateFirewallRuleInput = [
|
|
546
|
+
3,
|
|
547
|
+
n0,
|
|
548
|
+
_BCFRI,
|
|
549
|
+
0,
|
|
550
|
+
[_fR],
|
|
551
|
+
[() => BatchCreateFirewallRuleInputItems],
|
|
552
|
+
];
|
|
553
|
+
var BatchCreateFirewallRuleInputItem = [
|
|
554
|
+
3,
|
|
555
|
+
n0,
|
|
556
|
+
_BCFRII,
|
|
557
|
+
0,
|
|
558
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fDLI, _n, _pr, _dVI, _qT],
|
|
559
|
+
[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0],
|
|
560
|
+
];
|
|
561
|
+
var BatchCreateFirewallRuleOutput = [
|
|
562
|
+
3,
|
|
563
|
+
n0,
|
|
564
|
+
_BCFRO,
|
|
565
|
+
0,
|
|
566
|
+
[_f, _su],
|
|
567
|
+
[() => BatchCreateFirewallRuleOutputItems, () => BatchCreateFirewallRuleOutputItems],
|
|
568
|
+
];
|
|
569
|
+
var BatchCreateFirewallRuleOutputItem = [
|
|
570
|
+
3,
|
|
571
|
+
n0,
|
|
572
|
+
_BCFROI,
|
|
573
|
+
0,
|
|
574
|
+
[_fRi, _co, _m],
|
|
575
|
+
[() => BatchCreateFirewallRuleResult, 1, 0],
|
|
576
|
+
];
|
|
577
|
+
var BatchCreateFirewallRuleResult = [
|
|
578
|
+
3,
|
|
579
|
+
n0,
|
|
580
|
+
_BCFRR,
|
|
581
|
+
0,
|
|
582
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _cA, _d, _dAP, _fDLI, _i, _mDLN, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
583
|
+
[0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
|
|
584
|
+
];
|
|
585
|
+
var BatchDeleteFirewallRuleInput = [
|
|
586
|
+
3,
|
|
587
|
+
n0,
|
|
588
|
+
_BDFRI,
|
|
589
|
+
0,
|
|
590
|
+
[_fR],
|
|
591
|
+
[() => BatchDeleteFirewallRuleInputItems],
|
|
592
|
+
];
|
|
593
|
+
var BatchDeleteFirewallRuleInputItem = [3, n0, _BDFRII, 0, [_fRI], [0]];
|
|
594
|
+
var BatchDeleteFirewallRuleOutput = [
|
|
595
|
+
3,
|
|
596
|
+
n0,
|
|
597
|
+
_BDFRO,
|
|
598
|
+
0,
|
|
599
|
+
[_f, _su],
|
|
600
|
+
[() => BatchDeleteFirewallRuleOutputItems, () => BatchDeleteFirewallRuleOutputItems],
|
|
601
|
+
];
|
|
602
|
+
var BatchDeleteFirewallRuleOutputItem = [
|
|
603
|
+
3,
|
|
604
|
+
n0,
|
|
605
|
+
_BDFROI,
|
|
606
|
+
0,
|
|
607
|
+
[_fRi, _co, _m],
|
|
608
|
+
[() => BatchDeleteFirewallRuleResult, 1, 0],
|
|
609
|
+
];
|
|
610
|
+
var BatchDeleteFirewallRuleResult = [3, n0, _BDFRR, 0, [_cT, _i, _n, _s], [0, 0, 0, 0]];
|
|
611
|
+
var BatchUpdateFirewallRuleInput = [
|
|
612
|
+
3,
|
|
613
|
+
n0,
|
|
614
|
+
_BUFRI,
|
|
615
|
+
0,
|
|
616
|
+
[_fR],
|
|
617
|
+
[() => BatchUpdateFirewallRuleInputItems],
|
|
618
|
+
];
|
|
619
|
+
var BatchUpdateFirewallRuleInputItem = [
|
|
620
|
+
3,
|
|
621
|
+
n0,
|
|
622
|
+
_BUFRII,
|
|
623
|
+
0,
|
|
624
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fRI, _n, _pr],
|
|
625
|
+
[0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1],
|
|
626
|
+
];
|
|
627
|
+
var BatchUpdateFirewallRuleOutput = [
|
|
628
|
+
3,
|
|
629
|
+
n0,
|
|
630
|
+
_BUFRO,
|
|
631
|
+
0,
|
|
632
|
+
[_f, _su],
|
|
633
|
+
[() => BatchUpdateFirewallRuleOutputItems, () => BatchUpdateFirewallRuleOutputItems],
|
|
634
|
+
];
|
|
635
|
+
var BatchUpdateFirewallRuleOutputItem = [
|
|
636
|
+
3,
|
|
637
|
+
n0,
|
|
638
|
+
_BUFROI,
|
|
639
|
+
0,
|
|
640
|
+
[_fRi, _co, _m],
|
|
641
|
+
[() => BatchUpdateFirewallRuleResult, 1, 0],
|
|
642
|
+
];
|
|
643
|
+
var BatchUpdateFirewallRuleResult = [
|
|
644
|
+
3,
|
|
645
|
+
n0,
|
|
646
|
+
_BUFRR,
|
|
647
|
+
0,
|
|
648
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
649
|
+
[0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
|
|
650
|
+
];
|
|
651
|
+
var ConflictException = [
|
|
652
|
+
-3,
|
|
653
|
+
n0,
|
|
654
|
+
_CE,
|
|
655
|
+
{
|
|
656
|
+
[_e]: _c,
|
|
657
|
+
[_hE]: 409,
|
|
658
|
+
},
|
|
659
|
+
[_m, _rI, _rT],
|
|
660
|
+
[0, 0, 0],
|
|
661
|
+
];
|
|
662
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
663
|
+
var CreateAccessSourceInput = [
|
|
664
|
+
3,
|
|
665
|
+
n0,
|
|
666
|
+
_CASI,
|
|
667
|
+
0,
|
|
668
|
+
[_ci, _cT, _iAT, _n, _dVI, _p, _t],
|
|
669
|
+
[0, [0, 4], 0, 0, 0, 0, 128 | 0],
|
|
670
|
+
];
|
|
671
|
+
var CreateAccessSourceOutput = [
|
|
672
|
+
3,
|
|
673
|
+
n0,
|
|
674
|
+
_CASO,
|
|
675
|
+
0,
|
|
676
|
+
[_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
|
|
677
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
|
|
678
|
+
];
|
|
679
|
+
var CreateAccessTokenInput = [
|
|
680
|
+
3,
|
|
681
|
+
n0,
|
|
682
|
+
_CATI,
|
|
683
|
+
0,
|
|
684
|
+
[_cT, _dVI, _eA, _n, _t],
|
|
685
|
+
[[0, 4], [0, 1], 5, 0, 128 | 0],
|
|
686
|
+
];
|
|
687
|
+
var CreateAccessTokenOutput = [
|
|
688
|
+
3,
|
|
689
|
+
n0,
|
|
690
|
+
_CATO,
|
|
691
|
+
0,
|
|
692
|
+
[_i, _a, _cT, _cA, _dVI, _eA, _n, _s, _v],
|
|
693
|
+
[0, 0, 0, 5, 0, 5, 0, 0, [() => AccessTokenValue, 0]],
|
|
694
|
+
];
|
|
695
|
+
var CreateDNSViewInput = [
|
|
696
|
+
3,
|
|
697
|
+
n0,
|
|
698
|
+
_CDNSVI,
|
|
699
|
+
0,
|
|
700
|
+
[_gRI, _cT, _n, _dV, _eCS, _fRFO, _d, _t],
|
|
701
|
+
[[0, 1], [0, 4], 0, 0, 0, 0, 0, 128 | 0],
|
|
702
|
+
];
|
|
703
|
+
var CreateDNSViewOutput = [
|
|
704
|
+
3,
|
|
705
|
+
n0,
|
|
706
|
+
_CDNSVO,
|
|
707
|
+
0,
|
|
708
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
|
|
709
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
|
|
710
|
+
];
|
|
711
|
+
var CreateFirewallDomainListInput = [
|
|
712
|
+
3,
|
|
713
|
+
n0,
|
|
714
|
+
_CFDLI,
|
|
715
|
+
0,
|
|
716
|
+
[_cT, _gRI, _d, _n, _t],
|
|
717
|
+
[[0, 4], [0, 1], 0, 0, 128 | 0],
|
|
718
|
+
];
|
|
719
|
+
var CreateFirewallDomainListOutput = [
|
|
720
|
+
3,
|
|
721
|
+
n0,
|
|
722
|
+
_CFDLO,
|
|
723
|
+
0,
|
|
724
|
+
[_a, _gRI, _cA, _d, _dC, _i, _n, _s, _uA],
|
|
725
|
+
[0, 0, 5, 0, 1, 0, 0, 0, 5],
|
|
726
|
+
];
|
|
727
|
+
var CreateFirewallRuleInput = [
|
|
728
|
+
3,
|
|
729
|
+
n0,
|
|
730
|
+
_CFRI,
|
|
731
|
+
0,
|
|
732
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fDLI, _n, _pr, _dVI, _qT],
|
|
733
|
+
[0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 0, 1, 0, 0],
|
|
734
|
+
];
|
|
735
|
+
var CreateFirewallRuleOutput = [
|
|
736
|
+
3,
|
|
737
|
+
n0,
|
|
738
|
+
_CFRO,
|
|
739
|
+
0,
|
|
740
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
741
|
+
[0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
|
|
742
|
+
];
|
|
743
|
+
var CreateGlobalResolverInput = [
|
|
744
|
+
3,
|
|
745
|
+
n0,
|
|
746
|
+
_CGRI,
|
|
747
|
+
0,
|
|
748
|
+
[_cT, _d, _n, _oR, _r, _t],
|
|
749
|
+
[[0, 4], 0, 0, 0, 64 | 0, 128 | 0],
|
|
750
|
+
];
|
|
751
|
+
var CreateGlobalResolverOutput = [
|
|
752
|
+
3,
|
|
753
|
+
n0,
|
|
754
|
+
_CGRO,
|
|
755
|
+
0,
|
|
756
|
+
[_i, _a, _cT, _cA, _d, _dN, _iA, _n, _oR, _r, _s, _uA],
|
|
757
|
+
[0, 0, 0, 5, 0, 0, 64 | 0, 0, 0, 64 | 0, 0, 5],
|
|
758
|
+
];
|
|
759
|
+
var DeleteAccessSourceInput = [3, n0, _DASI, 0, [_aSI], [[0, 1]]];
|
|
760
|
+
var DeleteAccessSourceOutput = [
|
|
761
|
+
3,
|
|
762
|
+
n0,
|
|
763
|
+
_DASO,
|
|
764
|
+
0,
|
|
765
|
+
[_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
|
|
766
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
|
|
767
|
+
];
|
|
768
|
+
var DeleteAccessTokenInput = [3, n0, _DATI, 0, [_aTI], [[0, 1]]];
|
|
769
|
+
var DeleteAccessTokenOutput = [3, n0, _DATO, 0, [_i, _s, _dA], [0, 0, 5]];
|
|
770
|
+
var DeleteDNSViewInput = [3, n0, _DDNSVI, 0, [_dVI], [[0, 1]]];
|
|
771
|
+
var DeleteDNSViewOutput = [
|
|
772
|
+
3,
|
|
773
|
+
n0,
|
|
774
|
+
_DDNSVO,
|
|
775
|
+
0,
|
|
776
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
|
|
777
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
|
|
778
|
+
];
|
|
779
|
+
var DeleteFirewallDomainListInput = [3, n0, _DFDLI, 0, [_fDLI], [[0, 1]]];
|
|
780
|
+
var DeleteFirewallDomainListOutput = [3, n0, _DFDLO, 0, [_a, _i, _n, _s], [0, 0, 0, 0]];
|
|
781
|
+
var DeleteFirewallRuleInput = [3, n0, _DFRI, 0, [_fRI], [[0, 1]]];
|
|
782
|
+
var DeleteFirewallRuleOutput = [
|
|
783
|
+
3,
|
|
784
|
+
n0,
|
|
785
|
+
_DFRO,
|
|
786
|
+
0,
|
|
787
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
788
|
+
[0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
|
|
789
|
+
];
|
|
790
|
+
var DeleteGlobalResolverInput = [3, n0, _DGRI, 0, [_gRI], [[0, 1]]];
|
|
791
|
+
var DeleteGlobalResolverOutput = [
|
|
792
|
+
3,
|
|
793
|
+
n0,
|
|
794
|
+
_DGRO,
|
|
795
|
+
0,
|
|
796
|
+
[_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
|
|
797
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
|
|
798
|
+
];
|
|
799
|
+
var DisableDNSViewInput = [3, n0, _DDNSVIi, 0, [_dVI], [[0, 1]]];
|
|
800
|
+
var DisableDNSViewOutput = [
|
|
801
|
+
3,
|
|
802
|
+
n0,
|
|
803
|
+
_DDNSVOi,
|
|
804
|
+
0,
|
|
805
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
|
|
806
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
|
|
807
|
+
];
|
|
808
|
+
var DisassociateHostedZoneInput = [
|
|
809
|
+
3,
|
|
810
|
+
n0,
|
|
811
|
+
_DHZI,
|
|
812
|
+
0,
|
|
813
|
+
[_hZI, _rA],
|
|
814
|
+
[
|
|
815
|
+
[0, 1],
|
|
816
|
+
[0, 1],
|
|
817
|
+
],
|
|
818
|
+
];
|
|
819
|
+
var DisassociateHostedZoneOutput = [
|
|
820
|
+
3,
|
|
821
|
+
n0,
|
|
822
|
+
_DHZO,
|
|
823
|
+
0,
|
|
824
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
825
|
+
[0, 0, 0, 0, 0, 5, 5, 0],
|
|
826
|
+
];
|
|
827
|
+
var DNSViewSummary = [
|
|
828
|
+
3,
|
|
829
|
+
n0,
|
|
830
|
+
_DNSVS,
|
|
831
|
+
0,
|
|
832
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
|
|
833
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
|
|
834
|
+
];
|
|
835
|
+
var EnableDNSViewInput = [3, n0, _EDNSVI, 0, [_dVI], [[0, 1]]];
|
|
836
|
+
var EnableDNSViewOutput = [
|
|
837
|
+
3,
|
|
838
|
+
n0,
|
|
839
|
+
_EDNSVO,
|
|
840
|
+
0,
|
|
841
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
|
|
842
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
|
|
843
|
+
];
|
|
844
|
+
var FirewallDomainListsItem = [
|
|
845
|
+
3,
|
|
846
|
+
n0,
|
|
847
|
+
_FDLI,
|
|
848
|
+
0,
|
|
849
|
+
[_a, _gRI, _cA, _d, _i, _n, _s, _uA],
|
|
850
|
+
[0, 0, 5, 0, 0, 0, 0, 5],
|
|
851
|
+
];
|
|
852
|
+
var FirewallRulesItem = [
|
|
853
|
+
3,
|
|
854
|
+
n0,
|
|
855
|
+
_FRI,
|
|
856
|
+
0,
|
|
857
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
858
|
+
[0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
|
|
859
|
+
];
|
|
860
|
+
var GetAccessSourceInput = [3, n0, _GASI, 0, [_aSI], [[0, 1]]];
|
|
861
|
+
var GetAccessSourceOutput = [
|
|
862
|
+
3,
|
|
863
|
+
n0,
|
|
864
|
+
_GASO,
|
|
865
|
+
0,
|
|
866
|
+
[_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
|
|
867
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
|
|
868
|
+
];
|
|
869
|
+
var GetAccessTokenInput = [3, n0, _GATI, 0, [_aTI], [[0, 1]]];
|
|
870
|
+
var GetAccessTokenOutput = [
|
|
871
|
+
3,
|
|
872
|
+
n0,
|
|
873
|
+
_GATO,
|
|
874
|
+
0,
|
|
875
|
+
[_i, _a, _cT, _cA, _dVI, _eA, _gRI, _n, _s, _uA, _v],
|
|
876
|
+
[0, 0, 0, 5, 0, 5, 0, 0, 0, 5, [() => AccessTokenValue, 0]],
|
|
877
|
+
];
|
|
878
|
+
var GetDNSViewInput = [3, n0, _GDNSVI, 0, [_dVI], [[0, 1]]];
|
|
879
|
+
var GetDNSViewOutput = [
|
|
880
|
+
3,
|
|
881
|
+
n0,
|
|
882
|
+
_GDNSVO,
|
|
883
|
+
0,
|
|
884
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
|
|
885
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
|
|
886
|
+
];
|
|
887
|
+
var GetFirewallDomainListInput = [3, n0, _GFDLI, 0, [_fDLI], [[0, 1]]];
|
|
888
|
+
var GetFirewallDomainListOutput = [
|
|
889
|
+
3,
|
|
890
|
+
n0,
|
|
891
|
+
_GFDLO,
|
|
892
|
+
0,
|
|
893
|
+
[_a, _gRI, _cT, _cA, _d, _dC, _i, _n, _s, _sM, _uA],
|
|
894
|
+
[0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 5],
|
|
895
|
+
];
|
|
896
|
+
var GetFirewallRuleInput = [3, n0, _GFRI, 0, [_fRI], [[0, 1]]];
|
|
897
|
+
var GetFirewallRuleOutput = [
|
|
898
|
+
3,
|
|
899
|
+
n0,
|
|
900
|
+
_GFRO,
|
|
901
|
+
0,
|
|
902
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
903
|
+
[0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
|
|
904
|
+
];
|
|
905
|
+
var GetGlobalResolverInput = [3, n0, _GGRI, 0, [_gRI], [[0, 1]]];
|
|
906
|
+
var GetGlobalResolverOutput = [
|
|
907
|
+
3,
|
|
908
|
+
n0,
|
|
909
|
+
_GGRO,
|
|
910
|
+
0,
|
|
911
|
+
[_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
|
|
912
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
|
|
913
|
+
];
|
|
914
|
+
var GetHostedZoneAssociationInput = [3, n0, _GHZAI, 0, [_hZAI], [[0, 1]]];
|
|
915
|
+
var GetHostedZoneAssociationOutput = [
|
|
916
|
+
3,
|
|
917
|
+
n0,
|
|
918
|
+
_GHZAO,
|
|
919
|
+
0,
|
|
920
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
921
|
+
[0, 0, 0, 0, 0, 5, 5, 0],
|
|
922
|
+
];
|
|
923
|
+
var GetManagedFirewallDomainListInput = [3, n0, _GMFDLI, 0, [_mFDLI], [[0, 1]]];
|
|
924
|
+
var GetManagedFirewallDomainListOutput = [
|
|
925
|
+
3,
|
|
926
|
+
n0,
|
|
927
|
+
_GMFDLO,
|
|
928
|
+
0,
|
|
929
|
+
[_d, _i, _n, _mLT],
|
|
930
|
+
[0, 0, 0, 0],
|
|
931
|
+
];
|
|
932
|
+
var GlobalResolversItem = [
|
|
933
|
+
3,
|
|
934
|
+
n0,
|
|
935
|
+
_GRI,
|
|
936
|
+
0,
|
|
937
|
+
[_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
|
|
938
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
|
|
939
|
+
];
|
|
940
|
+
var HostedZoneAssociationSummary = [
|
|
941
|
+
3,
|
|
942
|
+
n0,
|
|
943
|
+
_HZAS,
|
|
944
|
+
0,
|
|
945
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
946
|
+
[0, 0, 0, 0, 0, 5, 5, 0],
|
|
947
|
+
];
|
|
948
|
+
var ImportFirewallDomainsInput = [3, n0, _IFDI, 0, [_dFU, _fDLI, _o], [0, [0, 1], 0]];
|
|
949
|
+
var ImportFirewallDomainsOutput = [3, n0, _IFDO, 0, [_i, _n, _s], [0, 0, 0]];
|
|
950
|
+
var InternalServerException = [
|
|
951
|
+
-3,
|
|
952
|
+
n0,
|
|
953
|
+
_ISE,
|
|
954
|
+
{
|
|
955
|
+
[_e]: _se,
|
|
956
|
+
[_hE]: 500,
|
|
957
|
+
},
|
|
958
|
+
[_m, _rAS],
|
|
959
|
+
[
|
|
960
|
+
0,
|
|
961
|
+
[
|
|
962
|
+
1,
|
|
963
|
+
{
|
|
964
|
+
[_hH]: _RA,
|
|
965
|
+
},
|
|
966
|
+
],
|
|
967
|
+
],
|
|
968
|
+
];
|
|
969
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
970
|
+
var ListAccessSourcesInput = [
|
|
971
|
+
3,
|
|
972
|
+
n0,
|
|
973
|
+
_LASI,
|
|
974
|
+
0,
|
|
975
|
+
[_mR, _nT, _fi],
|
|
976
|
+
[
|
|
977
|
+
[
|
|
978
|
+
1,
|
|
979
|
+
{
|
|
980
|
+
[_hQ]: _mr,
|
|
981
|
+
},
|
|
982
|
+
],
|
|
983
|
+
[
|
|
984
|
+
0,
|
|
985
|
+
{
|
|
986
|
+
[_hQ]: _nt,
|
|
987
|
+
},
|
|
988
|
+
],
|
|
989
|
+
[[2, n0, _F, 0, 0, 64 | 0], 64],
|
|
990
|
+
],
|
|
991
|
+
];
|
|
992
|
+
var ListAccessSourcesOutput = [3, n0, _LASO, 0, [_nT, _aS], [0, () => AccessSources]];
|
|
993
|
+
var ListAccessTokensInput = [
|
|
994
|
+
3,
|
|
995
|
+
n0,
|
|
996
|
+
_LATI,
|
|
997
|
+
0,
|
|
998
|
+
[_mR, _nT, _dVI, _fi],
|
|
999
|
+
[
|
|
1000
|
+
[
|
|
1001
|
+
1,
|
|
1002
|
+
{
|
|
1003
|
+
[_hQ]: _mr,
|
|
1004
|
+
},
|
|
1005
|
+
],
|
|
1006
|
+
[
|
|
1007
|
+
0,
|
|
1008
|
+
{
|
|
1009
|
+
[_hQ]: _nt,
|
|
1010
|
+
},
|
|
1011
|
+
],
|
|
1012
|
+
[0, 1],
|
|
1013
|
+
[[2, n0, _F, 0, 0, 64 | 0], 64],
|
|
1014
|
+
],
|
|
1015
|
+
];
|
|
1016
|
+
var ListAccessTokensOutput = [3, n0, _LATO, 0, [_nT, _aT], [0, () => AccessTokens]];
|
|
1017
|
+
var ListDNSViewsInput = [
|
|
1018
|
+
3,
|
|
1019
|
+
n0,
|
|
1020
|
+
_LDNSVI,
|
|
1021
|
+
0,
|
|
1022
|
+
[_mR, _nT, _gRI],
|
|
1023
|
+
[
|
|
1024
|
+
[
|
|
1025
|
+
1,
|
|
1026
|
+
{
|
|
1027
|
+
[_hQ]: _mr,
|
|
1028
|
+
},
|
|
1029
|
+
],
|
|
1030
|
+
[
|
|
1031
|
+
0,
|
|
1032
|
+
{
|
|
1033
|
+
[_hQ]: _nt,
|
|
1034
|
+
},
|
|
1035
|
+
],
|
|
1036
|
+
[0, 1],
|
|
1037
|
+
],
|
|
1038
|
+
];
|
|
1039
|
+
var ListDNSViewsOutput = [3, n0, _LDNSVO, 0, [_nT, _dVn], [0, () => DNSViews]];
|
|
1040
|
+
var ListFirewallDomainListsInput = [
|
|
1041
|
+
3,
|
|
1042
|
+
n0,
|
|
1043
|
+
_LFDLI,
|
|
1044
|
+
0,
|
|
1045
|
+
[_mR, _nT, _gRI],
|
|
1046
|
+
[
|
|
1047
|
+
[
|
|
1048
|
+
1,
|
|
1049
|
+
{
|
|
1050
|
+
[_hQ]: _mr,
|
|
1051
|
+
},
|
|
1052
|
+
],
|
|
1053
|
+
[
|
|
1054
|
+
0,
|
|
1055
|
+
{
|
|
1056
|
+
[_hQ]: _nt,
|
|
1057
|
+
},
|
|
1058
|
+
],
|
|
1059
|
+
[
|
|
1060
|
+
0,
|
|
1061
|
+
{
|
|
1062
|
+
[_hQ]: _gri,
|
|
1063
|
+
},
|
|
1064
|
+
],
|
|
1065
|
+
],
|
|
1066
|
+
];
|
|
1067
|
+
var ListFirewallDomainListsOutput = [
|
|
1068
|
+
3,
|
|
1069
|
+
n0,
|
|
1070
|
+
_LFDLO,
|
|
1071
|
+
0,
|
|
1072
|
+
[_nT, _fDL],
|
|
1073
|
+
[0, () => FirewallDomainLists],
|
|
1074
|
+
];
|
|
1075
|
+
var ListFirewallDomainsInput = [
|
|
1076
|
+
3,
|
|
1077
|
+
n0,
|
|
1078
|
+
_LFDI,
|
|
1079
|
+
0,
|
|
1080
|
+
[_mR, _nT, _fDLI],
|
|
1081
|
+
[
|
|
1082
|
+
[
|
|
1083
|
+
1,
|
|
1084
|
+
{
|
|
1085
|
+
[_hQ]: _mr,
|
|
1086
|
+
},
|
|
1087
|
+
],
|
|
1088
|
+
[
|
|
1089
|
+
0,
|
|
1090
|
+
{
|
|
1091
|
+
[_hQ]: _nt,
|
|
1092
|
+
},
|
|
1093
|
+
],
|
|
1094
|
+
[0, 1],
|
|
1095
|
+
],
|
|
1096
|
+
];
|
|
1097
|
+
var ListFirewallDomainsOutput = [3, n0, _LFDO, 0, [_nT, _do], [0, 64 | 0]];
|
|
1098
|
+
var ListFirewallRulesInput = [
|
|
1099
|
+
3,
|
|
1100
|
+
n0,
|
|
1101
|
+
_LFRI,
|
|
1102
|
+
0,
|
|
1103
|
+
[_mR, _nT, _dVI, _fi],
|
|
1104
|
+
[
|
|
1105
|
+
[
|
|
1106
|
+
1,
|
|
1107
|
+
{
|
|
1108
|
+
[_hQ]: _mr,
|
|
1109
|
+
},
|
|
1110
|
+
],
|
|
1111
|
+
[
|
|
1112
|
+
0,
|
|
1113
|
+
{
|
|
1114
|
+
[_hQ]: _nt,
|
|
1115
|
+
},
|
|
1116
|
+
],
|
|
1117
|
+
[
|
|
1118
|
+
0,
|
|
1119
|
+
{
|
|
1120
|
+
[_hQ]: _di,
|
|
1121
|
+
},
|
|
1122
|
+
],
|
|
1123
|
+
[[2, n0, _F, 0, 0, 64 | 0], 64],
|
|
1124
|
+
],
|
|
1125
|
+
];
|
|
1126
|
+
var ListFirewallRulesOutput = [3, n0, _LFRO, 0, [_nT, _fR], [0, () => FirewallRules]];
|
|
1127
|
+
var ListGlobalResolversInput = [
|
|
1128
|
+
3,
|
|
1129
|
+
n0,
|
|
1130
|
+
_LGRI,
|
|
1131
|
+
0,
|
|
1132
|
+
[_mR, _nT],
|
|
1133
|
+
[
|
|
1134
|
+
[
|
|
1135
|
+
1,
|
|
1136
|
+
{
|
|
1137
|
+
[_hQ]: _mr,
|
|
1138
|
+
},
|
|
1139
|
+
],
|
|
1140
|
+
[
|
|
1141
|
+
0,
|
|
1142
|
+
{
|
|
1143
|
+
[_hQ]: _nt,
|
|
1144
|
+
},
|
|
1145
|
+
],
|
|
1146
|
+
],
|
|
1147
|
+
];
|
|
1148
|
+
var ListGlobalResolversOutput = [3, n0, _LGRO, 0, [_nT, _gR], [0, () => GlobalResolvers]];
|
|
1149
|
+
var ListHostedZoneAssociationsInput = [
|
|
1150
|
+
3,
|
|
1151
|
+
n0,
|
|
1152
|
+
_LHZAI,
|
|
1153
|
+
0,
|
|
1154
|
+
[_mR, _nT, _rA],
|
|
1155
|
+
[
|
|
1156
|
+
[
|
|
1157
|
+
1,
|
|
1158
|
+
{
|
|
1159
|
+
[_hQ]: _mr,
|
|
1160
|
+
},
|
|
1161
|
+
],
|
|
1162
|
+
[
|
|
1163
|
+
0,
|
|
1164
|
+
{
|
|
1165
|
+
[_hQ]: _nt,
|
|
1166
|
+
},
|
|
1167
|
+
],
|
|
1168
|
+
[0, 1],
|
|
1169
|
+
],
|
|
1170
|
+
];
|
|
1171
|
+
var ListHostedZoneAssociationsOutput = [
|
|
1172
|
+
3,
|
|
1173
|
+
n0,
|
|
1174
|
+
_LHZAO,
|
|
1175
|
+
0,
|
|
1176
|
+
[_nT, _hZA],
|
|
1177
|
+
[0, () => HostedZoneAssociations],
|
|
1178
|
+
];
|
|
1179
|
+
var ListManagedFirewallDomainListsInput = [
|
|
1180
|
+
3,
|
|
1181
|
+
n0,
|
|
1182
|
+
_LMFDLI,
|
|
1183
|
+
0,
|
|
1184
|
+
[_mR, _nT, _mFDLT],
|
|
1185
|
+
[
|
|
1186
|
+
[
|
|
1187
|
+
1,
|
|
1188
|
+
{
|
|
1189
|
+
[_hQ]: _mr,
|
|
1190
|
+
},
|
|
1191
|
+
],
|
|
1192
|
+
[
|
|
1193
|
+
0,
|
|
1194
|
+
{
|
|
1195
|
+
[_hQ]: _nt,
|
|
1196
|
+
},
|
|
1197
|
+
],
|
|
1198
|
+
[0, 1],
|
|
1199
|
+
],
|
|
1200
|
+
];
|
|
1201
|
+
var ListManagedFirewallDomainListsOutput = [
|
|
1202
|
+
3,
|
|
1203
|
+
n0,
|
|
1204
|
+
_LMFDLO,
|
|
1205
|
+
0,
|
|
1206
|
+
[_nT, _mFDL],
|
|
1207
|
+
[0, () => ManagedFirewallDomainLists],
|
|
1208
|
+
];
|
|
1209
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
1210
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1211
|
+
var ManagedFirewallDomainListsItem = [3, n0, _MFDLI, 0, [_d, _i, _n, _mLT], [0, 0, 0, 0]];
|
|
1212
|
+
var ResourceNotFoundException = [
|
|
1213
|
+
-3,
|
|
1214
|
+
n0,
|
|
1215
|
+
_RNFE,
|
|
1216
|
+
{
|
|
1217
|
+
[_e]: _c,
|
|
1218
|
+
[_hE]: 404,
|
|
1219
|
+
},
|
|
1220
|
+
[_m, _rI, _rT],
|
|
1221
|
+
[0, 0, 0],
|
|
1222
|
+
];
|
|
1223
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1224
|
+
var ServiceQuotaExceededException = [
|
|
1225
|
+
-3,
|
|
1226
|
+
n0,
|
|
1227
|
+
_SQEE,
|
|
1228
|
+
{
|
|
1229
|
+
[_e]: _c,
|
|
1230
|
+
[_hE]: 402,
|
|
1231
|
+
},
|
|
1232
|
+
[_m, _rI, _rT, _sC, _qC],
|
|
1233
|
+
[0, 0, 0, 0, 0],
|
|
1234
|
+
];
|
|
1235
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1236
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
|
|
1237
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1238
|
+
var ThrottlingException = [
|
|
1239
|
+
-3,
|
|
1240
|
+
n0,
|
|
1241
|
+
_TE,
|
|
1242
|
+
{
|
|
1243
|
+
[_e]: _c,
|
|
1244
|
+
[_hE]: 429,
|
|
1245
|
+
},
|
|
1246
|
+
[_m, _sC, _qC, _rAS],
|
|
1247
|
+
[
|
|
1248
|
+
0,
|
|
1249
|
+
0,
|
|
1250
|
+
0,
|
|
1251
|
+
[
|
|
1252
|
+
1,
|
|
1253
|
+
{
|
|
1254
|
+
[_hH]: _RA,
|
|
1255
|
+
},
|
|
1256
|
+
],
|
|
1257
|
+
],
|
|
1258
|
+
];
|
|
1259
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1260
|
+
var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
|
|
1261
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1262
|
+
var UpdateAccessSourceInput = [
|
|
1263
|
+
3,
|
|
1264
|
+
n0,
|
|
1265
|
+
_UASI,
|
|
1266
|
+
0,
|
|
1267
|
+
[_aSI, _ci, _iAT, _n, _p],
|
|
1268
|
+
[[0, 1], 0, 0, 0, 0],
|
|
1269
|
+
];
|
|
1270
|
+
var UpdateAccessSourceOutput = [
|
|
1271
|
+
3,
|
|
1272
|
+
n0,
|
|
1273
|
+
_UASO,
|
|
1274
|
+
0,
|
|
1275
|
+
[_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
|
|
1276
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
|
|
1277
|
+
];
|
|
1278
|
+
var UpdateAccessTokenInput = [3, n0, _UATI, 0, [_aTI, _n], [[0, 1], 0]];
|
|
1279
|
+
var UpdateAccessTokenOutput = [3, n0, _UATO, 0, [_i, _n], [0, 0]];
|
|
1280
|
+
var UpdateDNSViewInput = [
|
|
1281
|
+
3,
|
|
1282
|
+
n0,
|
|
1283
|
+
_UDNSVI,
|
|
1284
|
+
0,
|
|
1285
|
+
[_dVI, _n, _d, _dV, _eCS, _fRFO],
|
|
1286
|
+
[[0, 1], 0, 0, 0, 0, 0],
|
|
1287
|
+
];
|
|
1288
|
+
var UpdateDNSViewOutput = [
|
|
1289
|
+
3,
|
|
1290
|
+
n0,
|
|
1291
|
+
_UDNSVO,
|
|
1292
|
+
0,
|
|
1293
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
|
|
1294
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
|
|
1295
|
+
];
|
|
1296
|
+
var UpdateFirewallDomainsInput = [3, n0, _UFDI, 0, [_do, _fDLI, _o], [64 | 0, [0, 1], 0]];
|
|
1297
|
+
var UpdateFirewallDomainsOutput = [3, n0, _UFDO, 0, [_i, _n, _s], [0, 0, 0]];
|
|
1298
|
+
var UpdateFirewallRuleInput = [
|
|
1299
|
+
3,
|
|
1300
|
+
n0,
|
|
1301
|
+
_UFRI,
|
|
1302
|
+
0,
|
|
1303
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fRI, _n, _pr],
|
|
1304
|
+
[0, 0, 0, 1, 0, [0, 4], 0, 0, 0, [0, 1], 0, 1],
|
|
1305
|
+
];
|
|
1306
|
+
var UpdateFirewallRuleOutput = [
|
|
1307
|
+
3,
|
|
1308
|
+
n0,
|
|
1309
|
+
_UFRO,
|
|
1310
|
+
0,
|
|
1311
|
+
[_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
|
|
1312
|
+
[0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
|
|
1313
|
+
];
|
|
1314
|
+
var UpdateGlobalResolverInput = [3, n0, _UGRI, 0, [_gRI, _n, _oR, _d], [[0, 1], 0, 0, 0]];
|
|
1315
|
+
var UpdateGlobalResolverOutput = [
|
|
1316
|
+
3,
|
|
1317
|
+
n0,
|
|
1318
|
+
_UGRO,
|
|
1319
|
+
0,
|
|
1320
|
+
[_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
|
|
1321
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
|
|
1322
|
+
];
|
|
1323
|
+
var UpdateHostedZoneAssociationInput = [3, n0, _UHZAI, 0, [_hZAI, _n], [[0, 1], 0]];
|
|
1324
|
+
var UpdateHostedZoneAssociationOutput = [
|
|
1325
|
+
3,
|
|
1326
|
+
n0,
|
|
1327
|
+
_UHZAO,
|
|
1328
|
+
0,
|
|
1329
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
|
|
1330
|
+
[0, 0, 0, 0, 0, 5, 5, 0],
|
|
1331
|
+
];
|
|
1332
|
+
var ValidationException = [
|
|
1333
|
+
-3,
|
|
1334
|
+
n0,
|
|
1335
|
+
_VE,
|
|
1336
|
+
{
|
|
1337
|
+
[_e]: _c,
|
|
1338
|
+
[_hE]: 400,
|
|
1339
|
+
},
|
|
1340
|
+
[_m, _re, _fL],
|
|
1341
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
1342
|
+
];
|
|
1343
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1344
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1345
|
+
var Route53GlobalResolverServiceException = [
|
|
1346
|
+
-3,
|
|
1347
|
+
_sm,
|
|
1348
|
+
"Route53GlobalResolverServiceException",
|
|
1349
|
+
0,
|
|
1350
|
+
[],
|
|
1351
|
+
[],
|
|
1352
|
+
];
|
|
1353
|
+
schema.TypeRegistry.for(_sm).registerError(Route53GlobalResolverServiceException, Route53GlobalResolverServiceException$1);
|
|
1354
|
+
var AccessSources = [1, n0, _AS, 0, () => AccessSourcesItem];
|
|
1355
|
+
var AccessTokens = [1, n0, _AT, 0, () => AccessTokenItem];
|
|
1356
|
+
var BatchCreateFirewallRuleInputItems = [
|
|
1357
|
+
1,
|
|
1358
|
+
n0,
|
|
1359
|
+
_BCFRIIa,
|
|
1360
|
+
0,
|
|
1361
|
+
() => BatchCreateFirewallRuleInputItem,
|
|
1362
|
+
];
|
|
1363
|
+
var BatchCreateFirewallRuleOutputItems = [
|
|
1364
|
+
1,
|
|
1365
|
+
n0,
|
|
1366
|
+
_BCFROIa,
|
|
1367
|
+
0,
|
|
1368
|
+
() => BatchCreateFirewallRuleOutputItem,
|
|
1369
|
+
];
|
|
1370
|
+
var BatchDeleteFirewallRuleInputItems = [
|
|
1371
|
+
1,
|
|
1372
|
+
n0,
|
|
1373
|
+
_BDFRIIa,
|
|
1374
|
+
0,
|
|
1375
|
+
() => BatchDeleteFirewallRuleInputItem,
|
|
1376
|
+
];
|
|
1377
|
+
var BatchDeleteFirewallRuleOutputItems = [
|
|
1378
|
+
1,
|
|
1379
|
+
n0,
|
|
1380
|
+
_BDFROIa,
|
|
1381
|
+
0,
|
|
1382
|
+
() => BatchDeleteFirewallRuleOutputItem,
|
|
1383
|
+
];
|
|
1384
|
+
var BatchUpdateFirewallRuleInputItems = [
|
|
1385
|
+
1,
|
|
1386
|
+
n0,
|
|
1387
|
+
_BUFRIIa,
|
|
1388
|
+
0,
|
|
1389
|
+
() => BatchUpdateFirewallRuleInputItem,
|
|
1390
|
+
];
|
|
1391
|
+
var BatchUpdateFirewallRuleOutputItems = [
|
|
1392
|
+
1,
|
|
1393
|
+
n0,
|
|
1394
|
+
_BUFROIa,
|
|
1395
|
+
0,
|
|
1396
|
+
() => BatchUpdateFirewallRuleOutputItem,
|
|
1397
|
+
];
|
|
1398
|
+
var DNSViews = [1, n0, _DNSV, 0, () => DNSViewSummary];
|
|
1399
|
+
var FirewallDomainLists = [1, n0, _FDL, 0, () => FirewallDomainListsItem];
|
|
1400
|
+
var FirewallRules = [1, n0, _FR, 0, () => FirewallRulesItem];
|
|
1401
|
+
var GlobalResolvers = [1, n0, _GR, 0, () => GlobalResolversItem];
|
|
1402
|
+
var HostedZoneAssociations = [1, n0, _HZA, 0, () => HostedZoneAssociationSummary];
|
|
1403
|
+
var ManagedFirewallDomainLists = [1, n0, _MFDL, 0, () => ManagedFirewallDomainListsItem];
|
|
1404
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1405
|
+
var AssociateHostedZone = [
|
|
1406
|
+
9,
|
|
1407
|
+
n0,
|
|
1408
|
+
_AHZ,
|
|
1409
|
+
{
|
|
1410
|
+
[_h]: ["POST", "/hosted-zone-associations/{hostedZoneId}", 200],
|
|
1411
|
+
},
|
|
1412
|
+
() => AssociateHostedZoneInput,
|
|
1413
|
+
() => AssociateHostedZoneOutput,
|
|
1414
|
+
];
|
|
1415
|
+
var BatchCreateFirewallRule = [
|
|
1416
|
+
9,
|
|
1417
|
+
n0,
|
|
1418
|
+
_BCFR,
|
|
1419
|
+
{
|
|
1420
|
+
[_h]: ["POST", "/firewall-rules/batch-create", 200],
|
|
1421
|
+
},
|
|
1422
|
+
() => BatchCreateFirewallRuleInput,
|
|
1423
|
+
() => BatchCreateFirewallRuleOutput,
|
|
1424
|
+
];
|
|
1425
|
+
var BatchDeleteFirewallRule = [
|
|
1426
|
+
9,
|
|
1427
|
+
n0,
|
|
1428
|
+
_BDFR,
|
|
1429
|
+
{
|
|
1430
|
+
[_h]: ["POST", "/firewall-rules/batch-delete", 200],
|
|
1431
|
+
},
|
|
1432
|
+
() => BatchDeleteFirewallRuleInput,
|
|
1433
|
+
() => BatchDeleteFirewallRuleOutput,
|
|
1434
|
+
];
|
|
1435
|
+
var BatchUpdateFirewallRule = [
|
|
1436
|
+
9,
|
|
1437
|
+
n0,
|
|
1438
|
+
_BUFR,
|
|
1439
|
+
{
|
|
1440
|
+
[_h]: ["POST", "/firewall-rules/batch-update", 200],
|
|
1441
|
+
},
|
|
1442
|
+
() => BatchUpdateFirewallRuleInput,
|
|
1443
|
+
() => BatchUpdateFirewallRuleOutput,
|
|
1444
|
+
];
|
|
1445
|
+
var CreateAccessSource = [
|
|
1446
|
+
9,
|
|
1447
|
+
n0,
|
|
1448
|
+
_CAS,
|
|
1449
|
+
{
|
|
1450
|
+
[_h]: ["POST", "/access-sources", 200],
|
|
1451
|
+
},
|
|
1452
|
+
() => CreateAccessSourceInput,
|
|
1453
|
+
() => CreateAccessSourceOutput,
|
|
1454
|
+
];
|
|
1455
|
+
var CreateAccessToken = [
|
|
1456
|
+
9,
|
|
1457
|
+
n0,
|
|
1458
|
+
_CAT,
|
|
1459
|
+
{
|
|
1460
|
+
[_h]: ["POST", "/tokens/{dnsViewId}", 200],
|
|
1461
|
+
},
|
|
1462
|
+
() => CreateAccessTokenInput,
|
|
1463
|
+
() => CreateAccessTokenOutput,
|
|
1464
|
+
];
|
|
1465
|
+
var CreateDNSView = [
|
|
1466
|
+
9,
|
|
1467
|
+
n0,
|
|
1468
|
+
_CDNSV,
|
|
1469
|
+
{
|
|
1470
|
+
[_h]: ["POST", "/dns-views/{globalResolverId}", 200],
|
|
1471
|
+
},
|
|
1472
|
+
() => CreateDNSViewInput,
|
|
1473
|
+
() => CreateDNSViewOutput,
|
|
1474
|
+
];
|
|
1475
|
+
var CreateFirewallDomainList = [
|
|
1476
|
+
9,
|
|
1477
|
+
n0,
|
|
1478
|
+
_CFDL,
|
|
1479
|
+
{
|
|
1480
|
+
[_h]: ["POST", "/firewall-domain-lists/{globalResolverId}", 200],
|
|
1481
|
+
},
|
|
1482
|
+
() => CreateFirewallDomainListInput,
|
|
1483
|
+
() => CreateFirewallDomainListOutput,
|
|
1484
|
+
];
|
|
1485
|
+
var CreateFirewallRule = [
|
|
1486
|
+
9,
|
|
1487
|
+
n0,
|
|
1488
|
+
_CFR,
|
|
1489
|
+
{
|
|
1490
|
+
[_h]: ["POST", "/firewall-rules", 200],
|
|
1491
|
+
},
|
|
1492
|
+
() => CreateFirewallRuleInput,
|
|
1493
|
+
() => CreateFirewallRuleOutput,
|
|
1494
|
+
];
|
|
1495
|
+
var CreateGlobalResolver = [
|
|
1496
|
+
9,
|
|
1497
|
+
n0,
|
|
1498
|
+
_CGR,
|
|
1499
|
+
{
|
|
1500
|
+
[_h]: ["POST", "/global-resolver", 200],
|
|
1501
|
+
},
|
|
1502
|
+
() => CreateGlobalResolverInput,
|
|
1503
|
+
() => CreateGlobalResolverOutput,
|
|
1504
|
+
];
|
|
1505
|
+
var DeleteAccessSource = [
|
|
1506
|
+
9,
|
|
1507
|
+
n0,
|
|
1508
|
+
_DAS,
|
|
1509
|
+
{
|
|
1510
|
+
[_h]: ["DELETE", "/access-sources/{accessSourceId}", 200],
|
|
1511
|
+
},
|
|
1512
|
+
() => DeleteAccessSourceInput,
|
|
1513
|
+
() => DeleteAccessSourceOutput,
|
|
1514
|
+
];
|
|
1515
|
+
var DeleteAccessToken = [
|
|
1516
|
+
9,
|
|
1517
|
+
n0,
|
|
1518
|
+
_DAT,
|
|
1519
|
+
{
|
|
1520
|
+
[_h]: ["DELETE", "/tokens/{accessTokenId}", 200],
|
|
1521
|
+
},
|
|
1522
|
+
() => DeleteAccessTokenInput,
|
|
1523
|
+
() => DeleteAccessTokenOutput,
|
|
1524
|
+
];
|
|
1525
|
+
var DeleteDNSView = [
|
|
1526
|
+
9,
|
|
1527
|
+
n0,
|
|
1528
|
+
_DDNSV,
|
|
1529
|
+
{
|
|
1530
|
+
[_h]: ["DELETE", "/dns-views/{dnsViewId}", 200],
|
|
1531
|
+
},
|
|
1532
|
+
() => DeleteDNSViewInput,
|
|
1533
|
+
() => DeleteDNSViewOutput,
|
|
1534
|
+
];
|
|
1535
|
+
var DeleteFirewallDomainList = [
|
|
1536
|
+
9,
|
|
1537
|
+
n0,
|
|
1538
|
+
_DFDL,
|
|
1539
|
+
{
|
|
1540
|
+
[_h]: ["DELETE", "/firewall-domain-lists/{firewallDomainListId}", 200],
|
|
1541
|
+
},
|
|
1542
|
+
() => DeleteFirewallDomainListInput,
|
|
1543
|
+
() => DeleteFirewallDomainListOutput,
|
|
1544
|
+
];
|
|
1545
|
+
var DeleteFirewallRule = [
|
|
1546
|
+
9,
|
|
1547
|
+
n0,
|
|
1548
|
+
_DFR,
|
|
1549
|
+
{
|
|
1550
|
+
[_h]: ["DELETE", "/firewall-rules/{firewallRuleId}", 200],
|
|
1551
|
+
},
|
|
1552
|
+
() => DeleteFirewallRuleInput,
|
|
1553
|
+
() => DeleteFirewallRuleOutput,
|
|
1554
|
+
];
|
|
1555
|
+
var DeleteGlobalResolver = [
|
|
1556
|
+
9,
|
|
1557
|
+
n0,
|
|
1558
|
+
_DGR,
|
|
1559
|
+
{
|
|
1560
|
+
[_h]: ["DELETE", "/global-resolver/{globalResolverId}", 200],
|
|
1561
|
+
},
|
|
1562
|
+
() => DeleteGlobalResolverInput,
|
|
1563
|
+
() => DeleteGlobalResolverOutput,
|
|
1564
|
+
];
|
|
1565
|
+
var DisableDNSView = [
|
|
1566
|
+
9,
|
|
1567
|
+
n0,
|
|
1568
|
+
_DDNSVi,
|
|
1569
|
+
{
|
|
1570
|
+
[_h]: ["PATCH", "/dns-views/{dnsViewId}/disable", 200],
|
|
1571
|
+
},
|
|
1572
|
+
() => DisableDNSViewInput,
|
|
1573
|
+
() => DisableDNSViewOutput,
|
|
1574
|
+
];
|
|
1575
|
+
var DisassociateHostedZone = [
|
|
1576
|
+
9,
|
|
1577
|
+
n0,
|
|
1578
|
+
_DHZ,
|
|
1579
|
+
{
|
|
1580
|
+
[_h]: ["DELETE", "/hosted-zone-associations/hosted-zone/{hostedZoneId}/resource-arn/{resourceArn+}", 200],
|
|
1581
|
+
},
|
|
1582
|
+
() => DisassociateHostedZoneInput,
|
|
1583
|
+
() => DisassociateHostedZoneOutput,
|
|
1584
|
+
];
|
|
1585
|
+
var EnableDNSView = [
|
|
1586
|
+
9,
|
|
1587
|
+
n0,
|
|
1588
|
+
_EDNSV,
|
|
1589
|
+
{
|
|
1590
|
+
[_h]: ["PATCH", "/dns-views/{dnsViewId}/enable", 200],
|
|
1591
|
+
},
|
|
1592
|
+
() => EnableDNSViewInput,
|
|
1593
|
+
() => EnableDNSViewOutput,
|
|
1594
|
+
];
|
|
1595
|
+
var GetAccessSource = [
|
|
1596
|
+
9,
|
|
1597
|
+
n0,
|
|
1598
|
+
_GAS,
|
|
1599
|
+
{
|
|
1600
|
+
[_h]: ["GET", "/access-sources/{accessSourceId}", 200],
|
|
1601
|
+
},
|
|
1602
|
+
() => GetAccessSourceInput,
|
|
1603
|
+
() => GetAccessSourceOutput,
|
|
1604
|
+
];
|
|
1605
|
+
var GetAccessToken = [
|
|
1606
|
+
9,
|
|
1607
|
+
n0,
|
|
1608
|
+
_GAT,
|
|
1609
|
+
{
|
|
1610
|
+
[_h]: ["GET", "/tokens/{accessTokenId}", 200],
|
|
1611
|
+
},
|
|
1612
|
+
() => GetAccessTokenInput,
|
|
1613
|
+
() => GetAccessTokenOutput,
|
|
1614
|
+
];
|
|
1615
|
+
var GetDNSView = [
|
|
1616
|
+
9,
|
|
1617
|
+
n0,
|
|
1618
|
+
_GDNSV,
|
|
1619
|
+
{
|
|
1620
|
+
[_h]: ["GET", "/dns-views/{dnsViewId}", 200],
|
|
1621
|
+
},
|
|
1622
|
+
() => GetDNSViewInput,
|
|
1623
|
+
() => GetDNSViewOutput,
|
|
1624
|
+
];
|
|
1625
|
+
var GetFirewallDomainList = [
|
|
1626
|
+
9,
|
|
1627
|
+
n0,
|
|
1628
|
+
_GFDL,
|
|
1629
|
+
{
|
|
1630
|
+
[_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}", 200],
|
|
1631
|
+
},
|
|
1632
|
+
() => GetFirewallDomainListInput,
|
|
1633
|
+
() => GetFirewallDomainListOutput,
|
|
1634
|
+
];
|
|
1635
|
+
var GetFirewallRule = [
|
|
1636
|
+
9,
|
|
1637
|
+
n0,
|
|
1638
|
+
_GFR,
|
|
1639
|
+
{
|
|
1640
|
+
[_h]: ["GET", "/firewall-rules/{firewallRuleId}", 200],
|
|
1641
|
+
},
|
|
1642
|
+
() => GetFirewallRuleInput,
|
|
1643
|
+
() => GetFirewallRuleOutput,
|
|
1644
|
+
];
|
|
1645
|
+
var GetGlobalResolver = [
|
|
1646
|
+
9,
|
|
1647
|
+
n0,
|
|
1648
|
+
_GGR,
|
|
1649
|
+
{
|
|
1650
|
+
[_h]: ["GET", "/global-resolver/{globalResolverId}", 200],
|
|
1651
|
+
},
|
|
1652
|
+
() => GetGlobalResolverInput,
|
|
1653
|
+
() => GetGlobalResolverOutput,
|
|
1654
|
+
];
|
|
1655
|
+
var GetHostedZoneAssociation = [
|
|
1656
|
+
9,
|
|
1657
|
+
n0,
|
|
1658
|
+
_GHZA,
|
|
1659
|
+
{
|
|
1660
|
+
[_h]: ["GET", "/hosted-zone-associations/{hostedZoneAssociationId}", 200],
|
|
1661
|
+
},
|
|
1662
|
+
() => GetHostedZoneAssociationInput,
|
|
1663
|
+
() => GetHostedZoneAssociationOutput,
|
|
1664
|
+
];
|
|
1665
|
+
var GetManagedFirewallDomainList = [
|
|
1666
|
+
9,
|
|
1667
|
+
n0,
|
|
1668
|
+
_GMFDL,
|
|
1669
|
+
{
|
|
1670
|
+
[_h]: ["GET", "/managed-firewall-domain-lists/{managedFirewallDomainListId}", 200],
|
|
1671
|
+
},
|
|
1672
|
+
() => GetManagedFirewallDomainListInput,
|
|
1673
|
+
() => GetManagedFirewallDomainListOutput,
|
|
1674
|
+
];
|
|
1675
|
+
var ImportFirewallDomains = [
|
|
1676
|
+
9,
|
|
1677
|
+
n0,
|
|
1678
|
+
_IFD,
|
|
1679
|
+
{
|
|
1680
|
+
[_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains/s3_file_url", 200],
|
|
1681
|
+
},
|
|
1682
|
+
() => ImportFirewallDomainsInput,
|
|
1683
|
+
() => ImportFirewallDomainsOutput,
|
|
1684
|
+
];
|
|
1685
|
+
var ListAccessSources = [
|
|
1686
|
+
9,
|
|
1687
|
+
n0,
|
|
1688
|
+
_LAS,
|
|
1689
|
+
{
|
|
1690
|
+
[_h]: ["GET", "/access-sources", 200],
|
|
1691
|
+
},
|
|
1692
|
+
() => ListAccessSourcesInput,
|
|
1693
|
+
() => ListAccessSourcesOutput,
|
|
1694
|
+
];
|
|
1695
|
+
var ListAccessTokens = [
|
|
1696
|
+
9,
|
|
1697
|
+
n0,
|
|
1698
|
+
_LAT,
|
|
1699
|
+
{
|
|
1700
|
+
[_h]: ["GET", "/tokens/dns-view/{dnsViewId}", 200],
|
|
1701
|
+
},
|
|
1702
|
+
() => ListAccessTokensInput,
|
|
1703
|
+
() => ListAccessTokensOutput,
|
|
1704
|
+
];
|
|
1705
|
+
var ListDNSViews = [
|
|
1706
|
+
9,
|
|
1707
|
+
n0,
|
|
1708
|
+
_LDNSV,
|
|
1709
|
+
{
|
|
1710
|
+
[_h]: ["GET", "/dns-views/resolver/{globalResolverId}", 200],
|
|
1711
|
+
},
|
|
1712
|
+
() => ListDNSViewsInput,
|
|
1713
|
+
() => ListDNSViewsOutput,
|
|
1714
|
+
];
|
|
1715
|
+
var ListFirewallDomainLists = [
|
|
1716
|
+
9,
|
|
1717
|
+
n0,
|
|
1718
|
+
_LFDL,
|
|
1719
|
+
{
|
|
1720
|
+
[_h]: ["GET", "/firewall-domain-lists", 200],
|
|
1721
|
+
},
|
|
1722
|
+
() => ListFirewallDomainListsInput,
|
|
1723
|
+
() => ListFirewallDomainListsOutput,
|
|
1724
|
+
];
|
|
1725
|
+
var ListFirewallDomains = [
|
|
1726
|
+
9,
|
|
1727
|
+
n0,
|
|
1728
|
+
_LFD,
|
|
1729
|
+
{
|
|
1730
|
+
[_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}/domains", 200],
|
|
1731
|
+
},
|
|
1732
|
+
() => ListFirewallDomainsInput,
|
|
1733
|
+
() => ListFirewallDomainsOutput,
|
|
1734
|
+
];
|
|
1735
|
+
var ListFirewallRules = [
|
|
1736
|
+
9,
|
|
1737
|
+
n0,
|
|
1738
|
+
_LFR,
|
|
1739
|
+
{
|
|
1740
|
+
[_h]: ["GET", "/firewall-rules", 200],
|
|
1741
|
+
},
|
|
1742
|
+
() => ListFirewallRulesInput,
|
|
1743
|
+
() => ListFirewallRulesOutput,
|
|
1744
|
+
];
|
|
1745
|
+
var ListGlobalResolvers = [
|
|
1746
|
+
9,
|
|
1747
|
+
n0,
|
|
1748
|
+
_LGR,
|
|
1749
|
+
{
|
|
1750
|
+
[_h]: ["GET", "/global-resolver", 200],
|
|
1751
|
+
},
|
|
1752
|
+
() => ListGlobalResolversInput,
|
|
1753
|
+
() => ListGlobalResolversOutput,
|
|
1754
|
+
];
|
|
1755
|
+
var ListHostedZoneAssociations = [
|
|
1756
|
+
9,
|
|
1757
|
+
n0,
|
|
1758
|
+
_LHZA,
|
|
1759
|
+
{
|
|
1760
|
+
[_h]: ["GET", "/hosted-zone-associations/resource-arn/{resourceArn+}", 200],
|
|
1761
|
+
},
|
|
1762
|
+
() => ListHostedZoneAssociationsInput,
|
|
1763
|
+
() => ListHostedZoneAssociationsOutput,
|
|
1764
|
+
];
|
|
1765
|
+
var ListManagedFirewallDomainLists = [
|
|
1766
|
+
9,
|
|
1767
|
+
n0,
|
|
1768
|
+
_LMFDL,
|
|
1769
|
+
{
|
|
1770
|
+
[_h]: ["GET", "/list-managed-firewall-domain-lists/{managedFirewallDomainListType}", 200],
|
|
1771
|
+
},
|
|
1772
|
+
() => ListManagedFirewallDomainListsInput,
|
|
1773
|
+
() => ListManagedFirewallDomainListsOutput,
|
|
1774
|
+
];
|
|
1775
|
+
var ListTagsForResource = [
|
|
1776
|
+
9,
|
|
1777
|
+
n0,
|
|
1778
|
+
_LTFR,
|
|
1779
|
+
{
|
|
1780
|
+
[_h]: ["POST", "/get-all-tags", 200],
|
|
1781
|
+
},
|
|
1782
|
+
() => ListTagsForResourceRequest,
|
|
1783
|
+
() => ListTagsForResourceResponse,
|
|
1784
|
+
];
|
|
1785
|
+
var TagResource = [
|
|
1786
|
+
9,
|
|
1787
|
+
n0,
|
|
1788
|
+
_TR,
|
|
1789
|
+
{
|
|
1790
|
+
[_h]: ["POST", "/tag-resource", 200],
|
|
1791
|
+
},
|
|
1792
|
+
() => TagResourceRequest,
|
|
1793
|
+
() => TagResourceResponse,
|
|
1794
|
+
];
|
|
1795
|
+
var UntagResource = [
|
|
1796
|
+
9,
|
|
1797
|
+
n0,
|
|
1798
|
+
_UR,
|
|
1799
|
+
{
|
|
1800
|
+
[_h]: ["POST", "/untag-resource", 200],
|
|
1801
|
+
},
|
|
1802
|
+
() => UntagResourceRequest,
|
|
1803
|
+
() => UntagResourceResponse,
|
|
1804
|
+
];
|
|
1805
|
+
var UpdateAccessSource = [
|
|
1806
|
+
9,
|
|
1807
|
+
n0,
|
|
1808
|
+
_UAS,
|
|
1809
|
+
{
|
|
1810
|
+
[_h]: ["PATCH", "/access-sources/{accessSourceId}", 200],
|
|
1811
|
+
},
|
|
1812
|
+
() => UpdateAccessSourceInput,
|
|
1813
|
+
() => UpdateAccessSourceOutput,
|
|
1814
|
+
];
|
|
1815
|
+
var UpdateAccessToken = [
|
|
1816
|
+
9,
|
|
1817
|
+
n0,
|
|
1818
|
+
_UAT,
|
|
1819
|
+
{
|
|
1820
|
+
[_h]: ["PATCH", "/tokens/{accessTokenId}", 200],
|
|
1821
|
+
},
|
|
1822
|
+
() => UpdateAccessTokenInput,
|
|
1823
|
+
() => UpdateAccessTokenOutput,
|
|
1824
|
+
];
|
|
1825
|
+
var UpdateDNSView = [
|
|
1826
|
+
9,
|
|
1827
|
+
n0,
|
|
1828
|
+
_UDNSV,
|
|
1829
|
+
{
|
|
1830
|
+
[_h]: ["PATCH", "/dns-views/{dnsViewId}", 200],
|
|
1831
|
+
},
|
|
1832
|
+
() => UpdateDNSViewInput,
|
|
1833
|
+
() => UpdateDNSViewOutput,
|
|
1834
|
+
];
|
|
1835
|
+
var UpdateFirewallDomains = [
|
|
1836
|
+
9,
|
|
1837
|
+
n0,
|
|
1838
|
+
_UFD,
|
|
1839
|
+
{
|
|
1840
|
+
[_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains", 200],
|
|
1841
|
+
},
|
|
1842
|
+
() => UpdateFirewallDomainsInput,
|
|
1843
|
+
() => UpdateFirewallDomainsOutput,
|
|
1844
|
+
];
|
|
1845
|
+
var UpdateFirewallRule = [
|
|
1846
|
+
9,
|
|
1847
|
+
n0,
|
|
1848
|
+
_UFR,
|
|
1849
|
+
{
|
|
1850
|
+
[_h]: ["PATCH", "/firewall-rules/{firewallRuleId}", 200],
|
|
1851
|
+
},
|
|
1852
|
+
() => UpdateFirewallRuleInput,
|
|
1853
|
+
() => UpdateFirewallRuleOutput,
|
|
1854
|
+
];
|
|
1855
|
+
var UpdateGlobalResolver = [
|
|
1856
|
+
9,
|
|
1857
|
+
n0,
|
|
1858
|
+
_UGR,
|
|
1859
|
+
{
|
|
1860
|
+
[_h]: ["PATCH", "/global-resolver/{globalResolverId}", 200],
|
|
1861
|
+
},
|
|
1862
|
+
() => UpdateGlobalResolverInput,
|
|
1863
|
+
() => UpdateGlobalResolverOutput,
|
|
1864
|
+
];
|
|
1865
|
+
var UpdateHostedZoneAssociation = [
|
|
1866
|
+
9,
|
|
1867
|
+
n0,
|
|
1868
|
+
_UHZA,
|
|
1869
|
+
{
|
|
1870
|
+
[_h]: ["PATCH", "/hosted-zone-associations/{hostedZoneAssociationId}", 200],
|
|
1871
|
+
},
|
|
1872
|
+
() => UpdateHostedZoneAssociationInput,
|
|
1873
|
+
() => UpdateHostedZoneAssociationOutput,
|
|
1874
|
+
];
|
|
1875
|
+
|
|
1876
|
+
class AssociateHostedZoneCommand extends smithyClient.Command
|
|
1877
|
+
.classBuilder()
|
|
1878
|
+
.ep(commonParams)
|
|
1879
|
+
.m(function (Command, cs, config, o) {
|
|
1880
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1881
|
+
})
|
|
1882
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "AssociateHostedZone", {})
|
|
1883
|
+
.n("Route53GlobalResolverClient", "AssociateHostedZoneCommand")
|
|
1884
|
+
.sc(AssociateHostedZone)
|
|
1885
|
+
.build() {
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
class BatchCreateFirewallRuleCommand extends smithyClient.Command
|
|
1889
|
+
.classBuilder()
|
|
1890
|
+
.ep(commonParams)
|
|
1891
|
+
.m(function (Command, cs, config, o) {
|
|
1892
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1893
|
+
})
|
|
1894
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "BatchCreateFirewallRule", {})
|
|
1895
|
+
.n("Route53GlobalResolverClient", "BatchCreateFirewallRuleCommand")
|
|
1896
|
+
.sc(BatchCreateFirewallRule)
|
|
1897
|
+
.build() {
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
class BatchDeleteFirewallRuleCommand extends smithyClient.Command
|
|
1901
|
+
.classBuilder()
|
|
1902
|
+
.ep(commonParams)
|
|
1903
|
+
.m(function (Command, cs, config, o) {
|
|
1904
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1905
|
+
})
|
|
1906
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "BatchDeleteFirewallRule", {})
|
|
1907
|
+
.n("Route53GlobalResolverClient", "BatchDeleteFirewallRuleCommand")
|
|
1908
|
+
.sc(BatchDeleteFirewallRule)
|
|
1909
|
+
.build() {
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
class BatchUpdateFirewallRuleCommand extends smithyClient.Command
|
|
1913
|
+
.classBuilder()
|
|
1914
|
+
.ep(commonParams)
|
|
1915
|
+
.m(function (Command, cs, config, o) {
|
|
1916
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1917
|
+
})
|
|
1918
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "BatchUpdateFirewallRule", {})
|
|
1919
|
+
.n("Route53GlobalResolverClient", "BatchUpdateFirewallRuleCommand")
|
|
1920
|
+
.sc(BatchUpdateFirewallRule)
|
|
1921
|
+
.build() {
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
class CreateAccessSourceCommand extends smithyClient.Command
|
|
1925
|
+
.classBuilder()
|
|
1926
|
+
.ep(commonParams)
|
|
1927
|
+
.m(function (Command, cs, config, o) {
|
|
1928
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1929
|
+
})
|
|
1930
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "CreateAccessSource", {})
|
|
1931
|
+
.n("Route53GlobalResolverClient", "CreateAccessSourceCommand")
|
|
1932
|
+
.sc(CreateAccessSource)
|
|
1933
|
+
.build() {
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
class CreateAccessTokenCommand extends smithyClient.Command
|
|
1937
|
+
.classBuilder()
|
|
1938
|
+
.ep(commonParams)
|
|
1939
|
+
.m(function (Command, cs, config, o) {
|
|
1940
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1941
|
+
})
|
|
1942
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "CreateAccessToken", {})
|
|
1943
|
+
.n("Route53GlobalResolverClient", "CreateAccessTokenCommand")
|
|
1944
|
+
.sc(CreateAccessToken)
|
|
1945
|
+
.build() {
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
class CreateDNSViewCommand extends smithyClient.Command
|
|
1949
|
+
.classBuilder()
|
|
1950
|
+
.ep(commonParams)
|
|
1951
|
+
.m(function (Command, cs, config, o) {
|
|
1952
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1953
|
+
})
|
|
1954
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "CreateDNSView", {})
|
|
1955
|
+
.n("Route53GlobalResolverClient", "CreateDNSViewCommand")
|
|
1956
|
+
.sc(CreateDNSView)
|
|
1957
|
+
.build() {
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
class CreateFirewallDomainListCommand extends smithyClient.Command
|
|
1961
|
+
.classBuilder()
|
|
1962
|
+
.ep(commonParams)
|
|
1963
|
+
.m(function (Command, cs, config, o) {
|
|
1964
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1965
|
+
})
|
|
1966
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "CreateFirewallDomainList", {})
|
|
1967
|
+
.n("Route53GlobalResolverClient", "CreateFirewallDomainListCommand")
|
|
1968
|
+
.sc(CreateFirewallDomainList)
|
|
1969
|
+
.build() {
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
class CreateFirewallRuleCommand extends smithyClient.Command
|
|
1973
|
+
.classBuilder()
|
|
1974
|
+
.ep(commonParams)
|
|
1975
|
+
.m(function (Command, cs, config, o) {
|
|
1976
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1977
|
+
})
|
|
1978
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "CreateFirewallRule", {})
|
|
1979
|
+
.n("Route53GlobalResolverClient", "CreateFirewallRuleCommand")
|
|
1980
|
+
.sc(CreateFirewallRule)
|
|
1981
|
+
.build() {
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
class CreateGlobalResolverCommand extends smithyClient.Command
|
|
1985
|
+
.classBuilder()
|
|
1986
|
+
.ep(commonParams)
|
|
1987
|
+
.m(function (Command, cs, config, o) {
|
|
1988
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1989
|
+
})
|
|
1990
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "CreateGlobalResolver", {})
|
|
1991
|
+
.n("Route53GlobalResolverClient", "CreateGlobalResolverCommand")
|
|
1992
|
+
.sc(CreateGlobalResolver)
|
|
1993
|
+
.build() {
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
class DeleteAccessSourceCommand extends smithyClient.Command
|
|
1997
|
+
.classBuilder()
|
|
1998
|
+
.ep(commonParams)
|
|
1999
|
+
.m(function (Command, cs, config, o) {
|
|
2000
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2001
|
+
})
|
|
2002
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteAccessSource", {})
|
|
2003
|
+
.n("Route53GlobalResolverClient", "DeleteAccessSourceCommand")
|
|
2004
|
+
.sc(DeleteAccessSource)
|
|
2005
|
+
.build() {
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
class DeleteAccessTokenCommand extends smithyClient.Command
|
|
2009
|
+
.classBuilder()
|
|
2010
|
+
.ep(commonParams)
|
|
2011
|
+
.m(function (Command, cs, config, o) {
|
|
2012
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2013
|
+
})
|
|
2014
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteAccessToken", {})
|
|
2015
|
+
.n("Route53GlobalResolverClient", "DeleteAccessTokenCommand")
|
|
2016
|
+
.sc(DeleteAccessToken)
|
|
2017
|
+
.build() {
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
class DeleteDNSViewCommand extends smithyClient.Command
|
|
2021
|
+
.classBuilder()
|
|
2022
|
+
.ep(commonParams)
|
|
2023
|
+
.m(function (Command, cs, config, o) {
|
|
2024
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2025
|
+
})
|
|
2026
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteDNSView", {})
|
|
2027
|
+
.n("Route53GlobalResolverClient", "DeleteDNSViewCommand")
|
|
2028
|
+
.sc(DeleteDNSView)
|
|
2029
|
+
.build() {
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
class DeleteFirewallDomainListCommand extends smithyClient.Command
|
|
2033
|
+
.classBuilder()
|
|
2034
|
+
.ep(commonParams)
|
|
2035
|
+
.m(function (Command, cs, config, o) {
|
|
2036
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2037
|
+
})
|
|
2038
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteFirewallDomainList", {})
|
|
2039
|
+
.n("Route53GlobalResolverClient", "DeleteFirewallDomainListCommand")
|
|
2040
|
+
.sc(DeleteFirewallDomainList)
|
|
2041
|
+
.build() {
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
class DeleteFirewallRuleCommand extends smithyClient.Command
|
|
2045
|
+
.classBuilder()
|
|
2046
|
+
.ep(commonParams)
|
|
2047
|
+
.m(function (Command, cs, config, o) {
|
|
2048
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2049
|
+
})
|
|
2050
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteFirewallRule", {})
|
|
2051
|
+
.n("Route53GlobalResolverClient", "DeleteFirewallRuleCommand")
|
|
2052
|
+
.sc(DeleteFirewallRule)
|
|
2053
|
+
.build() {
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
class DeleteGlobalResolverCommand extends smithyClient.Command
|
|
2057
|
+
.classBuilder()
|
|
2058
|
+
.ep(commonParams)
|
|
2059
|
+
.m(function (Command, cs, config, o) {
|
|
2060
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2061
|
+
})
|
|
2062
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteGlobalResolver", {})
|
|
2063
|
+
.n("Route53GlobalResolverClient", "DeleteGlobalResolverCommand")
|
|
2064
|
+
.sc(DeleteGlobalResolver)
|
|
2065
|
+
.build() {
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
class DisableDNSViewCommand extends smithyClient.Command
|
|
2069
|
+
.classBuilder()
|
|
2070
|
+
.ep(commonParams)
|
|
2071
|
+
.m(function (Command, cs, config, o) {
|
|
2072
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2073
|
+
})
|
|
2074
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DisableDNSView", {})
|
|
2075
|
+
.n("Route53GlobalResolverClient", "DisableDNSViewCommand")
|
|
2076
|
+
.sc(DisableDNSView)
|
|
2077
|
+
.build() {
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
class DisassociateHostedZoneCommand extends smithyClient.Command
|
|
2081
|
+
.classBuilder()
|
|
2082
|
+
.ep(commonParams)
|
|
2083
|
+
.m(function (Command, cs, config, o) {
|
|
2084
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2085
|
+
})
|
|
2086
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "DisassociateHostedZone", {})
|
|
2087
|
+
.n("Route53GlobalResolverClient", "DisassociateHostedZoneCommand")
|
|
2088
|
+
.sc(DisassociateHostedZone)
|
|
2089
|
+
.build() {
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
class EnableDNSViewCommand extends smithyClient.Command
|
|
2093
|
+
.classBuilder()
|
|
2094
|
+
.ep(commonParams)
|
|
2095
|
+
.m(function (Command, cs, config, o) {
|
|
2096
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2097
|
+
})
|
|
2098
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "EnableDNSView", {})
|
|
2099
|
+
.n("Route53GlobalResolverClient", "EnableDNSViewCommand")
|
|
2100
|
+
.sc(EnableDNSView)
|
|
2101
|
+
.build() {
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2104
|
+
class GetAccessSourceCommand extends smithyClient.Command
|
|
2105
|
+
.classBuilder()
|
|
2106
|
+
.ep(commonParams)
|
|
2107
|
+
.m(function (Command, cs, config, o) {
|
|
2108
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2109
|
+
})
|
|
2110
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetAccessSource", {})
|
|
2111
|
+
.n("Route53GlobalResolverClient", "GetAccessSourceCommand")
|
|
2112
|
+
.sc(GetAccessSource)
|
|
2113
|
+
.build() {
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
class GetAccessTokenCommand extends smithyClient.Command
|
|
2117
|
+
.classBuilder()
|
|
2118
|
+
.ep(commonParams)
|
|
2119
|
+
.m(function (Command, cs, config, o) {
|
|
2120
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2121
|
+
})
|
|
2122
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetAccessToken", {})
|
|
2123
|
+
.n("Route53GlobalResolverClient", "GetAccessTokenCommand")
|
|
2124
|
+
.sc(GetAccessToken)
|
|
2125
|
+
.build() {
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
class GetDNSViewCommand extends smithyClient.Command
|
|
2129
|
+
.classBuilder()
|
|
2130
|
+
.ep(commonParams)
|
|
2131
|
+
.m(function (Command, cs, config, o) {
|
|
2132
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2133
|
+
})
|
|
2134
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetDNSView", {})
|
|
2135
|
+
.n("Route53GlobalResolverClient", "GetDNSViewCommand")
|
|
2136
|
+
.sc(GetDNSView)
|
|
2137
|
+
.build() {
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
class GetFirewallDomainListCommand extends smithyClient.Command
|
|
2141
|
+
.classBuilder()
|
|
2142
|
+
.ep(commonParams)
|
|
2143
|
+
.m(function (Command, cs, config, o) {
|
|
2144
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2145
|
+
})
|
|
2146
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetFirewallDomainList", {})
|
|
2147
|
+
.n("Route53GlobalResolverClient", "GetFirewallDomainListCommand")
|
|
2148
|
+
.sc(GetFirewallDomainList)
|
|
2149
|
+
.build() {
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
class GetFirewallRuleCommand extends smithyClient.Command
|
|
2153
|
+
.classBuilder()
|
|
2154
|
+
.ep(commonParams)
|
|
2155
|
+
.m(function (Command, cs, config, o) {
|
|
2156
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2157
|
+
})
|
|
2158
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetFirewallRule", {})
|
|
2159
|
+
.n("Route53GlobalResolverClient", "GetFirewallRuleCommand")
|
|
2160
|
+
.sc(GetFirewallRule)
|
|
2161
|
+
.build() {
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
class GetGlobalResolverCommand extends smithyClient.Command
|
|
2165
|
+
.classBuilder()
|
|
2166
|
+
.ep(commonParams)
|
|
2167
|
+
.m(function (Command, cs, config, o) {
|
|
2168
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2169
|
+
})
|
|
2170
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetGlobalResolver", {})
|
|
2171
|
+
.n("Route53GlobalResolverClient", "GetGlobalResolverCommand")
|
|
2172
|
+
.sc(GetGlobalResolver)
|
|
2173
|
+
.build() {
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
class GetHostedZoneAssociationCommand extends smithyClient.Command
|
|
2177
|
+
.classBuilder()
|
|
2178
|
+
.ep(commonParams)
|
|
2179
|
+
.m(function (Command, cs, config, o) {
|
|
2180
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2181
|
+
})
|
|
2182
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetHostedZoneAssociation", {})
|
|
2183
|
+
.n("Route53GlobalResolverClient", "GetHostedZoneAssociationCommand")
|
|
2184
|
+
.sc(GetHostedZoneAssociation)
|
|
2185
|
+
.build() {
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
class GetManagedFirewallDomainListCommand extends smithyClient.Command
|
|
2189
|
+
.classBuilder()
|
|
2190
|
+
.ep(commonParams)
|
|
2191
|
+
.m(function (Command, cs, config, o) {
|
|
2192
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2193
|
+
})
|
|
2194
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "GetManagedFirewallDomainList", {})
|
|
2195
|
+
.n("Route53GlobalResolverClient", "GetManagedFirewallDomainListCommand")
|
|
2196
|
+
.sc(GetManagedFirewallDomainList)
|
|
2197
|
+
.build() {
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
class ImportFirewallDomainsCommand extends smithyClient.Command
|
|
2201
|
+
.classBuilder()
|
|
2202
|
+
.ep(commonParams)
|
|
2203
|
+
.m(function (Command, cs, config, o) {
|
|
2204
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2205
|
+
})
|
|
2206
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ImportFirewallDomains", {})
|
|
2207
|
+
.n("Route53GlobalResolverClient", "ImportFirewallDomainsCommand")
|
|
2208
|
+
.sc(ImportFirewallDomains)
|
|
2209
|
+
.build() {
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
class ListAccessSourcesCommand extends smithyClient.Command
|
|
2213
|
+
.classBuilder()
|
|
2214
|
+
.ep(commonParams)
|
|
2215
|
+
.m(function (Command, cs, config, o) {
|
|
2216
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2217
|
+
})
|
|
2218
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListAccessSources", {})
|
|
2219
|
+
.n("Route53GlobalResolverClient", "ListAccessSourcesCommand")
|
|
2220
|
+
.sc(ListAccessSources)
|
|
2221
|
+
.build() {
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
class ListAccessTokensCommand extends smithyClient.Command
|
|
2225
|
+
.classBuilder()
|
|
2226
|
+
.ep(commonParams)
|
|
2227
|
+
.m(function (Command, cs, config, o) {
|
|
2228
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2229
|
+
})
|
|
2230
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListAccessTokens", {})
|
|
2231
|
+
.n("Route53GlobalResolverClient", "ListAccessTokensCommand")
|
|
2232
|
+
.sc(ListAccessTokens)
|
|
2233
|
+
.build() {
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
class ListDNSViewsCommand extends smithyClient.Command
|
|
2237
|
+
.classBuilder()
|
|
2238
|
+
.ep(commonParams)
|
|
2239
|
+
.m(function (Command, cs, config, o) {
|
|
2240
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2241
|
+
})
|
|
2242
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListDNSViews", {})
|
|
2243
|
+
.n("Route53GlobalResolverClient", "ListDNSViewsCommand")
|
|
2244
|
+
.sc(ListDNSViews)
|
|
2245
|
+
.build() {
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
class ListFirewallDomainListsCommand extends smithyClient.Command
|
|
2249
|
+
.classBuilder()
|
|
2250
|
+
.ep(commonParams)
|
|
2251
|
+
.m(function (Command, cs, config, o) {
|
|
2252
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2253
|
+
})
|
|
2254
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallDomainLists", {})
|
|
2255
|
+
.n("Route53GlobalResolverClient", "ListFirewallDomainListsCommand")
|
|
2256
|
+
.sc(ListFirewallDomainLists)
|
|
2257
|
+
.build() {
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
class ListFirewallDomainsCommand extends smithyClient.Command
|
|
2261
|
+
.classBuilder()
|
|
2262
|
+
.ep(commonParams)
|
|
2263
|
+
.m(function (Command, cs, config, o) {
|
|
2264
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2265
|
+
})
|
|
2266
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallDomains", {})
|
|
2267
|
+
.n("Route53GlobalResolverClient", "ListFirewallDomainsCommand")
|
|
2268
|
+
.sc(ListFirewallDomains)
|
|
2269
|
+
.build() {
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
class ListFirewallRulesCommand extends smithyClient.Command
|
|
2273
|
+
.classBuilder()
|
|
2274
|
+
.ep(commonParams)
|
|
2275
|
+
.m(function (Command, cs, config, o) {
|
|
2276
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2277
|
+
})
|
|
2278
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallRules", {})
|
|
2279
|
+
.n("Route53GlobalResolverClient", "ListFirewallRulesCommand")
|
|
2280
|
+
.sc(ListFirewallRules)
|
|
2281
|
+
.build() {
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
class ListGlobalResolversCommand extends smithyClient.Command
|
|
2285
|
+
.classBuilder()
|
|
2286
|
+
.ep(commonParams)
|
|
2287
|
+
.m(function (Command, cs, config, o) {
|
|
2288
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2289
|
+
})
|
|
2290
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListGlobalResolvers", {})
|
|
2291
|
+
.n("Route53GlobalResolverClient", "ListGlobalResolversCommand")
|
|
2292
|
+
.sc(ListGlobalResolvers)
|
|
2293
|
+
.build() {
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
class ListHostedZoneAssociationsCommand extends smithyClient.Command
|
|
2297
|
+
.classBuilder()
|
|
2298
|
+
.ep(commonParams)
|
|
2299
|
+
.m(function (Command, cs, config, o) {
|
|
2300
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2301
|
+
})
|
|
2302
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListHostedZoneAssociations", {})
|
|
2303
|
+
.n("Route53GlobalResolverClient", "ListHostedZoneAssociationsCommand")
|
|
2304
|
+
.sc(ListHostedZoneAssociations)
|
|
2305
|
+
.build() {
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
class ListManagedFirewallDomainListsCommand extends smithyClient.Command
|
|
2309
|
+
.classBuilder()
|
|
2310
|
+
.ep(commonParams)
|
|
2311
|
+
.m(function (Command, cs, config, o) {
|
|
2312
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2313
|
+
})
|
|
2314
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListManagedFirewallDomainLists", {})
|
|
2315
|
+
.n("Route53GlobalResolverClient", "ListManagedFirewallDomainListsCommand")
|
|
2316
|
+
.sc(ListManagedFirewallDomainLists)
|
|
2317
|
+
.build() {
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
class ListTagsForResourceCommand extends smithyClient.Command
|
|
2321
|
+
.classBuilder()
|
|
2322
|
+
.ep(commonParams)
|
|
2323
|
+
.m(function (Command, cs, config, o) {
|
|
2324
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2325
|
+
})
|
|
2326
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "ListTagsForResource", {})
|
|
2327
|
+
.n("Route53GlobalResolverClient", "ListTagsForResourceCommand")
|
|
2328
|
+
.sc(ListTagsForResource)
|
|
2329
|
+
.build() {
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
class TagResourceCommand extends smithyClient.Command
|
|
2333
|
+
.classBuilder()
|
|
2334
|
+
.ep(commonParams)
|
|
2335
|
+
.m(function (Command, cs, config, o) {
|
|
2336
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2337
|
+
})
|
|
2338
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "TagResource", {})
|
|
2339
|
+
.n("Route53GlobalResolverClient", "TagResourceCommand")
|
|
2340
|
+
.sc(TagResource)
|
|
2341
|
+
.build() {
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
class UntagResourceCommand extends smithyClient.Command
|
|
2345
|
+
.classBuilder()
|
|
2346
|
+
.ep(commonParams)
|
|
2347
|
+
.m(function (Command, cs, config, o) {
|
|
2348
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2349
|
+
})
|
|
2350
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UntagResource", {})
|
|
2351
|
+
.n("Route53GlobalResolverClient", "UntagResourceCommand")
|
|
2352
|
+
.sc(UntagResource)
|
|
2353
|
+
.build() {
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
class UpdateAccessSourceCommand extends smithyClient.Command
|
|
2357
|
+
.classBuilder()
|
|
2358
|
+
.ep(commonParams)
|
|
2359
|
+
.m(function (Command, cs, config, o) {
|
|
2360
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2361
|
+
})
|
|
2362
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateAccessSource", {})
|
|
2363
|
+
.n("Route53GlobalResolverClient", "UpdateAccessSourceCommand")
|
|
2364
|
+
.sc(UpdateAccessSource)
|
|
2365
|
+
.build() {
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
class UpdateAccessTokenCommand extends smithyClient.Command
|
|
2369
|
+
.classBuilder()
|
|
2370
|
+
.ep(commonParams)
|
|
2371
|
+
.m(function (Command, cs, config, o) {
|
|
2372
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2373
|
+
})
|
|
2374
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateAccessToken", {})
|
|
2375
|
+
.n("Route53GlobalResolverClient", "UpdateAccessTokenCommand")
|
|
2376
|
+
.sc(UpdateAccessToken)
|
|
2377
|
+
.build() {
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
class UpdateDNSViewCommand extends smithyClient.Command
|
|
2381
|
+
.classBuilder()
|
|
2382
|
+
.ep(commonParams)
|
|
2383
|
+
.m(function (Command, cs, config, o) {
|
|
2384
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2385
|
+
})
|
|
2386
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateDNSView", {})
|
|
2387
|
+
.n("Route53GlobalResolverClient", "UpdateDNSViewCommand")
|
|
2388
|
+
.sc(UpdateDNSView)
|
|
2389
|
+
.build() {
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
class UpdateFirewallDomainsCommand extends smithyClient.Command
|
|
2393
|
+
.classBuilder()
|
|
2394
|
+
.ep(commonParams)
|
|
2395
|
+
.m(function (Command, cs, config, o) {
|
|
2396
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2397
|
+
})
|
|
2398
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateFirewallDomains", {})
|
|
2399
|
+
.n("Route53GlobalResolverClient", "UpdateFirewallDomainsCommand")
|
|
2400
|
+
.sc(UpdateFirewallDomains)
|
|
2401
|
+
.build() {
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
class UpdateFirewallRuleCommand extends smithyClient.Command
|
|
2405
|
+
.classBuilder()
|
|
2406
|
+
.ep(commonParams)
|
|
2407
|
+
.m(function (Command, cs, config, o) {
|
|
2408
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2409
|
+
})
|
|
2410
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateFirewallRule", {})
|
|
2411
|
+
.n("Route53GlobalResolverClient", "UpdateFirewallRuleCommand")
|
|
2412
|
+
.sc(UpdateFirewallRule)
|
|
2413
|
+
.build() {
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
class UpdateGlobalResolverCommand extends smithyClient.Command
|
|
2417
|
+
.classBuilder()
|
|
2418
|
+
.ep(commonParams)
|
|
2419
|
+
.m(function (Command, cs, config, o) {
|
|
2420
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2421
|
+
})
|
|
2422
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateGlobalResolver", {})
|
|
2423
|
+
.n("Route53GlobalResolverClient", "UpdateGlobalResolverCommand")
|
|
2424
|
+
.sc(UpdateGlobalResolver)
|
|
2425
|
+
.build() {
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
class UpdateHostedZoneAssociationCommand extends smithyClient.Command
|
|
2429
|
+
.classBuilder()
|
|
2430
|
+
.ep(commonParams)
|
|
2431
|
+
.m(function (Command, cs, config, o) {
|
|
2432
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2433
|
+
})
|
|
2434
|
+
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateHostedZoneAssociation", {})
|
|
2435
|
+
.n("Route53GlobalResolverClient", "UpdateHostedZoneAssociationCommand")
|
|
2436
|
+
.sc(UpdateHostedZoneAssociation)
|
|
2437
|
+
.build() {
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
const commands = {
|
|
2441
|
+
AssociateHostedZoneCommand,
|
|
2442
|
+
BatchCreateFirewallRuleCommand,
|
|
2443
|
+
BatchDeleteFirewallRuleCommand,
|
|
2444
|
+
BatchUpdateFirewallRuleCommand,
|
|
2445
|
+
CreateAccessSourceCommand,
|
|
2446
|
+
CreateAccessTokenCommand,
|
|
2447
|
+
CreateDNSViewCommand,
|
|
2448
|
+
CreateFirewallDomainListCommand,
|
|
2449
|
+
CreateFirewallRuleCommand,
|
|
2450
|
+
CreateGlobalResolverCommand,
|
|
2451
|
+
DeleteAccessSourceCommand,
|
|
2452
|
+
DeleteAccessTokenCommand,
|
|
2453
|
+
DeleteDNSViewCommand,
|
|
2454
|
+
DeleteFirewallDomainListCommand,
|
|
2455
|
+
DeleteFirewallRuleCommand,
|
|
2456
|
+
DeleteGlobalResolverCommand,
|
|
2457
|
+
DisableDNSViewCommand,
|
|
2458
|
+
DisassociateHostedZoneCommand,
|
|
2459
|
+
EnableDNSViewCommand,
|
|
2460
|
+
GetAccessSourceCommand,
|
|
2461
|
+
GetAccessTokenCommand,
|
|
2462
|
+
GetDNSViewCommand,
|
|
2463
|
+
GetFirewallDomainListCommand,
|
|
2464
|
+
GetFirewallRuleCommand,
|
|
2465
|
+
GetGlobalResolverCommand,
|
|
2466
|
+
GetHostedZoneAssociationCommand,
|
|
2467
|
+
GetManagedFirewallDomainListCommand,
|
|
2468
|
+
ImportFirewallDomainsCommand,
|
|
2469
|
+
ListAccessSourcesCommand,
|
|
2470
|
+
ListAccessTokensCommand,
|
|
2471
|
+
ListDNSViewsCommand,
|
|
2472
|
+
ListFirewallDomainListsCommand,
|
|
2473
|
+
ListFirewallDomainsCommand,
|
|
2474
|
+
ListFirewallRulesCommand,
|
|
2475
|
+
ListGlobalResolversCommand,
|
|
2476
|
+
ListHostedZoneAssociationsCommand,
|
|
2477
|
+
ListManagedFirewallDomainListsCommand,
|
|
2478
|
+
ListTagsForResourceCommand,
|
|
2479
|
+
TagResourceCommand,
|
|
2480
|
+
UntagResourceCommand,
|
|
2481
|
+
UpdateAccessSourceCommand,
|
|
2482
|
+
UpdateAccessTokenCommand,
|
|
2483
|
+
UpdateDNSViewCommand,
|
|
2484
|
+
UpdateFirewallDomainsCommand,
|
|
2485
|
+
UpdateFirewallRuleCommand,
|
|
2486
|
+
UpdateGlobalResolverCommand,
|
|
2487
|
+
UpdateHostedZoneAssociationCommand,
|
|
2488
|
+
};
|
|
2489
|
+
class Route53GlobalResolver extends Route53GlobalResolverClient {
|
|
2490
|
+
}
|
|
2491
|
+
smithyClient.createAggregatedClient(commands, Route53GlobalResolver);
|
|
2492
|
+
|
|
2493
|
+
const paginateListAccessSources = core.createPaginator(Route53GlobalResolverClient, ListAccessSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
2494
|
+
|
|
2495
|
+
const paginateListAccessTokens = core.createPaginator(Route53GlobalResolverClient, ListAccessTokensCommand, "nextToken", "nextToken", "maxResults");
|
|
2496
|
+
|
|
2497
|
+
const paginateListDNSViews = core.createPaginator(Route53GlobalResolverClient, ListDNSViewsCommand, "nextToken", "nextToken", "maxResults");
|
|
2498
|
+
|
|
2499
|
+
const paginateListFirewallDomainLists = core.createPaginator(Route53GlobalResolverClient, ListFirewallDomainListsCommand, "nextToken", "nextToken", "maxResults");
|
|
2500
|
+
|
|
2501
|
+
const paginateListFirewallDomains = core.createPaginator(Route53GlobalResolverClient, ListFirewallDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
2502
|
+
|
|
2503
|
+
const paginateListFirewallRules = core.createPaginator(Route53GlobalResolverClient, ListFirewallRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
2504
|
+
|
|
2505
|
+
const paginateListGlobalResolvers = core.createPaginator(Route53GlobalResolverClient, ListGlobalResolversCommand, "nextToken", "nextToken", "maxResults");
|
|
2506
|
+
|
|
2507
|
+
const paginateListHostedZoneAssociations = core.createPaginator(Route53GlobalResolverClient, ListHostedZoneAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2508
|
+
|
|
2509
|
+
const paginateListManagedFirewallDomainLists = core.createPaginator(Route53GlobalResolverClient, ListManagedFirewallDomainListsCommand, "nextToken", "nextToken", "maxResults");
|
|
2510
|
+
|
|
2511
|
+
const IpAddressType = {
|
|
2512
|
+
IPV4: "IPV4",
|
|
2513
|
+
IPV6: "IPV6",
|
|
2514
|
+
};
|
|
2515
|
+
const DnsProtocol = {
|
|
2516
|
+
DO53: "DO53",
|
|
2517
|
+
DOH: "DOH",
|
|
2518
|
+
DOT: "DOT",
|
|
2519
|
+
};
|
|
2520
|
+
const CRResourceStatus = {
|
|
2521
|
+
CREATING: "CREATING",
|
|
2522
|
+
DELETING: "DELETING",
|
|
2523
|
+
OPERATIONAL: "OPERATIONAL",
|
|
2524
|
+
UPDATING: "UPDATING",
|
|
2525
|
+
};
|
|
2526
|
+
const ValidationExceptionReason = {
|
|
2527
|
+
CANNOT_PARSE: "CANNOT_PARSE",
|
|
2528
|
+
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
2529
|
+
OTHER: "OTHER",
|
|
2530
|
+
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
2531
|
+
};
|
|
2532
|
+
const TokenStatus = {
|
|
2533
|
+
CREATING: "CREATING",
|
|
2534
|
+
DELETING: "DELETING",
|
|
2535
|
+
OPERATIONAL: "OPERATIONAL",
|
|
2536
|
+
};
|
|
2537
|
+
const HostedZoneAssociationStatus = {
|
|
2538
|
+
CREATING: "CREATING",
|
|
2539
|
+
DELETING: "DELETING",
|
|
2540
|
+
OPERATIONAL: "OPERATIONAL",
|
|
2541
|
+
};
|
|
2542
|
+
const FirewallRuleAction = {
|
|
2543
|
+
ALERT: "ALERT",
|
|
2544
|
+
ALLOW: "ALLOW",
|
|
2545
|
+
BLOCK: "BLOCK",
|
|
2546
|
+
};
|
|
2547
|
+
const BlockOverrideDnsQueryType = {
|
|
2548
|
+
CNAME: "CNAME",
|
|
2549
|
+
};
|
|
2550
|
+
const FirewallBlockResponse = {
|
|
2551
|
+
NODATA: "NODATA",
|
|
2552
|
+
NXDOMAIN: "NXDOMAIN",
|
|
2553
|
+
OVERRIDE: "OVERRIDE",
|
|
2554
|
+
};
|
|
2555
|
+
const ConfidenceThreshold = {
|
|
2556
|
+
HIGH: "HIGH",
|
|
2557
|
+
LOW: "LOW",
|
|
2558
|
+
MEDIUM: "MEDIUM",
|
|
2559
|
+
};
|
|
2560
|
+
const DnsAdvancedProtection = {
|
|
2561
|
+
DGA: "DGA",
|
|
2562
|
+
DNS_TUNNELING: "DNS_TUNNELING",
|
|
2563
|
+
};
|
|
2564
|
+
const DnsSecValidationType = {
|
|
2565
|
+
DISABLED: "DISABLED",
|
|
2566
|
+
ENABLED: "ENABLED",
|
|
2567
|
+
};
|
|
2568
|
+
const EdnsClientSubnetType = {
|
|
2569
|
+
DISABLED: "DISABLED",
|
|
2570
|
+
ENABLED: "ENABLED",
|
|
2571
|
+
};
|
|
2572
|
+
const FirewallRulesFailOpenType = {
|
|
2573
|
+
DISABLED: "DISABLED",
|
|
2574
|
+
ENABLED: "ENABLED",
|
|
2575
|
+
};
|
|
2576
|
+
const ProfileResourceStatus = {
|
|
2577
|
+
CREATING: "CREATING",
|
|
2578
|
+
DELETING: "DELETING",
|
|
2579
|
+
DISABLED: "DISABLED",
|
|
2580
|
+
DISABLING: "DISABLING",
|
|
2581
|
+
ENABLING: "ENABLING",
|
|
2582
|
+
OPERATIONAL: "OPERATIONAL",
|
|
2583
|
+
UPDATING: "UPDATING",
|
|
2584
|
+
};
|
|
2585
|
+
|
|
2586
|
+
Object.defineProperty(exports, "$Command", {
|
|
2587
|
+
enumerable: true,
|
|
2588
|
+
get: function () { return smithyClient.Command; }
|
|
2589
|
+
});
|
|
2590
|
+
Object.defineProperty(exports, "__Client", {
|
|
2591
|
+
enumerable: true,
|
|
2592
|
+
get: function () { return smithyClient.Client; }
|
|
2593
|
+
});
|
|
2594
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2595
|
+
exports.AssociateHostedZoneCommand = AssociateHostedZoneCommand;
|
|
2596
|
+
exports.BatchCreateFirewallRuleCommand = BatchCreateFirewallRuleCommand;
|
|
2597
|
+
exports.BatchDeleteFirewallRuleCommand = BatchDeleteFirewallRuleCommand;
|
|
2598
|
+
exports.BatchUpdateFirewallRuleCommand = BatchUpdateFirewallRuleCommand;
|
|
2599
|
+
exports.BlockOverrideDnsQueryType = BlockOverrideDnsQueryType;
|
|
2600
|
+
exports.CRResourceStatus = CRResourceStatus;
|
|
2601
|
+
exports.ConfidenceThreshold = ConfidenceThreshold;
|
|
2602
|
+
exports.ConflictException = ConflictException$1;
|
|
2603
|
+
exports.CreateAccessSourceCommand = CreateAccessSourceCommand;
|
|
2604
|
+
exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
|
|
2605
|
+
exports.CreateDNSViewCommand = CreateDNSViewCommand;
|
|
2606
|
+
exports.CreateFirewallDomainListCommand = CreateFirewallDomainListCommand;
|
|
2607
|
+
exports.CreateFirewallRuleCommand = CreateFirewallRuleCommand;
|
|
2608
|
+
exports.CreateGlobalResolverCommand = CreateGlobalResolverCommand;
|
|
2609
|
+
exports.DeleteAccessSourceCommand = DeleteAccessSourceCommand;
|
|
2610
|
+
exports.DeleteAccessTokenCommand = DeleteAccessTokenCommand;
|
|
2611
|
+
exports.DeleteDNSViewCommand = DeleteDNSViewCommand;
|
|
2612
|
+
exports.DeleteFirewallDomainListCommand = DeleteFirewallDomainListCommand;
|
|
2613
|
+
exports.DeleteFirewallRuleCommand = DeleteFirewallRuleCommand;
|
|
2614
|
+
exports.DeleteGlobalResolverCommand = DeleteGlobalResolverCommand;
|
|
2615
|
+
exports.DisableDNSViewCommand = DisableDNSViewCommand;
|
|
2616
|
+
exports.DisassociateHostedZoneCommand = DisassociateHostedZoneCommand;
|
|
2617
|
+
exports.DnsAdvancedProtection = DnsAdvancedProtection;
|
|
2618
|
+
exports.DnsProtocol = DnsProtocol;
|
|
2619
|
+
exports.DnsSecValidationType = DnsSecValidationType;
|
|
2620
|
+
exports.EdnsClientSubnetType = EdnsClientSubnetType;
|
|
2621
|
+
exports.EnableDNSViewCommand = EnableDNSViewCommand;
|
|
2622
|
+
exports.FirewallBlockResponse = FirewallBlockResponse;
|
|
2623
|
+
exports.FirewallRuleAction = FirewallRuleAction;
|
|
2624
|
+
exports.FirewallRulesFailOpenType = FirewallRulesFailOpenType;
|
|
2625
|
+
exports.GetAccessSourceCommand = GetAccessSourceCommand;
|
|
2626
|
+
exports.GetAccessTokenCommand = GetAccessTokenCommand;
|
|
2627
|
+
exports.GetDNSViewCommand = GetDNSViewCommand;
|
|
2628
|
+
exports.GetFirewallDomainListCommand = GetFirewallDomainListCommand;
|
|
2629
|
+
exports.GetFirewallRuleCommand = GetFirewallRuleCommand;
|
|
2630
|
+
exports.GetGlobalResolverCommand = GetGlobalResolverCommand;
|
|
2631
|
+
exports.GetHostedZoneAssociationCommand = GetHostedZoneAssociationCommand;
|
|
2632
|
+
exports.GetManagedFirewallDomainListCommand = GetManagedFirewallDomainListCommand;
|
|
2633
|
+
exports.HostedZoneAssociationStatus = HostedZoneAssociationStatus;
|
|
2634
|
+
exports.ImportFirewallDomainsCommand = ImportFirewallDomainsCommand;
|
|
2635
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2636
|
+
exports.IpAddressType = IpAddressType;
|
|
2637
|
+
exports.ListAccessSourcesCommand = ListAccessSourcesCommand;
|
|
2638
|
+
exports.ListAccessTokensCommand = ListAccessTokensCommand;
|
|
2639
|
+
exports.ListDNSViewsCommand = ListDNSViewsCommand;
|
|
2640
|
+
exports.ListFirewallDomainListsCommand = ListFirewallDomainListsCommand;
|
|
2641
|
+
exports.ListFirewallDomainsCommand = ListFirewallDomainsCommand;
|
|
2642
|
+
exports.ListFirewallRulesCommand = ListFirewallRulesCommand;
|
|
2643
|
+
exports.ListGlobalResolversCommand = ListGlobalResolversCommand;
|
|
2644
|
+
exports.ListHostedZoneAssociationsCommand = ListHostedZoneAssociationsCommand;
|
|
2645
|
+
exports.ListManagedFirewallDomainListsCommand = ListManagedFirewallDomainListsCommand;
|
|
2646
|
+
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2647
|
+
exports.ProfileResourceStatus = ProfileResourceStatus;
|
|
2648
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2649
|
+
exports.Route53GlobalResolver = Route53GlobalResolver;
|
|
2650
|
+
exports.Route53GlobalResolverClient = Route53GlobalResolverClient;
|
|
2651
|
+
exports.Route53GlobalResolverServiceException = Route53GlobalResolverServiceException$1;
|
|
2652
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2653
|
+
exports.TagResourceCommand = TagResourceCommand;
|
|
2654
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
2655
|
+
exports.TokenStatus = TokenStatus;
|
|
2656
|
+
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2657
|
+
exports.UpdateAccessSourceCommand = UpdateAccessSourceCommand;
|
|
2658
|
+
exports.UpdateAccessTokenCommand = UpdateAccessTokenCommand;
|
|
2659
|
+
exports.UpdateDNSViewCommand = UpdateDNSViewCommand;
|
|
2660
|
+
exports.UpdateFirewallDomainsCommand = UpdateFirewallDomainsCommand;
|
|
2661
|
+
exports.UpdateFirewallRuleCommand = UpdateFirewallRuleCommand;
|
|
2662
|
+
exports.UpdateGlobalResolverCommand = UpdateGlobalResolverCommand;
|
|
2663
|
+
exports.UpdateHostedZoneAssociationCommand = UpdateHostedZoneAssociationCommand;
|
|
2664
|
+
exports.ValidationException = ValidationException$1;
|
|
2665
|
+
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2666
|
+
exports.paginateListAccessSources = paginateListAccessSources;
|
|
2667
|
+
exports.paginateListAccessTokens = paginateListAccessTokens;
|
|
2668
|
+
exports.paginateListDNSViews = paginateListDNSViews;
|
|
2669
|
+
exports.paginateListFirewallDomainLists = paginateListFirewallDomainLists;
|
|
2670
|
+
exports.paginateListFirewallDomains = paginateListFirewallDomains;
|
|
2671
|
+
exports.paginateListFirewallRules = paginateListFirewallRules;
|
|
2672
|
+
exports.paginateListGlobalResolvers = paginateListGlobalResolvers;
|
|
2673
|
+
exports.paginateListHostedZoneAssociations = paginateListHostedZoneAssociations;
|
|
2674
|
+
exports.paginateListManagedFirewallDomainLists = paginateListManagedFirewallDomainLists;
|