@aws-sdk/client-vpc-lattice 3.303.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 (315) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +628 -0
  3. package/dist-cjs/VPCLattice.js +787 -0
  4. package/dist-cjs/VPCLatticeClient.js +40 -0
  5. package/dist-cjs/commands/BatchUpdateRuleCommand.js +45 -0
  6. package/dist-cjs/commands/CreateAccessLogSubscriptionCommand.js +45 -0
  7. package/dist-cjs/commands/CreateListenerCommand.js +45 -0
  8. package/dist-cjs/commands/CreateRuleCommand.js +45 -0
  9. package/dist-cjs/commands/CreateServiceCommand.js +45 -0
  10. package/dist-cjs/commands/CreateServiceNetworkCommand.js +45 -0
  11. package/dist-cjs/commands/CreateServiceNetworkServiceAssociationCommand.js +45 -0
  12. package/dist-cjs/commands/CreateServiceNetworkVpcAssociationCommand.js +45 -0
  13. package/dist-cjs/commands/CreateTargetGroupCommand.js +45 -0
  14. package/dist-cjs/commands/DeleteAccessLogSubscriptionCommand.js +45 -0
  15. package/dist-cjs/commands/DeleteAuthPolicyCommand.js +45 -0
  16. package/dist-cjs/commands/DeleteListenerCommand.js +45 -0
  17. package/dist-cjs/commands/DeleteResourcePolicyCommand.js +45 -0
  18. package/dist-cjs/commands/DeleteRuleCommand.js +45 -0
  19. package/dist-cjs/commands/DeleteServiceCommand.js +45 -0
  20. package/dist-cjs/commands/DeleteServiceNetworkCommand.js +45 -0
  21. package/dist-cjs/commands/DeleteServiceNetworkServiceAssociationCommand.js +45 -0
  22. package/dist-cjs/commands/DeleteServiceNetworkVpcAssociationCommand.js +45 -0
  23. package/dist-cjs/commands/DeleteTargetGroupCommand.js +45 -0
  24. package/dist-cjs/commands/DeregisterTargetsCommand.js +45 -0
  25. package/dist-cjs/commands/GetAccessLogSubscriptionCommand.js +45 -0
  26. package/dist-cjs/commands/GetAuthPolicyCommand.js +45 -0
  27. package/dist-cjs/commands/GetListenerCommand.js +45 -0
  28. package/dist-cjs/commands/GetResourcePolicyCommand.js +45 -0
  29. package/dist-cjs/commands/GetRuleCommand.js +45 -0
  30. package/dist-cjs/commands/GetServiceCommand.js +45 -0
  31. package/dist-cjs/commands/GetServiceNetworkCommand.js +45 -0
  32. package/dist-cjs/commands/GetServiceNetworkServiceAssociationCommand.js +45 -0
  33. package/dist-cjs/commands/GetServiceNetworkVpcAssociationCommand.js +45 -0
  34. package/dist-cjs/commands/GetTargetGroupCommand.js +45 -0
  35. package/dist-cjs/commands/ListAccessLogSubscriptionsCommand.js +45 -0
  36. package/dist-cjs/commands/ListListenersCommand.js +45 -0
  37. package/dist-cjs/commands/ListRulesCommand.js +45 -0
  38. package/dist-cjs/commands/ListServiceNetworkServiceAssociationsCommand.js +45 -0
  39. package/dist-cjs/commands/ListServiceNetworkVpcAssociationsCommand.js +45 -0
  40. package/dist-cjs/commands/ListServiceNetworksCommand.js +45 -0
  41. package/dist-cjs/commands/ListServicesCommand.js +45 -0
  42. package/dist-cjs/commands/ListTagsForResourceCommand.js +45 -0
  43. package/dist-cjs/commands/ListTargetGroupsCommand.js +45 -0
  44. package/dist-cjs/commands/ListTargetsCommand.js +45 -0
  45. package/dist-cjs/commands/PutAuthPolicyCommand.js +45 -0
  46. package/dist-cjs/commands/PutResourcePolicyCommand.js +45 -0
  47. package/dist-cjs/commands/RegisterTargetsCommand.js +45 -0
  48. package/dist-cjs/commands/TagResourceCommand.js +45 -0
  49. package/dist-cjs/commands/UntagResourceCommand.js +45 -0
  50. package/dist-cjs/commands/UpdateAccessLogSubscriptionCommand.js +45 -0
  51. package/dist-cjs/commands/UpdateListenerCommand.js +45 -0
  52. package/dist-cjs/commands/UpdateRuleCommand.js +45 -0
  53. package/dist-cjs/commands/UpdateServiceCommand.js +45 -0
  54. package/dist-cjs/commands/UpdateServiceNetworkCommand.js +45 -0
  55. package/dist-cjs/commands/UpdateServiceNetworkVpcAssociationCommand.js +45 -0
  56. package/dist-cjs/commands/UpdateTargetGroupCommand.js +45 -0
  57. package/dist-cjs/commands/index.js +55 -0
  58. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  59. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  60. package/dist-cjs/endpoint/ruleset.js +7 -0
  61. package/dist-cjs/index.js +11 -0
  62. package/dist-cjs/models/VPCLatticeServiceException.js +11 -0
  63. package/dist-cjs/models/index.js +4 -0
  64. package/dist-cjs/models/models_0.js +240 -0
  65. package/dist-cjs/pagination/Interfaces.js +2 -0
  66. package/dist-cjs/pagination/ListAccessLogSubscriptionsPaginator.js +29 -0
  67. package/dist-cjs/pagination/ListListenersPaginator.js +29 -0
  68. package/dist-cjs/pagination/ListRulesPaginator.js +29 -0
  69. package/dist-cjs/pagination/ListServiceNetworkServiceAssociationsPaginator.js +29 -0
  70. package/dist-cjs/pagination/ListServiceNetworkVpcAssociationsPaginator.js +29 -0
  71. package/dist-cjs/pagination/ListServiceNetworksPaginator.js +29 -0
  72. package/dist-cjs/pagination/ListServicesPaginator.js +29 -0
  73. package/dist-cjs/pagination/ListTargetGroupsPaginator.js +29 -0
  74. package/dist-cjs/pagination/ListTargetsPaginator.js +29 -0
  75. package/dist-cjs/pagination/index.js +13 -0
  76. package/dist-cjs/protocols/Aws_restJson1.js +4911 -0
  77. package/dist-cjs/runtimeConfig.browser.js +39 -0
  78. package/dist-cjs/runtimeConfig.js +48 -0
  79. package/dist-cjs/runtimeConfig.native.js +15 -0
  80. package/dist-cjs/runtimeConfig.shared.js +21 -0
  81. package/dist-es/VPCLattice.js +783 -0
  82. package/dist-es/VPCLatticeClient.js +36 -0
  83. package/dist-es/commands/BatchUpdateRuleCommand.js +41 -0
  84. package/dist-es/commands/CreateAccessLogSubscriptionCommand.js +41 -0
  85. package/dist-es/commands/CreateListenerCommand.js +41 -0
  86. package/dist-es/commands/CreateRuleCommand.js +41 -0
  87. package/dist-es/commands/CreateServiceCommand.js +41 -0
  88. package/dist-es/commands/CreateServiceNetworkCommand.js +41 -0
  89. package/dist-es/commands/CreateServiceNetworkServiceAssociationCommand.js +41 -0
  90. package/dist-es/commands/CreateServiceNetworkVpcAssociationCommand.js +41 -0
  91. package/dist-es/commands/CreateTargetGroupCommand.js +41 -0
  92. package/dist-es/commands/DeleteAccessLogSubscriptionCommand.js +41 -0
  93. package/dist-es/commands/DeleteAuthPolicyCommand.js +41 -0
  94. package/dist-es/commands/DeleteListenerCommand.js +41 -0
  95. package/dist-es/commands/DeleteResourcePolicyCommand.js +41 -0
  96. package/dist-es/commands/DeleteRuleCommand.js +41 -0
  97. package/dist-es/commands/DeleteServiceCommand.js +41 -0
  98. package/dist-es/commands/DeleteServiceNetworkCommand.js +41 -0
  99. package/dist-es/commands/DeleteServiceNetworkServiceAssociationCommand.js +41 -0
  100. package/dist-es/commands/DeleteServiceNetworkVpcAssociationCommand.js +41 -0
  101. package/dist-es/commands/DeleteTargetGroupCommand.js +41 -0
  102. package/dist-es/commands/DeregisterTargetsCommand.js +41 -0
  103. package/dist-es/commands/GetAccessLogSubscriptionCommand.js +41 -0
  104. package/dist-es/commands/GetAuthPolicyCommand.js +41 -0
  105. package/dist-es/commands/GetListenerCommand.js +41 -0
  106. package/dist-es/commands/GetResourcePolicyCommand.js +41 -0
  107. package/dist-es/commands/GetRuleCommand.js +41 -0
  108. package/dist-es/commands/GetServiceCommand.js +41 -0
  109. package/dist-es/commands/GetServiceNetworkCommand.js +41 -0
  110. package/dist-es/commands/GetServiceNetworkServiceAssociationCommand.js +41 -0
  111. package/dist-es/commands/GetServiceNetworkVpcAssociationCommand.js +41 -0
  112. package/dist-es/commands/GetTargetGroupCommand.js +41 -0
  113. package/dist-es/commands/ListAccessLogSubscriptionsCommand.js +41 -0
  114. package/dist-es/commands/ListListenersCommand.js +41 -0
  115. package/dist-es/commands/ListRulesCommand.js +41 -0
  116. package/dist-es/commands/ListServiceNetworkServiceAssociationsCommand.js +41 -0
  117. package/dist-es/commands/ListServiceNetworkVpcAssociationsCommand.js +41 -0
  118. package/dist-es/commands/ListServiceNetworksCommand.js +41 -0
  119. package/dist-es/commands/ListServicesCommand.js +41 -0
  120. package/dist-es/commands/ListTagsForResourceCommand.js +41 -0
  121. package/dist-es/commands/ListTargetGroupsCommand.js +41 -0
  122. package/dist-es/commands/ListTargetsCommand.js +41 -0
  123. package/dist-es/commands/PutAuthPolicyCommand.js +41 -0
  124. package/dist-es/commands/PutResourcePolicyCommand.js +41 -0
  125. package/dist-es/commands/RegisterTargetsCommand.js +41 -0
  126. package/dist-es/commands/TagResourceCommand.js +41 -0
  127. package/dist-es/commands/UntagResourceCommand.js +41 -0
  128. package/dist-es/commands/UpdateAccessLogSubscriptionCommand.js +41 -0
  129. package/dist-es/commands/UpdateListenerCommand.js +41 -0
  130. package/dist-es/commands/UpdateRuleCommand.js +41 -0
  131. package/dist-es/commands/UpdateServiceCommand.js +41 -0
  132. package/dist-es/commands/UpdateServiceNetworkCommand.js +41 -0
  133. package/dist-es/commands/UpdateServiceNetworkVpcAssociationCommand.js +41 -0
  134. package/dist-es/commands/UpdateTargetGroupCommand.js +41 -0
  135. package/dist-es/commands/index.js +52 -0
  136. package/dist-es/endpoint/EndpointParameters.js +8 -0
  137. package/dist-es/endpoint/endpointResolver.js +8 -0
  138. package/dist-es/endpoint/ruleset.js +4 -0
  139. package/dist-es/index.js +6 -0
  140. package/dist-es/models/VPCLatticeServiceException.js +7 -0
  141. package/dist-es/models/index.js +1 -0
  142. package/dist-es/models/models_0.js +230 -0
  143. package/dist-es/pagination/Interfaces.js +1 -0
  144. package/dist-es/pagination/ListAccessLogSubscriptionsPaginator.js +25 -0
  145. package/dist-es/pagination/ListListenersPaginator.js +25 -0
  146. package/dist-es/pagination/ListRulesPaginator.js +25 -0
  147. package/dist-es/pagination/ListServiceNetworkServiceAssociationsPaginator.js +25 -0
  148. package/dist-es/pagination/ListServiceNetworkVpcAssociationsPaginator.js +25 -0
  149. package/dist-es/pagination/ListServiceNetworksPaginator.js +25 -0
  150. package/dist-es/pagination/ListServicesPaginator.js +25 -0
  151. package/dist-es/pagination/ListTargetGroupsPaginator.js +25 -0
  152. package/dist-es/pagination/ListTargetsPaginator.js +25 -0
  153. package/dist-es/pagination/index.js +10 -0
  154. package/dist-es/protocols/Aws_restJson1.js +4802 -0
  155. package/dist-es/runtimeConfig.browser.js +34 -0
  156. package/dist-es/runtimeConfig.js +43 -0
  157. package/dist-es/runtimeConfig.native.js +11 -0
  158. package/dist-es/runtimeConfig.shared.js +17 -0
  159. package/dist-types/VPCLattice.d.ts +506 -0
  160. package/dist-types/VPCLatticeClient.d.ts +217 -0
  161. package/dist-types/commands/BatchUpdateRuleCommand.d.ts +127 -0
  162. package/dist-types/commands/CreateAccessLogSubscriptionCommand.d.ts +93 -0
  163. package/dist-types/commands/CreateListenerCommand.d.ts +109 -0
  164. package/dist-types/commands/CreateRuleCommand.d.ts +132 -0
  165. package/dist-types/commands/CreateServiceCommand.d.ts +96 -0
  166. package/dist-types/commands/CreateServiceNetworkCommand.d.ts +94 -0
  167. package/dist-types/commands/CreateServiceNetworkServiceAssociationCommand.d.ts +95 -0
  168. package/dist-types/commands/CreateServiceNetworkVpcAssociationCommand.d.ts +103 -0
  169. package/dist-types/commands/CreateTargetGroupCommand.d.ts +115 -0
  170. package/dist-types/commands/DeleteAccessLogSubscriptionCommand.d.ts +79 -0
  171. package/dist-types/commands/DeleteAuthPolicyCommand.d.ts +82 -0
  172. package/dist-types/commands/DeleteListenerCommand.d.ts +84 -0
  173. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +79 -0
  174. package/dist-types/commands/DeleteRuleCommand.d.ts +90 -0
  175. package/dist-types/commands/DeleteServiceCommand.d.ts +87 -0
  176. package/dist-types/commands/DeleteServiceNetworkCommand.d.ts +87 -0
  177. package/dist-types/commands/DeleteServiceNetworkServiceAssociationCommand.d.ts +84 -0
  178. package/dist-types/commands/DeleteServiceNetworkVpcAssociationCommand.d.ts +84 -0
  179. package/dist-types/commands/DeleteTargetGroupCommand.d.ts +81 -0
  180. package/dist-types/commands/DeregisterTargetsCommand.d.ts +89 -0
  181. package/dist-types/commands/GetAccessLogSubscriptionCommand.d.ts +79 -0
  182. package/dist-types/commands/GetAuthPolicyCommand.d.ts +80 -0
  183. package/dist-types/commands/GetListenerCommand.d.ts +80 -0
  184. package/dist-types/commands/GetResourcePolicyCommand.d.ts +80 -0
  185. package/dist-types/commands/GetRuleCommand.d.ts +83 -0
  186. package/dist-types/commands/GetServiceCommand.d.ts +79 -0
  187. package/dist-types/commands/GetServiceNetworkCommand.d.ts +79 -0
  188. package/dist-types/commands/GetServiceNetworkServiceAssociationCommand.d.ts +80 -0
  189. package/dist-types/commands/GetServiceNetworkVpcAssociationCommand.d.ts +79 -0
  190. package/dist-types/commands/GetTargetGroupCommand.d.ts +76 -0
  191. package/dist-types/commands/ListAccessLogSubscriptionsCommand.d.ts +75 -0
  192. package/dist-types/commands/ListListenersCommand.d.ts +81 -0
  193. package/dist-types/commands/ListRulesCommand.d.ts +82 -0
  194. package/dist-types/commands/ListServiceNetworkServiceAssociationsCommand.d.ts +86 -0
  195. package/dist-types/commands/ListServiceNetworkVpcAssociationsCommand.d.ts +81 -0
  196. package/dist-types/commands/ListServiceNetworksCommand.d.ts +78 -0
  197. package/dist-types/commands/ListServicesCommand.d.ts +77 -0
  198. package/dist-types/commands/ListTagsForResourceCommand.d.ts +73 -0
  199. package/dist-types/commands/ListTargetGroupsCommand.d.ts +80 -0
  200. package/dist-types/commands/ListTargetsCommand.d.ts +88 -0
  201. package/dist-types/commands/PutAuthPolicyCommand.d.ts +80 -0
  202. package/dist-types/commands/PutResourcePolicyCommand.d.ts +82 -0
  203. package/dist-types/commands/RegisterTargetsCommand.d.ts +93 -0
  204. package/dist-types/commands/TagResourceCommand.d.ts +82 -0
  205. package/dist-types/commands/UntagResourceCommand.d.ts +76 -0
  206. package/dist-types/commands/UpdateAccessLogSubscriptionCommand.d.ts +84 -0
  207. package/dist-types/commands/UpdateListenerCommand.d.ts +97 -0
  208. package/dist-types/commands/UpdateRuleCommand.d.ts +123 -0
  209. package/dist-types/commands/UpdateServiceCommand.d.ts +85 -0
  210. package/dist-types/commands/UpdateServiceNetworkCommand.d.ts +84 -0
  211. package/dist-types/commands/UpdateServiceNetworkVpcAssociationCommand.d.ts +87 -0
  212. package/dist-types/commands/UpdateTargetGroupCommand.d.ts +94 -0
  213. package/dist-types/commands/index.d.ts +52 -0
  214. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  215. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  216. package/dist-types/endpoint/ruleset.d.ts +2 -0
  217. package/dist-types/index.d.ts +6 -0
  218. package/dist-types/models/VPCLatticeServiceException.d.ts +12 -0
  219. package/dist-types/models/index.d.ts +1 -0
  220. package/dist-types/models/models_0.d.ts +3439 -0
  221. package/dist-types/pagination/Interfaces.d.ts +8 -0
  222. package/dist-types/pagination/ListAccessLogSubscriptionsPaginator.d.ts +7 -0
  223. package/dist-types/pagination/ListListenersPaginator.d.ts +7 -0
  224. package/dist-types/pagination/ListRulesPaginator.d.ts +7 -0
  225. package/dist-types/pagination/ListServiceNetworkServiceAssociationsPaginator.d.ts +7 -0
  226. package/dist-types/pagination/ListServiceNetworkVpcAssociationsPaginator.d.ts +7 -0
  227. package/dist-types/pagination/ListServiceNetworksPaginator.d.ts +7 -0
  228. package/dist-types/pagination/ListServicesPaginator.d.ts +7 -0
  229. package/dist-types/pagination/ListTargetGroupsPaginator.d.ts +7 -0
  230. package/dist-types/pagination/ListTargetsPaginator.d.ts +7 -0
  231. package/dist-types/pagination/index.d.ts +10 -0
  232. package/dist-types/protocols/Aws_restJson1.d.ts +158 -0
  233. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  234. package/dist-types/runtimeConfig.d.ts +42 -0
  235. package/dist-types/runtimeConfig.native.d.ts +41 -0
  236. package/dist-types/runtimeConfig.shared.d.ts +18 -0
  237. package/dist-types/ts3.4/VPCLattice.d.ts +936 -0
  238. package/dist-types/ts3.4/VPCLatticeClient.d.ts +424 -0
  239. package/dist-types/ts3.4/commands/BatchUpdateRuleCommand.d.ts +37 -0
  240. package/dist-types/ts3.4/commands/CreateAccessLogSubscriptionCommand.d.ts +41 -0
  241. package/dist-types/ts3.4/commands/CreateListenerCommand.d.ts +37 -0
  242. package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +34 -0
  243. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -0
  244. package/dist-types/ts3.4/commands/CreateServiceNetworkCommand.d.ts +41 -0
  245. package/dist-types/ts3.4/commands/CreateServiceNetworkServiceAssociationCommand.d.ts +41 -0
  246. package/dist-types/ts3.4/commands/CreateServiceNetworkVpcAssociationCommand.d.ts +41 -0
  247. package/dist-types/ts3.4/commands/CreateTargetGroupCommand.d.ts +38 -0
  248. package/dist-types/ts3.4/commands/DeleteAccessLogSubscriptionCommand.d.ts +41 -0
  249. package/dist-types/ts3.4/commands/DeleteAuthPolicyCommand.d.ts +37 -0
  250. package/dist-types/ts3.4/commands/DeleteListenerCommand.d.ts +37 -0
  251. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -0
  252. package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +34 -0
  253. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -0
  254. package/dist-types/ts3.4/commands/DeleteServiceNetworkCommand.d.ts +41 -0
  255. package/dist-types/ts3.4/commands/DeleteServiceNetworkServiceAssociationCommand.d.ts +41 -0
  256. package/dist-types/ts3.4/commands/DeleteServiceNetworkVpcAssociationCommand.d.ts +41 -0
  257. package/dist-types/ts3.4/commands/DeleteTargetGroupCommand.d.ts +38 -0
  258. package/dist-types/ts3.4/commands/DeregisterTargetsCommand.d.ts +38 -0
  259. package/dist-types/ts3.4/commands/GetAccessLogSubscriptionCommand.d.ts +41 -0
  260. package/dist-types/ts3.4/commands/GetAuthPolicyCommand.d.ts +37 -0
  261. package/dist-types/ts3.4/commands/GetListenerCommand.d.ts +34 -0
  262. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -0
  263. package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +34 -0
  264. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +34 -0
  265. package/dist-types/ts3.4/commands/GetServiceNetworkCommand.d.ts +38 -0
  266. package/dist-types/ts3.4/commands/GetServiceNetworkServiceAssociationCommand.d.ts +41 -0
  267. package/dist-types/ts3.4/commands/GetServiceNetworkVpcAssociationCommand.d.ts +41 -0
  268. package/dist-types/ts3.4/commands/GetTargetGroupCommand.d.ts +37 -0
  269. package/dist-types/ts3.4/commands/ListAccessLogSubscriptionsCommand.d.ts +41 -0
  270. package/dist-types/ts3.4/commands/ListListenersCommand.d.ts +37 -0
  271. package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +34 -0
  272. package/dist-types/ts3.4/commands/ListServiceNetworkServiceAssociationsCommand.d.ts +41 -0
  273. package/dist-types/ts3.4/commands/ListServiceNetworkVpcAssociationsCommand.d.ts +41 -0
  274. package/dist-types/ts3.4/commands/ListServiceNetworksCommand.d.ts +38 -0
  275. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -0
  276. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  277. package/dist-types/ts3.4/commands/ListTargetGroupsCommand.d.ts +37 -0
  278. package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +34 -0
  279. package/dist-types/ts3.4/commands/PutAuthPolicyCommand.d.ts +37 -0
  280. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -0
  281. package/dist-types/ts3.4/commands/RegisterTargetsCommand.d.ts +37 -0
  282. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  283. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  284. package/dist-types/ts3.4/commands/UpdateAccessLogSubscriptionCommand.d.ts +41 -0
  285. package/dist-types/ts3.4/commands/UpdateListenerCommand.d.ts +37 -0
  286. package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +34 -0
  287. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +37 -0
  288. package/dist-types/ts3.4/commands/UpdateServiceNetworkCommand.d.ts +41 -0
  289. package/dist-types/ts3.4/commands/UpdateServiceNetworkVpcAssociationCommand.d.ts +41 -0
  290. package/dist-types/ts3.4/commands/UpdateTargetGroupCommand.d.ts +38 -0
  291. package/dist-types/ts3.4/commands/index.d.ts +52 -0
  292. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  293. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  294. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  295. package/dist-types/ts3.4/index.d.ts +6 -0
  296. package/dist-types/ts3.4/models/VPCLatticeServiceException.d.ts +7 -0
  297. package/dist-types/ts3.4/models/index.d.ts +1 -0
  298. package/dist-types/ts3.4/models/models_0.d.ts +1022 -0
  299. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  300. package/dist-types/ts3.4/pagination/ListAccessLogSubscriptionsPaginator.d.ts +11 -0
  301. package/dist-types/ts3.4/pagination/ListListenersPaginator.d.ts +11 -0
  302. package/dist-types/ts3.4/pagination/ListRulesPaginator.d.ts +11 -0
  303. package/dist-types/ts3.4/pagination/ListServiceNetworkServiceAssociationsPaginator.d.ts +11 -0
  304. package/dist-types/ts3.4/pagination/ListServiceNetworkVpcAssociationsPaginator.d.ts +11 -0
  305. package/dist-types/ts3.4/pagination/ListServiceNetworksPaginator.d.ts +11 -0
  306. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -0
  307. package/dist-types/ts3.4/pagination/ListTargetGroupsPaginator.d.ts +11 -0
  308. package/dist-types/ts3.4/pagination/ListTargetsPaginator.d.ts +11 -0
  309. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  310. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +629 -0
  311. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  312. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  313. package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
  314. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
  315. package/package.json +100 -0
