@aws-sdk/client-proton 3.34.0 → 3.37.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 (854) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/dist-cjs/Proton.js +742 -0
  3. package/dist-cjs/ProtonClient.js +35 -0
  4. package/dist-cjs/commands/AcceptEnvironmentAccountConnectionCommand.js +36 -0
  5. package/dist-cjs/commands/CancelEnvironmentDeploymentCommand.js +36 -0
  6. package/dist-cjs/commands/CancelServiceInstanceDeploymentCommand.js +36 -0
  7. package/dist-cjs/commands/CancelServicePipelineDeploymentCommand.js +36 -0
  8. package/dist-cjs/commands/CreateEnvironmentAccountConnectionCommand.js +36 -0
  9. package/dist-cjs/commands/CreateEnvironmentCommand.js +36 -0
  10. package/dist-cjs/commands/CreateEnvironmentTemplateCommand.js +36 -0
  11. package/dist-cjs/commands/CreateEnvironmentTemplateVersionCommand.js +36 -0
  12. package/dist-cjs/commands/CreateServiceCommand.js +36 -0
  13. package/dist-cjs/commands/CreateServiceTemplateCommand.js +36 -0
  14. package/dist-cjs/commands/CreateServiceTemplateVersionCommand.js +36 -0
  15. package/dist-cjs/commands/DeleteEnvironmentAccountConnectionCommand.js +36 -0
  16. package/dist-cjs/commands/DeleteEnvironmentCommand.js +36 -0
  17. package/dist-cjs/commands/DeleteEnvironmentTemplateCommand.js +36 -0
  18. package/dist-cjs/commands/DeleteEnvironmentTemplateVersionCommand.js +36 -0
  19. package/dist-cjs/commands/DeleteServiceCommand.js +36 -0
  20. package/dist-cjs/commands/DeleteServiceTemplateCommand.js +36 -0
  21. package/dist-cjs/commands/DeleteServiceTemplateVersionCommand.js +36 -0
  22. package/dist-cjs/commands/GetAccountSettingsCommand.js +36 -0
  23. package/dist-cjs/commands/GetEnvironmentAccountConnectionCommand.js +36 -0
  24. package/dist-cjs/commands/GetEnvironmentCommand.js +36 -0
  25. package/dist-cjs/commands/GetEnvironmentTemplateCommand.js +36 -0
  26. package/dist-cjs/commands/GetEnvironmentTemplateVersionCommand.js +36 -0
  27. package/dist-cjs/commands/GetServiceCommand.js +36 -0
  28. package/dist-cjs/commands/GetServiceInstanceCommand.js +36 -0
  29. package/dist-cjs/commands/GetServiceTemplateCommand.js +36 -0
  30. package/dist-cjs/commands/GetServiceTemplateVersionCommand.js +36 -0
  31. package/dist-cjs/commands/ListEnvironmentAccountConnectionsCommand.js +36 -0
  32. package/dist-cjs/commands/ListEnvironmentTemplateVersionsCommand.js +36 -0
  33. package/dist-cjs/commands/ListEnvironmentTemplatesCommand.js +36 -0
  34. package/dist-cjs/commands/ListEnvironmentsCommand.js +36 -0
  35. package/dist-cjs/commands/ListServiceInstancesCommand.js +36 -0
  36. package/dist-cjs/commands/ListServiceTemplateVersionsCommand.js +36 -0
  37. package/dist-cjs/commands/ListServiceTemplatesCommand.js +36 -0
  38. package/dist-cjs/commands/ListServicesCommand.js +36 -0
  39. package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
  40. package/dist-cjs/commands/RejectEnvironmentAccountConnectionCommand.js +36 -0
  41. package/dist-cjs/commands/TagResourceCommand.js +36 -0
  42. package/dist-cjs/commands/UntagResourceCommand.js +36 -0
  43. package/dist-cjs/commands/UpdateAccountSettingsCommand.js +36 -0
  44. package/dist-cjs/commands/UpdateEnvironmentAccountConnectionCommand.js +36 -0
  45. package/dist-cjs/commands/UpdateEnvironmentCommand.js +36 -0
  46. package/dist-cjs/commands/UpdateEnvironmentTemplateCommand.js +36 -0
  47. package/dist-cjs/commands/UpdateEnvironmentTemplateVersionCommand.js +36 -0
  48. package/dist-cjs/commands/UpdateServiceCommand.js +36 -0
  49. package/dist-cjs/commands/UpdateServiceInstanceCommand.js +36 -0
  50. package/dist-cjs/commands/UpdateServicePipelineCommand.js +36 -0
  51. package/dist-cjs/commands/UpdateServiceTemplateCommand.js +36 -0
  52. package/dist-cjs/commands/UpdateServiceTemplateVersionCommand.js +36 -0
  53. package/dist-cjs/endpoints.js +56 -0
  54. package/dist-cjs/index.js +73 -0
  55. package/dist-cjs/models/index.js +4 -0
  56. package/dist-cjs/models/models_0.js +981 -0
  57. package/dist-cjs/pagination/Interfaces.js +2 -0
  58. package/dist-cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js +35 -0
  59. package/dist-cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js +35 -0
  60. package/dist-cjs/pagination/ListEnvironmentTemplatesPaginator.js +35 -0
  61. package/dist-cjs/pagination/ListEnvironmentsPaginator.js +35 -0
  62. package/dist-cjs/pagination/ListServiceInstancesPaginator.js +35 -0
  63. package/dist-cjs/pagination/ListServiceTemplateVersionsPaginator.js +35 -0
  64. package/dist-cjs/pagination/ListServiceTemplatesPaginator.js +35 -0
  65. package/dist-cjs/pagination/ListServicesPaginator.js +35 -0
  66. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +35 -0
  67. package/dist-cjs/protocols/Aws_json1_0.js +6064 -0
  68. package/dist-cjs/runtimeConfig.browser.js +37 -0
  69. package/dist-cjs/runtimeConfig.js +42 -0
  70. package/dist-cjs/runtimeConfig.native.js +16 -0
  71. package/dist-cjs/runtimeConfig.shared.js +17 -0
  72. package/dist-cjs/waiters/waitForEnvironmentDeployed.js +45 -0
  73. package/dist-cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js +54 -0
  74. package/dist-cjs/waiters/waitForServiceCreated.js +63 -0
  75. package/dist-cjs/waiters/waitForServiceDeleted.js +39 -0
  76. package/dist-cjs/waiters/waitForServiceInstanceDeployed.js +45 -0
  77. package/dist-cjs/waiters/waitForServicePipelineDeployed.js +45 -0
  78. package/dist-cjs/waiters/waitForServiceTemplateVersionRegistered.js +54 -0
  79. package/dist-cjs/waiters/waitForServiceUpdated.js +72 -0
  80. package/dist-es/Proton.js +745 -0
  81. package/dist-es/ProtonClient.js +37 -0
  82. package/dist-es/commands/AcceptEnvironmentAccountConnectionCommand.js +39 -0
  83. package/dist-es/commands/CancelEnvironmentDeploymentCommand.js +39 -0
  84. package/dist-es/commands/CancelServiceInstanceDeploymentCommand.js +39 -0
  85. package/dist-es/commands/CancelServicePipelineDeploymentCommand.js +39 -0
  86. package/dist-es/commands/CreateEnvironmentAccountConnectionCommand.js +39 -0
  87. package/dist-es/commands/CreateEnvironmentCommand.js +39 -0
  88. package/dist-es/commands/CreateEnvironmentTemplateCommand.js +39 -0
  89. package/dist-es/commands/CreateEnvironmentTemplateVersionCommand.js +39 -0
  90. package/dist-es/commands/CreateServiceCommand.js +39 -0
  91. package/dist-es/commands/CreateServiceTemplateCommand.js +39 -0
  92. package/dist-es/commands/CreateServiceTemplateVersionCommand.js +39 -0
  93. package/dist-es/commands/DeleteEnvironmentAccountConnectionCommand.js +39 -0
  94. package/dist-es/commands/DeleteEnvironmentCommand.js +39 -0
  95. package/dist-es/commands/DeleteEnvironmentTemplateCommand.js +39 -0
  96. package/dist-es/commands/DeleteEnvironmentTemplateVersionCommand.js +39 -0
  97. package/dist-es/commands/DeleteServiceCommand.js +39 -0
  98. package/dist-es/commands/DeleteServiceTemplateCommand.js +39 -0
  99. package/dist-es/commands/DeleteServiceTemplateVersionCommand.js +39 -0
  100. package/dist-es/commands/GetAccountSettingsCommand.js +39 -0
  101. package/dist-es/commands/GetEnvironmentAccountConnectionCommand.js +39 -0
  102. package/dist-es/commands/GetEnvironmentCommand.js +39 -0
  103. package/dist-es/commands/GetEnvironmentTemplateCommand.js +39 -0
  104. package/dist-es/commands/GetEnvironmentTemplateVersionCommand.js +39 -0
  105. package/dist-es/commands/GetServiceCommand.js +39 -0
  106. package/dist-es/commands/GetServiceInstanceCommand.js +39 -0
  107. package/dist-es/commands/GetServiceTemplateCommand.js +39 -0
  108. package/dist-es/commands/GetServiceTemplateVersionCommand.js +39 -0
  109. package/dist-es/commands/ListEnvironmentAccountConnectionsCommand.js +39 -0
  110. package/dist-es/commands/ListEnvironmentTemplateVersionsCommand.js +39 -0
  111. package/dist-es/commands/ListEnvironmentTemplatesCommand.js +39 -0
  112. package/dist-es/commands/ListEnvironmentsCommand.js +39 -0
  113. package/dist-es/commands/ListServiceInstancesCommand.js +39 -0
  114. package/dist-es/commands/ListServiceTemplateVersionsCommand.js +39 -0
  115. package/dist-es/commands/ListServiceTemplatesCommand.js +39 -0
  116. package/dist-es/commands/ListServicesCommand.js +39 -0
  117. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  118. package/dist-es/commands/RejectEnvironmentAccountConnectionCommand.js +39 -0
  119. package/dist-es/commands/TagResourceCommand.js +39 -0
  120. package/dist-es/commands/UntagResourceCommand.js +39 -0
  121. package/dist-es/commands/UpdateAccountSettingsCommand.js +39 -0
  122. package/dist-es/commands/UpdateEnvironmentAccountConnectionCommand.js +39 -0
  123. package/dist-es/commands/UpdateEnvironmentCommand.js +39 -0
  124. package/dist-es/commands/UpdateEnvironmentTemplateCommand.js +39 -0
  125. package/dist-es/commands/UpdateEnvironmentTemplateVersionCommand.js +39 -0
  126. package/dist-es/commands/UpdateServiceCommand.js +39 -0
  127. package/dist-es/commands/UpdateServiceInstanceCommand.js +39 -0
  128. package/dist-es/commands/UpdateServicePipelineCommand.js +39 -0
  129. package/dist-es/commands/UpdateServiceTemplateCommand.js +39 -0
  130. package/dist-es/commands/UpdateServiceTemplateVersionCommand.js +39 -0
  131. package/dist-es/endpoints.js +52 -0
  132. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  133. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  134. package/dist-es/models/models_0.js +620 -0
  135. package/dist-es/pagination/Interfaces.js +1 -0
  136. package/dist-es/pagination/ListEnvironmentAccountConnectionsPaginator.js +74 -0
  137. package/dist-es/pagination/ListEnvironmentTemplateVersionsPaginator.js +74 -0
  138. package/dist-es/pagination/ListEnvironmentTemplatesPaginator.js +74 -0
  139. package/dist-es/pagination/ListEnvironmentsPaginator.js +74 -0
  140. package/dist-es/pagination/ListServiceInstancesPaginator.js +74 -0
  141. package/dist-es/pagination/ListServiceTemplateVersionsPaginator.js +74 -0
  142. package/dist-es/pagination/ListServiceTemplatesPaginator.js +74 -0
  143. package/dist-es/pagination/ListServicesPaginator.js +74 -0
  144. package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
  145. package/dist-es/protocols/Aws_json1_0.js +6335 -0
  146. package/dist-es/runtimeConfig.browser.js +16 -0
  147. package/dist-es/runtimeConfig.js +21 -0
  148. package/dist-es/runtimeConfig.native.js +8 -0
  149. package/dist-es/runtimeConfig.shared.js +13 -0
  150. package/dist-es/waiters/waitForEnvironmentDeployed.js +60 -0
  151. package/dist-es/waiters/waitForEnvironmentTemplateVersionRegistered.js +69 -0
  152. package/dist-es/waiters/waitForServiceCreated.js +78 -0
  153. package/dist-es/waiters/waitForServiceDeleted.js +54 -0
  154. package/dist-es/waiters/waitForServiceInstanceDeployed.js +60 -0
  155. package/dist-es/waiters/waitForServicePipelineDeployed.js +60 -0
  156. package/dist-es/waiters/waitForServiceTemplateVersionRegistered.js +69 -0
  157. package/dist-es/waiters/waitForServiceUpdated.js +87 -0
  158. package/dist-types/Proton.d.ts +704 -0
  159. package/dist-types/ProtonClient.d.ts +301 -0
  160. package/dist-types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +39 -0
  161. package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +49 -0
  162. package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +49 -0
  163. package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +49 -0
  164. package/dist-types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +39 -0
  165. package/dist-types/commands/CreateEnvironmentCommand.d.ts +38 -0
  166. package/dist-types/commands/CreateEnvironmentTemplateCommand.d.ts +50 -0
  167. package/dist-types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +37 -0
  168. package/dist-types/commands/CreateServiceCommand.d.ts +37 -0
  169. package/dist-types/commands/CreateServiceTemplateCommand.d.ts +39 -0
  170. package/dist-types/commands/CreateServiceTemplateVersionCommand.d.ts +37 -0
  171. package/dist-types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +40 -0
  172. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +35 -0
  173. package/dist-types/commands/DeleteEnvironmentTemplateCommand.d.ts +35 -0
  174. package/dist-types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +41 -0
  175. package/dist-types/commands/DeleteServiceCommand.d.ts +35 -0
  176. package/dist-types/commands/DeleteServiceTemplateCommand.d.ts +35 -0
  177. package/dist-types/commands/DeleteServiceTemplateVersionCommand.d.ts +41 -0
  178. package/dist-types/commands/GetAccountSettingsCommand.d.ts +35 -0
  179. package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +37 -0
  180. package/dist-types/commands/GetEnvironmentCommand.d.ts +35 -0
  181. package/dist-types/commands/GetEnvironmentTemplateCommand.d.ts +35 -0
  182. package/dist-types/commands/GetEnvironmentTemplateVersionCommand.d.ts +35 -0
  183. package/dist-types/commands/GetServiceCommand.d.ts +35 -0
  184. package/dist-types/commands/GetServiceInstanceCommand.d.ts +36 -0
  185. package/dist-types/commands/GetServiceTemplateCommand.d.ts +35 -0
  186. package/dist-types/commands/GetServiceTemplateVersionCommand.d.ts +35 -0
  187. package/dist-types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +37 -0
  188. package/dist-types/commands/ListEnvironmentTemplateVersionsCommand.d.ts +35 -0
  189. package/dist-types/commands/ListEnvironmentTemplatesCommand.d.ts +35 -0
  190. package/dist-types/commands/ListEnvironmentsCommand.d.ts +35 -0
  191. package/dist-types/commands/ListServiceInstancesCommand.d.ts +35 -0
  192. package/dist-types/commands/ListServiceTemplateVersionsCommand.d.ts +35 -0
  193. package/dist-types/commands/ListServiceTemplatesCommand.d.ts +35 -0
  194. package/dist-types/commands/ListServicesCommand.d.ts +35 -0
  195. package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
  196. package/dist-types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +40 -0
  197. package/dist-types/commands/TagResourceCommand.d.ts +35 -0
  198. package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
  199. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +35 -0
  200. package/dist-types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +37 -0
  201. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +80 -0
  202. package/dist-types/commands/UpdateEnvironmentTemplateCommand.d.ts +35 -0
  203. package/dist-types/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +35 -0
  204. package/dist-types/commands/UpdateServiceCommand.d.ts +41 -0
  205. package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +73 -0
  206. package/dist-types/commands/UpdateServicePipelineCommand.d.ts +73 -0
  207. package/dist-types/commands/UpdateServiceTemplateCommand.d.ts +35 -0
  208. package/dist-types/commands/UpdateServiceTemplateVersionCommand.d.ts +35 -0
  209. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  210. package/{index.ts → dist-types/index.d.ts} +0 -0
  211. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  212. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  213. package/dist-types/pagination/Interfaces.d.ts +6 -0
  214. package/dist-types/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +4 -0
  215. package/dist-types/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +4 -0
  216. package/dist-types/pagination/ListEnvironmentTemplatesPaginator.d.ts +4 -0
  217. package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +4 -0
  218. package/dist-types/pagination/ListServiceInstancesPaginator.d.ts +4 -0
  219. package/dist-types/pagination/ListServiceTemplateVersionsPaginator.d.ts +4 -0
  220. package/dist-types/pagination/ListServiceTemplatesPaginator.d.ts +4 -0
  221. package/dist-types/pagination/ListServicesPaginator.d.ts +4 -0
  222. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  223. package/dist-types/protocols/Aws_json1_0.d.ts +149 -0
  224. package/{dist/types → dist-types}/runtimeConfig.browser.d.ts +0 -0
  225. package/dist-types/runtimeConfig.d.ts +37 -0
  226. package/{dist/types → dist-types}/runtimeConfig.native.d.ts +0 -0
  227. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  228. package/dist-types/ts3.4/Proton.d.ts +250 -0
  229. package/dist-types/ts3.4/ProtonClient.d.ts +116 -0
  230. package/dist-types/ts3.4/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +17 -0
  231. package/dist-types/ts3.4/commands/CancelEnvironmentDeploymentCommand.d.ts +17 -0
  232. package/dist-types/ts3.4/commands/CancelServiceInstanceDeploymentCommand.d.ts +17 -0
  233. package/dist-types/ts3.4/commands/CancelServicePipelineDeploymentCommand.d.ts +17 -0
  234. package/dist-types/ts3.4/commands/CreateEnvironmentAccountConnectionCommand.d.ts +17 -0
  235. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +17 -0
  236. package/dist-types/ts3.4/commands/CreateEnvironmentTemplateCommand.d.ts +17 -0
  237. package/dist-types/ts3.4/commands/CreateEnvironmentTemplateVersionCommand.d.ts +17 -0
  238. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +17 -0
  239. package/dist-types/ts3.4/commands/CreateServiceTemplateCommand.d.ts +17 -0
  240. package/dist-types/ts3.4/commands/CreateServiceTemplateVersionCommand.d.ts +17 -0
  241. package/dist-types/ts3.4/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +17 -0
  242. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +17 -0
  243. package/dist-types/ts3.4/commands/DeleteEnvironmentTemplateCommand.d.ts +17 -0
  244. package/dist-types/ts3.4/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +17 -0
  245. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +17 -0
  246. package/dist-types/ts3.4/commands/DeleteServiceTemplateCommand.d.ts +17 -0
  247. package/dist-types/ts3.4/commands/DeleteServiceTemplateVersionCommand.d.ts +17 -0
  248. package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +17 -0
  249. package/dist-types/ts3.4/commands/GetEnvironmentAccountConnectionCommand.d.ts +17 -0
  250. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +17 -0
  251. package/dist-types/ts3.4/commands/GetEnvironmentTemplateCommand.d.ts +17 -0
  252. package/dist-types/ts3.4/commands/GetEnvironmentTemplateVersionCommand.d.ts +17 -0
  253. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +17 -0
  254. package/dist-types/ts3.4/commands/GetServiceInstanceCommand.d.ts +17 -0
  255. package/dist-types/ts3.4/commands/GetServiceTemplateCommand.d.ts +17 -0
  256. package/dist-types/ts3.4/commands/GetServiceTemplateVersionCommand.d.ts +17 -0
  257. package/dist-types/ts3.4/commands/ListEnvironmentAccountConnectionsCommand.d.ts +17 -0
  258. package/dist-types/ts3.4/commands/ListEnvironmentTemplateVersionsCommand.d.ts +17 -0
  259. package/dist-types/ts3.4/commands/ListEnvironmentTemplatesCommand.d.ts +17 -0
  260. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +17 -0
  261. package/dist-types/ts3.4/commands/ListServiceInstancesCommand.d.ts +17 -0
  262. package/dist-types/ts3.4/commands/ListServiceTemplateVersionsCommand.d.ts +17 -0
  263. package/dist-types/ts3.4/commands/ListServiceTemplatesCommand.d.ts +17 -0
  264. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
  265. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  266. package/dist-types/ts3.4/commands/RejectEnvironmentAccountConnectionCommand.d.ts +17 -0
  267. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  268. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  269. package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +17 -0
  270. package/dist-types/ts3.4/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +17 -0
  271. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +17 -0
  272. package/dist-types/ts3.4/commands/UpdateEnvironmentTemplateCommand.d.ts +17 -0
  273. package/dist-types/ts3.4/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +17 -0
  274. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +17 -0
  275. package/dist-types/ts3.4/commands/UpdateServiceInstanceCommand.d.ts +17 -0
  276. package/dist-types/ts3.4/commands/UpdateServicePipelineCommand.d.ts +17 -0
  277. package/dist-types/ts3.4/commands/UpdateServiceTemplateCommand.d.ts +17 -0
  278. package/dist-types/ts3.4/commands/UpdateServiceTemplateVersionCommand.d.ts +17 -0
  279. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  280. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  281. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  282. package/dist-types/ts3.4/models/models_0.d.ts +1699 -0
  283. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  284. package/dist-types/ts3.4/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +4 -0
  285. package/dist-types/ts3.4/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +4 -0
  286. package/dist-types/ts3.4/pagination/ListEnvironmentTemplatesPaginator.d.ts +4 -0
  287. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +4 -0
  288. package/dist-types/ts3.4/pagination/ListServiceInstancesPaginator.d.ts +4 -0
  289. package/dist-types/ts3.4/pagination/ListServiceTemplateVersionsPaginator.d.ts +4 -0
  290. package/dist-types/ts3.4/pagination/ListServiceTemplatesPaginator.d.ts +4 -0
  291. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
  292. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  293. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +149 -0
  294. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +35 -0
  295. package/dist-types/ts3.4/runtimeConfig.d.ts +35 -0
  296. package/dist-types/ts3.4/runtimeConfig.native.d.ts +34 -0
  297. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  298. package/dist-types/ts3.4/waiters/waitForEnvironmentDeployed.d.ts +7 -0
  299. package/dist-types/ts3.4/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +7 -0
  300. package/dist-types/ts3.4/waiters/waitForServiceCreated.d.ts +7 -0
  301. package/dist-types/ts3.4/waiters/waitForServiceDeleted.d.ts +7 -0
  302. package/dist-types/ts3.4/waiters/waitForServiceInstanceDeployed.d.ts +7 -0
  303. package/dist-types/ts3.4/waiters/waitForServicePipelineDeployed.d.ts +7 -0
  304. package/dist-types/ts3.4/waiters/waitForServiceTemplateVersionRegistered.d.ts +7 -0
  305. package/dist-types/ts3.4/waiters/waitForServiceUpdated.d.ts +7 -0
  306. package/dist-types/waiters/waitForEnvironmentDeployed.d.ts +14 -0
  307. package/dist-types/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +14 -0
  308. package/dist-types/waiters/waitForServiceCreated.d.ts +14 -0
  309. package/dist-types/waiters/waitForServiceDeleted.d.ts +14 -0
  310. package/dist-types/waiters/waitForServiceInstanceDeployed.d.ts +14 -0
  311. package/dist-types/waiters/waitForServicePipelineDeployed.d.ts +14 -0
  312. package/dist-types/waiters/waitForServiceTemplateVersionRegistered.d.ts +14 -0
  313. package/dist-types/waiters/waitForServiceUpdated.d.ts +14 -0
  314. package/package.json +46 -43
  315. package/Proton.ts +0 -2151
  316. package/ProtonClient.ts +0 -604
  317. package/commands/AcceptEnvironmentAccountConnectionCommand.ts +0 -106
  318. package/commands/CancelEnvironmentDeploymentCommand.ts +0 -111
  319. package/commands/CancelServiceInstanceDeploymentCommand.ts +0 -116
  320. package/commands/CancelServicePipelineDeploymentCommand.ts +0 -116
  321. package/commands/CreateEnvironmentAccountConnectionCommand.ts +0 -106
  322. package/commands/CreateEnvironmentCommand.ts +0 -97
  323. package/commands/CreateEnvironmentTemplateCommand.ts +0 -112
  324. package/commands/CreateEnvironmentTemplateVersionCommand.ts +0 -104
  325. package/commands/CreateServiceCommand.ts +0 -96
  326. package/commands/CreateServiceTemplateCommand.ts +0 -98
  327. package/commands/CreateServiceTemplateVersionCommand.ts +0 -101
  328. package/commands/DeleteEnvironmentAccountConnectionCommand.ts +0 -107
  329. package/commands/DeleteEnvironmentCommand.ts +0 -94
  330. package/commands/DeleteEnvironmentTemplateCommand.ts +0 -97
  331. package/commands/DeleteEnvironmentTemplateVersionCommand.ts +0 -108
  332. package/commands/DeleteServiceCommand.ts +0 -94
  333. package/commands/DeleteServiceTemplateCommand.ts +0 -94
  334. package/commands/DeleteServiceTemplateVersionCommand.ts +0 -105
  335. package/commands/GetAccountSettingsCommand.ts +0 -94
  336. package/commands/GetEnvironmentAccountConnectionCommand.ts +0 -104
  337. package/commands/GetEnvironmentCommand.ts +0 -94
  338. package/commands/GetEnvironmentTemplateCommand.ts +0 -94
  339. package/commands/GetEnvironmentTemplateVersionCommand.ts +0 -99
  340. package/commands/GetServiceCommand.ts +0 -94
  341. package/commands/GetServiceInstanceCommand.ts +0 -95
  342. package/commands/GetServiceTemplateCommand.ts +0 -94
  343. package/commands/GetServiceTemplateVersionCommand.ts +0 -97
  344. package/commands/ListEnvironmentAccountConnectionsCommand.ts +0 -104
  345. package/commands/ListEnvironmentTemplateVersionsCommand.ts +0 -102
  346. package/commands/ListEnvironmentTemplatesCommand.ts +0 -94
  347. package/commands/ListEnvironmentsCommand.ts +0 -94
  348. package/commands/ListServiceInstancesCommand.ts +0 -94
  349. package/commands/ListServiceTemplateVersionsCommand.ts +0 -97
  350. package/commands/ListServiceTemplatesCommand.ts +0 -94
  351. package/commands/ListServicesCommand.ts +0 -94
  352. package/commands/ListTagsForResourceCommand.ts +0 -94
  353. package/commands/RejectEnvironmentAccountConnectionCommand.ts +0 -107
  354. package/commands/TagResourceCommand.ts +0 -94
  355. package/commands/UntagResourceCommand.ts +0 -94
  356. package/commands/UpdateAccountSettingsCommand.ts +0 -94
  357. package/commands/UpdateEnvironmentAccountConnectionCommand.ts +0 -104
  358. package/commands/UpdateEnvironmentCommand.ts +0 -139
  359. package/commands/UpdateEnvironmentTemplateCommand.ts +0 -97
  360. package/commands/UpdateEnvironmentTemplateVersionCommand.ts +0 -102
  361. package/commands/UpdateServiceCommand.ts +0 -100
  362. package/commands/UpdateServiceInstanceCommand.ts +0 -132
  363. package/commands/UpdateServicePipelineCommand.ts +0 -132
  364. package/commands/UpdateServiceTemplateCommand.ts +0 -94
  365. package/commands/UpdateServiceTemplateVersionCommand.ts +0 -99
  366. package/dist/cjs/Proton.js +0 -866
  367. package/dist/cjs/Proton.js.map +0 -1
  368. package/dist/cjs/ProtonClient.js +0 -164
  369. package/dist/cjs/ProtonClient.js.map +0 -1
  370. package/dist/cjs/commands/AcceptEnvironmentAccountConnectionCommand.js +0 -65
  371. package/dist/cjs/commands/AcceptEnvironmentAccountConnectionCommand.js.map +0 -1
  372. package/dist/cjs/commands/CancelEnvironmentDeploymentCommand.js +0 -75
  373. package/dist/cjs/commands/CancelEnvironmentDeploymentCommand.js.map +0 -1
  374. package/dist/cjs/commands/CancelServiceInstanceDeploymentCommand.js +0 -75
  375. package/dist/cjs/commands/CancelServiceInstanceDeploymentCommand.js.map +0 -1
  376. package/dist/cjs/commands/CancelServicePipelineDeploymentCommand.js +0 -75
  377. package/dist/cjs/commands/CancelServicePipelineDeploymentCommand.js.map +0 -1
  378. package/dist/cjs/commands/CreateEnvironmentAccountConnectionCommand.js +0 -65
  379. package/dist/cjs/commands/CreateEnvironmentAccountConnectionCommand.js.map +0 -1
  380. package/dist/cjs/commands/CreateEnvironmentCommand.js +0 -64
  381. package/dist/cjs/commands/CreateEnvironmentCommand.js.map +0 -1
  382. package/dist/cjs/commands/CreateEnvironmentTemplateCommand.js +0 -76
  383. package/dist/cjs/commands/CreateEnvironmentTemplateCommand.js.map +0 -1
  384. package/dist/cjs/commands/CreateEnvironmentTemplateVersionCommand.js +0 -63
  385. package/dist/cjs/commands/CreateEnvironmentTemplateVersionCommand.js.map +0 -1
  386. package/dist/cjs/commands/CreateServiceCommand.js +0 -63
  387. package/dist/cjs/commands/CreateServiceCommand.js.map +0 -1
  388. package/dist/cjs/commands/CreateServiceTemplateCommand.js +0 -65
  389. package/dist/cjs/commands/CreateServiceTemplateCommand.js.map +0 -1
  390. package/dist/cjs/commands/CreateServiceTemplateVersionCommand.js +0 -63
  391. package/dist/cjs/commands/CreateServiceTemplateVersionCommand.js.map +0 -1
  392. package/dist/cjs/commands/DeleteEnvironmentAccountConnectionCommand.js +0 -66
  393. package/dist/cjs/commands/DeleteEnvironmentAccountConnectionCommand.js.map +0 -1
  394. package/dist/cjs/commands/DeleteEnvironmentCommand.js +0 -61
  395. package/dist/cjs/commands/DeleteEnvironmentCommand.js.map +0 -1
  396. package/dist/cjs/commands/DeleteEnvironmentTemplateCommand.js +0 -61
  397. package/dist/cjs/commands/DeleteEnvironmentTemplateCommand.js.map +0 -1
  398. package/dist/cjs/commands/DeleteEnvironmentTemplateVersionCommand.js +0 -67
  399. package/dist/cjs/commands/DeleteEnvironmentTemplateVersionCommand.js.map +0 -1
  400. package/dist/cjs/commands/DeleteServiceCommand.js +0 -61
  401. package/dist/cjs/commands/DeleteServiceCommand.js.map +0 -1
  402. package/dist/cjs/commands/DeleteServiceTemplateCommand.js +0 -61
  403. package/dist/cjs/commands/DeleteServiceTemplateCommand.js.map +0 -1
  404. package/dist/cjs/commands/DeleteServiceTemplateVersionCommand.js +0 -67
  405. package/dist/cjs/commands/DeleteServiceTemplateVersionCommand.js.map +0 -1
  406. package/dist/cjs/commands/GetAccountSettingsCommand.js +0 -61
  407. package/dist/cjs/commands/GetAccountSettingsCommand.js.map +0 -1
  408. package/dist/cjs/commands/GetEnvironmentAccountConnectionCommand.js +0 -63
  409. package/dist/cjs/commands/GetEnvironmentAccountConnectionCommand.js.map +0 -1
  410. package/dist/cjs/commands/GetEnvironmentCommand.js +0 -61
  411. package/dist/cjs/commands/GetEnvironmentCommand.js.map +0 -1
  412. package/dist/cjs/commands/GetEnvironmentTemplateCommand.js +0 -61
  413. package/dist/cjs/commands/GetEnvironmentTemplateCommand.js.map +0 -1
  414. package/dist/cjs/commands/GetEnvironmentTemplateVersionCommand.js +0 -61
  415. package/dist/cjs/commands/GetEnvironmentTemplateVersionCommand.js.map +0 -1
  416. package/dist/cjs/commands/GetServiceCommand.js +0 -61
  417. package/dist/cjs/commands/GetServiceCommand.js.map +0 -1
  418. package/dist/cjs/commands/GetServiceInstanceCommand.js +0 -62
  419. package/dist/cjs/commands/GetServiceInstanceCommand.js.map +0 -1
  420. package/dist/cjs/commands/GetServiceTemplateCommand.js +0 -61
  421. package/dist/cjs/commands/GetServiceTemplateCommand.js.map +0 -1
  422. package/dist/cjs/commands/GetServiceTemplateVersionCommand.js +0 -61
  423. package/dist/cjs/commands/GetServiceTemplateVersionCommand.js.map +0 -1
  424. package/dist/cjs/commands/ListEnvironmentAccountConnectionsCommand.js +0 -63
  425. package/dist/cjs/commands/ListEnvironmentAccountConnectionsCommand.js.map +0 -1
  426. package/dist/cjs/commands/ListEnvironmentTemplateVersionsCommand.js +0 -61
  427. package/dist/cjs/commands/ListEnvironmentTemplateVersionsCommand.js.map +0 -1
  428. package/dist/cjs/commands/ListEnvironmentTemplatesCommand.js +0 -61
  429. package/dist/cjs/commands/ListEnvironmentTemplatesCommand.js.map +0 -1
  430. package/dist/cjs/commands/ListEnvironmentsCommand.js +0 -61
  431. package/dist/cjs/commands/ListEnvironmentsCommand.js.map +0 -1
  432. package/dist/cjs/commands/ListServiceInstancesCommand.js +0 -61
  433. package/dist/cjs/commands/ListServiceInstancesCommand.js.map +0 -1
  434. package/dist/cjs/commands/ListServiceTemplateVersionsCommand.js +0 -61
  435. package/dist/cjs/commands/ListServiceTemplateVersionsCommand.js.map +0 -1
  436. package/dist/cjs/commands/ListServiceTemplatesCommand.js +0 -61
  437. package/dist/cjs/commands/ListServiceTemplatesCommand.js.map +0 -1
  438. package/dist/cjs/commands/ListServicesCommand.js +0 -61
  439. package/dist/cjs/commands/ListServicesCommand.js.map +0 -1
  440. package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -61
  441. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  442. package/dist/cjs/commands/RejectEnvironmentAccountConnectionCommand.js +0 -66
  443. package/dist/cjs/commands/RejectEnvironmentAccountConnectionCommand.js.map +0 -1
  444. package/dist/cjs/commands/TagResourceCommand.js +0 -61
  445. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  446. package/dist/cjs/commands/UntagResourceCommand.js +0 -61
  447. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  448. package/dist/cjs/commands/UpdateAccountSettingsCommand.js +0 -61
  449. package/dist/cjs/commands/UpdateAccountSettingsCommand.js.map +0 -1
  450. package/dist/cjs/commands/UpdateEnvironmentAccountConnectionCommand.js +0 -63
  451. package/dist/cjs/commands/UpdateEnvironmentAccountConnectionCommand.js.map +0 -1
  452. package/dist/cjs/commands/UpdateEnvironmentCommand.js +0 -106
  453. package/dist/cjs/commands/UpdateEnvironmentCommand.js.map +0 -1
  454. package/dist/cjs/commands/UpdateEnvironmentTemplateCommand.js +0 -61
  455. package/dist/cjs/commands/UpdateEnvironmentTemplateCommand.js.map +0 -1
  456. package/dist/cjs/commands/UpdateEnvironmentTemplateVersionCommand.js +0 -61
  457. package/dist/cjs/commands/UpdateEnvironmentTemplateVersionCommand.js.map +0 -1
  458. package/dist/cjs/commands/UpdateServiceCommand.js +0 -67
  459. package/dist/cjs/commands/UpdateServiceCommand.js.map +0 -1
  460. package/dist/cjs/commands/UpdateServiceInstanceCommand.js +0 -99
  461. package/dist/cjs/commands/UpdateServiceInstanceCommand.js.map +0 -1
  462. package/dist/cjs/commands/UpdateServicePipelineCommand.js +0 -99
  463. package/dist/cjs/commands/UpdateServicePipelineCommand.js.map +0 -1
  464. package/dist/cjs/commands/UpdateServiceTemplateCommand.js +0 -61
  465. package/dist/cjs/commands/UpdateServiceTemplateCommand.js.map +0 -1
  466. package/dist/cjs/commands/UpdateServiceTemplateVersionCommand.js +0 -61
  467. package/dist/cjs/commands/UpdateServiceTemplateVersionCommand.js.map +0 -1
  468. package/dist/cjs/endpoints.js +0 -57
  469. package/dist/cjs/endpoints.js.map +0 -1
  470. package/dist/cjs/index.js +0 -74
  471. package/dist/cjs/index.js.map +0 -1
  472. package/dist/cjs/models/index.js +0 -5
  473. package/dist/cjs/models/index.js.map +0 -1
  474. package/dist/cjs/models/models_0.js +0 -1369
  475. package/dist/cjs/models/models_0.js.map +0 -1
  476. package/dist/cjs/package.json +0 -94
  477. package/dist/cjs/pagination/Interfaces.js +0 -3
  478. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  479. package/dist/cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js +0 -46
  480. package/dist/cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js.map +0 -1
  481. package/dist/cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js +0 -46
  482. package/dist/cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js.map +0 -1
  483. package/dist/cjs/pagination/ListEnvironmentTemplatesPaginator.js +0 -46
  484. package/dist/cjs/pagination/ListEnvironmentTemplatesPaginator.js.map +0 -1
  485. package/dist/cjs/pagination/ListEnvironmentsPaginator.js +0 -46
  486. package/dist/cjs/pagination/ListEnvironmentsPaginator.js.map +0 -1
  487. package/dist/cjs/pagination/ListServiceInstancesPaginator.js +0 -46
  488. package/dist/cjs/pagination/ListServiceInstancesPaginator.js.map +0 -1
  489. package/dist/cjs/pagination/ListServiceTemplateVersionsPaginator.js +0 -46
  490. package/dist/cjs/pagination/ListServiceTemplateVersionsPaginator.js.map +0 -1
  491. package/dist/cjs/pagination/ListServiceTemplatesPaginator.js +0 -46
  492. package/dist/cjs/pagination/ListServiceTemplatesPaginator.js.map +0 -1
  493. package/dist/cjs/pagination/ListServicesPaginator.js +0 -46
  494. package/dist/cjs/pagination/ListServicesPaginator.js.map +0 -1
  495. package/dist/cjs/pagination/ListTagsForResourcePaginator.js +0 -46
  496. package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
  497. package/dist/cjs/protocols/Aws_json1_0.js +0 -6070
  498. package/dist/cjs/protocols/Aws_json1_0.js.map +0 -1
  499. package/dist/cjs/runtimeConfig.browser.js +0 -41
  500. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  501. package/dist/cjs/runtimeConfig.js +0 -46
  502. package/dist/cjs/runtimeConfig.js.map +0 -1
  503. package/dist/cjs/runtimeConfig.native.js +0 -20
  504. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  505. package/dist/cjs/runtimeConfig.shared.js +0 -21
  506. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  507. package/dist/cjs/waiters/waitForEnvironmentDeployed.js +0 -55
  508. package/dist/cjs/waiters/waitForEnvironmentDeployed.js.map +0 -1
  509. package/dist/cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js +0 -64
  510. package/dist/cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js.map +0 -1
  511. package/dist/cjs/waiters/waitForServiceCreated.js +0 -73
  512. package/dist/cjs/waiters/waitForServiceCreated.js.map +0 -1
  513. package/dist/cjs/waiters/waitForServiceDeleted.js +0 -49
  514. package/dist/cjs/waiters/waitForServiceDeleted.js.map +0 -1
  515. package/dist/cjs/waiters/waitForServiceInstanceDeployed.js +0 -55
  516. package/dist/cjs/waiters/waitForServiceInstanceDeployed.js.map +0 -1
  517. package/dist/cjs/waiters/waitForServicePipelineDeployed.js +0 -55
  518. package/dist/cjs/waiters/waitForServicePipelineDeployed.js.map +0 -1
  519. package/dist/cjs/waiters/waitForServiceTemplateVersionRegistered.js +0 -64
  520. package/dist/cjs/waiters/waitForServiceTemplateVersionRegistered.js.map +0 -1
  521. package/dist/cjs/waiters/waitForServiceUpdated.js +0 -82
  522. package/dist/cjs/waiters/waitForServiceUpdated.js.map +0 -1
  523. package/dist/es/Proton.js +0 -746
  524. package/dist/es/Proton.js.map +0 -1
  525. package/dist/es/ProtonClient.js +0 -38
  526. package/dist/es/ProtonClient.js.map +0 -1
  527. package/dist/es/commands/AcceptEnvironmentAccountConnectionCommand.js +0 -40
  528. package/dist/es/commands/AcceptEnvironmentAccountConnectionCommand.js.map +0 -1
  529. package/dist/es/commands/CancelEnvironmentDeploymentCommand.js +0 -40
  530. package/dist/es/commands/CancelEnvironmentDeploymentCommand.js.map +0 -1
  531. package/dist/es/commands/CancelServiceInstanceDeploymentCommand.js +0 -40
  532. package/dist/es/commands/CancelServiceInstanceDeploymentCommand.js.map +0 -1
  533. package/dist/es/commands/CancelServicePipelineDeploymentCommand.js +0 -40
  534. package/dist/es/commands/CancelServicePipelineDeploymentCommand.js.map +0 -1
  535. package/dist/es/commands/CreateEnvironmentAccountConnectionCommand.js +0 -40
  536. package/dist/es/commands/CreateEnvironmentAccountConnectionCommand.js.map +0 -1
  537. package/dist/es/commands/CreateEnvironmentCommand.js +0 -40
  538. package/dist/es/commands/CreateEnvironmentCommand.js.map +0 -1
  539. package/dist/es/commands/CreateEnvironmentTemplateCommand.js +0 -40
  540. package/dist/es/commands/CreateEnvironmentTemplateCommand.js.map +0 -1
  541. package/dist/es/commands/CreateEnvironmentTemplateVersionCommand.js +0 -40
  542. package/dist/es/commands/CreateEnvironmentTemplateVersionCommand.js.map +0 -1
  543. package/dist/es/commands/CreateServiceCommand.js +0 -40
  544. package/dist/es/commands/CreateServiceCommand.js.map +0 -1
  545. package/dist/es/commands/CreateServiceTemplateCommand.js +0 -40
  546. package/dist/es/commands/CreateServiceTemplateCommand.js.map +0 -1
  547. package/dist/es/commands/CreateServiceTemplateVersionCommand.js +0 -40
  548. package/dist/es/commands/CreateServiceTemplateVersionCommand.js.map +0 -1
  549. package/dist/es/commands/DeleteEnvironmentAccountConnectionCommand.js +0 -40
  550. package/dist/es/commands/DeleteEnvironmentAccountConnectionCommand.js.map +0 -1
  551. package/dist/es/commands/DeleteEnvironmentCommand.js +0 -40
  552. package/dist/es/commands/DeleteEnvironmentCommand.js.map +0 -1
  553. package/dist/es/commands/DeleteEnvironmentTemplateCommand.js +0 -40
  554. package/dist/es/commands/DeleteEnvironmentTemplateCommand.js.map +0 -1
  555. package/dist/es/commands/DeleteEnvironmentTemplateVersionCommand.js +0 -40
  556. package/dist/es/commands/DeleteEnvironmentTemplateVersionCommand.js.map +0 -1
  557. package/dist/es/commands/DeleteServiceCommand.js +0 -40
  558. package/dist/es/commands/DeleteServiceCommand.js.map +0 -1
  559. package/dist/es/commands/DeleteServiceTemplateCommand.js +0 -40
  560. package/dist/es/commands/DeleteServiceTemplateCommand.js.map +0 -1
  561. package/dist/es/commands/DeleteServiceTemplateVersionCommand.js +0 -40
  562. package/dist/es/commands/DeleteServiceTemplateVersionCommand.js.map +0 -1
  563. package/dist/es/commands/GetAccountSettingsCommand.js +0 -40
  564. package/dist/es/commands/GetAccountSettingsCommand.js.map +0 -1
  565. package/dist/es/commands/GetEnvironmentAccountConnectionCommand.js +0 -40
  566. package/dist/es/commands/GetEnvironmentAccountConnectionCommand.js.map +0 -1
  567. package/dist/es/commands/GetEnvironmentCommand.js +0 -40
  568. package/dist/es/commands/GetEnvironmentCommand.js.map +0 -1
  569. package/dist/es/commands/GetEnvironmentTemplateCommand.js +0 -40
  570. package/dist/es/commands/GetEnvironmentTemplateCommand.js.map +0 -1
  571. package/dist/es/commands/GetEnvironmentTemplateVersionCommand.js +0 -40
  572. package/dist/es/commands/GetEnvironmentTemplateVersionCommand.js.map +0 -1
  573. package/dist/es/commands/GetServiceCommand.js +0 -40
  574. package/dist/es/commands/GetServiceCommand.js.map +0 -1
  575. package/dist/es/commands/GetServiceInstanceCommand.js +0 -40
  576. package/dist/es/commands/GetServiceInstanceCommand.js.map +0 -1
  577. package/dist/es/commands/GetServiceTemplateCommand.js +0 -40
  578. package/dist/es/commands/GetServiceTemplateCommand.js.map +0 -1
  579. package/dist/es/commands/GetServiceTemplateVersionCommand.js +0 -40
  580. package/dist/es/commands/GetServiceTemplateVersionCommand.js.map +0 -1
  581. package/dist/es/commands/ListEnvironmentAccountConnectionsCommand.js +0 -40
  582. package/dist/es/commands/ListEnvironmentAccountConnectionsCommand.js.map +0 -1
  583. package/dist/es/commands/ListEnvironmentTemplateVersionsCommand.js +0 -40
  584. package/dist/es/commands/ListEnvironmentTemplateVersionsCommand.js.map +0 -1
  585. package/dist/es/commands/ListEnvironmentTemplatesCommand.js +0 -40
  586. package/dist/es/commands/ListEnvironmentTemplatesCommand.js.map +0 -1
  587. package/dist/es/commands/ListEnvironmentsCommand.js +0 -40
  588. package/dist/es/commands/ListEnvironmentsCommand.js.map +0 -1
  589. package/dist/es/commands/ListServiceInstancesCommand.js +0 -40
  590. package/dist/es/commands/ListServiceInstancesCommand.js.map +0 -1
  591. package/dist/es/commands/ListServiceTemplateVersionsCommand.js +0 -40
  592. package/dist/es/commands/ListServiceTemplateVersionsCommand.js.map +0 -1
  593. package/dist/es/commands/ListServiceTemplatesCommand.js +0 -40
  594. package/dist/es/commands/ListServiceTemplatesCommand.js.map +0 -1
  595. package/dist/es/commands/ListServicesCommand.js +0 -40
  596. package/dist/es/commands/ListServicesCommand.js.map +0 -1
  597. package/dist/es/commands/ListTagsForResourceCommand.js +0 -40
  598. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  599. package/dist/es/commands/RejectEnvironmentAccountConnectionCommand.js +0 -40
  600. package/dist/es/commands/RejectEnvironmentAccountConnectionCommand.js.map +0 -1
  601. package/dist/es/commands/TagResourceCommand.js +0 -40
  602. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  603. package/dist/es/commands/UntagResourceCommand.js +0 -40
  604. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  605. package/dist/es/commands/UpdateAccountSettingsCommand.js +0 -40
  606. package/dist/es/commands/UpdateAccountSettingsCommand.js.map +0 -1
  607. package/dist/es/commands/UpdateEnvironmentAccountConnectionCommand.js +0 -40
  608. package/dist/es/commands/UpdateEnvironmentAccountConnectionCommand.js.map +0 -1
  609. package/dist/es/commands/UpdateEnvironmentCommand.js +0 -40
  610. package/dist/es/commands/UpdateEnvironmentCommand.js.map +0 -1
  611. package/dist/es/commands/UpdateEnvironmentTemplateCommand.js +0 -40
  612. package/dist/es/commands/UpdateEnvironmentTemplateCommand.js.map +0 -1
  613. package/dist/es/commands/UpdateEnvironmentTemplateVersionCommand.js +0 -40
  614. package/dist/es/commands/UpdateEnvironmentTemplateVersionCommand.js.map +0 -1
  615. package/dist/es/commands/UpdateServiceCommand.js +0 -40
  616. package/dist/es/commands/UpdateServiceCommand.js.map +0 -1
  617. package/dist/es/commands/UpdateServiceInstanceCommand.js +0 -40
  618. package/dist/es/commands/UpdateServiceInstanceCommand.js.map +0 -1
  619. package/dist/es/commands/UpdateServicePipelineCommand.js +0 -40
  620. package/dist/es/commands/UpdateServicePipelineCommand.js.map +0 -1
  621. package/dist/es/commands/UpdateServiceTemplateCommand.js +0 -40
  622. package/dist/es/commands/UpdateServiceTemplateCommand.js.map +0 -1
  623. package/dist/es/commands/UpdateServiceTemplateVersionCommand.js +0 -40
  624. package/dist/es/commands/UpdateServiceTemplateVersionCommand.js.map +0 -1
  625. package/dist/es/endpoints.js +0 -53
  626. package/dist/es/endpoints.js.map +0 -1
  627. package/dist/es/index.js +0 -71
  628. package/dist/es/index.js.map +0 -1
  629. package/dist/es/models/index.js +0 -2
  630. package/dist/es/models/index.js.map +0 -1
  631. package/dist/es/models/models_0.js +0 -621
  632. package/dist/es/models/models_0.js.map +0 -1
  633. package/dist/es/package.json +0 -94
  634. package/dist/es/pagination/Interfaces.js +0 -2
  635. package/dist/es/pagination/Interfaces.js.map +0 -1
  636. package/dist/es/pagination/ListEnvironmentAccountConnectionsPaginator.js +0 -75
  637. package/dist/es/pagination/ListEnvironmentAccountConnectionsPaginator.js.map +0 -1
  638. package/dist/es/pagination/ListEnvironmentTemplateVersionsPaginator.js +0 -75
  639. package/dist/es/pagination/ListEnvironmentTemplateVersionsPaginator.js.map +0 -1
  640. package/dist/es/pagination/ListEnvironmentTemplatesPaginator.js +0 -75
  641. package/dist/es/pagination/ListEnvironmentTemplatesPaginator.js.map +0 -1
  642. package/dist/es/pagination/ListEnvironmentsPaginator.js +0 -75
  643. package/dist/es/pagination/ListEnvironmentsPaginator.js.map +0 -1
  644. package/dist/es/pagination/ListServiceInstancesPaginator.js +0 -75
  645. package/dist/es/pagination/ListServiceInstancesPaginator.js.map +0 -1
  646. package/dist/es/pagination/ListServiceTemplateVersionsPaginator.js +0 -75
  647. package/dist/es/pagination/ListServiceTemplateVersionsPaginator.js.map +0 -1
  648. package/dist/es/pagination/ListServiceTemplatesPaginator.js +0 -75
  649. package/dist/es/pagination/ListServiceTemplatesPaginator.js.map +0 -1
  650. package/dist/es/pagination/ListServicesPaginator.js +0 -75
  651. package/dist/es/pagination/ListServicesPaginator.js.map +0 -1
  652. package/dist/es/pagination/ListTagsForResourcePaginator.js +0 -75
  653. package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
  654. package/dist/es/protocols/Aws_json1_0.js +0 -6336
  655. package/dist/es/protocols/Aws_json1_0.js.map +0 -1
  656. package/dist/es/runtimeConfig.browser.js +0 -17
  657. package/dist/es/runtimeConfig.browser.js.map +0 -1
  658. package/dist/es/runtimeConfig.js +0 -22
  659. package/dist/es/runtimeConfig.js.map +0 -1
  660. package/dist/es/runtimeConfig.native.js +0 -9
  661. package/dist/es/runtimeConfig.native.js.map +0 -1
  662. package/dist/es/runtimeConfig.shared.js +0 -14
  663. package/dist/es/runtimeConfig.shared.js.map +0 -1
  664. package/dist/es/waiters/waitForEnvironmentDeployed.js +0 -61
  665. package/dist/es/waiters/waitForEnvironmentDeployed.js.map +0 -1
  666. package/dist/es/waiters/waitForEnvironmentTemplateVersionRegistered.js +0 -70
  667. package/dist/es/waiters/waitForEnvironmentTemplateVersionRegistered.js.map +0 -1
  668. package/dist/es/waiters/waitForServiceCreated.js +0 -79
  669. package/dist/es/waiters/waitForServiceCreated.js.map +0 -1
  670. package/dist/es/waiters/waitForServiceDeleted.js +0 -55
  671. package/dist/es/waiters/waitForServiceDeleted.js.map +0 -1
  672. package/dist/es/waiters/waitForServiceInstanceDeployed.js +0 -61
  673. package/dist/es/waiters/waitForServiceInstanceDeployed.js.map +0 -1
  674. package/dist/es/waiters/waitForServicePipelineDeployed.js +0 -61
  675. package/dist/es/waiters/waitForServicePipelineDeployed.js.map +0 -1
  676. package/dist/es/waiters/waitForServiceTemplateVersionRegistered.js +0 -70
  677. package/dist/es/waiters/waitForServiceTemplateVersionRegistered.js.map +0 -1
  678. package/dist/es/waiters/waitForServiceUpdated.js +0 -88
  679. package/dist/es/waiters/waitForServiceUpdated.js.map +0 -1
  680. package/dist/types/Proton.d.ts +0 -704
  681. package/dist/types/ProtonClient.d.ts +0 -301
  682. package/dist/types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +0 -39
  683. package/dist/types/commands/CancelEnvironmentDeploymentCommand.d.ts +0 -49
  684. package/dist/types/commands/CancelServiceInstanceDeploymentCommand.d.ts +0 -49
  685. package/dist/types/commands/CancelServicePipelineDeploymentCommand.d.ts +0 -49
  686. package/dist/types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +0 -39
  687. package/dist/types/commands/CreateEnvironmentCommand.d.ts +0 -38
  688. package/dist/types/commands/CreateEnvironmentTemplateCommand.d.ts +0 -50
  689. package/dist/types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +0 -37
  690. package/dist/types/commands/CreateServiceCommand.d.ts +0 -37
  691. package/dist/types/commands/CreateServiceTemplateCommand.d.ts +0 -39
  692. package/dist/types/commands/CreateServiceTemplateVersionCommand.d.ts +0 -37
  693. package/dist/types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +0 -40
  694. package/dist/types/commands/DeleteEnvironmentCommand.d.ts +0 -35
  695. package/dist/types/commands/DeleteEnvironmentTemplateCommand.d.ts +0 -35
  696. package/dist/types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +0 -41
  697. package/dist/types/commands/DeleteServiceCommand.d.ts +0 -35
  698. package/dist/types/commands/DeleteServiceTemplateCommand.d.ts +0 -35
  699. package/dist/types/commands/DeleteServiceTemplateVersionCommand.d.ts +0 -41
  700. package/dist/types/commands/GetAccountSettingsCommand.d.ts +0 -35
  701. package/dist/types/commands/GetEnvironmentAccountConnectionCommand.d.ts +0 -37
  702. package/dist/types/commands/GetEnvironmentCommand.d.ts +0 -35
  703. package/dist/types/commands/GetEnvironmentTemplateCommand.d.ts +0 -35
  704. package/dist/types/commands/GetEnvironmentTemplateVersionCommand.d.ts +0 -35
  705. package/dist/types/commands/GetServiceCommand.d.ts +0 -35
  706. package/dist/types/commands/GetServiceInstanceCommand.d.ts +0 -36
  707. package/dist/types/commands/GetServiceTemplateCommand.d.ts +0 -35
  708. package/dist/types/commands/GetServiceTemplateVersionCommand.d.ts +0 -35
  709. package/dist/types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +0 -37
  710. package/dist/types/commands/ListEnvironmentTemplateVersionsCommand.d.ts +0 -35
  711. package/dist/types/commands/ListEnvironmentTemplatesCommand.d.ts +0 -35
  712. package/dist/types/commands/ListEnvironmentsCommand.d.ts +0 -35
  713. package/dist/types/commands/ListServiceInstancesCommand.d.ts +0 -35
  714. package/dist/types/commands/ListServiceTemplateVersionsCommand.d.ts +0 -35
  715. package/dist/types/commands/ListServiceTemplatesCommand.d.ts +0 -35
  716. package/dist/types/commands/ListServicesCommand.d.ts +0 -35
  717. package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -35
  718. package/dist/types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +0 -40
  719. package/dist/types/commands/TagResourceCommand.d.ts +0 -35
  720. package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
  721. package/dist/types/commands/UpdateAccountSettingsCommand.d.ts +0 -35
  722. package/dist/types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +0 -37
  723. package/dist/types/commands/UpdateEnvironmentCommand.d.ts +0 -80
  724. package/dist/types/commands/UpdateEnvironmentTemplateCommand.d.ts +0 -35
  725. package/dist/types/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +0 -35
  726. package/dist/types/commands/UpdateServiceCommand.d.ts +0 -41
  727. package/dist/types/commands/UpdateServiceInstanceCommand.d.ts +0 -73
  728. package/dist/types/commands/UpdateServicePipelineCommand.d.ts +0 -73
  729. package/dist/types/commands/UpdateServiceTemplateCommand.d.ts +0 -35
  730. package/dist/types/commands/UpdateServiceTemplateVersionCommand.d.ts +0 -35
  731. package/dist/types/pagination/Interfaces.d.ts +0 -6
  732. package/dist/types/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +0 -4
  733. package/dist/types/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +0 -4
  734. package/dist/types/pagination/ListEnvironmentTemplatesPaginator.d.ts +0 -4
  735. package/dist/types/pagination/ListEnvironmentsPaginator.d.ts +0 -4
  736. package/dist/types/pagination/ListServiceInstancesPaginator.d.ts +0 -4
  737. package/dist/types/pagination/ListServiceTemplateVersionsPaginator.d.ts +0 -4
  738. package/dist/types/pagination/ListServiceTemplatesPaginator.d.ts +0 -4
  739. package/dist/types/pagination/ListServicesPaginator.d.ts +0 -4
  740. package/dist/types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
  741. package/dist/types/protocols/Aws_json1_0.d.ts +0 -149
  742. package/dist/types/runtimeConfig.d.ts +0 -37
  743. package/dist/types/ts3.4/Proton.d.ts +0 -704
  744. package/dist/types/ts3.4/ProtonClient.d.ts +0 -301
  745. package/dist/types/ts3.4/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +0 -39
  746. package/dist/types/ts3.4/commands/CancelEnvironmentDeploymentCommand.d.ts +0 -49
  747. package/dist/types/ts3.4/commands/CancelServiceInstanceDeploymentCommand.d.ts +0 -49
  748. package/dist/types/ts3.4/commands/CancelServicePipelineDeploymentCommand.d.ts +0 -49
  749. package/dist/types/ts3.4/commands/CreateEnvironmentAccountConnectionCommand.d.ts +0 -39
  750. package/dist/types/ts3.4/commands/CreateEnvironmentCommand.d.ts +0 -38
  751. package/dist/types/ts3.4/commands/CreateEnvironmentTemplateCommand.d.ts +0 -50
  752. package/dist/types/ts3.4/commands/CreateEnvironmentTemplateVersionCommand.d.ts +0 -37
  753. package/dist/types/ts3.4/commands/CreateServiceCommand.d.ts +0 -37
  754. package/dist/types/ts3.4/commands/CreateServiceTemplateCommand.d.ts +0 -39
  755. package/dist/types/ts3.4/commands/CreateServiceTemplateVersionCommand.d.ts +0 -37
  756. package/dist/types/ts3.4/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +0 -40
  757. package/dist/types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +0 -35
  758. package/dist/types/ts3.4/commands/DeleteEnvironmentTemplateCommand.d.ts +0 -35
  759. package/dist/types/ts3.4/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +0 -41
  760. package/dist/types/ts3.4/commands/DeleteServiceCommand.d.ts +0 -35
  761. package/dist/types/ts3.4/commands/DeleteServiceTemplateCommand.d.ts +0 -35
  762. package/dist/types/ts3.4/commands/DeleteServiceTemplateVersionCommand.d.ts +0 -41
  763. package/dist/types/ts3.4/commands/GetAccountSettingsCommand.d.ts +0 -35
  764. package/dist/types/ts3.4/commands/GetEnvironmentAccountConnectionCommand.d.ts +0 -37
  765. package/dist/types/ts3.4/commands/GetEnvironmentCommand.d.ts +0 -35
  766. package/dist/types/ts3.4/commands/GetEnvironmentTemplateCommand.d.ts +0 -35
  767. package/dist/types/ts3.4/commands/GetEnvironmentTemplateVersionCommand.d.ts +0 -35
  768. package/dist/types/ts3.4/commands/GetServiceCommand.d.ts +0 -35
  769. package/dist/types/ts3.4/commands/GetServiceInstanceCommand.d.ts +0 -36
  770. package/dist/types/ts3.4/commands/GetServiceTemplateCommand.d.ts +0 -35
  771. package/dist/types/ts3.4/commands/GetServiceTemplateVersionCommand.d.ts +0 -35
  772. package/dist/types/ts3.4/commands/ListEnvironmentAccountConnectionsCommand.d.ts +0 -37
  773. package/dist/types/ts3.4/commands/ListEnvironmentTemplateVersionsCommand.d.ts +0 -35
  774. package/dist/types/ts3.4/commands/ListEnvironmentTemplatesCommand.d.ts +0 -35
  775. package/dist/types/ts3.4/commands/ListEnvironmentsCommand.d.ts +0 -35
  776. package/dist/types/ts3.4/commands/ListServiceInstancesCommand.d.ts +0 -35
  777. package/dist/types/ts3.4/commands/ListServiceTemplateVersionsCommand.d.ts +0 -35
  778. package/dist/types/ts3.4/commands/ListServiceTemplatesCommand.d.ts +0 -35
  779. package/dist/types/ts3.4/commands/ListServicesCommand.d.ts +0 -35
  780. package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -35
  781. package/dist/types/ts3.4/commands/RejectEnvironmentAccountConnectionCommand.d.ts +0 -40
  782. package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
  783. package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
  784. package/dist/types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +0 -35
  785. package/dist/types/ts3.4/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +0 -37
  786. package/dist/types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +0 -80
  787. package/dist/types/ts3.4/commands/UpdateEnvironmentTemplateCommand.d.ts +0 -35
  788. package/dist/types/ts3.4/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +0 -35
  789. package/dist/types/ts3.4/commands/UpdateServiceCommand.d.ts +0 -41
  790. package/dist/types/ts3.4/commands/UpdateServiceInstanceCommand.d.ts +0 -73
  791. package/dist/types/ts3.4/commands/UpdateServicePipelineCommand.d.ts +0 -73
  792. package/dist/types/ts3.4/commands/UpdateServiceTemplateCommand.d.ts +0 -35
  793. package/dist/types/ts3.4/commands/UpdateServiceTemplateVersionCommand.d.ts +0 -35
  794. package/dist/types/ts3.4/models/models_0.d.ts +0 -2996
  795. package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
  796. package/dist/types/ts3.4/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +0 -4
  797. package/dist/types/ts3.4/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +0 -4
  798. package/dist/types/ts3.4/pagination/ListEnvironmentTemplatesPaginator.d.ts +0 -4
  799. package/dist/types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +0 -4
  800. package/dist/types/ts3.4/pagination/ListServiceInstancesPaginator.d.ts +0 -4
  801. package/dist/types/ts3.4/pagination/ListServiceTemplateVersionsPaginator.d.ts +0 -4
  802. package/dist/types/ts3.4/pagination/ListServiceTemplatesPaginator.d.ts +0 -4
  803. package/dist/types/ts3.4/pagination/ListServicesPaginator.d.ts +0 -4
  804. package/dist/types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
  805. package/dist/types/ts3.4/protocols/Aws_json1_0.d.ts +0 -149
  806. package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -37
  807. package/dist/types/ts3.4/runtimeConfig.d.ts +0 -37
  808. package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -36
  809. package/dist/types/ts3.4/runtimeConfig.shared.d.ts +0 -13
  810. package/dist/types/ts3.4/waiters/waitForEnvironmentDeployed.d.ts +0 -14
  811. package/dist/types/ts3.4/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +0 -14
  812. package/dist/types/ts3.4/waiters/waitForServiceCreated.d.ts +0 -14
  813. package/dist/types/ts3.4/waiters/waitForServiceDeleted.d.ts +0 -14
  814. package/dist/types/ts3.4/waiters/waitForServiceInstanceDeployed.d.ts +0 -14
  815. package/dist/types/ts3.4/waiters/waitForServicePipelineDeployed.d.ts +0 -14
  816. package/dist/types/ts3.4/waiters/waitForServiceTemplateVersionRegistered.d.ts +0 -14
  817. package/dist/types/ts3.4/waiters/waitForServiceUpdated.d.ts +0 -14
  818. package/dist/types/waiters/waitForEnvironmentDeployed.d.ts +0 -14
  819. package/dist/types/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +0 -14
  820. package/dist/types/waiters/waitForServiceCreated.d.ts +0 -14
  821. package/dist/types/waiters/waitForServiceDeleted.d.ts +0 -14
  822. package/dist/types/waiters/waitForServiceInstanceDeployed.d.ts +0 -14
  823. package/dist/types/waiters/waitForServicePipelineDeployed.d.ts +0 -14
  824. package/dist/types/waiters/waitForServiceTemplateVersionRegistered.d.ts +0 -14
  825. package/dist/types/waiters/waitForServiceUpdated.d.ts +0 -14
  826. package/endpoints.ts +0 -57
  827. package/jest.config.js +0 -4
  828. package/models/models_0.ts +0 -3943
  829. package/pagination/Interfaces.ts +0 -7
  830. package/pagination/ListEnvironmentAccountConnectionsPaginator.ts +0 -58
  831. package/pagination/ListEnvironmentTemplateVersionsPaginator.ts +0 -58
  832. package/pagination/ListEnvironmentTemplatesPaginator.ts +0 -58
  833. package/pagination/ListEnvironmentsPaginator.ts +0 -58
  834. package/pagination/ListServiceInstancesPaginator.ts +0 -58
  835. package/pagination/ListServiceTemplateVersionsPaginator.ts +0 -58
  836. package/pagination/ListServiceTemplatesPaginator.ts +0 -58
  837. package/pagination/ListServicesPaginator.ts +0 -58
  838. package/pagination/ListTagsForResourcePaginator.ts +0 -58
  839. package/protocols/Aws_json1_0.ts +0 -7421
  840. package/runtimeConfig.browser.ts +0 -40
  841. package/runtimeConfig.native.ts +0 -16
  842. package/runtimeConfig.shared.ts +0 -16
  843. package/runtimeConfig.ts +0 -45
  844. package/tsconfig.es.json +0 -10
  845. package/tsconfig.json +0 -31
  846. package/tsconfig.types.json +0 -8
  847. package/waiters/waitForEnvironmentDeployed.ts +0 -54
  848. package/waiters/waitForEnvironmentTemplateVersionRegistered.ts +0 -68
  849. package/waiters/waitForServiceCreated.ts +0 -70
  850. package/waiters/waitForServiceDeleted.ts +0 -49
  851. package/waiters/waitForServiceInstanceDeployed.ts +0 -54
  852. package/waiters/waitForServicePipelineDeployed.ts +0 -54
  853. package/waiters/waitForServiceTemplateVersionRegistered.ts +0 -68
  854. package/waiters/waitForServiceUpdated.ts +0 -78
