@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.
Files changed (245) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +581 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +2674 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +36 -0
  11. package/dist-es/Route53GlobalResolver.js +101 -0
  12. package/dist-es/Route53GlobalResolverClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AssociateHostedZoneCommand.js +16 -0
  16. package/dist-es/commands/BatchCreateFirewallRuleCommand.js +16 -0
  17. package/dist-es/commands/BatchDeleteFirewallRuleCommand.js +16 -0
  18. package/dist-es/commands/BatchUpdateFirewallRuleCommand.js +16 -0
  19. package/dist-es/commands/CreateAccessSourceCommand.js +16 -0
  20. package/dist-es/commands/CreateAccessTokenCommand.js +16 -0
  21. package/dist-es/commands/CreateDNSViewCommand.js +16 -0
  22. package/dist-es/commands/CreateFirewallDomainListCommand.js +16 -0
  23. package/dist-es/commands/CreateFirewallRuleCommand.js +16 -0
  24. package/dist-es/commands/CreateGlobalResolverCommand.js +16 -0
  25. package/dist-es/commands/DeleteAccessSourceCommand.js +16 -0
  26. package/dist-es/commands/DeleteAccessTokenCommand.js +16 -0
  27. package/dist-es/commands/DeleteDNSViewCommand.js +16 -0
  28. package/dist-es/commands/DeleteFirewallDomainListCommand.js +16 -0
  29. package/dist-es/commands/DeleteFirewallRuleCommand.js +16 -0
  30. package/dist-es/commands/DeleteGlobalResolverCommand.js +16 -0
  31. package/dist-es/commands/DisableDNSViewCommand.js +16 -0
  32. package/dist-es/commands/DisassociateHostedZoneCommand.js +16 -0
  33. package/dist-es/commands/EnableDNSViewCommand.js +16 -0
  34. package/dist-es/commands/GetAccessSourceCommand.js +16 -0
  35. package/dist-es/commands/GetAccessTokenCommand.js +16 -0
  36. package/dist-es/commands/GetDNSViewCommand.js +16 -0
  37. package/dist-es/commands/GetFirewallDomainListCommand.js +16 -0
  38. package/dist-es/commands/GetFirewallRuleCommand.js +16 -0
  39. package/dist-es/commands/GetGlobalResolverCommand.js +16 -0
  40. package/dist-es/commands/GetHostedZoneAssociationCommand.js +16 -0
  41. package/dist-es/commands/GetManagedFirewallDomainListCommand.js +16 -0
  42. package/dist-es/commands/ImportFirewallDomainsCommand.js +16 -0
  43. package/dist-es/commands/ListAccessSourcesCommand.js +16 -0
  44. package/dist-es/commands/ListAccessTokensCommand.js +16 -0
  45. package/dist-es/commands/ListDNSViewsCommand.js +16 -0
  46. package/dist-es/commands/ListFirewallDomainListsCommand.js +16 -0
  47. package/dist-es/commands/ListFirewallDomainsCommand.js +16 -0
  48. package/dist-es/commands/ListFirewallRulesCommand.js +16 -0
  49. package/dist-es/commands/ListGlobalResolversCommand.js +16 -0
  50. package/dist-es/commands/ListHostedZoneAssociationsCommand.js +16 -0
  51. package/dist-es/commands/ListManagedFirewallDomainListsCommand.js +16 -0
  52. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  53. package/dist-es/commands/TagResourceCommand.js +16 -0
  54. package/dist-es/commands/UntagResourceCommand.js +16 -0
  55. package/dist-es/commands/UpdateAccessSourceCommand.js +16 -0
  56. package/dist-es/commands/UpdateAccessTokenCommand.js +16 -0
  57. package/dist-es/commands/UpdateDNSViewCommand.js +16 -0
  58. package/dist-es/commands/UpdateFirewallDomainsCommand.js +16 -0
  59. package/dist-es/commands/UpdateFirewallRuleCommand.js +16 -0
  60. package/dist-es/commands/UpdateGlobalResolverCommand.js +16 -0
  61. package/dist-es/commands/UpdateHostedZoneAssociationCommand.js +16 -0
  62. package/dist-es/commands/index.js +47 -0
  63. package/dist-es/endpoint/EndpointParameters.js +11 -0
  64. package/dist-es/endpoint/endpointResolver.js +14 -0
  65. package/dist-es/endpoint/ruleset.js +4 -0
  66. package/dist-es/extensionConfiguration.js +1 -0
  67. package/dist-es/index.js +7 -0
  68. package/dist-es/models/Route53GlobalResolverServiceException.js +8 -0
  69. package/dist-es/models/enums.js +74 -0
  70. package/dist-es/models/errors.js +117 -0
  71. package/dist-es/models/models_0.js +1 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListAccessSourcesPaginator.js +4 -0
  74. package/dist-es/pagination/ListAccessTokensPaginator.js +4 -0
  75. package/dist-es/pagination/ListDNSViewsPaginator.js +4 -0
  76. package/dist-es/pagination/ListFirewallDomainListsPaginator.js +4 -0
  77. package/dist-es/pagination/ListFirewallDomainsPaginator.js +4 -0
  78. package/dist-es/pagination/ListFirewallRulesPaginator.js +4 -0
  79. package/dist-es/pagination/ListGlobalResolversPaginator.js +4 -0
  80. package/dist-es/pagination/ListHostedZoneAssociationsPaginator.js +4 -0
  81. package/dist-es/pagination/ListManagedFirewallDomainListsPaginator.js +4 -0
  82. package/dist-es/pagination/index.js +10 -0
  83. package/dist-es/runtimeConfig.browser.js +34 -0
  84. package/dist-es/runtimeConfig.js +51 -0
  85. package/dist-es/runtimeConfig.native.js +11 -0
  86. package/dist-es/runtimeConfig.shared.js +32 -0
  87. package/dist-es/runtimeExtensions.js +9 -0
  88. package/dist-es/schemas/schemas_0.js +1651 -0
  89. package/dist-types/Route53GlobalResolver.d.ts +342 -0
  90. package/dist-types/Route53GlobalResolverClient.d.ts +243 -0
  91. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  92. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  93. package/dist-types/commands/AssociateHostedZoneCommand.d.ts +104 -0
  94. package/dist-types/commands/BatchCreateFirewallRuleCommand.d.ts +156 -0
  95. package/dist-types/commands/BatchDeleteFirewallRuleCommand.d.ts +113 -0
  96. package/dist-types/commands/BatchUpdateFirewallRuleCommand.d.ts +151 -0
  97. package/dist-types/commands/CreateAccessSourceCommand.d.ts +144 -0
  98. package/dist-types/commands/CreateAccessTokenCommand.d.ts +109 -0
  99. package/dist-types/commands/CreateDNSViewCommand.d.ts +115 -0
  100. package/dist-types/commands/CreateFirewallDomainListCommand.d.ts +109 -0
  101. package/dist-types/commands/CreateFirewallRuleCommand.d.ts +124 -0
  102. package/dist-types/commands/CreateGlobalResolverCommand.d.ts +116 -0
  103. package/dist-types/commands/DeleteAccessSourceCommand.d.ts +101 -0
  104. package/dist-types/commands/DeleteAccessTokenCommand.d.ts +91 -0
  105. package/dist-types/commands/DeleteDNSViewCommand.d.ts +103 -0
  106. package/dist-types/commands/DeleteFirewallDomainListCommand.d.ts +95 -0
  107. package/dist-types/commands/DeleteFirewallRuleCommand.d.ts +108 -0
  108. package/dist-types/commands/DeleteGlobalResolverCommand.d.ts +107 -0
  109. package/dist-types/commands/DisableDNSViewCommand.d.ts +103 -0
  110. package/dist-types/commands/DisassociateHostedZoneCommand.d.ts +100 -0
  111. package/dist-types/commands/EnableDNSViewCommand.d.ts +103 -0
  112. package/dist-types/commands/GetAccessSourceCommand.d.ts +98 -0
  113. package/dist-types/commands/GetAccessTokenCommand.d.ts +99 -0
  114. package/dist-types/commands/GetDNSViewCommand.d.ts +100 -0
  115. package/dist-types/commands/GetFirewallDomainListCommand.d.ts +99 -0
  116. package/dist-types/commands/GetFirewallRuleCommand.d.ts +105 -0
  117. package/dist-types/commands/GetGlobalResolverCommand.d.ts +104 -0
  118. package/dist-types/commands/GetHostedZoneAssociationCommand.d.ts +96 -0
  119. package/dist-types/commands/GetManagedFirewallDomainListCommand.d.ts +92 -0
  120. package/dist-types/commands/ImportFirewallDomainsCommand.d.ts +96 -0
  121. package/dist-types/commands/ListAccessSourcesCommand.d.ts +106 -0
  122. package/dist-types/commands/ListAccessTokensCommand.d.ts +109 -0
  123. package/dist-types/commands/ListDNSViewsCommand.d.ts +107 -0
  124. package/dist-types/commands/ListFirewallDomainListsCommand.d.ts +103 -0
  125. package/dist-types/commands/ListFirewallDomainsCommand.d.ts +94 -0
  126. package/dist-types/commands/ListFirewallRulesCommand.d.ts +117 -0
  127. package/dist-types/commands/ListGlobalResolversCommand.d.ts +107 -0
  128. package/dist-types/commands/ListHostedZoneAssociationsCommand.d.ts +103 -0
  129. package/dist-types/commands/ListManagedFirewallDomainListsCommand.d.ts +96 -0
  130. package/dist-types/commands/ListTagsForResourceCommand.d.ts +79 -0
  131. package/dist-types/commands/TagResourceCommand.d.ts +84 -0
  132. package/dist-types/commands/UntagResourceCommand.d.ts +81 -0
  133. package/dist-types/commands/UpdateAccessSourceCommand.d.ts +108 -0
  134. package/dist-types/commands/UpdateAccessTokenCommand.d.ts +94 -0
  135. package/dist-types/commands/UpdateDNSViewCommand.d.ts +108 -0
  136. package/dist-types/commands/UpdateFirewallDomainsCommand.d.ts +98 -0
  137. package/dist-types/commands/UpdateFirewallRuleCommand.d.ts +119 -0
  138. package/dist-types/commands/UpdateGlobalResolverCommand.d.ts +110 -0
  139. package/dist-types/commands/UpdateHostedZoneAssociationCommand.d.ts +100 -0
  140. package/dist-types/commands/index.d.ts +47 -0
  141. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  142. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  143. package/dist-types/endpoint/ruleset.d.ts +2 -0
  144. package/dist-types/extensionConfiguration.d.ts +9 -0
  145. package/dist-types/index.d.ts +16 -0
  146. package/dist-types/models/Route53GlobalResolverServiceException.d.ts +14 -0
  147. package/dist-types/models/enums.d.ts +194 -0
  148. package/dist-types/models/errors.d.ts +162 -0
  149. package/dist-types/models/models_0.d.ts +3784 -0
  150. package/dist-types/pagination/Interfaces.d.ts +8 -0
  151. package/dist-types/pagination/ListAccessSourcesPaginator.d.ts +7 -0
  152. package/dist-types/pagination/ListAccessTokensPaginator.d.ts +7 -0
  153. package/dist-types/pagination/ListDNSViewsPaginator.d.ts +7 -0
  154. package/dist-types/pagination/ListFirewallDomainListsPaginator.d.ts +7 -0
  155. package/dist-types/pagination/ListFirewallDomainsPaginator.d.ts +7 -0
  156. package/dist-types/pagination/ListFirewallRulesPaginator.d.ts +7 -0
  157. package/dist-types/pagination/ListGlobalResolversPaginator.d.ts +7 -0
  158. package/dist-types/pagination/ListHostedZoneAssociationsPaginator.d.ts +7 -0
  159. package/dist-types/pagination/ListManagedFirewallDomainListsPaginator.d.ts +7 -0
  160. package/dist-types/pagination/index.d.ts +10 -0
  161. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  162. package/dist-types/runtimeConfig.d.ts +51 -0
  163. package/dist-types/runtimeConfig.native.d.ts +50 -0
  164. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  165. package/dist-types/runtimeExtensions.d.ts +17 -0
  166. package/dist-types/schemas/schemas_0.d.ts +192 -0
  167. package/dist-types/ts3.4/Route53GlobalResolver.d.ts +809 -0
  168. package/dist-types/ts3.4/Route53GlobalResolverClient.d.ts +408 -0
  169. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  170. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  171. package/dist-types/ts3.4/commands/AssociateHostedZoneCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/BatchCreateFirewallRuleCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/BatchDeleteFirewallRuleCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/BatchUpdateFirewallRuleCommand.d.ts +51 -0
  175. package/dist-types/ts3.4/commands/CreateAccessSourceCommand.d.ts +51 -0
  176. package/dist-types/ts3.4/commands/CreateAccessTokenCommand.d.ts +50 -0
  177. package/dist-types/ts3.4/commands/CreateDNSViewCommand.d.ts +47 -0
  178. package/dist-types/ts3.4/commands/CreateFirewallDomainListCommand.d.ts +51 -0
  179. package/dist-types/ts3.4/commands/CreateFirewallRuleCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/CreateGlobalResolverCommand.d.ts +51 -0
  181. package/dist-types/ts3.4/commands/DeleteAccessSourceCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/DeleteAccessTokenCommand.d.ts +50 -0
  183. package/dist-types/ts3.4/commands/DeleteDNSViewCommand.d.ts +47 -0
  184. package/dist-types/ts3.4/commands/DeleteFirewallDomainListCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/DeleteFirewallRuleCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/DeleteGlobalResolverCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/DisableDNSViewCommand.d.ts +47 -0
  188. package/dist-types/ts3.4/commands/DisassociateHostedZoneCommand.d.ts +51 -0
  189. package/dist-types/ts3.4/commands/EnableDNSViewCommand.d.ts +47 -0
  190. package/dist-types/ts3.4/commands/GetAccessSourceCommand.d.ts +50 -0
  191. package/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +47 -0
  192. package/dist-types/ts3.4/commands/GetDNSViewCommand.d.ts +47 -0
  193. package/dist-types/ts3.4/commands/GetFirewallDomainListCommand.d.ts +51 -0
  194. package/dist-types/ts3.4/commands/GetFirewallRuleCommand.d.ts +50 -0
  195. package/dist-types/ts3.4/commands/GetGlobalResolverCommand.d.ts +50 -0
  196. package/dist-types/ts3.4/commands/GetHostedZoneAssociationCommand.d.ts +51 -0
  197. package/dist-types/ts3.4/commands/GetManagedFirewallDomainListCommand.d.ts +51 -0
  198. package/dist-types/ts3.4/commands/ImportFirewallDomainsCommand.d.ts +51 -0
  199. package/dist-types/ts3.4/commands/ListAccessSourcesCommand.d.ts +50 -0
  200. package/dist-types/ts3.4/commands/ListAccessTokensCommand.d.ts +50 -0
  201. package/dist-types/ts3.4/commands/ListDNSViewsCommand.d.ts +47 -0
  202. package/dist-types/ts3.4/commands/ListFirewallDomainListsCommand.d.ts +51 -0
  203. package/dist-types/ts3.4/commands/ListFirewallDomainsCommand.d.ts +51 -0
  204. package/dist-types/ts3.4/commands/ListFirewallRulesCommand.d.ts +50 -0
  205. package/dist-types/ts3.4/commands/ListGlobalResolversCommand.d.ts +51 -0
  206. package/dist-types/ts3.4/commands/ListHostedZoneAssociationsCommand.d.ts +51 -0
  207. package/dist-types/ts3.4/commands/ListManagedFirewallDomainListsCommand.d.ts +51 -0
  208. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  209. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  210. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  211. package/dist-types/ts3.4/commands/UpdateAccessSourceCommand.d.ts +51 -0
  212. package/dist-types/ts3.4/commands/UpdateAccessTokenCommand.d.ts +50 -0
  213. package/dist-types/ts3.4/commands/UpdateDNSViewCommand.d.ts +47 -0
  214. package/dist-types/ts3.4/commands/UpdateFirewallDomainsCommand.d.ts +51 -0
  215. package/dist-types/ts3.4/commands/UpdateFirewallRuleCommand.d.ts +51 -0
  216. package/dist-types/ts3.4/commands/UpdateGlobalResolverCommand.d.ts +51 -0
  217. package/dist-types/ts3.4/commands/UpdateHostedZoneAssociationCommand.d.ts +51 -0
  218. package/dist-types/ts3.4/commands/index.d.ts +47 -0
  219. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  220. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  221. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  222. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  223. package/dist-types/ts3.4/index.d.ts +11 -0
  224. package/dist-types/ts3.4/models/Route53GlobalResolverServiceException.d.ts +9 -0
  225. package/dist-types/ts3.4/models/enums.d.ts +101 -0
  226. package/dist-types/ts3.4/models/errors.d.ts +69 -0
  227. package/dist-types/ts3.4/models/models_0.d.ts +879 -0
  228. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  229. package/dist-types/ts3.4/pagination/ListAccessSourcesPaginator.d.ts +11 -0
  230. package/dist-types/ts3.4/pagination/ListAccessTokensPaginator.d.ts +11 -0
  231. package/dist-types/ts3.4/pagination/ListDNSViewsPaginator.d.ts +11 -0
  232. package/dist-types/ts3.4/pagination/ListFirewallDomainListsPaginator.d.ts +11 -0
  233. package/dist-types/ts3.4/pagination/ListFirewallDomainsPaginator.d.ts +11 -0
  234. package/dist-types/ts3.4/pagination/ListFirewallRulesPaginator.d.ts +11 -0
  235. package/dist-types/ts3.4/pagination/ListGlobalResolversPaginator.d.ts +11 -0
  236. package/dist-types/ts3.4/pagination/ListHostedZoneAssociationsPaginator.d.ts +11 -0
  237. package/dist-types/ts3.4/pagination/ListManagedFirewallDomainListsPaginator.d.ts +11 -0
  238. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  239. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  240. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  241. package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
  242. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  243. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  244. package/dist-types/ts3.4/schemas/schemas_0.d.ts +199 -0
  245. package/package.json +99 -0
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateFirewallDomainsInput,
5
+ UpdateFirewallDomainsOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53GlobalResolverClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53GlobalResolverClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateFirewallDomainsCommandInput
15
+ extends UpdateFirewallDomainsInput {}
16
+ export interface UpdateFirewallDomainsCommandOutput
17
+ extends UpdateFirewallDomainsOutput,
18
+ __MetadataBearer {}
19
+ declare const UpdateFirewallDomainsCommand_base: {
20
+ new (
21
+ input: UpdateFirewallDomainsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateFirewallDomainsCommandInput,
24
+ UpdateFirewallDomainsCommandOutput,
25
+ Route53GlobalResolverClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateFirewallDomainsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateFirewallDomainsCommandInput,
33
+ UpdateFirewallDomainsCommandOutput,
34
+ Route53GlobalResolverClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateFirewallDomainsCommand extends UpdateFirewallDomainsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateFirewallDomainsInput;
44
+ output: UpdateFirewallDomainsOutput;
45
+ };
46
+ sdk: {
47
+ input: UpdateFirewallDomainsCommandInput;
48
+ output: UpdateFirewallDomainsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateFirewallRuleInput,
5
+ UpdateFirewallRuleOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53GlobalResolverClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53GlobalResolverClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateFirewallRuleCommandInput
15
+ extends UpdateFirewallRuleInput {}
16
+ export interface UpdateFirewallRuleCommandOutput
17
+ extends UpdateFirewallRuleOutput,
18
+ __MetadataBearer {}
19
+ declare const UpdateFirewallRuleCommand_base: {
20
+ new (
21
+ input: UpdateFirewallRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateFirewallRuleCommandInput,
24
+ UpdateFirewallRuleCommandOutput,
25
+ Route53GlobalResolverClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateFirewallRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateFirewallRuleCommandInput,
33
+ UpdateFirewallRuleCommandOutput,
34
+ Route53GlobalResolverClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateFirewallRuleCommand extends UpdateFirewallRuleCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateFirewallRuleInput;
44
+ output: UpdateFirewallRuleOutput;
45
+ };
46
+ sdk: {
47
+ input: UpdateFirewallRuleCommandInput;
48
+ output: UpdateFirewallRuleCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateGlobalResolverInput,
5
+ UpdateGlobalResolverOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53GlobalResolverClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53GlobalResolverClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateGlobalResolverCommandInput
15
+ extends UpdateGlobalResolverInput {}
16
+ export interface UpdateGlobalResolverCommandOutput
17
+ extends UpdateGlobalResolverOutput,
18
+ __MetadataBearer {}
19
+ declare const UpdateGlobalResolverCommand_base: {
20
+ new (
21
+ input: UpdateGlobalResolverCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateGlobalResolverCommandInput,
24
+ UpdateGlobalResolverCommandOutput,
25
+ Route53GlobalResolverClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateGlobalResolverCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateGlobalResolverCommandInput,
33
+ UpdateGlobalResolverCommandOutput,
34
+ Route53GlobalResolverClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateGlobalResolverCommand extends UpdateGlobalResolverCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateGlobalResolverInput;
44
+ output: UpdateGlobalResolverOutput;
45
+ };
46
+ sdk: {
47
+ input: UpdateGlobalResolverCommandInput;
48
+ output: UpdateGlobalResolverCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateHostedZoneAssociationInput,
5
+ UpdateHostedZoneAssociationOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ Route53GlobalResolverClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../Route53GlobalResolverClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateHostedZoneAssociationCommandInput
15
+ extends UpdateHostedZoneAssociationInput {}
16
+ export interface UpdateHostedZoneAssociationCommandOutput
17
+ extends UpdateHostedZoneAssociationOutput,
18
+ __MetadataBearer {}
19
+ declare const UpdateHostedZoneAssociationCommand_base: {
20
+ new (
21
+ input: UpdateHostedZoneAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateHostedZoneAssociationCommandInput,
24
+ UpdateHostedZoneAssociationCommandOutput,
25
+ Route53GlobalResolverClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateHostedZoneAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateHostedZoneAssociationCommandInput,
33
+ UpdateHostedZoneAssociationCommandOutput,
34
+ Route53GlobalResolverClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateHostedZoneAssociationCommand extends UpdateHostedZoneAssociationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateHostedZoneAssociationInput;
44
+ output: UpdateHostedZoneAssociationOutput;
45
+ };
46
+ sdk: {
47
+ input: UpdateHostedZoneAssociationCommandInput;
48
+ output: UpdateHostedZoneAssociationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ export * from "./AssociateHostedZoneCommand";
2
+ export * from "./BatchCreateFirewallRuleCommand";
3
+ export * from "./BatchDeleteFirewallRuleCommand";
4
+ export * from "./BatchUpdateFirewallRuleCommand";
5
+ export * from "./CreateAccessSourceCommand";
6
+ export * from "./CreateAccessTokenCommand";
7
+ export * from "./CreateDNSViewCommand";
8
+ export * from "./CreateFirewallDomainListCommand";
9
+ export * from "./CreateFirewallRuleCommand";
10
+ export * from "./CreateGlobalResolverCommand";
11
+ export * from "./DeleteAccessSourceCommand";
12
+ export * from "./DeleteAccessTokenCommand";
13
+ export * from "./DeleteDNSViewCommand";
14
+ export * from "./DeleteFirewallDomainListCommand";
15
+ export * from "./DeleteFirewallRuleCommand";
16
+ export * from "./DeleteGlobalResolverCommand";
17
+ export * from "./DisableDNSViewCommand";
18
+ export * from "./DisassociateHostedZoneCommand";
19
+ export * from "./EnableDNSViewCommand";
20
+ export * from "./GetAccessSourceCommand";
21
+ export * from "./GetAccessTokenCommand";
22
+ export * from "./GetDNSViewCommand";
23
+ export * from "./GetFirewallDomainListCommand";
24
+ export * from "./GetFirewallRuleCommand";
25
+ export * from "./GetGlobalResolverCommand";
26
+ export * from "./GetHostedZoneAssociationCommand";
27
+ export * from "./GetManagedFirewallDomainListCommand";
28
+ export * from "./ImportFirewallDomainsCommand";
29
+ export * from "./ListAccessSourcesCommand";
30
+ export * from "./ListAccessTokensCommand";
31
+ export * from "./ListDNSViewsCommand";
32
+ export * from "./ListFirewallDomainListsCommand";
33
+ export * from "./ListFirewallDomainsCommand";
34
+ export * from "./ListFirewallRulesCommand";
35
+ export * from "./ListGlobalResolversCommand";
36
+ export * from "./ListHostedZoneAssociationsCommand";
37
+ export * from "./ListManagedFirewallDomainListsCommand";
38
+ export * from "./ListTagsForResourceCommand";
39
+ export * from "./TagResourceCommand";
40
+ export * from "./UntagResourceCommand";
41
+ export * from "./UpdateAccessSourceCommand";
42
+ export * from "./UpdateAccessTokenCommand";
43
+ export * from "./UpdateDNSViewCommand";
44
+ export * from "./UpdateFirewallDomainsCommand";
45
+ export * from "./UpdateFirewallRuleCommand";
46
+ export * from "./UpdateGlobalResolverCommand";
47
+ export * from "./UpdateHostedZoneAssociationCommand";
@@ -0,0 +1,45 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
+ endpoint?:
10
+ | string
11
+ | Provider<string>
12
+ | Endpoint
13
+ | Provider<Endpoint>
14
+ | EndpointV2
15
+ | Provider<EndpointV2>;
16
+ region?: string | undefined | Provider<string | undefined>;
17
+ }
18
+ export type ClientResolvedEndpointParameters = Pick<
19
+ ClientInputEndpointParameters,
20
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
21
+ > & {
22
+ defaultSigningName: string;
23
+ };
24
+ export declare const resolveClientEndpointParameters: <T>(
25
+ options: T & ClientInputEndpointParameters
26
+ ) => T & ClientResolvedEndpointParameters;
27
+ export declare const commonParams: {
28
+ readonly UseFIPS: {
29
+ readonly type: "builtInParams";
30
+ readonly name: "useFipsEndpoint";
31
+ };
32
+ readonly Endpoint: {
33
+ readonly type: "builtInParams";
34
+ readonly name: "endpoint";
35
+ };
36
+ readonly Region: {
37
+ readonly type: "builtInParams";
38
+ readonly name: "region";
39
+ };
40
+ };
41
+ export interface EndpointParameters extends __EndpointParameters {
42
+ UseFIPS?: boolean | undefined;
43
+ Endpoint?: string | undefined;
44
+ Region?: string | undefined;
45
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface Route53GlobalResolverExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,11 @@
1
+ export * from "./Route53GlobalResolverClient";
2
+ export * from "./Route53GlobalResolver";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { Route53GlobalResolverExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
11
+ export { Route53GlobalResolverServiceException } from "./models/Route53GlobalResolverServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class Route53GlobalResolverServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1,101 @@
1
+ export declare const IpAddressType: {
2
+ readonly IPV4: "IPV4";
3
+ readonly IPV6: "IPV6";
4
+ };
5
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
6
+ export declare const DnsProtocol: {
7
+ readonly DO53: "DO53";
8
+ readonly DOH: "DOH";
9
+ readonly DOT: "DOT";
10
+ };
11
+ export type DnsProtocol = (typeof DnsProtocol)[keyof typeof DnsProtocol];
12
+ export declare const CRResourceStatus: {
13
+ readonly CREATING: "CREATING";
14
+ readonly DELETING: "DELETING";
15
+ readonly OPERATIONAL: "OPERATIONAL";
16
+ readonly UPDATING: "UPDATING";
17
+ };
18
+ export type CRResourceStatus =
19
+ (typeof CRResourceStatus)[keyof typeof CRResourceStatus];
20
+ export declare const ValidationExceptionReason: {
21
+ readonly CANNOT_PARSE: "CANNOT_PARSE";
22
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
23
+ readonly OTHER: "OTHER";
24
+ readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
25
+ };
26
+ export type ValidationExceptionReason =
27
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
28
+ export declare const TokenStatus: {
29
+ readonly CREATING: "CREATING";
30
+ readonly DELETING: "DELETING";
31
+ readonly OPERATIONAL: "OPERATIONAL";
32
+ };
33
+ export type TokenStatus = (typeof TokenStatus)[keyof typeof TokenStatus];
34
+ export declare const HostedZoneAssociationStatus: {
35
+ readonly CREATING: "CREATING";
36
+ readonly DELETING: "DELETING";
37
+ readonly OPERATIONAL: "OPERATIONAL";
38
+ };
39
+ export type HostedZoneAssociationStatus =
40
+ (typeof HostedZoneAssociationStatus)[keyof typeof HostedZoneAssociationStatus];
41
+ export declare const FirewallRuleAction: {
42
+ readonly ALERT: "ALERT";
43
+ readonly ALLOW: "ALLOW";
44
+ readonly BLOCK: "BLOCK";
45
+ };
46
+ export type FirewallRuleAction =
47
+ (typeof FirewallRuleAction)[keyof typeof FirewallRuleAction];
48
+ export declare const BlockOverrideDnsQueryType: {
49
+ readonly CNAME: "CNAME";
50
+ };
51
+ export type BlockOverrideDnsQueryType =
52
+ (typeof BlockOverrideDnsQueryType)[keyof typeof BlockOverrideDnsQueryType];
53
+ export declare const FirewallBlockResponse: {
54
+ readonly NODATA: "NODATA";
55
+ readonly NXDOMAIN: "NXDOMAIN";
56
+ readonly OVERRIDE: "OVERRIDE";
57
+ };
58
+ export type FirewallBlockResponse =
59
+ (typeof FirewallBlockResponse)[keyof typeof FirewallBlockResponse];
60
+ export declare const ConfidenceThreshold: {
61
+ readonly HIGH: "HIGH";
62
+ readonly LOW: "LOW";
63
+ readonly MEDIUM: "MEDIUM";
64
+ };
65
+ export type ConfidenceThreshold =
66
+ (typeof ConfidenceThreshold)[keyof typeof ConfidenceThreshold];
67
+ export declare const DnsAdvancedProtection: {
68
+ readonly DGA: "DGA";
69
+ readonly DNS_TUNNELING: "DNS_TUNNELING";
70
+ };
71
+ export type DnsAdvancedProtection =
72
+ (typeof DnsAdvancedProtection)[keyof typeof DnsAdvancedProtection];
73
+ export declare const DnsSecValidationType: {
74
+ readonly DISABLED: "DISABLED";
75
+ readonly ENABLED: "ENABLED";
76
+ };
77
+ export type DnsSecValidationType =
78
+ (typeof DnsSecValidationType)[keyof typeof DnsSecValidationType];
79
+ export declare const EdnsClientSubnetType: {
80
+ readonly DISABLED: "DISABLED";
81
+ readonly ENABLED: "ENABLED";
82
+ };
83
+ export type EdnsClientSubnetType =
84
+ (typeof EdnsClientSubnetType)[keyof typeof EdnsClientSubnetType];
85
+ export declare const FirewallRulesFailOpenType: {
86
+ readonly DISABLED: "DISABLED";
87
+ readonly ENABLED: "ENABLED";
88
+ };
89
+ export type FirewallRulesFailOpenType =
90
+ (typeof FirewallRulesFailOpenType)[keyof typeof FirewallRulesFailOpenType];
91
+ export declare const ProfileResourceStatus: {
92
+ readonly CREATING: "CREATING";
93
+ readonly DELETING: "DELETING";
94
+ readonly DISABLED: "DISABLED";
95
+ readonly DISABLING: "DISABLING";
96
+ readonly ENABLING: "ENABLING";
97
+ readonly OPERATIONAL: "OPERATIONAL";
98
+ readonly UPDATING: "UPDATING";
99
+ };
100
+ export type ProfileResourceStatus =
101
+ (typeof ProfileResourceStatus)[keyof typeof ProfileResourceStatus];
@@ -0,0 +1,69 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
3
+ import { ValidationExceptionField } from "./models_0";
4
+ import { Route53GlobalResolverServiceException as __BaseException } from "./Route53GlobalResolverServiceException";
5
+ export declare class AccessDeniedException extends __BaseException {
6
+ readonly name: "AccessDeniedException";
7
+ readonly $fault: "client";
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export declare class ConflictException extends __BaseException {
13
+ readonly name: "ConflictException";
14
+ readonly $fault: "client";
15
+ resourceId?: string | undefined;
16
+ resourceType: string | undefined;
17
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
18
+ }
19
+ export declare class InternalServerException extends __BaseException {
20
+ readonly name: "InternalServerException";
21
+ readonly $fault: "server";
22
+ $retryable: {};
23
+ retryAfterSeconds?: number | undefined;
24
+ constructor(
25
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
26
+ );
27
+ }
28
+ export declare class ResourceNotFoundException extends __BaseException {
29
+ readonly name: "ResourceNotFoundException";
30
+ readonly $fault: "client";
31
+ resourceId?: string | undefined;
32
+ resourceType: string | undefined;
33
+ constructor(
34
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
35
+ );
36
+ }
37
+ export declare class ServiceQuotaExceededException extends __BaseException {
38
+ readonly name: "ServiceQuotaExceededException";
39
+ readonly $fault: "client";
40
+ resourceId?: string | undefined;
41
+ resourceType: string | undefined;
42
+ serviceCode?: string | undefined;
43
+ quotaCode?: string | undefined;
44
+ constructor(
45
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
46
+ );
47
+ }
48
+ export declare class ThrottlingException extends __BaseException {
49
+ readonly name: "ThrottlingException";
50
+ readonly $fault: "client";
51
+ $retryable: {
52
+ throttling: boolean;
53
+ };
54
+ serviceCode?: string | undefined;
55
+ quotaCode?: string | undefined;
56
+ retryAfterSeconds?: number | undefined;
57
+ constructor(
58
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
59
+ );
60
+ }
61
+ export declare class ValidationException extends __BaseException {
62
+ readonly name: "ValidationException";
63
+ readonly $fault: "client";
64
+ reason: ValidationExceptionReason | undefined;
65
+ fieldList?: ValidationExceptionField[] | undefined;
66
+ constructor(
67
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
68
+ );
69
+ }