@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,1651 @@
1
+ const _ADE = "AccessDeniedException";
2
+ const _AHZ = "AssociateHostedZone";
3
+ const _AHZI = "AssociateHostedZoneInput";
4
+ const _AHZO = "AssociateHostedZoneOutput";
5
+ const _AS = "AccessSources";
6
+ const _ASI = "AccessSourcesItem";
7
+ const _AT = "AccessTokens";
8
+ const _ATI = "AccessTokenItem";
9
+ const _ATV = "AccessTokenValue";
10
+ const _BCFR = "BatchCreateFirewallRule";
11
+ const _BCFRI = "BatchCreateFirewallRuleInput";
12
+ const _BCFRII = "BatchCreateFirewallRuleInputItem";
13
+ const _BCFRIIa = "BatchCreateFirewallRuleInputItems";
14
+ const _BCFRO = "BatchCreateFirewallRuleOutput";
15
+ const _BCFROI = "BatchCreateFirewallRuleOutputItem";
16
+ const _BCFROIa = "BatchCreateFirewallRuleOutputItems";
17
+ const _BCFRR = "BatchCreateFirewallRuleResult";
18
+ const _BDFR = "BatchDeleteFirewallRule";
19
+ const _BDFRI = "BatchDeleteFirewallRuleInput";
20
+ const _BDFRII = "BatchDeleteFirewallRuleInputItem";
21
+ const _BDFRIIa = "BatchDeleteFirewallRuleInputItems";
22
+ const _BDFRO = "BatchDeleteFirewallRuleOutput";
23
+ const _BDFROI = "BatchDeleteFirewallRuleOutputItem";
24
+ const _BDFROIa = "BatchDeleteFirewallRuleOutputItems";
25
+ const _BDFRR = "BatchDeleteFirewallRuleResult";
26
+ const _BUFR = "BatchUpdateFirewallRule";
27
+ const _BUFRI = "BatchUpdateFirewallRuleInput";
28
+ const _BUFRII = "BatchUpdateFirewallRuleInputItem";
29
+ const _BUFRIIa = "BatchUpdateFirewallRuleInputItems";
30
+ const _BUFRO = "BatchUpdateFirewallRuleOutput";
31
+ const _BUFROI = "BatchUpdateFirewallRuleOutputItem";
32
+ const _BUFROIa = "BatchUpdateFirewallRuleOutputItems";
33
+ const _BUFRR = "BatchUpdateFirewallRuleResult";
34
+ const _CAS = "CreateAccessSource";
35
+ const _CASI = "CreateAccessSourceInput";
36
+ const _CASO = "CreateAccessSourceOutput";
37
+ const _CAT = "CreateAccessToken";
38
+ const _CATI = "CreateAccessTokenInput";
39
+ const _CATO = "CreateAccessTokenOutput";
40
+ const _CDNSV = "CreateDNSView";
41
+ const _CDNSVI = "CreateDNSViewInput";
42
+ const _CDNSVO = "CreateDNSViewOutput";
43
+ const _CE = "ConflictException";
44
+ const _CFDL = "CreateFirewallDomainList";
45
+ const _CFDLI = "CreateFirewallDomainListInput";
46
+ const _CFDLO = "CreateFirewallDomainListOutput";
47
+ const _CFR = "CreateFirewallRule";
48
+ const _CFRI = "CreateFirewallRuleInput";
49
+ const _CFRO = "CreateFirewallRuleOutput";
50
+ const _CGR = "CreateGlobalResolver";
51
+ const _CGRI = "CreateGlobalResolverInput";
52
+ const _CGRO = "CreateGlobalResolverOutput";
53
+ const _DAS = "DeleteAccessSource";
54
+ const _DASI = "DeleteAccessSourceInput";
55
+ const _DASO = "DeleteAccessSourceOutput";
56
+ const _DAT = "DeleteAccessToken";
57
+ const _DATI = "DeleteAccessTokenInput";
58
+ const _DATO = "DeleteAccessTokenOutput";
59
+ const _DDNSV = "DeleteDNSView";
60
+ const _DDNSVI = "DeleteDNSViewInput";
61
+ const _DDNSVIi = "DisableDNSViewInput";
62
+ const _DDNSVO = "DeleteDNSViewOutput";
63
+ const _DDNSVOi = "DisableDNSViewOutput";
64
+ const _DDNSVi = "DisableDNSView";
65
+ const _DFDL = "DeleteFirewallDomainList";
66
+ const _DFDLI = "DeleteFirewallDomainListInput";
67
+ const _DFDLO = "DeleteFirewallDomainListOutput";
68
+ const _DFR = "DeleteFirewallRule";
69
+ const _DFRI = "DeleteFirewallRuleInput";
70
+ const _DFRO = "DeleteFirewallRuleOutput";
71
+ const _DGR = "DeleteGlobalResolver";
72
+ const _DGRI = "DeleteGlobalResolverInput";
73
+ const _DGRO = "DeleteGlobalResolverOutput";
74
+ const _DHZ = "DisassociateHostedZone";
75
+ const _DHZI = "DisassociateHostedZoneInput";
76
+ const _DHZO = "DisassociateHostedZoneOutput";
77
+ const _DNSV = "DNSViews";
78
+ const _DNSVS = "DNSViewSummary";
79
+ const _EDNSV = "EnableDNSView";
80
+ const _EDNSVI = "EnableDNSViewInput";
81
+ const _EDNSVO = "EnableDNSViewOutput";
82
+ const _F = "Filters";
83
+ const _FDL = "FirewallDomainLists";
84
+ const _FDLI = "FirewallDomainListsItem";
85
+ const _FR = "FirewallRules";
86
+ const _FRI = "FirewallRulesItem";
87
+ const _GAS = "GetAccessSource";
88
+ const _GASI = "GetAccessSourceInput";
89
+ const _GASO = "GetAccessSourceOutput";
90
+ const _GAT = "GetAccessToken";
91
+ const _GATI = "GetAccessTokenInput";
92
+ const _GATO = "GetAccessTokenOutput";
93
+ const _GDNSV = "GetDNSView";
94
+ const _GDNSVI = "GetDNSViewInput";
95
+ const _GDNSVO = "GetDNSViewOutput";
96
+ const _GFDL = "GetFirewallDomainList";
97
+ const _GFDLI = "GetFirewallDomainListInput";
98
+ const _GFDLO = "GetFirewallDomainListOutput";
99
+ const _GFR = "GetFirewallRule";
100
+ const _GFRI = "GetFirewallRuleInput";
101
+ const _GFRO = "GetFirewallRuleOutput";
102
+ const _GGR = "GetGlobalResolver";
103
+ const _GGRI = "GetGlobalResolverInput";
104
+ const _GGRO = "GetGlobalResolverOutput";
105
+ const _GHZA = "GetHostedZoneAssociation";
106
+ const _GHZAI = "GetHostedZoneAssociationInput";
107
+ const _GHZAO = "GetHostedZoneAssociationOutput";
108
+ const _GMFDL = "GetManagedFirewallDomainList";
109
+ const _GMFDLI = "GetManagedFirewallDomainListInput";
110
+ const _GMFDLO = "GetManagedFirewallDomainListOutput";
111
+ const _GR = "GlobalResolvers";
112
+ const _GRI = "GlobalResolversItem";
113
+ const _HZA = "HostedZoneAssociations";
114
+ const _HZAS = "HostedZoneAssociationSummary";
115
+ const _IFD = "ImportFirewallDomains";
116
+ const _IFDI = "ImportFirewallDomainsInput";
117
+ const _IFDO = "ImportFirewallDomainsOutput";
118
+ const _ISE = "InternalServerException";
119
+ const _LAS = "ListAccessSources";
120
+ const _LASI = "ListAccessSourcesInput";
121
+ const _LASO = "ListAccessSourcesOutput";
122
+ const _LAT = "ListAccessTokens";
123
+ const _LATI = "ListAccessTokensInput";
124
+ const _LATO = "ListAccessTokensOutput";
125
+ const _LDNSV = "ListDNSViews";
126
+ const _LDNSVI = "ListDNSViewsInput";
127
+ const _LDNSVO = "ListDNSViewsOutput";
128
+ const _LFD = "ListFirewallDomains";
129
+ const _LFDI = "ListFirewallDomainsInput";
130
+ const _LFDL = "ListFirewallDomainLists";
131
+ const _LFDLI = "ListFirewallDomainListsInput";
132
+ const _LFDLO = "ListFirewallDomainListsOutput";
133
+ const _LFDO = "ListFirewallDomainsOutput";
134
+ const _LFR = "ListFirewallRules";
135
+ const _LFRI = "ListFirewallRulesInput";
136
+ const _LFRO = "ListFirewallRulesOutput";
137
+ const _LGR = "ListGlobalResolvers";
138
+ const _LGRI = "ListGlobalResolversInput";
139
+ const _LGRO = "ListGlobalResolversOutput";
140
+ const _LHZA = "ListHostedZoneAssociations";
141
+ const _LHZAI = "ListHostedZoneAssociationsInput";
142
+ const _LHZAO = "ListHostedZoneAssociationsOutput";
143
+ const _LMFDL = "ListManagedFirewallDomainLists";
144
+ const _LMFDLI = "ListManagedFirewallDomainListsInput";
145
+ const _LMFDLO = "ListManagedFirewallDomainListsOutput";
146
+ const _LTFR = "ListTagsForResource";
147
+ const _LTFRR = "ListTagsForResourceRequest";
148
+ const _LTFRRi = "ListTagsForResourceResponse";
149
+ const _MFDL = "ManagedFirewallDomainLists";
150
+ const _MFDLI = "ManagedFirewallDomainListsItem";
151
+ const _RA = "Retry-After";
152
+ const _RNFE = "ResourceNotFoundException";
153
+ const _SQEE = "ServiceQuotaExceededException";
154
+ const _TE = "ThrottlingException";
155
+ const _TR = "TagResource";
156
+ const _TRR = "TagResourceRequest";
157
+ const _TRRa = "TagResourceResponse";
158
+ const _UAS = "UpdateAccessSource";
159
+ const _UASI = "UpdateAccessSourceInput";
160
+ const _UASO = "UpdateAccessSourceOutput";
161
+ const _UAT = "UpdateAccessToken";
162
+ const _UATI = "UpdateAccessTokenInput";
163
+ const _UATO = "UpdateAccessTokenOutput";
164
+ const _UDNSV = "UpdateDNSView";
165
+ const _UDNSVI = "UpdateDNSViewInput";
166
+ const _UDNSVO = "UpdateDNSViewOutput";
167
+ const _UFD = "UpdateFirewallDomains";
168
+ const _UFDI = "UpdateFirewallDomainsInput";
169
+ const _UFDO = "UpdateFirewallDomainsOutput";
170
+ const _UFR = "UpdateFirewallRule";
171
+ const _UFRI = "UpdateFirewallRuleInput";
172
+ const _UFRO = "UpdateFirewallRuleOutput";
173
+ const _UGR = "UpdateGlobalResolver";
174
+ const _UGRI = "UpdateGlobalResolverInput";
175
+ const _UGRO = "UpdateGlobalResolverOutput";
176
+ const _UHZA = "UpdateHostedZoneAssociation";
177
+ const _UHZAI = "UpdateHostedZoneAssociationInput";
178
+ const _UHZAO = "UpdateHostedZoneAssociationOutput";
179
+ const _UR = "UntagResource";
180
+ const _URR = "UntagResourceRequest";
181
+ const _URRn = "UntagResourceResponse";
182
+ const _VE = "ValidationException";
183
+ const _VEF = "ValidationExceptionField";
184
+ const _VEFL = "ValidationExceptionFieldList";
185
+ const _a = "arn";
186
+ const _aS = "accessSources";
187
+ const _aSI = "accessSourceId";
188
+ const _aT = "accessTokens";
189
+ const _aTI = "accessTokenId";
190
+ const _ac = "action";
191
+ const _bOD = "blockOverrideDomain";
192
+ const _bODT = "blockOverrideDnsType";
193
+ const _bOT = "blockOverrideTtl";
194
+ const _bR = "blockResponse";
195
+ const _c = "client";
196
+ const _cA = "createdAt";
197
+ const _cT = "clientToken";
198
+ const _cTo = "confidenceThreshold";
199
+ const _ci = "cidr";
200
+ const _co = "code";
201
+ const _d = "description";
202
+ const _dA = "deletedAt";
203
+ const _dAP = "dnsAdvancedProtection";
204
+ const _dC = "domainCount";
205
+ const _dFU = "domainFileUrl";
206
+ const _dN = "dnsName";
207
+ const _dV = "dnssecValidation";
208
+ const _dVI = "dnsViewId";
209
+ const _dVn = "dnsViews";
210
+ const _di = "dnsview_id";
211
+ const _do = "domains";
212
+ const _e = "error";
213
+ const _eA = "expiresAt";
214
+ const _eCS = "ednsClientSubnet";
215
+ const _f = "failures";
216
+ const _fDL = "firewallDomainLists";
217
+ const _fDLI = "firewallDomainListId";
218
+ const _fL = "fieldList";
219
+ const _fR = "firewallRules";
220
+ const _fRFO = "firewallRulesFailOpen";
221
+ const _fRI = "firewallRuleId";
222
+ const _fRi = "firewallRule";
223
+ const _fi = "filters";
224
+ const _gR = "globalResolvers";
225
+ const _gRI = "globalResolverId";
226
+ const _gri = "global_resolver_id";
227
+ const _h = "http";
228
+ const _hE = "httpError";
229
+ const _hH = "httpHeader";
230
+ const _hQ = "httpQuery";
231
+ const _hZA = "hostedZoneAssociations";
232
+ const _hZAI = "hostedZoneAssociationId";
233
+ const _hZI = "hostedZoneId";
234
+ const _hZN = "hostedZoneName";
235
+ const _i = "id";
236
+ const _iA = "ipv4Addresses";
237
+ const _iAT = "ipAddressType";
238
+ const _m = "message";
239
+ const _mDLN = "managedDomainListName";
240
+ const _mFDL = "managedFirewallDomainLists";
241
+ const _mFDLI = "managedFirewallDomainListId";
242
+ const _mFDLT = "managedFirewallDomainListType";
243
+ const _mLT = "managedListType";
244
+ const _mR = "maxResults";
245
+ const _mr = "max_results";
246
+ const _n = "name";
247
+ const _nT = "nextToken";
248
+ const _nt = "next_token";
249
+ const _o = "operation";
250
+ const _oR = "observabilityRegion";
251
+ const _p = "protocol";
252
+ const _pr = "priority";
253
+ const _qC = "quotaCode";
254
+ const _qT = "qType";
255
+ const _qTu = "queryType";
256
+ const _r = "regions";
257
+ const _rA = "resourceArn";
258
+ const _rAS = "retryAfterSeconds";
259
+ const _rI = "resourceId";
260
+ const _rT = "resourceType";
261
+ const _re = "reason";
262
+ const _s = "status";
263
+ const _sC = "serviceCode";
264
+ const _sM = "statusMessage";
265
+ const _se = "server";
266
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.route53globalresolver";
267
+ const _su = "successes";
268
+ const _t = "tags";
269
+ const _tK = "tagKeys";
270
+ const _uA = "updatedAt";
271
+ const _v = "value";
272
+ const n0 = "com.amazonaws.route53globalresolver";
273
+ import { TypeRegistry } from "@smithy/core/schema";
274
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
275
+ import { Route53GlobalResolverServiceException as __Route53GlobalResolverServiceException } from "../models/Route53GlobalResolverServiceException";
276
+ export var AccessTokenValue = [0, n0, _ATV, 8, 0];
277
+ export var AccessDeniedException = [
278
+ -3,
279
+ n0,
280
+ _ADE,
281
+ {
282
+ [_e]: _c,
283
+ [_hE]: 403,
284
+ },
285
+ [_m],
286
+ [0],
287
+ ];
288
+ TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
289
+ export var AccessSourcesItem = [
290
+ 3,
291
+ n0,
292
+ _ASI,
293
+ 0,
294
+ [_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
295
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
296
+ ];
297
+ export var AccessTokenItem = [
298
+ 3,
299
+ n0,
300
+ _ATI,
301
+ 0,
302
+ [_i, _a, _cA, _dVI, _eA, _gRI, _n, _s, _uA],
303
+ [0, 0, 5, 0, 5, 0, 0, 0, 5],
304
+ ];
305
+ export var AssociateHostedZoneInput = [3, n0, _AHZI, 0, [_hZI, _rA, _n], [[0, 1], 0, 0]];
306
+ export var AssociateHostedZoneOutput = [
307
+ 3,
308
+ n0,
309
+ _AHZO,
310
+ 0,
311
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
312
+ [0, 0, 0, 0, 0, 5, 5, 0],
313
+ ];
314
+ export var BatchCreateFirewallRuleInput = [
315
+ 3,
316
+ n0,
317
+ _BCFRI,
318
+ 0,
319
+ [_fR],
320
+ [() => BatchCreateFirewallRuleInputItems],
321
+ ];
322
+ export var BatchCreateFirewallRuleInputItem = [
323
+ 3,
324
+ n0,
325
+ _BCFRII,
326
+ 0,
327
+ [_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fDLI, _n, _pr, _dVI, _qT],
328
+ [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0],
329
+ ];
330
+ export var BatchCreateFirewallRuleOutput = [
331
+ 3,
332
+ n0,
333
+ _BCFRO,
334
+ 0,
335
+ [_f, _su],
336
+ [() => BatchCreateFirewallRuleOutputItems, () => BatchCreateFirewallRuleOutputItems],
337
+ ];
338
+ export var BatchCreateFirewallRuleOutputItem = [
339
+ 3,
340
+ n0,
341
+ _BCFROI,
342
+ 0,
343
+ [_fRi, _co, _m],
344
+ [() => BatchCreateFirewallRuleResult, 1, 0],
345
+ ];
346
+ export var BatchCreateFirewallRuleResult = [
347
+ 3,
348
+ n0,
349
+ _BCFRR,
350
+ 0,
351
+ [_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _cA, _d, _dAP, _fDLI, _i, _mDLN, _n, _pr, _dVI, _qTu, _s, _uA],
352
+ [0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
353
+ ];
354
+ export var BatchDeleteFirewallRuleInput = [
355
+ 3,
356
+ n0,
357
+ _BDFRI,
358
+ 0,
359
+ [_fR],
360
+ [() => BatchDeleteFirewallRuleInputItems],
361
+ ];
362
+ export var BatchDeleteFirewallRuleInputItem = [3, n0, _BDFRII, 0, [_fRI], [0]];
363
+ export var BatchDeleteFirewallRuleOutput = [
364
+ 3,
365
+ n0,
366
+ _BDFRO,
367
+ 0,
368
+ [_f, _su],
369
+ [() => BatchDeleteFirewallRuleOutputItems, () => BatchDeleteFirewallRuleOutputItems],
370
+ ];
371
+ export var BatchDeleteFirewallRuleOutputItem = [
372
+ 3,
373
+ n0,
374
+ _BDFROI,
375
+ 0,
376
+ [_fRi, _co, _m],
377
+ [() => BatchDeleteFirewallRuleResult, 1, 0],
378
+ ];
379
+ export var BatchDeleteFirewallRuleResult = [3, n0, _BDFRR, 0, [_cT, _i, _n, _s], [0, 0, 0, 0]];
380
+ export var BatchUpdateFirewallRuleInput = [
381
+ 3,
382
+ n0,
383
+ _BUFRI,
384
+ 0,
385
+ [_fR],
386
+ [() => BatchUpdateFirewallRuleInputItems],
387
+ ];
388
+ export var BatchUpdateFirewallRuleInputItem = [
389
+ 3,
390
+ n0,
391
+ _BUFRII,
392
+ 0,
393
+ [_ac, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fRI, _n, _pr],
394
+ [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1],
395
+ ];
396
+ export var BatchUpdateFirewallRuleOutput = [
397
+ 3,
398
+ n0,
399
+ _BUFRO,
400
+ 0,
401
+ [_f, _su],
402
+ [() => BatchUpdateFirewallRuleOutputItems, () => BatchUpdateFirewallRuleOutputItems],
403
+ ];
404
+ export var BatchUpdateFirewallRuleOutputItem = [
405
+ 3,
406
+ n0,
407
+ _BUFROI,
408
+ 0,
409
+ [_fRi, _co, _m],
410
+ [() => BatchUpdateFirewallRuleResult, 1, 0],
411
+ ];
412
+ export var BatchUpdateFirewallRuleResult = [
413
+ 3,
414
+ n0,
415
+ _BUFRR,
416
+ 0,
417
+ [_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
418
+ [0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
419
+ ];
420
+ export var ConflictException = [
421
+ -3,
422
+ n0,
423
+ _CE,
424
+ {
425
+ [_e]: _c,
426
+ [_hE]: 409,
427
+ },
428
+ [_m, _rI, _rT],
429
+ [0, 0, 0],
430
+ ];
431
+ TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
432
+ export var CreateAccessSourceInput = [
433
+ 3,
434
+ n0,
435
+ _CASI,
436
+ 0,
437
+ [_ci, _cT, _iAT, _n, _dVI, _p, _t],
438
+ [0, [0, 4], 0, 0, 0, 0, 128 | 0],
439
+ ];
440
+ export var CreateAccessSourceOutput = [
441
+ 3,
442
+ n0,
443
+ _CASO,
444
+ 0,
445
+ [_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
446
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
447
+ ];
448
+ export var CreateAccessTokenInput = [
449
+ 3,
450
+ n0,
451
+ _CATI,
452
+ 0,
453
+ [_cT, _dVI, _eA, _n, _t],
454
+ [[0, 4], [0, 1], 5, 0, 128 | 0],
455
+ ];
456
+ export var CreateAccessTokenOutput = [
457
+ 3,
458
+ n0,
459
+ _CATO,
460
+ 0,
461
+ [_i, _a, _cT, _cA, _dVI, _eA, _n, _s, _v],
462
+ [0, 0, 0, 5, 0, 5, 0, 0, [() => AccessTokenValue, 0]],
463
+ ];
464
+ export var CreateDNSViewInput = [
465
+ 3,
466
+ n0,
467
+ _CDNSVI,
468
+ 0,
469
+ [_gRI, _cT, _n, _dV, _eCS, _fRFO, _d, _t],
470
+ [[0, 1], [0, 4], 0, 0, 0, 0, 0, 128 | 0],
471
+ ];
472
+ export var CreateDNSViewOutput = [
473
+ 3,
474
+ n0,
475
+ _CDNSVO,
476
+ 0,
477
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
478
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
479
+ ];
480
+ export var CreateFirewallDomainListInput = [
481
+ 3,
482
+ n0,
483
+ _CFDLI,
484
+ 0,
485
+ [_cT, _gRI, _d, _n, _t],
486
+ [[0, 4], [0, 1], 0, 0, 128 | 0],
487
+ ];
488
+ export var CreateFirewallDomainListOutput = [
489
+ 3,
490
+ n0,
491
+ _CFDLO,
492
+ 0,
493
+ [_a, _gRI, _cA, _d, _dC, _i, _n, _s, _uA],
494
+ [0, 0, 5, 0, 1, 0, 0, 0, 5],
495
+ ];
496
+ export var CreateFirewallRuleInput = [
497
+ 3,
498
+ n0,
499
+ _CFRI,
500
+ 0,
501
+ [_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fDLI, _n, _pr, _dVI, _qT],
502
+ [0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 0, 1, 0, 0],
503
+ ];
504
+ export var CreateFirewallRuleOutput = [
505
+ 3,
506
+ n0,
507
+ _CFRO,
508
+ 0,
509
+ [_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
510
+ [0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
511
+ ];
512
+ export var CreateGlobalResolverInput = [
513
+ 3,
514
+ n0,
515
+ _CGRI,
516
+ 0,
517
+ [_cT, _d, _n, _oR, _r, _t],
518
+ [[0, 4], 0, 0, 0, 64 | 0, 128 | 0],
519
+ ];
520
+ export var CreateGlobalResolverOutput = [
521
+ 3,
522
+ n0,
523
+ _CGRO,
524
+ 0,
525
+ [_i, _a, _cT, _cA, _d, _dN, _iA, _n, _oR, _r, _s, _uA],
526
+ [0, 0, 0, 5, 0, 0, 64 | 0, 0, 0, 64 | 0, 0, 5],
527
+ ];
528
+ export var DeleteAccessSourceInput = [3, n0, _DASI, 0, [_aSI], [[0, 1]]];
529
+ export var DeleteAccessSourceOutput = [
530
+ 3,
531
+ n0,
532
+ _DASO,
533
+ 0,
534
+ [_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
535
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
536
+ ];
537
+ export var DeleteAccessTokenInput = [3, n0, _DATI, 0, [_aTI], [[0, 1]]];
538
+ export var DeleteAccessTokenOutput = [3, n0, _DATO, 0, [_i, _s, _dA], [0, 0, 5]];
539
+ export var DeleteDNSViewInput = [3, n0, _DDNSVI, 0, [_dVI], [[0, 1]]];
540
+ export var DeleteDNSViewOutput = [
541
+ 3,
542
+ n0,
543
+ _DDNSVO,
544
+ 0,
545
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
546
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
547
+ ];
548
+ export var DeleteFirewallDomainListInput = [3, n0, _DFDLI, 0, [_fDLI], [[0, 1]]];
549
+ export var DeleteFirewallDomainListOutput = [3, n0, _DFDLO, 0, [_a, _i, _n, _s], [0, 0, 0, 0]];
550
+ export var DeleteFirewallRuleInput = [3, n0, _DFRI, 0, [_fRI], [[0, 1]]];
551
+ export var DeleteFirewallRuleOutput = [
552
+ 3,
553
+ n0,
554
+ _DFRO,
555
+ 0,
556
+ [_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
557
+ [0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
558
+ ];
559
+ export var DeleteGlobalResolverInput = [3, n0, _DGRI, 0, [_gRI], [[0, 1]]];
560
+ export var DeleteGlobalResolverOutput = [
561
+ 3,
562
+ n0,
563
+ _DGRO,
564
+ 0,
565
+ [_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
566
+ [0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
567
+ ];
568
+ export var DisableDNSViewInput = [3, n0, _DDNSVIi, 0, [_dVI], [[0, 1]]];
569
+ export var DisableDNSViewOutput = [
570
+ 3,
571
+ n0,
572
+ _DDNSVOi,
573
+ 0,
574
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
575
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
576
+ ];
577
+ export var DisassociateHostedZoneInput = [
578
+ 3,
579
+ n0,
580
+ _DHZI,
581
+ 0,
582
+ [_hZI, _rA],
583
+ [
584
+ [0, 1],
585
+ [0, 1],
586
+ ],
587
+ ];
588
+ export var DisassociateHostedZoneOutput = [
589
+ 3,
590
+ n0,
591
+ _DHZO,
592
+ 0,
593
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
594
+ [0, 0, 0, 0, 0, 5, 5, 0],
595
+ ];
596
+ export var DNSViewSummary = [
597
+ 3,
598
+ n0,
599
+ _DNSVS,
600
+ 0,
601
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
602
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
603
+ ];
604
+ export var EnableDNSViewInput = [3, n0, _EDNSVI, 0, [_dVI], [[0, 1]]];
605
+ export var EnableDNSViewOutput = [
606
+ 3,
607
+ n0,
608
+ _EDNSVO,
609
+ 0,
610
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
611
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
612
+ ];
613
+ export var FirewallDomainListsItem = [
614
+ 3,
615
+ n0,
616
+ _FDLI,
617
+ 0,
618
+ [_a, _gRI, _cA, _d, _i, _n, _s, _uA],
619
+ [0, 0, 5, 0, 0, 0, 0, 5],
620
+ ];
621
+ export var FirewallRulesItem = [
622
+ 3,
623
+ n0,
624
+ _FRI,
625
+ 0,
626
+ [_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
627
+ [0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
628
+ ];
629
+ export var GetAccessSourceInput = [3, n0, _GASI, 0, [_aSI], [[0, 1]]];
630
+ export var GetAccessSourceOutput = [
631
+ 3,
632
+ n0,
633
+ _GASO,
634
+ 0,
635
+ [_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
636
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
637
+ ];
638
+ export var GetAccessTokenInput = [3, n0, _GATI, 0, [_aTI], [[0, 1]]];
639
+ export var GetAccessTokenOutput = [
640
+ 3,
641
+ n0,
642
+ _GATO,
643
+ 0,
644
+ [_i, _a, _cT, _cA, _dVI, _eA, _gRI, _n, _s, _uA, _v],
645
+ [0, 0, 0, 5, 0, 5, 0, 0, 0, 5, [() => AccessTokenValue, 0]],
646
+ ];
647
+ export var GetDNSViewInput = [3, n0, _GDNSVI, 0, [_dVI], [[0, 1]]];
648
+ export var GetDNSViewOutput = [
649
+ 3,
650
+ n0,
651
+ _GDNSVO,
652
+ 0,
653
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
654
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
655
+ ];
656
+ export var GetFirewallDomainListInput = [3, n0, _GFDLI, 0, [_fDLI], [[0, 1]]];
657
+ export var GetFirewallDomainListOutput = [
658
+ 3,
659
+ n0,
660
+ _GFDLO,
661
+ 0,
662
+ [_a, _gRI, _cT, _cA, _d, _dC, _i, _n, _s, _sM, _uA],
663
+ [0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 5],
664
+ ];
665
+ export var GetFirewallRuleInput = [3, n0, _GFRI, 0, [_fRI], [[0, 1]]];
666
+ export var GetFirewallRuleOutput = [
667
+ 3,
668
+ n0,
669
+ _GFRO,
670
+ 0,
671
+ [_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
672
+ [0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
673
+ ];
674
+ export var GetGlobalResolverInput = [3, n0, _GGRI, 0, [_gRI], [[0, 1]]];
675
+ export var GetGlobalResolverOutput = [
676
+ 3,
677
+ n0,
678
+ _GGRO,
679
+ 0,
680
+ [_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
681
+ [0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
682
+ ];
683
+ export var GetHostedZoneAssociationInput = [3, n0, _GHZAI, 0, [_hZAI], [[0, 1]]];
684
+ export var GetHostedZoneAssociationOutput = [
685
+ 3,
686
+ n0,
687
+ _GHZAO,
688
+ 0,
689
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
690
+ [0, 0, 0, 0, 0, 5, 5, 0],
691
+ ];
692
+ export var GetManagedFirewallDomainListInput = [3, n0, _GMFDLI, 0, [_mFDLI], [[0, 1]]];
693
+ export var GetManagedFirewallDomainListOutput = [
694
+ 3,
695
+ n0,
696
+ _GMFDLO,
697
+ 0,
698
+ [_d, _i, _n, _mLT],
699
+ [0, 0, 0, 0],
700
+ ];
701
+ export var GlobalResolversItem = [
702
+ 3,
703
+ n0,
704
+ _GRI,
705
+ 0,
706
+ [_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
707
+ [0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
708
+ ];
709
+ export var HostedZoneAssociationSummary = [
710
+ 3,
711
+ n0,
712
+ _HZAS,
713
+ 0,
714
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
715
+ [0, 0, 0, 0, 0, 5, 5, 0],
716
+ ];
717
+ export var ImportFirewallDomainsInput = [3, n0, _IFDI, 0, [_dFU, _fDLI, _o], [0, [0, 1], 0]];
718
+ export var ImportFirewallDomainsOutput = [3, n0, _IFDO, 0, [_i, _n, _s], [0, 0, 0]];
719
+ export var InternalServerException = [
720
+ -3,
721
+ n0,
722
+ _ISE,
723
+ {
724
+ [_e]: _se,
725
+ [_hE]: 500,
726
+ },
727
+ [_m, _rAS],
728
+ [
729
+ 0,
730
+ [
731
+ 1,
732
+ {
733
+ [_hH]: _RA,
734
+ },
735
+ ],
736
+ ],
737
+ ];
738
+ TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
739
+ export var ListAccessSourcesInput = [
740
+ 3,
741
+ n0,
742
+ _LASI,
743
+ 0,
744
+ [_mR, _nT, _fi],
745
+ [
746
+ [
747
+ 1,
748
+ {
749
+ [_hQ]: _mr,
750
+ },
751
+ ],
752
+ [
753
+ 0,
754
+ {
755
+ [_hQ]: _nt,
756
+ },
757
+ ],
758
+ [[2, n0, _F, 0, 0, 64 | 0], 64],
759
+ ],
760
+ ];
761
+ export var ListAccessSourcesOutput = [3, n0, _LASO, 0, [_nT, _aS], [0, () => AccessSources]];
762
+ export var ListAccessTokensInput = [
763
+ 3,
764
+ n0,
765
+ _LATI,
766
+ 0,
767
+ [_mR, _nT, _dVI, _fi],
768
+ [
769
+ [
770
+ 1,
771
+ {
772
+ [_hQ]: _mr,
773
+ },
774
+ ],
775
+ [
776
+ 0,
777
+ {
778
+ [_hQ]: _nt,
779
+ },
780
+ ],
781
+ [0, 1],
782
+ [[2, n0, _F, 0, 0, 64 | 0], 64],
783
+ ],
784
+ ];
785
+ export var ListAccessTokensOutput = [3, n0, _LATO, 0, [_nT, _aT], [0, () => AccessTokens]];
786
+ export var ListDNSViewsInput = [
787
+ 3,
788
+ n0,
789
+ _LDNSVI,
790
+ 0,
791
+ [_mR, _nT, _gRI],
792
+ [
793
+ [
794
+ 1,
795
+ {
796
+ [_hQ]: _mr,
797
+ },
798
+ ],
799
+ [
800
+ 0,
801
+ {
802
+ [_hQ]: _nt,
803
+ },
804
+ ],
805
+ [0, 1],
806
+ ],
807
+ ];
808
+ export var ListDNSViewsOutput = [3, n0, _LDNSVO, 0, [_nT, _dVn], [0, () => DNSViews]];
809
+ export var ListFirewallDomainListsInput = [
810
+ 3,
811
+ n0,
812
+ _LFDLI,
813
+ 0,
814
+ [_mR, _nT, _gRI],
815
+ [
816
+ [
817
+ 1,
818
+ {
819
+ [_hQ]: _mr,
820
+ },
821
+ ],
822
+ [
823
+ 0,
824
+ {
825
+ [_hQ]: _nt,
826
+ },
827
+ ],
828
+ [
829
+ 0,
830
+ {
831
+ [_hQ]: _gri,
832
+ },
833
+ ],
834
+ ],
835
+ ];
836
+ export var ListFirewallDomainListsOutput = [
837
+ 3,
838
+ n0,
839
+ _LFDLO,
840
+ 0,
841
+ [_nT, _fDL],
842
+ [0, () => FirewallDomainLists],
843
+ ];
844
+ export var ListFirewallDomainsInput = [
845
+ 3,
846
+ n0,
847
+ _LFDI,
848
+ 0,
849
+ [_mR, _nT, _fDLI],
850
+ [
851
+ [
852
+ 1,
853
+ {
854
+ [_hQ]: _mr,
855
+ },
856
+ ],
857
+ [
858
+ 0,
859
+ {
860
+ [_hQ]: _nt,
861
+ },
862
+ ],
863
+ [0, 1],
864
+ ],
865
+ ];
866
+ export var ListFirewallDomainsOutput = [3, n0, _LFDO, 0, [_nT, _do], [0, 64 | 0]];
867
+ export var ListFirewallRulesInput = [
868
+ 3,
869
+ n0,
870
+ _LFRI,
871
+ 0,
872
+ [_mR, _nT, _dVI, _fi],
873
+ [
874
+ [
875
+ 1,
876
+ {
877
+ [_hQ]: _mr,
878
+ },
879
+ ],
880
+ [
881
+ 0,
882
+ {
883
+ [_hQ]: _nt,
884
+ },
885
+ ],
886
+ [
887
+ 0,
888
+ {
889
+ [_hQ]: _di,
890
+ },
891
+ ],
892
+ [[2, n0, _F, 0, 0, 64 | 0], 64],
893
+ ],
894
+ ];
895
+ export var ListFirewallRulesOutput = [3, n0, _LFRO, 0, [_nT, _fR], [0, () => FirewallRules]];
896
+ export var ListGlobalResolversInput = [
897
+ 3,
898
+ n0,
899
+ _LGRI,
900
+ 0,
901
+ [_mR, _nT],
902
+ [
903
+ [
904
+ 1,
905
+ {
906
+ [_hQ]: _mr,
907
+ },
908
+ ],
909
+ [
910
+ 0,
911
+ {
912
+ [_hQ]: _nt,
913
+ },
914
+ ],
915
+ ],
916
+ ];
917
+ export var ListGlobalResolversOutput = [3, n0, _LGRO, 0, [_nT, _gR], [0, () => GlobalResolvers]];
918
+ export var ListHostedZoneAssociationsInput = [
919
+ 3,
920
+ n0,
921
+ _LHZAI,
922
+ 0,
923
+ [_mR, _nT, _rA],
924
+ [
925
+ [
926
+ 1,
927
+ {
928
+ [_hQ]: _mr,
929
+ },
930
+ ],
931
+ [
932
+ 0,
933
+ {
934
+ [_hQ]: _nt,
935
+ },
936
+ ],
937
+ [0, 1],
938
+ ],
939
+ ];
940
+ export var ListHostedZoneAssociationsOutput = [
941
+ 3,
942
+ n0,
943
+ _LHZAO,
944
+ 0,
945
+ [_nT, _hZA],
946
+ [0, () => HostedZoneAssociations],
947
+ ];
948
+ export var ListManagedFirewallDomainListsInput = [
949
+ 3,
950
+ n0,
951
+ _LMFDLI,
952
+ 0,
953
+ [_mR, _nT, _mFDLT],
954
+ [
955
+ [
956
+ 1,
957
+ {
958
+ [_hQ]: _mr,
959
+ },
960
+ ],
961
+ [
962
+ 0,
963
+ {
964
+ [_hQ]: _nt,
965
+ },
966
+ ],
967
+ [0, 1],
968
+ ],
969
+ ];
970
+ export var ListManagedFirewallDomainListsOutput = [
971
+ 3,
972
+ n0,
973
+ _LMFDLO,
974
+ 0,
975
+ [_nT, _mFDL],
976
+ [0, () => ManagedFirewallDomainLists],
977
+ ];
978
+ export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
979
+ export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
980
+ export var ManagedFirewallDomainListsItem = [3, n0, _MFDLI, 0, [_d, _i, _n, _mLT], [0, 0, 0, 0]];
981
+ export var ResourceNotFoundException = [
982
+ -3,
983
+ n0,
984
+ _RNFE,
985
+ {
986
+ [_e]: _c,
987
+ [_hE]: 404,
988
+ },
989
+ [_m, _rI, _rT],
990
+ [0, 0, 0],
991
+ ];
992
+ TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
993
+ export var ServiceQuotaExceededException = [
994
+ -3,
995
+ n0,
996
+ _SQEE,
997
+ {
998
+ [_e]: _c,
999
+ [_hE]: 402,
1000
+ },
1001
+ [_m, _rI, _rT, _sC, _qC],
1002
+ [0, 0, 0, 0, 0],
1003
+ ];
1004
+ TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
1005
+ export var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
1006
+ export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1007
+ export var ThrottlingException = [
1008
+ -3,
1009
+ n0,
1010
+ _TE,
1011
+ {
1012
+ [_e]: _c,
1013
+ [_hE]: 429,
1014
+ },
1015
+ [_m, _sC, _qC, _rAS],
1016
+ [
1017
+ 0,
1018
+ 0,
1019
+ 0,
1020
+ [
1021
+ 1,
1022
+ {
1023
+ [_hH]: _RA,
1024
+ },
1025
+ ],
1026
+ ],
1027
+ ];
1028
+ TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
1029
+ export var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
1030
+ export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1031
+ export var UpdateAccessSourceInput = [
1032
+ 3,
1033
+ n0,
1034
+ _UASI,
1035
+ 0,
1036
+ [_aSI, _ci, _iAT, _n, _p],
1037
+ [[0, 1], 0, 0, 0, 0],
1038
+ ];
1039
+ export var UpdateAccessSourceOutput = [
1040
+ 3,
1041
+ n0,
1042
+ _UASO,
1043
+ 0,
1044
+ [_a, _ci, _cA, _i, _iAT, _n, _dVI, _p, _s, _uA],
1045
+ [0, 0, 5, 0, 0, 0, 0, 0, 0, 5],
1046
+ ];
1047
+ export var UpdateAccessTokenInput = [3, n0, _UATI, 0, [_aTI, _n], [[0, 1], 0]];
1048
+ export var UpdateAccessTokenOutput = [3, n0, _UATO, 0, [_i, _n], [0, 0]];
1049
+ export var UpdateDNSViewInput = [
1050
+ 3,
1051
+ n0,
1052
+ _UDNSVI,
1053
+ 0,
1054
+ [_dVI, _n, _d, _dV, _eCS, _fRFO],
1055
+ [[0, 1], 0, 0, 0, 0, 0],
1056
+ ];
1057
+ export var UpdateDNSViewOutput = [
1058
+ 3,
1059
+ n0,
1060
+ _UDNSVO,
1061
+ 0,
1062
+ [_i, _a, _cT, _dV, _eCS, _fRFO, _n, _d, _gRI, _cA, _uA, _s],
1063
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0],
1064
+ ];
1065
+ export var UpdateFirewallDomainsInput = [3, n0, _UFDI, 0, [_do, _fDLI, _o], [64 | 0, [0, 1], 0]];
1066
+ export var UpdateFirewallDomainsOutput = [3, n0, _UFDO, 0, [_i, _n, _s], [0, 0, 0]];
1067
+ export var UpdateFirewallRuleInput = [
1068
+ 3,
1069
+ n0,
1070
+ _UFRI,
1071
+ 0,
1072
+ [_ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fRI, _n, _pr],
1073
+ [0, 0, 0, 1, 0, [0, 4], 0, 0, 0, [0, 1], 0, 1],
1074
+ ];
1075
+ export var UpdateFirewallRuleOutput = [
1076
+ 3,
1077
+ n0,
1078
+ _UFRO,
1079
+ 0,
1080
+ [_ac, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _n, _pr, _dVI, _qTu, _s, _uA],
1081
+ [0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 5],
1082
+ ];
1083
+ export var UpdateGlobalResolverInput = [3, n0, _UGRI, 0, [_gRI, _n, _oR, _d], [[0, 1], 0, 0, 0]];
1084
+ export var UpdateGlobalResolverOutput = [
1085
+ 3,
1086
+ n0,
1087
+ _UGRO,
1088
+ 0,
1089
+ [_i, _a, _cT, _dN, _oR, _n, _d, _r, _cA, _uA, _s, _iA],
1090
+ [0, 0, 0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0],
1091
+ ];
1092
+ export var UpdateHostedZoneAssociationInput = [3, n0, _UHZAI, 0, [_hZAI, _n], [[0, 1], 0]];
1093
+ export var UpdateHostedZoneAssociationOutput = [
1094
+ 3,
1095
+ n0,
1096
+ _UHZAO,
1097
+ 0,
1098
+ [_i, _rA, _hZI, _hZN, _n, _cA, _uA, _s],
1099
+ [0, 0, 0, 0, 0, 5, 5, 0],
1100
+ ];
1101
+ export var ValidationException = [
1102
+ -3,
1103
+ n0,
1104
+ _VE,
1105
+ {
1106
+ [_e]: _c,
1107
+ [_hE]: 400,
1108
+ },
1109
+ [_m, _re, _fL],
1110
+ [0, 0, () => ValidationExceptionFieldList],
1111
+ ];
1112
+ TypeRegistry.for(n0).registerError(ValidationException, __ValidationException);
1113
+ export var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
1114
+ export var __Unit = "unit";
1115
+ export var Route53GlobalResolverServiceException = [
1116
+ -3,
1117
+ _sm,
1118
+ "Route53GlobalResolverServiceException",
1119
+ 0,
1120
+ [],
1121
+ [],
1122
+ ];
1123
+ TypeRegistry.for(_sm).registerError(Route53GlobalResolverServiceException, __Route53GlobalResolverServiceException);
1124
+ export var AccessSources = [1, n0, _AS, 0, () => AccessSourcesItem];
1125
+ export var AccessTokens = [1, n0, _AT, 0, () => AccessTokenItem];
1126
+ export var BatchCreateFirewallRuleInputItems = [
1127
+ 1,
1128
+ n0,
1129
+ _BCFRIIa,
1130
+ 0,
1131
+ () => BatchCreateFirewallRuleInputItem,
1132
+ ];
1133
+ export var BatchCreateFirewallRuleOutputItems = [
1134
+ 1,
1135
+ n0,
1136
+ _BCFROIa,
1137
+ 0,
1138
+ () => BatchCreateFirewallRuleOutputItem,
1139
+ ];
1140
+ export var BatchDeleteFirewallRuleInputItems = [
1141
+ 1,
1142
+ n0,
1143
+ _BDFRIIa,
1144
+ 0,
1145
+ () => BatchDeleteFirewallRuleInputItem,
1146
+ ];
1147
+ export var BatchDeleteFirewallRuleOutputItems = [
1148
+ 1,
1149
+ n0,
1150
+ _BDFROIa,
1151
+ 0,
1152
+ () => BatchDeleteFirewallRuleOutputItem,
1153
+ ];
1154
+ export var BatchUpdateFirewallRuleInputItems = [
1155
+ 1,
1156
+ n0,
1157
+ _BUFRIIa,
1158
+ 0,
1159
+ () => BatchUpdateFirewallRuleInputItem,
1160
+ ];
1161
+ export var BatchUpdateFirewallRuleOutputItems = [
1162
+ 1,
1163
+ n0,
1164
+ _BUFROIa,
1165
+ 0,
1166
+ () => BatchUpdateFirewallRuleOutputItem,
1167
+ ];
1168
+ export var DNSViews = [1, n0, _DNSV, 0, () => DNSViewSummary];
1169
+ export var Domains = 64 | 0;
1170
+ export var FirewallDomainLists = [1, n0, _FDL, 0, () => FirewallDomainListsItem];
1171
+ export var FirewallRules = [1, n0, _FR, 0, () => FirewallRulesItem];
1172
+ export var GlobalResolvers = [1, n0, _GR, 0, () => GlobalResolversItem];
1173
+ export var HostedZoneAssociations = [1, n0, _HZA, 0, () => HostedZoneAssociationSummary];
1174
+ export var IPv4Addresses = 64 | 0;
1175
+ export var ManagedFirewallDomainLists = [1, n0, _MFDL, 0, () => ManagedFirewallDomainListsItem];
1176
+ export var Regions = 64 | 0;
1177
+ export var Strings = 64 | 0;
1178
+ export var TagKeys = 64 | 0;
1179
+ export var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
1180
+ export var Filters = [2, n0, _F, 0, 0, 64 | 0];
1181
+ export var Tags = 128 | 0;
1182
+ export var AssociateHostedZone = [
1183
+ 9,
1184
+ n0,
1185
+ _AHZ,
1186
+ {
1187
+ [_h]: ["POST", "/hosted-zone-associations/{hostedZoneId}", 200],
1188
+ },
1189
+ () => AssociateHostedZoneInput,
1190
+ () => AssociateHostedZoneOutput,
1191
+ ];
1192
+ export var BatchCreateFirewallRule = [
1193
+ 9,
1194
+ n0,
1195
+ _BCFR,
1196
+ {
1197
+ [_h]: ["POST", "/firewall-rules/batch-create", 200],
1198
+ },
1199
+ () => BatchCreateFirewallRuleInput,
1200
+ () => BatchCreateFirewallRuleOutput,
1201
+ ];
1202
+ export var BatchDeleteFirewallRule = [
1203
+ 9,
1204
+ n0,
1205
+ _BDFR,
1206
+ {
1207
+ [_h]: ["POST", "/firewall-rules/batch-delete", 200],
1208
+ },
1209
+ () => BatchDeleteFirewallRuleInput,
1210
+ () => BatchDeleteFirewallRuleOutput,
1211
+ ];
1212
+ export var BatchUpdateFirewallRule = [
1213
+ 9,
1214
+ n0,
1215
+ _BUFR,
1216
+ {
1217
+ [_h]: ["POST", "/firewall-rules/batch-update", 200],
1218
+ },
1219
+ () => BatchUpdateFirewallRuleInput,
1220
+ () => BatchUpdateFirewallRuleOutput,
1221
+ ];
1222
+ export var CreateAccessSource = [
1223
+ 9,
1224
+ n0,
1225
+ _CAS,
1226
+ {
1227
+ [_h]: ["POST", "/access-sources", 200],
1228
+ },
1229
+ () => CreateAccessSourceInput,
1230
+ () => CreateAccessSourceOutput,
1231
+ ];
1232
+ export var CreateAccessToken = [
1233
+ 9,
1234
+ n0,
1235
+ _CAT,
1236
+ {
1237
+ [_h]: ["POST", "/tokens/{dnsViewId}", 200],
1238
+ },
1239
+ () => CreateAccessTokenInput,
1240
+ () => CreateAccessTokenOutput,
1241
+ ];
1242
+ export var CreateDNSView = [
1243
+ 9,
1244
+ n0,
1245
+ _CDNSV,
1246
+ {
1247
+ [_h]: ["POST", "/dns-views/{globalResolverId}", 200],
1248
+ },
1249
+ () => CreateDNSViewInput,
1250
+ () => CreateDNSViewOutput,
1251
+ ];
1252
+ export var CreateFirewallDomainList = [
1253
+ 9,
1254
+ n0,
1255
+ _CFDL,
1256
+ {
1257
+ [_h]: ["POST", "/firewall-domain-lists/{globalResolverId}", 200],
1258
+ },
1259
+ () => CreateFirewallDomainListInput,
1260
+ () => CreateFirewallDomainListOutput,
1261
+ ];
1262
+ export var CreateFirewallRule = [
1263
+ 9,
1264
+ n0,
1265
+ _CFR,
1266
+ {
1267
+ [_h]: ["POST", "/firewall-rules", 200],
1268
+ },
1269
+ () => CreateFirewallRuleInput,
1270
+ () => CreateFirewallRuleOutput,
1271
+ ];
1272
+ export var CreateGlobalResolver = [
1273
+ 9,
1274
+ n0,
1275
+ _CGR,
1276
+ {
1277
+ [_h]: ["POST", "/global-resolver", 200],
1278
+ },
1279
+ () => CreateGlobalResolverInput,
1280
+ () => CreateGlobalResolverOutput,
1281
+ ];
1282
+ export var DeleteAccessSource = [
1283
+ 9,
1284
+ n0,
1285
+ _DAS,
1286
+ {
1287
+ [_h]: ["DELETE", "/access-sources/{accessSourceId}", 200],
1288
+ },
1289
+ () => DeleteAccessSourceInput,
1290
+ () => DeleteAccessSourceOutput,
1291
+ ];
1292
+ export var DeleteAccessToken = [
1293
+ 9,
1294
+ n0,
1295
+ _DAT,
1296
+ {
1297
+ [_h]: ["DELETE", "/tokens/{accessTokenId}", 200],
1298
+ },
1299
+ () => DeleteAccessTokenInput,
1300
+ () => DeleteAccessTokenOutput,
1301
+ ];
1302
+ export var DeleteDNSView = [
1303
+ 9,
1304
+ n0,
1305
+ _DDNSV,
1306
+ {
1307
+ [_h]: ["DELETE", "/dns-views/{dnsViewId}", 200],
1308
+ },
1309
+ () => DeleteDNSViewInput,
1310
+ () => DeleteDNSViewOutput,
1311
+ ];
1312
+ export var DeleteFirewallDomainList = [
1313
+ 9,
1314
+ n0,
1315
+ _DFDL,
1316
+ {
1317
+ [_h]: ["DELETE", "/firewall-domain-lists/{firewallDomainListId}", 200],
1318
+ },
1319
+ () => DeleteFirewallDomainListInput,
1320
+ () => DeleteFirewallDomainListOutput,
1321
+ ];
1322
+ export var DeleteFirewallRule = [
1323
+ 9,
1324
+ n0,
1325
+ _DFR,
1326
+ {
1327
+ [_h]: ["DELETE", "/firewall-rules/{firewallRuleId}", 200],
1328
+ },
1329
+ () => DeleteFirewallRuleInput,
1330
+ () => DeleteFirewallRuleOutput,
1331
+ ];
1332
+ export var DeleteGlobalResolver = [
1333
+ 9,
1334
+ n0,
1335
+ _DGR,
1336
+ {
1337
+ [_h]: ["DELETE", "/global-resolver/{globalResolverId}", 200],
1338
+ },
1339
+ () => DeleteGlobalResolverInput,
1340
+ () => DeleteGlobalResolverOutput,
1341
+ ];
1342
+ export var DisableDNSView = [
1343
+ 9,
1344
+ n0,
1345
+ _DDNSVi,
1346
+ {
1347
+ [_h]: ["PATCH", "/dns-views/{dnsViewId}/disable", 200],
1348
+ },
1349
+ () => DisableDNSViewInput,
1350
+ () => DisableDNSViewOutput,
1351
+ ];
1352
+ export var DisassociateHostedZone = [
1353
+ 9,
1354
+ n0,
1355
+ _DHZ,
1356
+ {
1357
+ [_h]: ["DELETE", "/hosted-zone-associations/hosted-zone/{hostedZoneId}/resource-arn/{resourceArn+}", 200],
1358
+ },
1359
+ () => DisassociateHostedZoneInput,
1360
+ () => DisassociateHostedZoneOutput,
1361
+ ];
1362
+ export var EnableDNSView = [
1363
+ 9,
1364
+ n0,
1365
+ _EDNSV,
1366
+ {
1367
+ [_h]: ["PATCH", "/dns-views/{dnsViewId}/enable", 200],
1368
+ },
1369
+ () => EnableDNSViewInput,
1370
+ () => EnableDNSViewOutput,
1371
+ ];
1372
+ export var GetAccessSource = [
1373
+ 9,
1374
+ n0,
1375
+ _GAS,
1376
+ {
1377
+ [_h]: ["GET", "/access-sources/{accessSourceId}", 200],
1378
+ },
1379
+ () => GetAccessSourceInput,
1380
+ () => GetAccessSourceOutput,
1381
+ ];
1382
+ export var GetAccessToken = [
1383
+ 9,
1384
+ n0,
1385
+ _GAT,
1386
+ {
1387
+ [_h]: ["GET", "/tokens/{accessTokenId}", 200],
1388
+ },
1389
+ () => GetAccessTokenInput,
1390
+ () => GetAccessTokenOutput,
1391
+ ];
1392
+ export var GetDNSView = [
1393
+ 9,
1394
+ n0,
1395
+ _GDNSV,
1396
+ {
1397
+ [_h]: ["GET", "/dns-views/{dnsViewId}", 200],
1398
+ },
1399
+ () => GetDNSViewInput,
1400
+ () => GetDNSViewOutput,
1401
+ ];
1402
+ export var GetFirewallDomainList = [
1403
+ 9,
1404
+ n0,
1405
+ _GFDL,
1406
+ {
1407
+ [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}", 200],
1408
+ },
1409
+ () => GetFirewallDomainListInput,
1410
+ () => GetFirewallDomainListOutput,
1411
+ ];
1412
+ export var GetFirewallRule = [
1413
+ 9,
1414
+ n0,
1415
+ _GFR,
1416
+ {
1417
+ [_h]: ["GET", "/firewall-rules/{firewallRuleId}", 200],
1418
+ },
1419
+ () => GetFirewallRuleInput,
1420
+ () => GetFirewallRuleOutput,
1421
+ ];
1422
+ export var GetGlobalResolver = [
1423
+ 9,
1424
+ n0,
1425
+ _GGR,
1426
+ {
1427
+ [_h]: ["GET", "/global-resolver/{globalResolverId}", 200],
1428
+ },
1429
+ () => GetGlobalResolverInput,
1430
+ () => GetGlobalResolverOutput,
1431
+ ];
1432
+ export var GetHostedZoneAssociation = [
1433
+ 9,
1434
+ n0,
1435
+ _GHZA,
1436
+ {
1437
+ [_h]: ["GET", "/hosted-zone-associations/{hostedZoneAssociationId}", 200],
1438
+ },
1439
+ () => GetHostedZoneAssociationInput,
1440
+ () => GetHostedZoneAssociationOutput,
1441
+ ];
1442
+ export var GetManagedFirewallDomainList = [
1443
+ 9,
1444
+ n0,
1445
+ _GMFDL,
1446
+ {
1447
+ [_h]: ["GET", "/managed-firewall-domain-lists/{managedFirewallDomainListId}", 200],
1448
+ },
1449
+ () => GetManagedFirewallDomainListInput,
1450
+ () => GetManagedFirewallDomainListOutput,
1451
+ ];
1452
+ export var ImportFirewallDomains = [
1453
+ 9,
1454
+ n0,
1455
+ _IFD,
1456
+ {
1457
+ [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains/s3_file_url", 200],
1458
+ },
1459
+ () => ImportFirewallDomainsInput,
1460
+ () => ImportFirewallDomainsOutput,
1461
+ ];
1462
+ export var ListAccessSources = [
1463
+ 9,
1464
+ n0,
1465
+ _LAS,
1466
+ {
1467
+ [_h]: ["GET", "/access-sources", 200],
1468
+ },
1469
+ () => ListAccessSourcesInput,
1470
+ () => ListAccessSourcesOutput,
1471
+ ];
1472
+ export var ListAccessTokens = [
1473
+ 9,
1474
+ n0,
1475
+ _LAT,
1476
+ {
1477
+ [_h]: ["GET", "/tokens/dns-view/{dnsViewId}", 200],
1478
+ },
1479
+ () => ListAccessTokensInput,
1480
+ () => ListAccessTokensOutput,
1481
+ ];
1482
+ export var ListDNSViews = [
1483
+ 9,
1484
+ n0,
1485
+ _LDNSV,
1486
+ {
1487
+ [_h]: ["GET", "/dns-views/resolver/{globalResolverId}", 200],
1488
+ },
1489
+ () => ListDNSViewsInput,
1490
+ () => ListDNSViewsOutput,
1491
+ ];
1492
+ export var ListFirewallDomainLists = [
1493
+ 9,
1494
+ n0,
1495
+ _LFDL,
1496
+ {
1497
+ [_h]: ["GET", "/firewall-domain-lists", 200],
1498
+ },
1499
+ () => ListFirewallDomainListsInput,
1500
+ () => ListFirewallDomainListsOutput,
1501
+ ];
1502
+ export var ListFirewallDomains = [
1503
+ 9,
1504
+ n0,
1505
+ _LFD,
1506
+ {
1507
+ [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}/domains", 200],
1508
+ },
1509
+ () => ListFirewallDomainsInput,
1510
+ () => ListFirewallDomainsOutput,
1511
+ ];
1512
+ export var ListFirewallRules = [
1513
+ 9,
1514
+ n0,
1515
+ _LFR,
1516
+ {
1517
+ [_h]: ["GET", "/firewall-rules", 200],
1518
+ },
1519
+ () => ListFirewallRulesInput,
1520
+ () => ListFirewallRulesOutput,
1521
+ ];
1522
+ export var ListGlobalResolvers = [
1523
+ 9,
1524
+ n0,
1525
+ _LGR,
1526
+ {
1527
+ [_h]: ["GET", "/global-resolver", 200],
1528
+ },
1529
+ () => ListGlobalResolversInput,
1530
+ () => ListGlobalResolversOutput,
1531
+ ];
1532
+ export var ListHostedZoneAssociations = [
1533
+ 9,
1534
+ n0,
1535
+ _LHZA,
1536
+ {
1537
+ [_h]: ["GET", "/hosted-zone-associations/resource-arn/{resourceArn+}", 200],
1538
+ },
1539
+ () => ListHostedZoneAssociationsInput,
1540
+ () => ListHostedZoneAssociationsOutput,
1541
+ ];
1542
+ export var ListManagedFirewallDomainLists = [
1543
+ 9,
1544
+ n0,
1545
+ _LMFDL,
1546
+ {
1547
+ [_h]: ["GET", "/list-managed-firewall-domain-lists/{managedFirewallDomainListType}", 200],
1548
+ },
1549
+ () => ListManagedFirewallDomainListsInput,
1550
+ () => ListManagedFirewallDomainListsOutput,
1551
+ ];
1552
+ export var ListTagsForResource = [
1553
+ 9,
1554
+ n0,
1555
+ _LTFR,
1556
+ {
1557
+ [_h]: ["POST", "/get-all-tags", 200],
1558
+ },
1559
+ () => ListTagsForResourceRequest,
1560
+ () => ListTagsForResourceResponse,
1561
+ ];
1562
+ export var TagResource = [
1563
+ 9,
1564
+ n0,
1565
+ _TR,
1566
+ {
1567
+ [_h]: ["POST", "/tag-resource", 200],
1568
+ },
1569
+ () => TagResourceRequest,
1570
+ () => TagResourceResponse,
1571
+ ];
1572
+ export var UntagResource = [
1573
+ 9,
1574
+ n0,
1575
+ _UR,
1576
+ {
1577
+ [_h]: ["POST", "/untag-resource", 200],
1578
+ },
1579
+ () => UntagResourceRequest,
1580
+ () => UntagResourceResponse,
1581
+ ];
1582
+ export var UpdateAccessSource = [
1583
+ 9,
1584
+ n0,
1585
+ _UAS,
1586
+ {
1587
+ [_h]: ["PATCH", "/access-sources/{accessSourceId}", 200],
1588
+ },
1589
+ () => UpdateAccessSourceInput,
1590
+ () => UpdateAccessSourceOutput,
1591
+ ];
1592
+ export var UpdateAccessToken = [
1593
+ 9,
1594
+ n0,
1595
+ _UAT,
1596
+ {
1597
+ [_h]: ["PATCH", "/tokens/{accessTokenId}", 200],
1598
+ },
1599
+ () => UpdateAccessTokenInput,
1600
+ () => UpdateAccessTokenOutput,
1601
+ ];
1602
+ export var UpdateDNSView = [
1603
+ 9,
1604
+ n0,
1605
+ _UDNSV,
1606
+ {
1607
+ [_h]: ["PATCH", "/dns-views/{dnsViewId}", 200],
1608
+ },
1609
+ () => UpdateDNSViewInput,
1610
+ () => UpdateDNSViewOutput,
1611
+ ];
1612
+ export var UpdateFirewallDomains = [
1613
+ 9,
1614
+ n0,
1615
+ _UFD,
1616
+ {
1617
+ [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains", 200],
1618
+ },
1619
+ () => UpdateFirewallDomainsInput,
1620
+ () => UpdateFirewallDomainsOutput,
1621
+ ];
1622
+ export var UpdateFirewallRule = [
1623
+ 9,
1624
+ n0,
1625
+ _UFR,
1626
+ {
1627
+ [_h]: ["PATCH", "/firewall-rules/{firewallRuleId}", 200],
1628
+ },
1629
+ () => UpdateFirewallRuleInput,
1630
+ () => UpdateFirewallRuleOutput,
1631
+ ];
1632
+ export var UpdateGlobalResolver = [
1633
+ 9,
1634
+ n0,
1635
+ _UGR,
1636
+ {
1637
+ [_h]: ["PATCH", "/global-resolver/{globalResolverId}", 200],
1638
+ },
1639
+ () => UpdateGlobalResolverInput,
1640
+ () => UpdateGlobalResolverOutput,
1641
+ ];
1642
+ export var UpdateHostedZoneAssociation = [
1643
+ 9,
1644
+ n0,
1645
+ _UHZA,
1646
+ {
1647
+ [_h]: ["PATCH", "/hosted-zone-associations/{hostedZoneAssociationId}", 200],
1648
+ },
1649
+ () => UpdateHostedZoneAssociationInput,
1650
+ () => UpdateHostedZoneAssociationOutput,
1651
+ ];