@@ -1,704 +0,0 @@
1
- import { ProtonClient } from "./ProtonClient";
2
- import { AcceptEnvironmentAccountConnectionCommandInput, AcceptEnvironmentAccountConnectionCommandOutput } from "./commands/AcceptEnvironmentAccountConnectionCommand";
3
- import { CancelEnvironmentDeploymentCommandInput, CancelEnvironmentDeploymentCommandOutput } from "./commands/CancelEnvironmentDeploymentCommand";
4
- import { CancelServiceInstanceDeploymentCommandInput, CancelServiceInstanceDeploymentCommandOutput } from "./commands/CancelServiceInstanceDeploymentCommand";
5
- import { CancelServicePipelineDeploymentCommandInput, CancelServicePipelineDeploymentCommandOutput } from "./commands/CancelServicePipelineDeploymentCommand";
6
- import { CreateEnvironmentAccountConnectionCommandInput, CreateEnvironmentAccountConnectionCommandOutput } from "./commands/CreateEnvironmentAccountConnectionCommand";
7
- import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
8
- import { CreateEnvironmentTemplateCommandInput, CreateEnvironmentTemplateCommandOutput } from "./commands/CreateEnvironmentTemplateCommand";
9
- import { CreateEnvironmentTemplateVersionCommandInput, CreateEnvironmentTemplateVersionCommandOutput } from "./commands/CreateEnvironmentTemplateVersionCommand";
10
- import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
11
- import { CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput } from "./commands/CreateServiceTemplateCommand";
12
- import { CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput } from "./commands/CreateServiceTemplateVersionCommand";
13
- import { DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput } from "./commands/DeleteEnvironmentAccountConnectionCommand";
14
- import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
15
- import { DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput } from "./commands/DeleteEnvironmentTemplateCommand";
16
- import { DeleteEnvironmentTemplateVersionCommandInput, DeleteEnvironmentTemplateVersionCommandOutput } from "./commands/DeleteEnvironmentTemplateVersionCommand";
17
- import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
18
- import { DeleteServiceTemplateCommandInput, DeleteServiceTemplateCommandOutput } from "./commands/DeleteServiceTemplateCommand";
19
- import { DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionCommandOutput } from "./commands/DeleteServiceTemplateVersionCommand";
20
- import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
21
- import { GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput } from "./commands/GetEnvironmentAccountConnectionCommand";
22
- import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
23
- import { GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput } from "./commands/GetEnvironmentTemplateCommand";
24
- import { GetEnvironmentTemplateVersionCommandInput, GetEnvironmentTemplateVersionCommandOutput } from "./commands/GetEnvironmentTemplateVersionCommand";
25
- import { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
26
- import { GetServiceInstanceCommandInput, GetServiceInstanceCommandOutput } from "./commands/GetServiceInstanceCommand";
27
- import { GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput } from "./commands/GetServiceTemplateCommand";
28
- import { GetServiceTemplateVersionCommandInput, GetServiceTemplateVersionCommandOutput } from "./commands/GetServiceTemplateVersionCommand";
29
- import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "./commands/ListEnvironmentAccountConnectionsCommand";
30
- import { ListEnvironmentTemplateVersionsCommandInput, ListEnvironmentTemplateVersionsCommandOutput } from "./commands/ListEnvironmentTemplateVersionsCommand";
31
- import { ListEnvironmentTemplatesCommandInput, ListEnvironmentTemplatesCommandOutput } from "./commands/ListEnvironmentTemplatesCommand";
32
- import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
33
- import { ListServiceInstancesCommandInput, ListServiceInstancesCommandOutput } from "./commands/ListServiceInstancesCommand";
34
- import { ListServiceTemplateVersionsCommandInput, ListServiceTemplateVersionsCommandOutput } from "./commands/ListServiceTemplateVersionsCommand";
35
- import { ListServiceTemplatesCommandInput, ListServiceTemplatesCommandOutput } from "./commands/ListServiceTemplatesCommand";
36
- import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
37
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
38
- import { RejectEnvironmentAccountConnectionCommandInput, RejectEnvironmentAccountConnectionCommandOutput } from "./commands/RejectEnvironmentAccountConnectionCommand";
39
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
40
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
41
- import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
42
- import { UpdateEnvironmentAccountConnectionCommandInput, UpdateEnvironmentAccountConnectionCommandOutput } from "./commands/UpdateEnvironmentAccountConnectionCommand";
43
- import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
44
- import { UpdateEnvironmentTemplateCommandInput, UpdateEnvironmentTemplateCommandOutput } from "./commands/UpdateEnvironmentTemplateCommand";
45
- import { UpdateEnvironmentTemplateVersionCommandInput, UpdateEnvironmentTemplateVersionCommandOutput } from "./commands/UpdateEnvironmentTemplateVersionCommand";
46
- import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
47
- import { UpdateServiceInstanceCommandInput, UpdateServiceInstanceCommandOutput } from "./commands/UpdateServiceInstanceCommand";
48
- import { UpdateServicePipelineCommandInput, UpdateServicePipelineCommandOutput } from "./commands/UpdateServicePipelineCommand";
49
- import { UpdateServiceTemplateCommandInput, UpdateServiceTemplateCommandOutput } from "./commands/UpdateServiceTemplateCommand";
50
- import { UpdateServiceTemplateVersionCommandInput, UpdateServiceTemplateVersionCommandOutput } from "./commands/UpdateServiceTemplateVersionCommand";
51
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
52
- /**
53
- * <p>This is the AWS Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Operations.html">actions</a> and <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Types.html">data types</a> for the AWS Proton service.</p>
54
- * <p>The documentation for each action shows the Query API request parameters and the XML response.</p>
55
- * <p>Alternatively, you can use the AWS CLI to access an API. For more information, see the <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS Command Line Interface User Guide</a>.</p>
56
- * <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized
57
- * infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available
58
- * service templates to automate their application or service deployments.</p>
59
- * <p>Because administrators define the infrastructure and tooling that AWS Proton deploys and manages, they need permissions to use all of the
60
- * listed API operations.</p>
61
- * <p>When developers select a specific infrastructure and tooling set, AWS Proton deploys their applications. To monitor their applications
62
- * that are running on AWS Proton, developers need permissions to the service <i>create</i>, <i>list</i>,
63
- * <i>update</i> and <i>delete</i> API operations and the service instance <i>list</i> and
64
- * <i>update</i> API operations.</p>
65
- * <p>To learn more about AWS Proton administration, see the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/Welcome.html">AWS Proton
66
- * Administrator Guide</a>.</p>
67
- * <p>To learn more about deploying serverless and containerized applications on AWS Proton, see the <a href="https://docs.aws.amazon.com/proton/latest/userguide/Welcome.html">AWS Proton User Guide</a>.</p>
68
- * <p>
69
- * <b>Ensuring Idempotency</b>
70
- * </p>
71
- * <p>When you make a mutating API request, the request typically returns a result before the asynchronous workflows of the operation are
72
- * complete. Operations might also time out or encounter other server issues before they're complete, even if the request already returned a
73
- * result. This might make it difficult to determine whether the request succeeded. Moreover, you might need to retry the request multiple
74
- * times to ensure that the operation completes successfully. However, if the original request and the subsequent retries are successful, the
75
- * operation occurs multiple times. This means that you might create more resources than you intended.</p>
76
- * <p>
77
- * <i>Idempotency</i> ensures that an API request action completes no more than one time. With an idempotent request, if the
78
- * original request action completes successfully, any subsequent retries complete successfully without performing any further actions.
79
- * However, the result might contain updated information, such as the current creation status.</p>
80
- * <p>The following lists of APIs are grouped according to methods that ensure idempotency.</p>
81
- * <p>
82
- * <b>Idempotent create APIs with a client token</b>
83
- * </p>
84
- * <p>The API actions in this list support idempotency with the use of a <i>client token</i>. The corresponding AWS CLI
85
- * commands also support idempotency using a client token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. To
86
- * make an idempotent API request using one of these actions, specify a client token in the request. We recommend that you
87
- * <i>don't</i> reuse the same client token for other API requests. If you don’t provide a client token for these APIs, a
88
- * default client token is automatically provided by SDKs.</p>
89
- * <p>Given a request action that has succeeded:</p>
90
- * <p>If you retry the request using the same client token and the same parameters, the retry succeeds without performing any further actions
91
- * other than returning the original resource detail data in the response.</p>
92
- * <p>If you retry the request using the same client token, but one or more of the parameters are different, the retry throws a
93
- * <code>ValidationException</code> with an <code>IdempotentParameterMismatch</code> error.</p>
94
- * <p>Client tokens expire eight hours after a request is made. If you retry the request with the expired token, a new resource is
95
- * created.</p>
96
- * <p>If the original resource is deleted and you retry the request, a new resource is created.</p>
97
- * <p>Idempotent create APIs with a client token:</p>
98
- * <ul>
99
- * <li>
100
- * <p>CreateEnvironmentTemplateVersion</p>
101
- * </li>
102
- * <li>
103
- * <p>CreateServiceTemplateVersion</p>
104
- * </li>
105
- * <li>
106
- * <p>CreateEnvironmentAccountConnection</p>
107
- * </li>
108
- * </ul>
109
- * <p>
110
- * <b>Idempotent create APIs</b>
111
- * </p>
112
- * <p>Given a request action that has succeeded:</p>
113
- * <p>If you retry the request with an API from this group, and the original resource <i>hasn't</i> been modified, the retry
114
- * succeeds without performing any further actions other than returning the original resource detail data in the response.</p>
115
- * <p>If the original resource has been modified, the retry throws a <code>ConflictException</code>.</p>
116
- * <p>If you retry with different input parameters, the retry throws a <code>ValidationException</code> with an
117
- * <code>IdempotentParameterMismatch</code> error.</p>
118
- * <p>Idempotent create APIs:</p>
119
- * <ul>
120
- * <li>
121
- * <p>CreateEnvironmentTemplate</p>
122
- * </li>
123
- * <li>
124
- * <p>CreateServiceTemplate</p>
125
- * </li>
126
- * <li>
127
- * <p>CreateEnvironment</p>
128
- * </li>
129
- * <li>
130
- * <p>CreateService</p>
131
- * </li>
132
- * </ul>
133
- * <p>
134
- * <b>Idempotent delete APIs</b>
135
- * </p>
136
- * <p>Given a request action that has succeeded:</p>
137
- * <p>When you retry the request with an API from this group and the resource was deleted, its metadata is returned in the response.</p>
138
- * <p>If you retry and the resource doesn't exist, the response is empty.</p>
139
- * <p>In both cases, the retry succeeds.</p>
140
- * <p>Idempotent delete APIs:</p>
141
- * <ul>
142
- * <li>
143
- * <p>DeleteEnvironmentTemplate</p>
144
- * </li>
145
- * <li>
146
- * <p>DeleteEnvironmentTemplateVersion</p>
147
- * </li>
148
- * <li>
149
- * <p>DeleteServiceTemplate</p>
150
- * </li>
151
- * <li>
152
- * <p>DeleteServiceTemplateVersion</p>
153
- * </li>
154
- * <li>
155
- * <p>DeleteEnvironmentAccountConnection</p>
156
- * </li>
157
- * </ul>
158
- * <p>
159
- * <b>Asynchronous idempotent delete APIs</b>
160
- * </p>
161
- * <p>Given a request action that has succeeded:</p>
162
- * <p>If you retry the request with an API from this group, if the original request delete operation status is
163
- * <code>DELETE_IN_PROGRESS</code>, the retry returns the resource detail data in the response without performing any further actions.</p>
164
- * <p>If the original request delete operation is complete, a retry returns an empty response.</p>
165
- * <p>Asynchronous idempotent delete APIs:</p>
166
- * <ul>
167
- * <li>
168
- * <p>DeleteEnvironment</p>
169
- * </li>
170
- * <li>
171
- * <p>DeleteService</p>
172
- * </li>
173
- * </ul>
174
- */
175
- export declare class Proton extends ProtonClient {
176
- /**
177
- * <p>In a management account, an environment account connection request is accepted. When the environment account connection request is
178
- * accepted, AWS Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment
179
- * account.</p>
180
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
181
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
182
- */
183
- acceptEnvironmentAccountConnection(args: AcceptEnvironmentAccountConnectionCommandInput, options?: __HttpHandlerOptions): Promise<AcceptEnvironmentAccountConnectionCommandOutput>;
184
- acceptEnvironmentAccountConnection(args: AcceptEnvironmentAccountConnectionCommandInput, cb: (err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void): void;
185
- acceptEnvironmentAccountConnection(args: AcceptEnvironmentAccountConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void): void;
186
- /**
187
- * <p>Attempts to cancel an environment deployment on an <a>UpdateEnvironment</a> action, if the deployment is
188
- * <code>IN_PROGRESS</code>. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-update.html">Update an environment</a> in the <i>AWS Proton Administrator guide</i>.</p>
189
- * <p>The following list includes potential cancellation scenarios.</p>
190
- * <ul>
191
- * <li>
192
- * <p>If the cancellation attempt succeeds, the resulting deployment state is <code>CANCELLED</code>.</p>
193
- * </li>
194
- * <li>
195
- * <p>If the cancellation attempt fails, the resulting deployment state is <code>FAILED</code>.</p>
196
- * </li>
197
- * <li>
198
- * <p>If the current <a>UpdateEnvironment</a> action succeeds before the cancellation attempt starts, the resulting
199
- * deployment state is <code>SUCCEEDED</code> and the cancellation attempt has no effect.</p>
200
- * </li>
201
- * </ul>
202
- */
203
- cancelEnvironmentDeployment(args: CancelEnvironmentDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CancelEnvironmentDeploymentCommandOutput>;
204
- cancelEnvironmentDeployment(args: CancelEnvironmentDeploymentCommandInput, cb: (err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void): void;
205
- cancelEnvironmentDeployment(args: CancelEnvironmentDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void): void;
206
- /**
207
- * <p>Attempts to cancel a service instance deployment on an <a>UpdateServiceInstance</a> action, if the deployment is
208
- * <code>IN_PROGRESS</code>. For more information, see <i>Update a service instance</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-instance-update.html">AWS Proton Administrator guide</a> or the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-instance-update.html">AWS Proton User guide</a>.</p>
209
- * <p>The following list includes potential cancellation scenarios.</p>
210
- * <ul>
211
- * <li>
212
- * <p>If the cancellation attempt succeeds, the resulting deployment state is <code>CANCELLED</code>.</p>
213
- * </li>
214
- * <li>
215
- * <p>If the cancellation attempt fails, the resulting deployment state is <code>FAILED</code>.</p>
216
- * </li>
217
- * <li>
218
- * <p>If the current <a>UpdateServiceInstance</a> action succeeds before the cancellation attempt starts, the resulting
219
- * deployment state is <code>SUCCEEDED</code> and the cancellation attempt has no effect.</p>
220
- * </li>
221
- * </ul>
222
- */
223
- cancelServiceInstanceDeployment(args: CancelServiceInstanceDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CancelServiceInstanceDeploymentCommandOutput>;
224
- cancelServiceInstanceDeployment(args: CancelServiceInstanceDeploymentCommandInput, cb: (err: any, data?: CancelServiceInstanceDeploymentCommandOutput) => void): void;
225
- cancelServiceInstanceDeployment(args: CancelServiceInstanceDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelServiceInstanceDeploymentCommandOutput) => void): void;
226
- /**
227
- * <p>Attempts to cancel a service pipeline deployment on an <a>UpdateServicePipeline</a> action, if the deployment is
228
- * <code>IN_PROGRESS</code>. For more information, see <i>Update a service pipeline</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-pipeline-update.html">AWS Proton Administrator guide</a> or the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-pipeline-update.html">AWS Proton User guide</a>.</p>
229
- * <p>The following list includes potential cancellation scenarios.</p>
230
- * <ul>
231
- * <li>
232
- * <p>If the cancellation attempt succeeds, the resulting deployment state is <code>CANCELLED</code>.</p>
233
- * </li>
234
- * <li>
235
- * <p>If the cancellation attempt fails, the resulting deployment state is <code>FAILED</code>.</p>
236
- * </li>
237
- * <li>
238
- * <p>If the current <a>UpdateServicePipeline</a> action succeeds before the cancellation attempt starts, the resulting
239
- * deployment state is <code>SUCCEEDED</code> and the cancellation attempt has no effect.</p>
240
- * </li>
241
- * </ul>
242
- */
243
- cancelServicePipelineDeployment(args: CancelServicePipelineDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CancelServicePipelineDeploymentCommandOutput>;
244
- cancelServicePipelineDeployment(args: CancelServicePipelineDeploymentCommandInput, cb: (err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void): void;
245
- cancelServicePipelineDeployment(args: CancelServicePipelineDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void): void;
246
- /**
247
- * <p>Deploy a new environment. An AWS Proton environment is created from an environment template that defines infrastructure and resources
248
- * that can be shared across services. For more information, see the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html">Environments</a> in the <i>AWS Proton Administrator
249
- * Guide.</i>
250
- * </p>
251
- */
252
- createEnvironment(args: CreateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentCommandOutput>;
253
- createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
254
- createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
255
- /**
256
- * <p>Create an environment account connection in an environment account so that environment infrastructure resources can be provisioned in
257
- * the environment account from a management account.</p>
258
- * <p>An environment account connection is a secure bi-directional connection between a <i>management account</i> and an
259
- * <i>environment account</i> that maintains authorization and permissions. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account connections</a> in the
260
- * <i>AWS Proton Administrator guide</i>.</p>
261
- */
262
- createEnvironmentAccountConnection(args: CreateEnvironmentAccountConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentAccountConnectionCommandOutput>;
263
- createEnvironmentAccountConnection(args: CreateEnvironmentAccountConnectionCommandInput, cb: (err: any, data?: CreateEnvironmentAccountConnectionCommandOutput) => void): void;
264
- createEnvironmentAccountConnection(args: CreateEnvironmentAccountConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentAccountConnectionCommandOutput) => void): void;
265
- /**
266
- * <p>Create an environment template for AWS Proton. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-templates.html">Environment Templates</a> in the <i>AWS Proton Administrator
267
- * Guide</i>.</p>
268
- * <p>You can create an environment template in one of the two following ways:</p>
269
- * <ul>
270
- * <li>
271
- * <p>Register and publish a <i>standard</i> environment template that instructs AWS Proton to deploy and manage
272
- * environment infrastructure.</p>
273
- * </li>
274
- * <li>
275
- * <p>Register and publish a <i>customer managed</i> environment template that connects AWS Proton to your existing
276
- * provisioned infrastructure that you manage. AWS Proton <i>doesn't</i> manage your existing provisioned
277
- * infrastructure. To create an environment template for customer provisioned and managed infrastructure, include the
278
- * <code>provisioning</code> parameter and set the value to <code>CUSTOMER_MANAGED</code>. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/template-create.html">Register and publish an environment template</a>
279
- * in the <i>AWS Proton Administrator Guide</i>.</p>
280
- * </li>
281
- * </ul>
282
- */
283
- createEnvironmentTemplate(args: CreateEnvironmentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentTemplateCommandOutput>;
284
- createEnvironmentTemplate(args: CreateEnvironmentTemplateCommandInput, cb: (err: any, data?: CreateEnvironmentTemplateCommandOutput) => void): void;
285
- createEnvironmentTemplate(args: CreateEnvironmentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentTemplateCommandOutput) => void): void;
286
- /**
287
- * <p>Create a new major or minor version of an environment template. A major version of an environment template is a version that
288
- * <i>isn't</i> backwards compatible. A minor version of an environment template is a version that's backwards compatible
289
- * within its major version.</p>
290
- */
291
- createEnvironmentTemplateVersion(args: CreateEnvironmentTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentTemplateVersionCommandOutput>;
292
- createEnvironmentTemplateVersion(args: CreateEnvironmentTemplateVersionCommandInput, cb: (err: any, data?: CreateEnvironmentTemplateVersionCommandOutput) => void): void;
293
- createEnvironmentTemplateVersion(args: CreateEnvironmentTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentTemplateVersionCommandOutput) => void): void;
294
- /**
295
- * <p>Create an AWS Proton service. An AWS Proton service is an instantiation of a service template and often includes several service instances
296
- * and pipeline. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-services.html">Services</a> in
297
- * the <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-service.html">Services</a> in the <i>AWS Proton User Guide</i>.</p>
298
- */
299
- createService(args: CreateServiceCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceCommandOutput>;
300
- createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
301
- createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
302
- /**
303
- * <p>Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CICD
304
- * service pipeline. Developers, in turn, select the service template from AWS Proton. If the selected service template includes a service
305
- * pipeline definition, they provide a link to their source code repository. AWS Proton then deploys and manages the infrastructure defined by
306
- * the selected service template. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/managing-svc-templates.html">Service Templates</a> in the <i>AWS Proton Administrator
307
- * Guide</i>.</p>
308
- */
309
- createServiceTemplate(args: CreateServiceTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceTemplateCommandOutput>;
310
- createServiceTemplate(args: CreateServiceTemplateCommandInput, cb: (err: any, data?: CreateServiceTemplateCommandOutput) => void): void;
311
- createServiceTemplate(args: CreateServiceTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceTemplateCommandOutput) => void): void;
312
- /**
313
- * <p>Create a new major or minor version of a service template. A major version of a service template is a version that
314
- * <i>isn't</i> backwards compatible. A minor version of a service template is a version that's backwards compatible within
315
- * its major version.</p>
316
- */
317
- createServiceTemplateVersion(args: CreateServiceTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceTemplateVersionCommandOutput>;
318
- createServiceTemplateVersion(args: CreateServiceTemplateVersionCommandInput, cb: (err: any, data?: CreateServiceTemplateVersionCommandOutput) => void): void;
319
- createServiceTemplateVersion(args: CreateServiceTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceTemplateVersionCommandOutput) => void): void;
320
- /**
321
- * <p>Delete an environment.</p>
322
- */
323
- deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
324
- deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
325
- deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
326
- /**
327
- * <p>In an environment account, delete an environment account connection.</p>
328
- * <p>After you delete an environment account connection that’s in use by an AWS Proton environment, AWS Proton <i>can’t</i>
329
- * manage the environment infrastructure resources until a new environment account connection is accepted for the environment account and
330
- * associated environment. You're responsible for cleaning up provisioned resources that remain without an environment connection.</p>
331
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
332
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
333
- */
334
- deleteEnvironmentAccountConnection(args: DeleteEnvironmentAccountConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentAccountConnectionCommandOutput>;
335
- deleteEnvironmentAccountConnection(args: DeleteEnvironmentAccountConnectionCommandInput, cb: (err: any, data?: DeleteEnvironmentAccountConnectionCommandOutput) => void): void;
336
- deleteEnvironmentAccountConnection(args: DeleteEnvironmentAccountConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentAccountConnectionCommandOutput) => void): void;
337
- /**
338
- * <p>If no other major or minor versions of an environment template exist, delete the environment template.</p>
339
- */
340
- deleteEnvironmentTemplate(args: DeleteEnvironmentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentTemplateCommandOutput>;
341
- deleteEnvironmentTemplate(args: DeleteEnvironmentTemplateCommandInput, cb: (err: any, data?: DeleteEnvironmentTemplateCommandOutput) => void): void;
342
- deleteEnvironmentTemplate(args: DeleteEnvironmentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentTemplateCommandOutput) => void): void;
343
- /**
344
- * <p>If no other minor versions of an environment template exist, delete a major version of the environment template if it's not the
345
- * <code>Recommended</code> version. Delete the <code>Recommended</code> version of the environment template if no other major versions
346
- * or minor versions of the environment template exist. A major version of an environment template is a version that's not backwards
347
- * compatible.</p>
348
- * <p>Delete a minor version of an environment template if it <i>isn't</i> the <code>Recommended</code> version. Delete a
349
- * <code>Recommended</code> minor version of the environment template if no other minor versions of the environment template exist. A
350
- * minor version of an environment template is a version that's backwards compatible.</p>
351
- */
352
- deleteEnvironmentTemplateVersion(args: DeleteEnvironmentTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentTemplateVersionCommandOutput>;
353
- deleteEnvironmentTemplateVersion(args: DeleteEnvironmentTemplateVersionCommandInput, cb: (err: any, data?: DeleteEnvironmentTemplateVersionCommandOutput) => void): void;
354
- deleteEnvironmentTemplateVersion(args: DeleteEnvironmentTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentTemplateVersionCommandOutput) => void): void;
355
- /**
356
- * <p>Delete a service.</p>
357
- */
358
- deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
359
- deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
360
- deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
361
- /**
362
- * <p>If no other major or minor versions of the service template exist, delete the service template.</p>
363
- */
364
- deleteServiceTemplate(args: DeleteServiceTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceTemplateCommandOutput>;
365
- deleteServiceTemplate(args: DeleteServiceTemplateCommandInput, cb: (err: any, data?: DeleteServiceTemplateCommandOutput) => void): void;
366
- deleteServiceTemplate(args: DeleteServiceTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceTemplateCommandOutput) => void): void;
367
- /**
368
- * <p>If no other minor versions of a service template exist, delete a major version of the service template if it's not the
369
- * <code>Recommended</code> version. Delete the <code>Recommended</code> version of the service template if no other major versions or
370
- * minor versions of the service template exist. A major version of a service template is a version that <i>isn't</i> backwards
371
- * compatible.</p>
372
- * <p>Delete a minor version of a service template if it's not the <code>Recommended</code> version. Delete a <code>Recommended</code> minor
373
- * version of the service template if no other minor versions of the service template exist. A minor version of a service template is a
374
- * version that's backwards compatible.</p>
375
- */
376
- deleteServiceTemplateVersion(args: DeleteServiceTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceTemplateVersionCommandOutput>;
377
- deleteServiceTemplateVersion(args: DeleteServiceTemplateVersionCommandInput, cb: (err: any, data?: DeleteServiceTemplateVersionCommandOutput) => void): void;
378
- deleteServiceTemplateVersion(args: DeleteServiceTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceTemplateVersionCommandOutput) => void): void;
379
- /**
380
- * <p>Get detail data for the AWS Proton pipeline service role.</p>
381
- */
382
- getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSettingsCommandOutput>;
383
- getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
384
- getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
385
- /**
386
- * <p>Get detail data for an environment.</p>
387
- */
388
- getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
389
- getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
390
- getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
391
- /**
392
- * <p>In an environment account, view the detail data for an environment account connection.</p>
393
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
394
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
395
- */
396
- getEnvironmentAccountConnection(args: GetEnvironmentAccountConnectionCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentAccountConnectionCommandOutput>;
397
- getEnvironmentAccountConnection(args: GetEnvironmentAccountConnectionCommandInput, cb: (err: any, data?: GetEnvironmentAccountConnectionCommandOutput) => void): void;
398
- getEnvironmentAccountConnection(args: GetEnvironmentAccountConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentAccountConnectionCommandOutput) => void): void;
399
- /**
400
- * <p>Get detail data for an environment template.</p>
401
- */
402
- getEnvironmentTemplate(args: GetEnvironmentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentTemplateCommandOutput>;
403
- getEnvironmentTemplate(args: GetEnvironmentTemplateCommandInput, cb: (err: any, data?: GetEnvironmentTemplateCommandOutput) => void): void;
404
- getEnvironmentTemplate(args: GetEnvironmentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentTemplateCommandOutput) => void): void;
405
- /**
406
- * <p>View detail data for a major or minor version of an environment template.</p>
407
- */
408
- getEnvironmentTemplateVersion(args: GetEnvironmentTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentTemplateVersionCommandOutput>;
409
- getEnvironmentTemplateVersion(args: GetEnvironmentTemplateVersionCommandInput, cb: (err: any, data?: GetEnvironmentTemplateVersionCommandOutput) => void): void;
410
- getEnvironmentTemplateVersion(args: GetEnvironmentTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentTemplateVersionCommandOutput) => void): void;
411
- /**
412
- * <p>Get detail data for a service.</p>
413
- */
414
- getService(args: GetServiceCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceCommandOutput>;
415
- getService(args: GetServiceCommandInput, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
416
- getService(args: GetServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
417
- /**
418
- * <p>Get detail data for a service instance. A service instance is an instantiation of service template, which is running in a specific
419
- * environment.</p>
420
- */
421
- getServiceInstance(args: GetServiceInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceInstanceCommandOutput>;
422
- getServiceInstance(args: GetServiceInstanceCommandInput, cb: (err: any, data?: GetServiceInstanceCommandOutput) => void): void;
423
- getServiceInstance(args: GetServiceInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceInstanceCommandOutput) => void): void;
424
- /**
425
- * <p>Get detail data for a service template.</p>
426
- */
427
- getServiceTemplate(args: GetServiceTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceTemplateCommandOutput>;
428
- getServiceTemplate(args: GetServiceTemplateCommandInput, cb: (err: any, data?: GetServiceTemplateCommandOutput) => void): void;
429
- getServiceTemplate(args: GetServiceTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceTemplateCommandOutput) => void): void;
430
- /**
431
- * <p>View detail data for a major or minor version of a service template.</p>
432
- */
433
- getServiceTemplateVersion(args: GetServiceTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceTemplateVersionCommandOutput>;
434
- getServiceTemplateVersion(args: GetServiceTemplateVersionCommandInput, cb: (err: any, data?: GetServiceTemplateVersionCommandOutput) => void): void;
435
- getServiceTemplateVersion(args: GetServiceTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceTemplateVersionCommandOutput) => void): void;
436
- /**
437
- * <p>View a list of environment account connections.</p>
438
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
439
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
440
- */
441
- listEnvironmentAccountConnections(args: ListEnvironmentAccountConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentAccountConnectionsCommandOutput>;
442
- listEnvironmentAccountConnections(args: ListEnvironmentAccountConnectionsCommandInput, cb: (err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void): void;
443
- listEnvironmentAccountConnections(args: ListEnvironmentAccountConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void): void;
444
- /**
445
- * <p>List environments with detail data summaries.</p>
446
- */
447
- listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
448
- listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
449
- listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
450
- /**
451
- * <p>List environment templates.</p>
452
- */
453
- listEnvironmentTemplates(args: ListEnvironmentTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentTemplatesCommandOutput>;
454
- listEnvironmentTemplates(args: ListEnvironmentTemplatesCommandInput, cb: (err: any, data?: ListEnvironmentTemplatesCommandOutput) => void): void;
455
- listEnvironmentTemplates(args: ListEnvironmentTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentTemplatesCommandOutput) => void): void;
456
- /**
457
- * <p>List major or minor versions of an environment template with detail data.</p>
458
- */
459
- listEnvironmentTemplateVersions(args: ListEnvironmentTemplateVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentTemplateVersionsCommandOutput>;
460
- listEnvironmentTemplateVersions(args: ListEnvironmentTemplateVersionsCommandInput, cb: (err: any, data?: ListEnvironmentTemplateVersionsCommandOutput) => void): void;
461
- listEnvironmentTemplateVersions(args: ListEnvironmentTemplateVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentTemplateVersionsCommandOutput) => void): void;
462
- /**
463
- * <p>List service instances with summaries of detail data.</p>
464
- */
465
- listServiceInstances(args: ListServiceInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceInstancesCommandOutput>;
466
- listServiceInstances(args: ListServiceInstancesCommandInput, cb: (err: any, data?: ListServiceInstancesCommandOutput) => void): void;
467
- listServiceInstances(args: ListServiceInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceInstancesCommandOutput) => void): void;
468
- /**
469
- * <p>List services with summaries of detail data.</p>
470
- */
471
- listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
472
- listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
473
- listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
474
- /**
475
- * <p>List service templates with detail data.</p>
476
- */
477
- listServiceTemplates(args: ListServiceTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceTemplatesCommandOutput>;
478
- listServiceTemplates(args: ListServiceTemplatesCommandInput, cb: (err: any, data?: ListServiceTemplatesCommandOutput) => void): void;
479
- listServiceTemplates(args: ListServiceTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceTemplatesCommandOutput) => void): void;
480
- /**
481
- * <p>List major or minor versions of a service template with detail data.</p>
482
- */
483
- listServiceTemplateVersions(args: ListServiceTemplateVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceTemplateVersionsCommandOutput>;
484
- listServiceTemplateVersions(args: ListServiceTemplateVersionsCommandInput, cb: (err: any, data?: ListServiceTemplateVersionsCommandOutput) => void): void;
485
- listServiceTemplateVersions(args: ListServiceTemplateVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceTemplateVersionsCommandOutput) => void): void;
486
- /**
487
- * <p>List tags for a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
488
- */
489
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
490
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
491
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
492
- /**
493
- * <p>In a management account, reject an environment account connection from another environment account.</p>
494
- * <p>After you reject an environment account connection request, you <i>won’t</i> be able to accept or use the rejected
495
- * environment account connection.</p>
496
- * <p>You <i>can’t</i> reject an environment account connection that is connected to an environment.</p>
497
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
498
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
499
- */
500
- rejectEnvironmentAccountConnection(args: RejectEnvironmentAccountConnectionCommandInput, options?: __HttpHandlerOptions): Promise<RejectEnvironmentAccountConnectionCommandOutput>;
501
- rejectEnvironmentAccountConnection(args: RejectEnvironmentAccountConnectionCommandInput, cb: (err: any, data?: RejectEnvironmentAccountConnectionCommandOutput) => void): void;
502
- rejectEnvironmentAccountConnection(args: RejectEnvironmentAccountConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectEnvironmentAccountConnectionCommandOutput) => void): void;
503
- /**
504
- * <p>Tag a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
505
- */
506
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
507
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
508
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
509
- /**
510
- * <p>Remove a tag from a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
511
- */
512
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
513
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
514
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
515
- /**
516
- * <p>Update the AWS Proton pipeline service account settings.</p>
517
- */
518
- updateAccountSettings(args: UpdateAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccountSettingsCommandOutput>;
519
- updateAccountSettings(args: UpdateAccountSettingsCommandInput, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
520
- updateAccountSettings(args: UpdateAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
521
- /**
522
- * <p>Update an environment.</p>
523
- * <p>If the environment is associated with an environment account connection, <i>don't</i> update or include the
524
- * <code>protonServiceRoleArn</code> parameter to update or connect to an environment account connection. </p>
525
- * <p>You can only update to a new environment account connection if it was created in the same environment account that the current
526
- * environment account connection was created in and is associated with the current environment.</p>
527
- * <p>If the environment <i>isn't</i> associated with an environment account connection, <i>don't</i> update or
528
- * include the <code>environmentAccountConnectionId</code> parameter to update or connect to an environment account connection.</p>
529
- * <p>You can update either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value. You
530
- * can’t update both.</p>
531
- * <p>There are four modes for updating an environment as described in the following. The <code>deploymentType</code> field defines the
532
- * mode.</p>
533
- * <dl>
534
- * <dt/>
535
- * <dd>
536
- * <p>
537
- * <code>NONE</code>
538
- * </p>
539
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
540
- * </dd>
541
- * <dt/>
542
- * <dd>
543
- * <p>
544
- * <code>CURRENT_VERSION</code>
545
- * </p>
546
- * <p>In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are
547
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
548
- * <code>deployment-type</code>.</p>
549
- * </dd>
550
- * <dt/>
551
- * <dd>
552
- * <p>
553
- * <code>MINOR_VERSION</code>
554
- * </p>
555
- * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current
556
- * major version in use, by default. You can also specify a different minor version of the current major version in use.</p>
557
- * </dd>
558
- * <dt/>
559
- * <dd>
560
- * <p>
561
- * <code>MAJOR_VERSION</code>
562
- * </p>
563
- * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of
564
- * the current template, by default. You can also specify a different major version that's higher than the major version in use
565
- * and a minor version (optional).</p>
566
- * </dd>
567
- * </dl>
568
- */
569
- updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
570
- updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
571
- updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
572
- /**
573
- * <p>In an environment account, update an environment account connection to use a new IAM role.</p>
574
- * <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
575
- * connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
576
- */
577
- updateEnvironmentAccountConnection(args: UpdateEnvironmentAccountConnectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentAccountConnectionCommandOutput>;
578
- updateEnvironmentAccountConnection(args: UpdateEnvironmentAccountConnectionCommandInput, cb: (err: any, data?: UpdateEnvironmentAccountConnectionCommandOutput) => void): void;
579
- updateEnvironmentAccountConnection(args: UpdateEnvironmentAccountConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentAccountConnectionCommandOutput) => void): void;
580
- /**
581
- * <p>Update an environment template.</p>
582
- */
583
- updateEnvironmentTemplate(args: UpdateEnvironmentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentTemplateCommandOutput>;
584
- updateEnvironmentTemplate(args: UpdateEnvironmentTemplateCommandInput, cb: (err: any, data?: UpdateEnvironmentTemplateCommandOutput) => void): void;
585
- updateEnvironmentTemplate(args: UpdateEnvironmentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentTemplateCommandOutput) => void): void;
586
- /**
587
- * <p>Update a major or minor version of an environment template.</p>
588
- */
589
- updateEnvironmentTemplateVersion(args: UpdateEnvironmentTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentTemplateVersionCommandOutput>;
590
- updateEnvironmentTemplateVersion(args: UpdateEnvironmentTemplateVersionCommandInput, cb: (err: any, data?: UpdateEnvironmentTemplateVersionCommandOutput) => void): void;
591
- updateEnvironmentTemplateVersion(args: UpdateEnvironmentTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentTemplateVersionCommandOutput) => void): void;
592
- /**
593
- * <p>Edit a service description or use a spec to add and delete service instances.</p>
594
- * <note>
595
- * <p>Existing service instances and the service pipeline <i>can't</i> be edited using this API. They can only be
596
- * deleted.</p>
597
- * </note>
598
- * <p>Use the <code>description</code> parameter to modify the description.</p>
599
- * <p>Edit the <code>spec</code> parameter to add or delete instances.</p>
600
- */
601
- updateService(args: UpdateServiceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceCommandOutput>;
602
- updateService(args: UpdateServiceCommandInput, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
603
- updateService(args: UpdateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
604
- /**
605
- * <p>Update a service instance.</p>
606
- * <p>There are four modes for updating a service instance as described in the following. The <code>deploymentType</code> field defines the
607
- * mode.</p>
608
- * <dl>
609
- * <dt/>
610
- * <dd>
611
- * <p>
612
- * <code>NONE</code>
613
- * </p>
614
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
615
- * </dd>
616
- * <dt/>
617
- * <dd>
618
- * <p>
619
- * <code>CURRENT_VERSION</code>
620
- * </p>
621
- * <p>In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are
622
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
623
- * <code>deployment-type</code>.</p>
624
- * </dd>
625
- * <dt/>
626
- * <dd>
627
- * <p>
628
- * <code>MINOR_VERSION</code>
629
- * </p>
630
- * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the
631
- * current major version in use, by default. You can also specify a different minor version of the current major version in
632
- * use.</p>
633
- * </dd>
634
- * <dt/>
635
- * <dd>
636
- * <p>
637
- * <code>MAJOR_VERSION</code>
638
- * </p>
639
- * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version
640
- * of the current template, by default. You can also specify a different major version that is higher than the major version in
641
- * use and a minor version (optional).</p>
642
- * </dd>
643
- * </dl>
644
- */
645
- updateServiceInstance(args: UpdateServiceInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceInstanceCommandOutput>;
646
- updateServiceInstance(args: UpdateServiceInstanceCommandInput, cb: (err: any, data?: UpdateServiceInstanceCommandOutput) => void): void;
647
- updateServiceInstance(args: UpdateServiceInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceInstanceCommandOutput) => void): void;
648
- /**
649
- * <p>Update the service pipeline.</p>
650
- * <p>There are four modes for updating a service pipeline as described in the following. The <code>deploymentType</code> field defines the
651
- * mode.</p>
652
- * <dl>
653
- * <dt/>
654
- * <dd>
655
- * <p>
656
- * <code>NONE</code>
657
- * </p>
658
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
659
- * </dd>
660
- * <dt/>
661
- * <dd>
662
- * <p>
663
- * <code>CURRENT_VERSION</code>
664
- * </p>
665
- * <p>In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are
666
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
667
- * <code>deployment-type</code>.</p>
668
- * </dd>
669
- * <dt/>
670
- * <dd>
671
- * <p>
672
- * <code>MINOR_VERSION</code>
673
- * </p>
674
- * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the
675
- * current major version in use, by default. You can also specify a different minor version of the current major version in
676
- * use.</p>
677
- * </dd>
678
- * <dt/>
679
- * <dd>
680
- * <p>
681
- * <code>MAJOR_VERSION</code>
682
- * </p>
683
- * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version
684
- * of the current template by default. You can also specify a different major version that is higher than the major version in
685
- * use and a minor version (optional).</p>
686
- * </dd>
687
- * </dl>
688
- */
689
- updateServicePipeline(args: UpdateServicePipelineCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServicePipelineCommandOutput>;
690
- updateServicePipeline(args: UpdateServicePipelineCommandInput, cb: (err: any, data?: UpdateServicePipelineCommandOutput) => void): void;
691
- updateServicePipeline(args: UpdateServicePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServicePipelineCommandOutput) => void): void;
692
- /**
693
- * <p>Update a service template.</p>
694
- */
695
- updateServiceTemplate(args: UpdateServiceTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceTemplateCommandOutput>;
696
- updateServiceTemplate(args: UpdateServiceTemplateCommandInput, cb: (err: any, data?: UpdateServiceTemplateCommandOutput) => void): void;
697
- updateServiceTemplate(args: UpdateServiceTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceTemplateCommandOutput) => void): void;
698
- /**
699
- * <p>Update a major or minor version of a service template.</p>
700
- */
701
- updateServiceTemplateVersion(args: UpdateServiceTemplateVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceTemplateVersionCommandOutput>;
702
- updateServiceTemplateVersion(args: UpdateServiceTemplateVersionCommandInput, cb: (err: any, data?: UpdateServiceTemplateVersionCommandOutput) => void): void;
703
- updateServiceTemplateVersion(args: UpdateServiceTemplateVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceTemplateVersionCommandOutput) => void): void;
704
- }