@@ -0,0 +1,936 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ BatchUpdateRuleCommandInput,
4
+ BatchUpdateRuleCommandOutput,
5
+ } from "./commands/BatchUpdateRuleCommand";
6
+ import {
7
+ CreateAccessLogSubscriptionCommandInput,
8
+ CreateAccessLogSubscriptionCommandOutput,
9
+ } from "./commands/CreateAccessLogSubscriptionCommand";
10
+ import {
11
+ CreateListenerCommandInput,
12
+ CreateListenerCommandOutput,
13
+ } from "./commands/CreateListenerCommand";
14
+ import {
15
+ CreateRuleCommandInput,
16
+ CreateRuleCommandOutput,
17
+ } from "./commands/CreateRuleCommand";
18
+ import {
19
+ CreateServiceCommandInput,
20
+ CreateServiceCommandOutput,
21
+ } from "./commands/CreateServiceCommand";
22
+ import {
23
+ CreateServiceNetworkCommandInput,
24
+ CreateServiceNetworkCommandOutput,
25
+ } from "./commands/CreateServiceNetworkCommand";
26
+ import {
27
+ CreateServiceNetworkServiceAssociationCommandInput,
28
+ CreateServiceNetworkServiceAssociationCommandOutput,
29
+ } from "./commands/CreateServiceNetworkServiceAssociationCommand";
30
+ import {
31
+ CreateServiceNetworkVpcAssociationCommandInput,
32
+ CreateServiceNetworkVpcAssociationCommandOutput,
33
+ } from "./commands/CreateServiceNetworkVpcAssociationCommand";
34
+ import {
35
+ CreateTargetGroupCommandInput,
36
+ CreateTargetGroupCommandOutput,
37
+ } from "./commands/CreateTargetGroupCommand";
38
+ import {
39
+ DeleteAccessLogSubscriptionCommandInput,
40
+ DeleteAccessLogSubscriptionCommandOutput,
41
+ } from "./commands/DeleteAccessLogSubscriptionCommand";
42
+ import {
43
+ DeleteAuthPolicyCommandInput,
44
+ DeleteAuthPolicyCommandOutput,
45
+ } from "./commands/DeleteAuthPolicyCommand";
46
+ import {
47
+ DeleteListenerCommandInput,
48
+ DeleteListenerCommandOutput,
49
+ } from "./commands/DeleteListenerCommand";
50
+ import {
51
+ DeleteResourcePolicyCommandInput,
52
+ DeleteResourcePolicyCommandOutput,
53
+ } from "./commands/DeleteResourcePolicyCommand";
54
+ import {
55
+ DeleteRuleCommandInput,
56
+ DeleteRuleCommandOutput,
57
+ } from "./commands/DeleteRuleCommand";
58
+ import {
59
+ DeleteServiceCommandInput,
60
+ DeleteServiceCommandOutput,
61
+ } from "./commands/DeleteServiceCommand";
62
+ import {
63
+ DeleteServiceNetworkCommandInput,
64
+ DeleteServiceNetworkCommandOutput,
65
+ } from "./commands/DeleteServiceNetworkCommand";
66
+ import {
67
+ DeleteServiceNetworkServiceAssociationCommandInput,
68
+ DeleteServiceNetworkServiceAssociationCommandOutput,
69
+ } from "./commands/DeleteServiceNetworkServiceAssociationCommand";
70
+ import {
71
+ DeleteServiceNetworkVpcAssociationCommandInput,
72
+ DeleteServiceNetworkVpcAssociationCommandOutput,
73
+ } from "./commands/DeleteServiceNetworkVpcAssociationCommand";
74
+ import {
75
+ DeleteTargetGroupCommandInput,
76
+ DeleteTargetGroupCommandOutput,
77
+ } from "./commands/DeleteTargetGroupCommand";
78
+ import {
79
+ DeregisterTargetsCommandInput,
80
+ DeregisterTargetsCommandOutput,
81
+ } from "./commands/DeregisterTargetsCommand";
82
+ import {
83
+ GetAccessLogSubscriptionCommandInput,
84
+ GetAccessLogSubscriptionCommandOutput,
85
+ } from "./commands/GetAccessLogSubscriptionCommand";
86
+ import {
87
+ GetAuthPolicyCommandInput,
88
+ GetAuthPolicyCommandOutput,
89
+ } from "./commands/GetAuthPolicyCommand";
90
+ import {
91
+ GetListenerCommandInput,
92
+ GetListenerCommandOutput,
93
+ } from "./commands/GetListenerCommand";
94
+ import {
95
+ GetResourcePolicyCommandInput,
96
+ GetResourcePolicyCommandOutput,
97
+ } from "./commands/GetResourcePolicyCommand";
98
+ import {
99
+ GetRuleCommandInput,
100
+ GetRuleCommandOutput,
101
+ } from "./commands/GetRuleCommand";
102
+ import {
103
+ GetServiceCommandInput,
104
+ GetServiceCommandOutput,
105
+ } from "./commands/GetServiceCommand";
106
+ import {
107
+ GetServiceNetworkCommandInput,
108
+ GetServiceNetworkCommandOutput,
109
+ } from "./commands/GetServiceNetworkCommand";
110
+ import {
111
+ GetServiceNetworkServiceAssociationCommandInput,
112
+ GetServiceNetworkServiceAssociationCommandOutput,
113
+ } from "./commands/GetServiceNetworkServiceAssociationCommand";
114
+ import {
115
+ GetServiceNetworkVpcAssociationCommandInput,
116
+ GetServiceNetworkVpcAssociationCommandOutput,
117
+ } from "./commands/GetServiceNetworkVpcAssociationCommand";
118
+ import {
119
+ GetTargetGroupCommandInput,
120
+ GetTargetGroupCommandOutput,
121
+ } from "./commands/GetTargetGroupCommand";
122
+ import {
123
+ ListAccessLogSubscriptionsCommandInput,
124
+ ListAccessLogSubscriptionsCommandOutput,
125
+ } from "./commands/ListAccessLogSubscriptionsCommand";
126
+ import {
127
+ ListListenersCommandInput,
128
+ ListListenersCommandOutput,
129
+ } from "./commands/ListListenersCommand";
130
+ import {
131
+ ListRulesCommandInput,
132
+ ListRulesCommandOutput,
133
+ } from "./commands/ListRulesCommand";
134
+ import {
135
+ ListServiceNetworksCommandInput,
136
+ ListServiceNetworksCommandOutput,
137
+ } from "./commands/ListServiceNetworksCommand";
138
+ import {
139
+ ListServiceNetworkServiceAssociationsCommandInput,
140
+ ListServiceNetworkServiceAssociationsCommandOutput,
141
+ } from "./commands/ListServiceNetworkServiceAssociationsCommand";
142
+ import {
143
+ ListServiceNetworkVpcAssociationsCommandInput,
144
+ ListServiceNetworkVpcAssociationsCommandOutput,
145
+ } from "./commands/ListServiceNetworkVpcAssociationsCommand";
146
+ import {
147
+ ListServicesCommandInput,
148
+ ListServicesCommandOutput,
149
+ } from "./commands/ListServicesCommand";
150
+ import {
151
+ ListTagsForResourceCommandInput,
152
+ ListTagsForResourceCommandOutput,
153
+ } from "./commands/ListTagsForResourceCommand";
154
+ import {
155
+ ListTargetGroupsCommandInput,
156
+ ListTargetGroupsCommandOutput,
157
+ } from "./commands/ListTargetGroupsCommand";
158
+ import {
159
+ ListTargetsCommandInput,
160
+ ListTargetsCommandOutput,
161
+ } from "./commands/ListTargetsCommand";
162
+ import {
163
+ PutAuthPolicyCommandInput,
164
+ PutAuthPolicyCommandOutput,
165
+ } from "./commands/PutAuthPolicyCommand";
166
+ import {
167
+ PutResourcePolicyCommandInput,
168
+ PutResourcePolicyCommandOutput,
169
+ } from "./commands/PutResourcePolicyCommand";
170
+ import {
171
+ RegisterTargetsCommandInput,
172
+ RegisterTargetsCommandOutput,
173
+ } from "./commands/RegisterTargetsCommand";
174
+ import {
175
+ TagResourceCommandInput,
176
+ TagResourceCommandOutput,
177
+ } from "./commands/TagResourceCommand";
178
+ import {
179
+ UntagResourceCommandInput,
180
+ UntagResourceCommandOutput,
181
+ } from "./commands/UntagResourceCommand";
182
+ import {
183
+ UpdateAccessLogSubscriptionCommandInput,
184
+ UpdateAccessLogSubscriptionCommandOutput,
185
+ } from "./commands/UpdateAccessLogSubscriptionCommand";
186
+ import {
187
+ UpdateListenerCommandInput,
188
+ UpdateListenerCommandOutput,
189
+ } from "./commands/UpdateListenerCommand";
190
+ import {
191
+ UpdateRuleCommandInput,
192
+ UpdateRuleCommandOutput,
193
+ } from "./commands/UpdateRuleCommand";
194
+ import {
195
+ UpdateServiceCommandInput,
196
+ UpdateServiceCommandOutput,
197
+ } from "./commands/UpdateServiceCommand";
198
+ import {
199
+ UpdateServiceNetworkCommandInput,
200
+ UpdateServiceNetworkCommandOutput,
201
+ } from "./commands/UpdateServiceNetworkCommand";
202
+ import {
203
+ UpdateServiceNetworkVpcAssociationCommandInput,
204
+ UpdateServiceNetworkVpcAssociationCommandOutput,
205
+ } from "./commands/UpdateServiceNetworkVpcAssociationCommand";
206
+ import {
207
+ UpdateTargetGroupCommandInput,
208
+ UpdateTargetGroupCommandOutput,
209
+ } from "./commands/UpdateTargetGroupCommand";
210
+ import { VPCLatticeClient } from "./VPCLatticeClient";
211
+ export declare class VPCLattice extends VPCLatticeClient {
212
+ batchUpdateRule(
213
+ args: BatchUpdateRuleCommandInput,
214
+ options?: __HttpHandlerOptions
215
+ ): Promise<BatchUpdateRuleCommandOutput>;
216
+ batchUpdateRule(
217
+ args: BatchUpdateRuleCommandInput,
218
+ cb: (err: any, data?: BatchUpdateRuleCommandOutput) => void
219
+ ): void;
220
+ batchUpdateRule(
221
+ args: BatchUpdateRuleCommandInput,
222
+ options: __HttpHandlerOptions,
223
+ cb: (err: any, data?: BatchUpdateRuleCommandOutput) => void
224
+ ): void;
225
+ createAccessLogSubscription(
226
+ args: CreateAccessLogSubscriptionCommandInput,
227
+ options?: __HttpHandlerOptions
228
+ ): Promise<CreateAccessLogSubscriptionCommandOutput>;
229
+ createAccessLogSubscription(
230
+ args: CreateAccessLogSubscriptionCommandInput,
231
+ cb: (err: any, data?: CreateAccessLogSubscriptionCommandOutput) => void
232
+ ): void;
233
+ createAccessLogSubscription(
234
+ args: CreateAccessLogSubscriptionCommandInput,
235
+ options: __HttpHandlerOptions,
236
+ cb: (err: any, data?: CreateAccessLogSubscriptionCommandOutput) => void
237
+ ): void;
238
+ createListener(
239
+ args: CreateListenerCommandInput,
240
+ options?: __HttpHandlerOptions
241
+ ): Promise<CreateListenerCommandOutput>;
242
+ createListener(
243
+ args: CreateListenerCommandInput,
244
+ cb: (err: any, data?: CreateListenerCommandOutput) => void
245
+ ): void;
246
+ createListener(
247
+ args: CreateListenerCommandInput,
248
+ options: __HttpHandlerOptions,
249
+ cb: (err: any, data?: CreateListenerCommandOutput) => void
250
+ ): void;
251
+ createRule(
252
+ args: CreateRuleCommandInput,
253
+ options?: __HttpHandlerOptions
254
+ ): Promise<CreateRuleCommandOutput>;
255
+ createRule(
256
+ args: CreateRuleCommandInput,
257
+ cb: (err: any, data?: CreateRuleCommandOutput) => void
258
+ ): void;
259
+ createRule(
260
+ args: CreateRuleCommandInput,
261
+ options: __HttpHandlerOptions,
262
+ cb: (err: any, data?: CreateRuleCommandOutput) => void
263
+ ): void;
264
+ createService(
265
+ args: CreateServiceCommandInput,
266
+ options?: __HttpHandlerOptions
267
+ ): Promise<CreateServiceCommandOutput>;
268
+ createService(
269
+ args: CreateServiceCommandInput,
270
+ cb: (err: any, data?: CreateServiceCommandOutput) => void
271
+ ): void;
272
+ createService(
273
+ args: CreateServiceCommandInput,
274
+ options: __HttpHandlerOptions,
275
+ cb: (err: any, data?: CreateServiceCommandOutput) => void
276
+ ): void;
277
+ createServiceNetwork(
278
+ args: CreateServiceNetworkCommandInput,
279
+ options?: __HttpHandlerOptions
280
+ ): Promise<CreateServiceNetworkCommandOutput>;
281
+ createServiceNetwork(
282
+ args: CreateServiceNetworkCommandInput,
283
+ cb: (err: any, data?: CreateServiceNetworkCommandOutput) => void
284
+ ): void;
285
+ createServiceNetwork(
286
+ args: CreateServiceNetworkCommandInput,
287
+ options: __HttpHandlerOptions,
288
+ cb: (err: any, data?: CreateServiceNetworkCommandOutput) => void
289
+ ): void;
290
+ createServiceNetworkServiceAssociation(
291
+ args: CreateServiceNetworkServiceAssociationCommandInput,
292
+ options?: __HttpHandlerOptions
293
+ ): Promise<CreateServiceNetworkServiceAssociationCommandOutput>;
294
+ createServiceNetworkServiceAssociation(
295
+ args: CreateServiceNetworkServiceAssociationCommandInput,
296
+ cb: (
297
+ err: any,
298
+ data?: CreateServiceNetworkServiceAssociationCommandOutput
299
+ ) => void
300
+ ): void;
301
+ createServiceNetworkServiceAssociation(
302
+ args: CreateServiceNetworkServiceAssociationCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (
305
+ err: any,
306
+ data?: CreateServiceNetworkServiceAssociationCommandOutput
307
+ ) => void
308
+ ): void;
309
+ createServiceNetworkVpcAssociation(
310
+ args: CreateServiceNetworkVpcAssociationCommandInput,
311
+ options?: __HttpHandlerOptions
312
+ ): Promise<CreateServiceNetworkVpcAssociationCommandOutput>;
313
+ createServiceNetworkVpcAssociation(
314
+ args: CreateServiceNetworkVpcAssociationCommandInput,
315
+ cb: (
316
+ err: any,
317
+ data?: CreateServiceNetworkVpcAssociationCommandOutput
318
+ ) => void
319
+ ): void;
320
+ createServiceNetworkVpcAssociation(
321
+ args: CreateServiceNetworkVpcAssociationCommandInput,
322
+ options: __HttpHandlerOptions,
323
+ cb: (
324
+ err: any,
325
+ data?: CreateServiceNetworkVpcAssociationCommandOutput
326
+ ) => void
327
+ ): void;
328
+ createTargetGroup(
329
+ args: CreateTargetGroupCommandInput,
330
+ options?: __HttpHandlerOptions
331
+ ): Promise<CreateTargetGroupCommandOutput>;
332
+ createTargetGroup(
333
+ args: CreateTargetGroupCommandInput,
334
+ cb: (err: any, data?: CreateTargetGroupCommandOutput) => void
335
+ ): void;
336
+ createTargetGroup(
337
+ args: CreateTargetGroupCommandInput,
338
+ options: __HttpHandlerOptions,
339
+ cb: (err: any, data?: CreateTargetGroupCommandOutput) => void
340
+ ): void;
341
+ deleteAccessLogSubscription(
342
+ args: DeleteAccessLogSubscriptionCommandInput,
343
+ options?: __HttpHandlerOptions
344
+ ): Promise<DeleteAccessLogSubscriptionCommandOutput>;
345
+ deleteAccessLogSubscription(
346
+ args: DeleteAccessLogSubscriptionCommandInput,
347
+ cb: (err: any, data?: DeleteAccessLogSubscriptionCommandOutput) => void
348
+ ): void;
349
+ deleteAccessLogSubscription(
350
+ args: DeleteAccessLogSubscriptionCommandInput,
351
+ options: __HttpHandlerOptions,
352
+ cb: (err: any, data?: DeleteAccessLogSubscriptionCommandOutput) => void
353
+ ): void;
354
+ deleteAuthPolicy(
355
+ args: DeleteAuthPolicyCommandInput,
356
+ options?: __HttpHandlerOptions
357
+ ): Promise<DeleteAuthPolicyCommandOutput>;
358
+ deleteAuthPolicy(
359
+ args: DeleteAuthPolicyCommandInput,
360
+ cb: (err: any, data?: DeleteAuthPolicyCommandOutput) => void
361
+ ): void;
362
+ deleteAuthPolicy(
363
+ args: DeleteAuthPolicyCommandInput,
364
+ options: __HttpHandlerOptions,
365
+ cb: (err: any, data?: DeleteAuthPolicyCommandOutput) => void
366
+ ): void;
367
+ deleteListener(
368
+ args: DeleteListenerCommandInput,
369
+ options?: __HttpHandlerOptions
370
+ ): Promise<DeleteListenerCommandOutput>;
371
+ deleteListener(
372
+ args: DeleteListenerCommandInput,
373
+ cb: (err: any, data?: DeleteListenerCommandOutput) => void
374
+ ): void;
375
+ deleteListener(
376
+ args: DeleteListenerCommandInput,
377
+ options: __HttpHandlerOptions,
378
+ cb: (err: any, data?: DeleteListenerCommandOutput) => void
379
+ ): void;
380
+ deleteResourcePolicy(
381
+ args: DeleteResourcePolicyCommandInput,
382
+ options?: __HttpHandlerOptions
383
+ ): Promise<DeleteResourcePolicyCommandOutput>;
384
+ deleteResourcePolicy(
385
+ args: DeleteResourcePolicyCommandInput,
386
+ cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
387
+ ): void;
388
+ deleteResourcePolicy(
389
+ args: DeleteResourcePolicyCommandInput,
390
+ options: __HttpHandlerOptions,
391
+ cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
392
+ ): void;
393
+ deleteRule(
394
+ args: DeleteRuleCommandInput,
395
+ options?: __HttpHandlerOptions
396
+ ): Promise<DeleteRuleCommandOutput>;
397
+ deleteRule(
398
+ args: DeleteRuleCommandInput,
399
+ cb: (err: any, data?: DeleteRuleCommandOutput) => void
400
+ ): void;
401
+ deleteRule(
402
+ args: DeleteRuleCommandInput,
403
+ options: __HttpHandlerOptions,
404
+ cb: (err: any, data?: DeleteRuleCommandOutput) => void
405
+ ): void;
406
+ deleteService(
407
+ args: DeleteServiceCommandInput,
408
+ options?: __HttpHandlerOptions
409
+ ): Promise<DeleteServiceCommandOutput>;
410
+ deleteService(
411
+ args: DeleteServiceCommandInput,
412
+ cb: (err: any, data?: DeleteServiceCommandOutput) => void
413
+ ): void;
414
+ deleteService(
415
+ args: DeleteServiceCommandInput,
416
+ options: __HttpHandlerOptions,
417
+ cb: (err: any, data?: DeleteServiceCommandOutput) => void
418
+ ): void;
419
+ deleteServiceNetwork(
420
+ args: DeleteServiceNetworkCommandInput,
421
+ options?: __HttpHandlerOptions
422
+ ): Promise<DeleteServiceNetworkCommandOutput>;
423
+ deleteServiceNetwork(
424
+ args: DeleteServiceNetworkCommandInput,
425
+ cb: (err: any, data?: DeleteServiceNetworkCommandOutput) => void
426
+ ): void;
427
+ deleteServiceNetwork(
428
+ args: DeleteServiceNetworkCommandInput,
429
+ options: __HttpHandlerOptions,
430
+ cb: (err: any, data?: DeleteServiceNetworkCommandOutput) => void
431
+ ): void;
432
+ deleteServiceNetworkServiceAssociation(
433
+ args: DeleteServiceNetworkServiceAssociationCommandInput,
434
+ options?: __HttpHandlerOptions
435
+ ): Promise<DeleteServiceNetworkServiceAssociationCommandOutput>;
436
+ deleteServiceNetworkServiceAssociation(
437
+ args: DeleteServiceNetworkServiceAssociationCommandInput,
438
+ cb: (
439
+ err: any,
440
+ data?: DeleteServiceNetworkServiceAssociationCommandOutput
441
+ ) => void
442
+ ): void;
443
+ deleteServiceNetworkServiceAssociation(
444
+ args: DeleteServiceNetworkServiceAssociationCommandInput,
445
+ options: __HttpHandlerOptions,
446
+ cb: (
447
+ err: any,
448
+ data?: DeleteServiceNetworkServiceAssociationCommandOutput
449
+ ) => void
450
+ ): void;
451
+ deleteServiceNetworkVpcAssociation(
452
+ args: DeleteServiceNetworkVpcAssociationCommandInput,
453
+ options?: __HttpHandlerOptions
454
+ ): Promise<DeleteServiceNetworkVpcAssociationCommandOutput>;
455
+ deleteServiceNetworkVpcAssociation(
456
+ args: DeleteServiceNetworkVpcAssociationCommandInput,
457
+ cb: (
458
+ err: any,
459
+ data?: DeleteServiceNetworkVpcAssociationCommandOutput
460
+ ) => void
461
+ ): void;
462
+ deleteServiceNetworkVpcAssociation(
463
+ args: DeleteServiceNetworkVpcAssociationCommandInput,
464
+ options: __HttpHandlerOptions,
465
+ cb: (
466
+ err: any,
467
+ data?: DeleteServiceNetworkVpcAssociationCommandOutput
468
+ ) => void
469
+ ): void;
470
+ deleteTargetGroup(
471
+ args: DeleteTargetGroupCommandInput,
472
+ options?: __HttpHandlerOptions
473
+ ): Promise<DeleteTargetGroupCommandOutput>;
474
+ deleteTargetGroup(
475
+ args: DeleteTargetGroupCommandInput,
476
+ cb: (err: any, data?: DeleteTargetGroupCommandOutput) => void
477
+ ): void;
478
+ deleteTargetGroup(
479
+ args: DeleteTargetGroupCommandInput,
480
+ options: __HttpHandlerOptions,
481
+ cb: (err: any, data?: DeleteTargetGroupCommandOutput) => void
482
+ ): void;
483
+ deregisterTargets(
484
+ args: DeregisterTargetsCommandInput,
485
+ options?: __HttpHandlerOptions
486
+ ): Promise<DeregisterTargetsCommandOutput>;
487
+ deregisterTargets(
488
+ args: DeregisterTargetsCommandInput,
489
+ cb: (err: any, data?: DeregisterTargetsCommandOutput) => void
490
+ ): void;
491
+ deregisterTargets(
492
+ args: DeregisterTargetsCommandInput,
493
+ options: __HttpHandlerOptions,
494
+ cb: (err: any, data?: DeregisterTargetsCommandOutput) => void
495
+ ): void;
496
+ getAccessLogSubscription(
497
+ args: GetAccessLogSubscriptionCommandInput,
498
+ options?: __HttpHandlerOptions
499
+ ): Promise<GetAccessLogSubscriptionCommandOutput>;
500
+ getAccessLogSubscription(
501
+ args: GetAccessLogSubscriptionCommandInput,
502
+ cb: (err: any, data?: GetAccessLogSubscriptionCommandOutput) => void
503
+ ): void;
504
+ getAccessLogSubscription(
505
+ args: GetAccessLogSubscriptionCommandInput,
506
+ options: __HttpHandlerOptions,
507
+ cb: (err: any, data?: GetAccessLogSubscriptionCommandOutput) => void
508
+ ): void;
509
+ getAuthPolicy(
510
+ args: GetAuthPolicyCommandInput,
511
+ options?: __HttpHandlerOptions
512
+ ): Promise<GetAuthPolicyCommandOutput>;
513
+ getAuthPolicy(
514
+ args: GetAuthPolicyCommandInput,
515
+ cb: (err: any, data?: GetAuthPolicyCommandOutput) => void
516
+ ): void;
517
+ getAuthPolicy(
518
+ args: GetAuthPolicyCommandInput,
519
+ options: __HttpHandlerOptions,
520
+ cb: (err: any, data?: GetAuthPolicyCommandOutput) => void
521
+ ): void;
522
+ getListener(
523
+ args: GetListenerCommandInput,
524
+ options?: __HttpHandlerOptions
525
+ ): Promise<GetListenerCommandOutput>;
526
+ getListener(
527
+ args: GetListenerCommandInput,
528
+ cb: (err: any, data?: GetListenerCommandOutput) => void
529
+ ): void;
530
+ getListener(
531
+ args: GetListenerCommandInput,
532
+ options: __HttpHandlerOptions,
533
+ cb: (err: any, data?: GetListenerCommandOutput) => void
534
+ ): void;
535
+ getResourcePolicy(
536
+ args: GetResourcePolicyCommandInput,
537
+ options?: __HttpHandlerOptions
538
+ ): Promise<GetResourcePolicyCommandOutput>;
539
+ getResourcePolicy(
540
+ args: GetResourcePolicyCommandInput,
541
+ cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
542
+ ): void;
543
+ getResourcePolicy(
544
+ args: GetResourcePolicyCommandInput,
545
+ options: __HttpHandlerOptions,
546
+ cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
547
+ ): void;
548
+ getRule(
549
+ args: GetRuleCommandInput,
550
+ options?: __HttpHandlerOptions
551
+ ): Promise<GetRuleCommandOutput>;
552
+ getRule(
553
+ args: GetRuleCommandInput,
554
+ cb: (err: any, data?: GetRuleCommandOutput) => void
555
+ ): void;
556
+ getRule(
557
+ args: GetRuleCommandInput,
558
+ options: __HttpHandlerOptions,
559
+ cb: (err: any, data?: GetRuleCommandOutput) => void
560
+ ): void;
561
+ getService(
562
+ args: GetServiceCommandInput,
563
+ options?: __HttpHandlerOptions
564
+ ): Promise<GetServiceCommandOutput>;
565
+ getService(
566
+ args: GetServiceCommandInput,
567
+ cb: (err: any, data?: GetServiceCommandOutput) => void
568
+ ): void;
569
+ getService(
570
+ args: GetServiceCommandInput,
571
+ options: __HttpHandlerOptions,
572
+ cb: (err: any, data?: GetServiceCommandOutput) => void
573
+ ): void;
574
+ getServiceNetwork(
575
+ args: GetServiceNetworkCommandInput,
576
+ options?: __HttpHandlerOptions
577
+ ): Promise<GetServiceNetworkCommandOutput>;
578
+ getServiceNetwork(
579
+ args: GetServiceNetworkCommandInput,
580
+ cb: (err: any, data?: GetServiceNetworkCommandOutput) => void
581
+ ): void;
582
+ getServiceNetwork(
583
+ args: GetServiceNetworkCommandInput,
584
+ options: __HttpHandlerOptions,
585
+ cb: (err: any, data?: GetServiceNetworkCommandOutput) => void
586
+ ): void;
587
+ getServiceNetworkServiceAssociation(
588
+ args: GetServiceNetworkServiceAssociationCommandInput,
589
+ options?: __HttpHandlerOptions
590
+ ): Promise<GetServiceNetworkServiceAssociationCommandOutput>;
591
+ getServiceNetworkServiceAssociation(
592
+ args: GetServiceNetworkServiceAssociationCommandInput,
593
+ cb: (
594
+ err: any,
595
+ data?: GetServiceNetworkServiceAssociationCommandOutput
596
+ ) => void
597
+ ): void;
598
+ getServiceNetworkServiceAssociation(
599
+ args: GetServiceNetworkServiceAssociationCommandInput,
600
+ options: __HttpHandlerOptions,
601
+ cb: (
602
+ err: any,
603
+ data?: GetServiceNetworkServiceAssociationCommandOutput
604
+ ) => void
605
+ ): void;
606
+ getServiceNetworkVpcAssociation(
607
+ args: GetServiceNetworkVpcAssociationCommandInput,
608
+ options?: __HttpHandlerOptions
609
+ ): Promise<GetServiceNetworkVpcAssociationCommandOutput>;
610
+ getServiceNetworkVpcAssociation(
611
+ args: GetServiceNetworkVpcAssociationCommandInput,
612
+ cb: (err: any, data?: GetServiceNetworkVpcAssociationCommandOutput) => void
613
+ ): void;
614
+ getServiceNetworkVpcAssociation(
615
+ args: GetServiceNetworkVpcAssociationCommandInput,
616
+ options: __HttpHandlerOptions,
617
+ cb: (err: any, data?: GetServiceNetworkVpcAssociationCommandOutput) => void
618
+ ): void;
619
+ getTargetGroup(
620
+ args: GetTargetGroupCommandInput,
621
+ options?: __HttpHandlerOptions
622
+ ): Promise<GetTargetGroupCommandOutput>;
623
+ getTargetGroup(
624
+ args: GetTargetGroupCommandInput,
625
+ cb: (err: any, data?: GetTargetGroupCommandOutput) => void
626
+ ): void;
627
+ getTargetGroup(
628
+ args: GetTargetGroupCommandInput,
629
+ options: __HttpHandlerOptions,
630
+ cb: (err: any, data?: GetTargetGroupCommandOutput) => void
631
+ ): void;
632
+ listAccessLogSubscriptions(
633
+ args: ListAccessLogSubscriptionsCommandInput,
634
+ options?: __HttpHandlerOptions
635
+ ): Promise<ListAccessLogSubscriptionsCommandOutput>;
636
+ listAccessLogSubscriptions(
637
+ args: ListAccessLogSubscriptionsCommandInput,
638
+ cb: (err: any, data?: ListAccessLogSubscriptionsCommandOutput) => void
639
+ ): void;
640
+ listAccessLogSubscriptions(
641
+ args: ListAccessLogSubscriptionsCommandInput,
642
+ options: __HttpHandlerOptions,
643
+ cb: (err: any, data?: ListAccessLogSubscriptionsCommandOutput) => void
644
+ ): void;
645
+ listListeners(
646
+ args: ListListenersCommandInput,
647
+ options?: __HttpHandlerOptions
648
+ ): Promise<ListListenersCommandOutput>;
649
+ listListeners(
650
+ args: ListListenersCommandInput,
651
+ cb: (err: any, data?: ListListenersCommandOutput) => void
652
+ ): void;
653
+ listListeners(
654
+ args: ListListenersCommandInput,
655
+ options: __HttpHandlerOptions,
656
+ cb: (err: any, data?: ListListenersCommandOutput) => void
657
+ ): void;
658
+ listRules(
659
+ args: ListRulesCommandInput,
660
+ options?: __HttpHandlerOptions
661
+ ): Promise<ListRulesCommandOutput>;
662
+ listRules(
663
+ args: ListRulesCommandInput,
664
+ cb: (err: any, data?: ListRulesCommandOutput) => void
665
+ ): void;
666
+ listRules(
667
+ args: ListRulesCommandInput,
668
+ options: __HttpHandlerOptions,
669
+ cb: (err: any, data?: ListRulesCommandOutput) => void
670
+ ): void;
671
+ listServiceNetworks(
672
+ args: ListServiceNetworksCommandInput,
673
+ options?: __HttpHandlerOptions
674
+ ): Promise<ListServiceNetworksCommandOutput>;
675
+ listServiceNetworks(
676
+ args: ListServiceNetworksCommandInput,
677
+ cb: (err: any, data?: ListServiceNetworksCommandOutput) => void
678
+ ): void;
679
+ listServiceNetworks(
680
+ args: ListServiceNetworksCommandInput,
681
+ options: __HttpHandlerOptions,
682
+ cb: (err: any, data?: ListServiceNetworksCommandOutput) => void
683
+ ): void;
684
+ listServiceNetworkServiceAssociations(
685
+ args: ListServiceNetworkServiceAssociationsCommandInput,
686
+ options?: __HttpHandlerOptions
687
+ ): Promise<ListServiceNetworkServiceAssociationsCommandOutput>;
688
+ listServiceNetworkServiceAssociations(
689
+ args: ListServiceNetworkServiceAssociationsCommandInput,
690
+ cb: (
691
+ err: any,
692
+ data?: ListServiceNetworkServiceAssociationsCommandOutput
693
+ ) => void
694
+ ): void;
695
+ listServiceNetworkServiceAssociations(
696
+ args: ListServiceNetworkServiceAssociationsCommandInput,
697
+ options: __HttpHandlerOptions,
698
+ cb: (
699
+ err: any,
700
+ data?: ListServiceNetworkServiceAssociationsCommandOutput
701
+ ) => void
702
+ ): void;
703
+ listServiceNetworkVpcAssociations(
704
+ args: ListServiceNetworkVpcAssociationsCommandInput,
705
+ options?: __HttpHandlerOptions
706
+ ): Promise<ListServiceNetworkVpcAssociationsCommandOutput>;
707
+ listServiceNetworkVpcAssociations(
708
+ args: ListServiceNetworkVpcAssociationsCommandInput,
709
+ cb: (
710
+ err: any,
711
+ data?: ListServiceNetworkVpcAssociationsCommandOutput
712
+ ) => void
713
+ ): void;
714
+ listServiceNetworkVpcAssociations(
715
+ args: ListServiceNetworkVpcAssociationsCommandInput,
716
+ options: __HttpHandlerOptions,
717
+ cb: (
718
+ err: any,
719
+ data?: ListServiceNetworkVpcAssociationsCommandOutput
720
+ ) => void
721
+ ): void;
722
+ listServices(
723
+ args: ListServicesCommandInput,
724
+ options?: __HttpHandlerOptions
725
+ ): Promise<ListServicesCommandOutput>;
726
+ listServices(
727
+ args: ListServicesCommandInput,
728
+ cb: (err: any, data?: ListServicesCommandOutput) => void
729
+ ): void;
730
+ listServices(
731
+ args: ListServicesCommandInput,
732
+ options: __HttpHandlerOptions,
733
+ cb: (err: any, data?: ListServicesCommandOutput) => void
734
+ ): void;
735
+ listTagsForResource(
736
+ args: ListTagsForResourceCommandInput,
737
+ options?: __HttpHandlerOptions
738
+ ): Promise<ListTagsForResourceCommandOutput>;
739
+ listTagsForResource(
740
+ args: ListTagsForResourceCommandInput,
741
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
742
+ ): void;
743
+ listTagsForResource(
744
+ args: ListTagsForResourceCommandInput,
745
+ options: __HttpHandlerOptions,
746
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
747
+ ): void;
748
+ listTargetGroups(
749
+ args: ListTargetGroupsCommandInput,
750
+ options?: __HttpHandlerOptions
751
+ ): Promise<ListTargetGroupsCommandOutput>;
752
+ listTargetGroups(
753
+ args: ListTargetGroupsCommandInput,
754
+ cb: (err: any, data?: ListTargetGroupsCommandOutput) => void
755
+ ): void;
756
+ listTargetGroups(
757
+ args: ListTargetGroupsCommandInput,
758
+ options: __HttpHandlerOptions,
759
+ cb: (err: any, data?: ListTargetGroupsCommandOutput) => void
760
+ ): void;
761
+ listTargets(
762
+ args: ListTargetsCommandInput,
763
+ options?: __HttpHandlerOptions
764
+ ): Promise<ListTargetsCommandOutput>;
765
+ listTargets(
766
+ args: ListTargetsCommandInput,
767
+ cb: (err: any, data?: ListTargetsCommandOutput) => void
768
+ ): void;
769
+ listTargets(
770
+ args: ListTargetsCommandInput,
771
+ options: __HttpHandlerOptions,
772
+ cb: (err: any, data?: ListTargetsCommandOutput) => void
773
+ ): void;
774
+ putAuthPolicy(
775
+ args: PutAuthPolicyCommandInput,
776
+ options?: __HttpHandlerOptions
777
+ ): Promise<PutAuthPolicyCommandOutput>;
778
+ putAuthPolicy(
779
+ args: PutAuthPolicyCommandInput,
780
+ cb: (err: any, data?: PutAuthPolicyCommandOutput) => void
781
+ ): void;
782
+ putAuthPolicy(
783
+ args: PutAuthPolicyCommandInput,
784
+ options: __HttpHandlerOptions,
785
+ cb: (err: any, data?: PutAuthPolicyCommandOutput) => void
786
+ ): void;
787
+ putResourcePolicy(
788
+ args: PutResourcePolicyCommandInput,
789
+ options?: __HttpHandlerOptions
790
+ ): Promise<PutResourcePolicyCommandOutput>;
791
+ putResourcePolicy(
792
+ args: PutResourcePolicyCommandInput,
793
+ cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
794
+ ): void;
795
+ putResourcePolicy(
796
+ args: PutResourcePolicyCommandInput,
797
+ options: __HttpHandlerOptions,
798
+ cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
799
+ ): void;
800
+ registerTargets(
801
+ args: RegisterTargetsCommandInput,
802
+ options?: __HttpHandlerOptions
803
+ ): Promise<RegisterTargetsCommandOutput>;
804
+ registerTargets(
805
+ args: RegisterTargetsCommandInput,
806
+ cb: (err: any, data?: RegisterTargetsCommandOutput) => void
807
+ ): void;
808
+ registerTargets(
809
+ args: RegisterTargetsCommandInput,
810
+ options: __HttpHandlerOptions,
811
+ cb: (err: any, data?: RegisterTargetsCommandOutput) => void
812
+ ): void;
813
+ tagResource(
814
+ args: TagResourceCommandInput,
815
+ options?: __HttpHandlerOptions
816
+ ): Promise<TagResourceCommandOutput>;
817
+ tagResource(
818
+ args: TagResourceCommandInput,
819
+ cb: (err: any, data?: TagResourceCommandOutput) => void
820
+ ): void;
821
+ tagResource(
822
+ args: TagResourceCommandInput,
823
+ options: __HttpHandlerOptions,
824
+ cb: (err: any, data?: TagResourceCommandOutput) => void
825
+ ): void;
826
+ untagResource(
827
+ args: UntagResourceCommandInput,
828
+ options?: __HttpHandlerOptions
829
+ ): Promise<UntagResourceCommandOutput>;
830
+ untagResource(
831
+ args: UntagResourceCommandInput,
832
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
833
+ ): void;
834
+ untagResource(
835
+ args: UntagResourceCommandInput,
836
+ options: __HttpHandlerOptions,
837
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
838
+ ): void;
839
+ updateAccessLogSubscription(
840
+ args: UpdateAccessLogSubscriptionCommandInput,
841
+ options?: __HttpHandlerOptions
842
+ ): Promise<UpdateAccessLogSubscriptionCommandOutput>;
843
+ updateAccessLogSubscription(
844
+ args: UpdateAccessLogSubscriptionCommandInput,
845
+ cb: (err: any, data?: UpdateAccessLogSubscriptionCommandOutput) => void
846
+ ): void;
847
+ updateAccessLogSubscription(
848
+ args: UpdateAccessLogSubscriptionCommandInput,
849
+ options: __HttpHandlerOptions,
850
+ cb: (err: any, data?: UpdateAccessLogSubscriptionCommandOutput) => void
851
+ ): void;
852
+ updateListener(
853
+ args: UpdateListenerCommandInput,
854
+ options?: __HttpHandlerOptions
855
+ ): Promise<UpdateListenerCommandOutput>;
856
+ updateListener(
857
+ args: UpdateListenerCommandInput,
858
+ cb: (err: any, data?: UpdateListenerCommandOutput) => void
859
+ ): void;
860
+ updateListener(
861
+ args: UpdateListenerCommandInput,
862
+ options: __HttpHandlerOptions,
863
+ cb: (err: any, data?: UpdateListenerCommandOutput) => void
864
+ ): void;
865
+ updateRule(
866
+ args: UpdateRuleCommandInput,
867
+ options?: __HttpHandlerOptions
868
+ ): Promise<UpdateRuleCommandOutput>;
869
+ updateRule(
870
+ args: UpdateRuleCommandInput,
871
+ cb: (err: any, data?: UpdateRuleCommandOutput) => void
872
+ ): void;
873
+ updateRule(
874
+ args: UpdateRuleCommandInput,
875
+ options: __HttpHandlerOptions,
876
+ cb: (err: any, data?: UpdateRuleCommandOutput) => void
877
+ ): void;
878
+ updateService(
879
+ args: UpdateServiceCommandInput,
880
+ options?: __HttpHandlerOptions
881
+ ): Promise<UpdateServiceCommandOutput>;
882
+ updateService(
883
+ args: UpdateServiceCommandInput,
884
+ cb: (err: any, data?: UpdateServiceCommandOutput) => void
885
+ ): void;
886
+ updateService(
887
+ args: UpdateServiceCommandInput,
888
+ options: __HttpHandlerOptions,
889
+ cb: (err: any, data?: UpdateServiceCommandOutput) => void
890
+ ): void;
891
+ updateServiceNetwork(
892
+ args: UpdateServiceNetworkCommandInput,
893
+ options?: __HttpHandlerOptions
894
+ ): Promise<UpdateServiceNetworkCommandOutput>;
895
+ updateServiceNetwork(
896
+ args: UpdateServiceNetworkCommandInput,
897
+ cb: (err: any, data?: UpdateServiceNetworkCommandOutput) => void
898
+ ): void;
899
+ updateServiceNetwork(
900
+ args: UpdateServiceNetworkCommandInput,
901
+ options: __HttpHandlerOptions,
902
+ cb: (err: any, data?: UpdateServiceNetworkCommandOutput) => void
903
+ ): void;
904
+ updateServiceNetworkVpcAssociation(
905
+ args: UpdateServiceNetworkVpcAssociationCommandInput,
906
+ options?: __HttpHandlerOptions
907
+ ): Promise<UpdateServiceNetworkVpcAssociationCommandOutput>;
908
+ updateServiceNetworkVpcAssociation(
909
+ args: UpdateServiceNetworkVpcAssociationCommandInput,
910
+ cb: (
911
+ err: any,
912
+ data?: UpdateServiceNetworkVpcAssociationCommandOutput
913
+ ) => void
914
+ ): void;
915
+ updateServiceNetworkVpcAssociation(
916
+ args: UpdateServiceNetworkVpcAssociationCommandInput,
917
+ options: __HttpHandlerOptions,
918
+ cb: (
919
+ err: any,
920
+ data?: UpdateServiceNetworkVpcAssociationCommandOutput
921
+ ) => void
922
+ ): void;
923
+ updateTargetGroup(
924
+ args: UpdateTargetGroupCommandInput,
925
+ options?: __HttpHandlerOptions
926
+ ): Promise<UpdateTargetGroupCommandOutput>;
927
+ updateTargetGroup(
928
+ args: UpdateTargetGroupCommandInput,
929
+ cb: (err: any, data?: UpdateTargetGroupCommandOutput) => void
930
+ ): void;
931
+ updateTargetGroup(
932
+ args: UpdateTargetGroupCommandInput,
933
+ options: __HttpHandlerOptions,
934
+ cb: (err: any, data?: UpdateTargetGroupCommandOutput) => void
935
+ ): void;
936
+ }