@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,2996 +0,0 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
- export interface AcceptEnvironmentAccountConnectionInput {
3
- /**
4
- * <p>The ID of the environment account connection.</p>
5
- */
6
- id: string | undefined;
7
- }
8
- export declare namespace AcceptEnvironmentAccountConnectionInput {
9
- /**
10
- * @internal
11
- */
12
- const filterSensitiveLog: (obj: AcceptEnvironmentAccountConnectionInput) => any;
13
- }
14
- export declare enum EnvironmentAccountConnectionStatus {
15
- CONNECTED = "CONNECTED",
16
- PENDING = "PENDING",
17
- REJECTED = "REJECTED"
18
- }
19
- /**
20
- * <p>The environment account connection detail data.</p>
21
- */
22
- export interface EnvironmentAccountConnection {
23
- /**
24
- * <p>The ID of the environment account connection.</p>
25
- */
26
- id: string | undefined;
27
- /**
28
- * <p>The Amazon Resource Name (ARN) of the environment account connection.</p>
29
- */
30
- arn: string | undefined;
31
- /**
32
- * <p>The ID of the management account that's connected to the environment account connection.</p>
33
- */
34
- managementAccountId: string | undefined;
35
- /**
36
- * <p>The environment account that's connected to the environment account connection.</p>
37
- */
38
- environmentAccountId: string | undefined;
39
- /**
40
- * <p>The IAM service role that's associated with the environment account connection.</p>
41
- */
42
- roleArn: string | undefined;
43
- /**
44
- * <p>The name of the environment that's associated with the environment account connection.</p>
45
- */
46
- environmentName: string | undefined;
47
- /**
48
- * <p>The time when the environment account connection request was made.</p>
49
- */
50
- requestedAt: Date | undefined;
51
- /**
52
- * <p>The time when the environment account connection was last modified.</p>
53
- */
54
- lastModifiedAt: Date | undefined;
55
- /**
56
- * <p>The status of the environment account connection.</p>
57
- */
58
- status: EnvironmentAccountConnectionStatus | string | undefined;
59
- }
60
- export declare namespace EnvironmentAccountConnection {
61
- /**
62
- * @internal
63
- */
64
- const filterSensitiveLog: (obj: EnvironmentAccountConnection) => any;
65
- }
66
- export interface AcceptEnvironmentAccountConnectionOutput {
67
- /**
68
- * <p>The environment account connection data that's returned by AWS Proton.</p>
69
- */
70
- environmentAccountConnection: EnvironmentAccountConnection | undefined;
71
- }
72
- export declare namespace AcceptEnvironmentAccountConnectionOutput {
73
- /**
74
- * @internal
75
- */
76
- const filterSensitiveLog: (obj: AcceptEnvironmentAccountConnectionOutput) => any;
77
- }
78
- /**
79
- * <p>There <i>isn't</i> sufficient access for performing this action.</p>
80
- */
81
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
82
- name: "AccessDeniedException";
83
- $fault: "client";
84
- message: string | undefined;
85
- }
86
- export declare namespace AccessDeniedException {
87
- /**
88
- * @internal
89
- */
90
- const filterSensitiveLog: (obj: AccessDeniedException) => any;
91
- }
92
- /**
93
- * <p>The request <i>couldn't</i> be made due to a conflicting operation or resource.</p>
94
- */
95
- export interface ConflictException extends __SmithyException, $MetadataBearer {
96
- name: "ConflictException";
97
- $fault: "client";
98
- message: string | undefined;
99
- }
100
- export declare namespace ConflictException {
101
- /**
102
- * @internal
103
- */
104
- const filterSensitiveLog: (obj: ConflictException) => any;
105
- }
106
- /**
107
- * <p>The request failed to register with the service.</p>
108
- */
109
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
110
- name: "InternalServerException";
111
- $fault: "server";
112
- $retryable: {};
113
- message: string | undefined;
114
- }
115
- export declare namespace InternalServerException {
116
- /**
117
- * @internal
118
- */
119
- const filterSensitiveLog: (obj: InternalServerException) => any;
120
- }
121
- /**
122
- * <p>The requested resource <i>wasn't</i> found.</p>
123
- */
124
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
125
- name: "ResourceNotFoundException";
126
- $fault: "client";
127
- message: string | undefined;
128
- }
129
- export declare namespace ResourceNotFoundException {
130
- /**
131
- * @internal
132
- */
133
- const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
134
- }
135
- /**
136
- * <p>The request was denied due to request throttling.</p>
137
- */
138
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
139
- name: "ThrottlingException";
140
- $fault: "client";
141
- $retryable: {
142
- throttling: true;
143
- };
144
- message: string | undefined;
145
- }
146
- export declare namespace ThrottlingException {
147
- /**
148
- * @internal
149
- */
150
- const filterSensitiveLog: (obj: ThrottlingException) => any;
151
- }
152
- /**
153
- * <p>The input is invalid or an out-of-range value was supplied for the input parameter.</p>
154
- */
155
- export interface ValidationException extends __SmithyException, $MetadataBearer {
156
- name: "ValidationException";
157
- $fault: "client";
158
- message: string | undefined;
159
- }
160
- export declare namespace ValidationException {
161
- /**
162
- * @internal
163
- */
164
- const filterSensitiveLog: (obj: ValidationException) => any;
165
- }
166
- /**
167
- * <p>The AWS Proton pipeline service role data.</p>
168
- */
169
- export interface AccountSettings {
170
- /**
171
- * <p>The Amazon Resource Name (ARN) of the AWS Proton pipeline service role.</p>
172
- */
173
- pipelineServiceRoleArn?: string;
174
- }
175
- export declare namespace AccountSettings {
176
- /**
177
- * @internal
178
- */
179
- const filterSensitiveLog: (obj: AccountSettings) => any;
180
- }
181
- export interface GetAccountSettingsInput {
182
- }
183
- export declare namespace GetAccountSettingsInput {
184
- /**
185
- * @internal
186
- */
187
- const filterSensitiveLog: (obj: GetAccountSettingsInput) => any;
188
- }
189
- export interface GetAccountSettingsOutput {
190
- /**
191
- * <p>The AWS Proton pipeline service role detail data that's returned by AWS Proton.</p>
192
- */
193
- accountSettings?: AccountSettings;
194
- }
195
- export declare namespace GetAccountSettingsOutput {
196
- /**
197
- * @internal
198
- */
199
- const filterSensitiveLog: (obj: GetAccountSettingsOutput) => any;
200
- }
201
- export interface UpdateAccountSettingsInput {
202
- /**
203
- * <p>The Amazon Resource Name (ARN) of the AWS Proton pipeline service role.</p>
204
- */
205
- pipelineServiceRoleArn?: string;
206
- }
207
- export declare namespace UpdateAccountSettingsInput {
208
- /**
209
- * @internal
210
- */
211
- const filterSensitiveLog: (obj: UpdateAccountSettingsInput) => any;
212
- }
213
- export interface UpdateAccountSettingsOutput {
214
- /**
215
- * <p>The AWS Proton pipeline service role detail data that's returned by AWS Proton.</p>
216
- */
217
- accountSettings: AccountSettings | undefined;
218
- }
219
- export declare namespace UpdateAccountSettingsOutput {
220
- /**
221
- * @internal
222
- */
223
- const filterSensitiveLog: (obj: UpdateAccountSettingsOutput) => any;
224
- }
225
- export interface CancelEnvironmentDeploymentInput {
226
- /**
227
- * <p>The name of the environment with the deployment to cancel.</p>
228
- */
229
- environmentName: string | undefined;
230
- }
231
- export declare namespace CancelEnvironmentDeploymentInput {
232
- /**
233
- * @internal
234
- */
235
- const filterSensitiveLog: (obj: CancelEnvironmentDeploymentInput) => any;
236
- }
237
- export declare enum DeploymentStatus {
238
- CANCELLED = "CANCELLED",
239
- CANCELLING = "CANCELLING",
240
- DELETE_COMPLETE = "DELETE_COMPLETE",
241
- DELETE_FAILED = "DELETE_FAILED",
242
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
243
- FAILED = "FAILED",
244
- IN_PROGRESS = "IN_PROGRESS",
245
- SUCCEEDED = "SUCCEEDED"
246
- }
247
- export declare enum Provisioning {
248
- CUSTOMER_MANAGED = "CUSTOMER_MANAGED"
249
- }
250
- /**
251
- * <p>The environment detail data. An AWS Proton environment is a set resources shared across an AWS Proton service.</p>
252
- */
253
- export interface Environment {
254
- /**
255
- * <p>The name of the environment.</p>
256
- */
257
- name: string | undefined;
258
- /**
259
- * <p>The description of the environment.</p>
260
- */
261
- description?: string;
262
- /**
263
- * <p>The time when the environment was created.</p>
264
- */
265
- createdAt: Date | undefined;
266
- /**
267
- * <p>The time when a deployment of the environment was last attempted.</p>
268
- */
269
- lastDeploymentAttemptedAt: Date | undefined;
270
- /**
271
- * <p>The time when the environment was last deployed successfully.</p>
272
- */
273
- lastDeploymentSucceededAt: Date | undefined;
274
- /**
275
- * <p>The Amazon Resource Name (ARN) of the environment.</p>
276
- */
277
- arn: string | undefined;
278
- /**
279
- * <p>The Amazon Resource Name (ARN) of the environment template.</p>
280
- */
281
- templateName: string | undefined;
282
- /**
283
- * <p>The ID of the major version of the environment template.</p>
284
- */
285
- templateMajorVersion: string | undefined;
286
- /**
287
- * <p>The ID of the minor version of the environment template.</p>
288
- */
289
- templateMinorVersion: string | undefined;
290
- /**
291
- * <p>The environment deployment status.</p>
292
- */
293
- deploymentStatus: DeploymentStatus | string | undefined;
294
- /**
295
- * <p>An environment deployment status message.</p>
296
- */
297
- deploymentStatusMessage?: string;
298
- /**
299
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your
300
- * behalf.</p>
301
- */
302
- protonServiceRoleArn?: string;
303
- /**
304
- * <p>The ID of the environment account connection that's used to provision infrastructure resources in an environment account.</p>
305
- */
306
- environmentAccountConnectionId?: string;
307
- /**
308
- * <p>The ID of the environment account that the environment infrastructure resources are provisioned in.</p>
309
- */
310
- environmentAccountId?: string;
311
- /**
312
- * <p>The environment spec.</p>
313
- */
314
- spec?: string;
315
- /**
316
- * <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
317
- */
318
- provisioning?: Provisioning | string;
319
- }
320
- export declare namespace Environment {
321
- /**
322
- * @internal
323
- */
324
- const filterSensitiveLog: (obj: Environment) => any;
325
- }
326
- export interface CancelEnvironmentDeploymentOutput {
327
- /**
328
- * <p>The environment summary data that's returned by AWS Proton.</p>
329
- */
330
- environment: Environment | undefined;
331
- }
332
- export declare namespace CancelEnvironmentDeploymentOutput {
333
- /**
334
- * @internal
335
- */
336
- const filterSensitiveLog: (obj: CancelEnvironmentDeploymentOutput) => any;
337
- }
338
- export interface CancelServiceInstanceDeploymentInput {
339
- /**
340
- * <p>The name of the service instance with the deployment to cancel.</p>
341
- */
342
- serviceInstanceName: string | undefined;
343
- /**
344
- * <p>The name of the service with the service instance deployment to cancel.</p>
345
- */
346
- serviceName: string | undefined;
347
- }
348
- export declare namespace CancelServiceInstanceDeploymentInput {
349
- /**
350
- * @internal
351
- */
352
- const filterSensitiveLog: (obj: CancelServiceInstanceDeploymentInput) => any;
353
- }
354
- /**
355
- * <p>The service instance detail data.</p>
356
- */
357
- export interface ServiceInstance {
358
- /**
359
- * <p>The name of the service instance.</p>
360
- */
361
- name: string | undefined;
362
- /**
363
- * <p>The Amazon Resource Name (ARN) of the service instance.</p>
364
- */
365
- arn: string | undefined;
366
- /**
367
- * <p>The time when the service instance was created.</p>
368
- */
369
- createdAt: Date | undefined;
370
- /**
371
- * <p>The time when a deployment of the service instance was last attempted.</p>
372
- */
373
- lastDeploymentAttemptedAt: Date | undefined;
374
- /**
375
- * <p>The time when the service instance was last deployed successfully.</p>
376
- */
377
- lastDeploymentSucceededAt: Date | undefined;
378
- /**
379
- * <p>The name of the service that the service instance belongs to.</p>
380
- */
381
- serviceName: string | undefined;
382
- /**
383
- * <p>The name of the environment that the service instance was deployed into.</p>
384
- */
385
- environmentName: string | undefined;
386
- /**
387
- * <p>The name of the service template that was used to create the service instance.</p>
388
- */
389
- templateName: string | undefined;
390
- /**
391
- * <p>The ID of the major version of the service template that was used to create the service instance.</p>
392
- */
393
- templateMajorVersion: string | undefined;
394
- /**
395
- * <p>The ID of the minor version of the service template that was used to create the service instance.</p>
396
- */
397
- templateMinorVersion: string | undefined;
398
- /**
399
- * <p>The service instance deployment status.</p>
400
- */
401
- deploymentStatus: DeploymentStatus | string | undefined;
402
- /**
403
- * <p>A service instance deployment status message.</p>
404
- */
405
- deploymentStatusMessage?: string;
406
- /**
407
- * <p>The service spec that was used to create the service instance.</p>
408
- */
409
- spec?: string;
410
- }
411
- export declare namespace ServiceInstance {
412
- /**
413
- * @internal
414
- */
415
- const filterSensitiveLog: (obj: ServiceInstance) => any;
416
- }
417
- export interface CancelServiceInstanceDeploymentOutput {
418
- /**
419
- * <p>The service instance summary data that's returned by AWS Proton.</p>
420
- */
421
- serviceInstance: ServiceInstance | undefined;
422
- }
423
- export declare namespace CancelServiceInstanceDeploymentOutput {
424
- /**
425
- * @internal
426
- */
427
- const filterSensitiveLog: (obj: CancelServiceInstanceDeploymentOutput) => any;
428
- }
429
- export interface CancelServicePipelineDeploymentInput {
430
- /**
431
- * <p>The name of the service with the service pipeline deployment to cancel.</p>
432
- */
433
- serviceName: string | undefined;
434
- }
435
- export declare namespace CancelServicePipelineDeploymentInput {
436
- /**
437
- * @internal
438
- */
439
- const filterSensitiveLog: (obj: CancelServicePipelineDeploymentInput) => any;
440
- }
441
- /**
442
- * <p>The service pipeline detail data.</p>
443
- */
444
- export interface ServicePipeline {
445
- /**
446
- * <p>The Amazon Resource Name (ARN) of the service pipeline.</p>
447
- */
448
- arn: string | undefined;
449
- /**
450
- * <p>The time when the service pipeline was created.</p>
451
- */
452
- createdAt: Date | undefined;
453
- /**
454
- * <p>The time when a deployment of the service pipeline was last attempted.</p>
455
- */
456
- lastDeploymentAttemptedAt: Date | undefined;
457
- /**
458
- * <p>The time when the service pipeline was last deployed successfully.</p>
459
- */
460
- lastDeploymentSucceededAt: Date | undefined;
461
- /**
462
- * <p>The name of the service template that was used to create the service pipeline.</p>
463
- */
464
- templateName: string | undefined;
465
- /**
466
- * <p>The ID of the major version of the service template that was used to create the service pipeline.</p>
467
- */
468
- templateMajorVersion: string | undefined;
469
- /**
470
- * <p>The ID of the minor version of the service template that was used to create the service pipeline.</p>
471
- */
472
- templateMinorVersion: string | undefined;
473
- /**
474
- * <p>The deployment status of the service pipeline.</p>
475
- */
476
- deploymentStatus: DeploymentStatus | string | undefined;
477
- /**
478
- * <p>A service pipeline deployment status message.</p>
479
- */
480
- deploymentStatusMessage?: string;
481
- /**
482
- * <p>The service spec that was used to create the service pipeline.</p>
483
- */
484
- spec?: string;
485
- }
486
- export declare namespace ServicePipeline {
487
- /**
488
- * @internal
489
- */
490
- const filterSensitiveLog: (obj: ServicePipeline) => any;
491
- }
492
- export interface CancelServicePipelineDeploymentOutput {
493
- /**
494
- * <p>The service pipeline detail data that's returned by AWS Proton.</p>
495
- */
496
- pipeline: ServicePipeline | undefined;
497
- }
498
- export declare namespace CancelServicePipelineDeploymentOutput {
499
- /**
500
- * @internal
501
- */
502
- const filterSensitiveLog: (obj: CancelServicePipelineDeploymentOutput) => any;
503
- }
504
- export interface CreateEnvironmentAccountConnectionInput {
505
- /**
506
- * <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the environment account connection that
507
- * the first request created.</p>
508
- */
509
- clientToken?: string;
510
- /**
511
- * <p>The ID of the management account that accepts or rejects the environment account connection. You create an manage the AWS Proton
512
- * environment in this account. If the management account accepts the environment account connection, AWS Proton can use the associated IAM
513
- * role to provision environment infrastructure resources in the associated environment account.</p>
514
- */
515
- managementAccountId: string | undefined;
516
- /**
517
- * <p>The Amazon Resource Name (ARN) of the IAM service role that's created in the environment account. AWS Proton uses this role to provision
518
- * infrastructure resources in the associated environment account.</p>
519
- */
520
- roleArn: string | undefined;
521
- /**
522
- * <p>The name of the AWS Proton environment that's created in the associated management account.</p>
523
- */
524
- environmentName: string | undefined;
525
- }
526
- export declare namespace CreateEnvironmentAccountConnectionInput {
527
- /**
528
- * @internal
529
- */
530
- const filterSensitiveLog: (obj: CreateEnvironmentAccountConnectionInput) => any;
531
- }
532
- export interface CreateEnvironmentAccountConnectionOutput {
533
- /**
534
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
535
- */
536
- environmentAccountConnection: EnvironmentAccountConnection | undefined;
537
- }
538
- export declare namespace CreateEnvironmentAccountConnectionOutput {
539
- /**
540
- * @internal
541
- */
542
- const filterSensitiveLog: (obj: CreateEnvironmentAccountConnectionOutput) => any;
543
- }
544
- /**
545
- * <p>A quota was exceeded. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-limits.html">AWS Proton
546
- * Quotas</a> in the <i>AWS Proton Administrator Guide</i>.</p>
547
- */
548
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
549
- name: "ServiceQuotaExceededException";
550
- $fault: "client";
551
- message: string | undefined;
552
- }
553
- export declare namespace ServiceQuotaExceededException {
554
- /**
555
- * @internal
556
- */
557
- const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
558
- }
559
- export interface DeleteEnvironmentAccountConnectionInput {
560
- /**
561
- * <p>The ID of the environment account connection to delete.</p>
562
- */
563
- id: string | undefined;
564
- }
565
- export declare namespace DeleteEnvironmentAccountConnectionInput {
566
- /**
567
- * @internal
568
- */
569
- const filterSensitiveLog: (obj: DeleteEnvironmentAccountConnectionInput) => any;
570
- }
571
- export interface DeleteEnvironmentAccountConnectionOutput {
572
- /**
573
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
574
- */
575
- environmentAccountConnection?: EnvironmentAccountConnection;
576
- }
577
- export declare namespace DeleteEnvironmentAccountConnectionOutput {
578
- /**
579
- * @internal
580
- */
581
- const filterSensitiveLog: (obj: DeleteEnvironmentAccountConnectionOutput) => any;
582
- }
583
- export interface GetEnvironmentAccountConnectionInput {
584
- /**
585
- * <p>The ID of the environment account connection.</p>
586
- */
587
- id: string | undefined;
588
- }
589
- export declare namespace GetEnvironmentAccountConnectionInput {
590
- /**
591
- * @internal
592
- */
593
- const filterSensitiveLog: (obj: GetEnvironmentAccountConnectionInput) => any;
594
- }
595
- export interface GetEnvironmentAccountConnectionOutput {
596
- /**
597
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
598
- */
599
- environmentAccountConnection: EnvironmentAccountConnection | undefined;
600
- }
601
- export declare namespace GetEnvironmentAccountConnectionOutput {
602
- /**
603
- * @internal
604
- */
605
- const filterSensitiveLog: (obj: GetEnvironmentAccountConnectionOutput) => any;
606
- }
607
- export declare enum EnvironmentAccountConnectionRequesterAccountType {
608
- ENVIRONMENT_ACCOUNT = "ENVIRONMENT_ACCOUNT",
609
- MANAGEMENT_ACCOUNT = "MANAGEMENT_ACCOUNT"
610
- }
611
- export interface ListEnvironmentAccountConnectionsInput {
612
- /**
613
- * <p>The type of account making the <code>ListEnvironmentAccountConnections</code> request.</p>
614
- */
615
- requestedBy: EnvironmentAccountConnectionRequesterAccountType | string | undefined;
616
- /**
617
- * <p>The environment name that's associated with each listed environment account connection.</p>
618
- */
619
- environmentName?: string;
620
- /**
621
- * <p>The status details for each listed environment account connection.</p>
622
- */
623
- statuses?: (EnvironmentAccountConnectionStatus | string)[];
624
- /**
625
- * <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the
626
- * list of environment account connections that was previously requested.</p>
627
- */
628
- nextToken?: string;
629
- /**
630
- * <p>The maximum number of environment account connections to list.</p>
631
- */
632
- maxResults?: number;
633
- }
634
- export declare namespace ListEnvironmentAccountConnectionsInput {
635
- /**
636
- * @internal
637
- */
638
- const filterSensitiveLog: (obj: ListEnvironmentAccountConnectionsInput) => any;
639
- }
640
- /**
641
- * <p>A summary of the environment account connection detail data.</p>
642
- */
643
- export interface EnvironmentAccountConnectionSummary {
644
- /**
645
- * <p>The ID of the environment account connection.</p>
646
- */
647
- id: string | undefined;
648
- /**
649
- * <p>The Amazon Resource Name (ARN) of the environment account connection.</p>
650
- */
651
- arn: string | undefined;
652
- /**
653
- * <p>The ID of the management account that's connected to the environment account connection.</p>
654
- */
655
- managementAccountId: string | undefined;
656
- /**
657
- * <p>The ID of the environment account that's connected to the environment account connection.</p>
658
- */
659
- environmentAccountId: string | undefined;
660
- /**
661
- * <p>The IAM service role that's associated with the environment account connection.</p>
662
- */
663
- roleArn: string | undefined;
664
- /**
665
- * <p>The name of the environment that's associated with the environment account connection.</p>
666
- */
667
- environmentName: string | undefined;
668
- /**
669
- * <p>The time when the environment account connection request was made.</p>
670
- */
671
- requestedAt: Date | undefined;
672
- /**
673
- * <p>The time when the environment account connection was last modified.</p>
674
- */
675
- lastModifiedAt: Date | undefined;
676
- /**
677
- * <p>The status of the environment account connection.</p>
678
- */
679
- status: EnvironmentAccountConnectionStatus | string | undefined;
680
- }
681
- export declare namespace EnvironmentAccountConnectionSummary {
682
- /**
683
- * @internal
684
- */
685
- const filterSensitiveLog: (obj: EnvironmentAccountConnectionSummary) => any;
686
- }
687
- export interface ListEnvironmentAccountConnectionsOutput {
688
- /**
689
- * <p>An array of environment account connections with details that's returned by AWS Proton. </p>
690
- */
691
- environmentAccountConnections: EnvironmentAccountConnectionSummary[] | undefined;
692
- /**
693
- * <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the
694
- * current requested list of environment account connections.</p>
695
- */
696
- nextToken?: string;
697
- }
698
- export declare namespace ListEnvironmentAccountConnectionsOutput {
699
- /**
700
- * @internal
701
- */
702
- const filterSensitiveLog: (obj: ListEnvironmentAccountConnectionsOutput) => any;
703
- }
704
- export interface RejectEnvironmentAccountConnectionInput {
705
- /**
706
- * <p>The ID of the environment account connection to reject.</p>
707
- */
708
- id: string | undefined;
709
- }
710
- export declare namespace RejectEnvironmentAccountConnectionInput {
711
- /**
712
- * @internal
713
- */
714
- const filterSensitiveLog: (obj: RejectEnvironmentAccountConnectionInput) => any;
715
- }
716
- export interface RejectEnvironmentAccountConnectionOutput {
717
- /**
718
- * <p>The environment connection account detail data that's returned by AWS Proton.</p>
719
- */
720
- environmentAccountConnection: EnvironmentAccountConnection | undefined;
721
- }
722
- export declare namespace RejectEnvironmentAccountConnectionOutput {
723
- /**
724
- * @internal
725
- */
726
- const filterSensitiveLog: (obj: RejectEnvironmentAccountConnectionOutput) => any;
727
- }
728
- export interface UpdateEnvironmentAccountConnectionInput {
729
- /**
730
- * <p>The ID of the environment account connection to update.</p>
731
- */
732
- id: string | undefined;
733
- /**
734
- * <p>The Amazon Resource Name (ARN) of the IAM service role that is associated with the environment account connection to update.</p>
735
- */
736
- roleArn: string | undefined;
737
- }
738
- export declare namespace UpdateEnvironmentAccountConnectionInput {
739
- /**
740
- * @internal
741
- */
742
- const filterSensitiveLog: (obj: UpdateEnvironmentAccountConnectionInput) => any;
743
- }
744
- export interface UpdateEnvironmentAccountConnectionOutput {
745
- /**
746
- * <p>The environment account connection detail data that's returned by AWS Proton.</p>
747
- */
748
- environmentAccountConnection: EnvironmentAccountConnection | undefined;
749
- }
750
- export declare namespace UpdateEnvironmentAccountConnectionOutput {
751
- /**
752
- * @internal
753
- */
754
- const filterSensitiveLog: (obj: UpdateEnvironmentAccountConnectionOutput) => any;
755
- }
756
- /**
757
- * <p>A description of a resource tag.</p>
758
- */
759
- export interface Tag {
760
- /**
761
- * <p>The key of the resource tag.</p>
762
- */
763
- key: string | undefined;
764
- /**
765
- * <p>The value of the resource tag.</p>
766
- */
767
- value: string | undefined;
768
- }
769
- export declare namespace Tag {
770
- /**
771
- * @internal
772
- */
773
- const filterSensitiveLog: (obj: Tag) => any;
774
- }
775
- export interface CreateEnvironmentInput {
776
- /**
777
- * <p>The name of the environment.</p>
778
- */
779
- name: string | undefined;
780
- /**
781
- * <p>The name of the environment template. 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
782
- * Guide</i>.</p>
783
- */
784
- templateName: string | undefined;
785
- /**
786
- * <p>The ID of the major version of the environment template.</p>
787
- */
788
- templateMajorVersion: string | undefined;
789
- /**
790
- * <p>The ID of the minor version of the environment template.</p>
791
- */
792
- templateMinorVersion?: string;
793
- /**
794
- * <p>A description of the environment that's being created and deployed.</p>
795
- */
796
- description?: string;
797
- /**
798
- * <p>A link to a YAML formatted spec file that provides inputs as defined in the environment template bundle schema file. For more
799
- * information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html">Environments</a> in the
800
- * <i>AWS Proton Administrator Guide</i>.</p>
801
- */
802
- spec: string | undefined;
803
- /**
804
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your behalf. You
805
- * must include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value.</p>
806
- */
807
- protonServiceRoleArn?: string;
808
- /**
809
- * <p>The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an
810
- * environment account. You must include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code>
811
- * parameter and value. 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 <i>AWS Proton Administrator guide</i>.</p>
812
- */
813
- environmentAccountConnectionId?: string;
814
- /**
815
- * <p>Create tags for your environment. 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>
816
- */
817
- tags?: Tag[];
818
- }
819
- export declare namespace CreateEnvironmentInput {
820
- /**
821
- * @internal
822
- */
823
- const filterSensitiveLog: (obj: CreateEnvironmentInput) => any;
824
- }
825
- export interface CreateEnvironmentOutput {
826
- /**
827
- * <p>The environment detail data that's returned by AWS Proton.</p>
828
- */
829
- environment: Environment | undefined;
830
- }
831
- export declare namespace CreateEnvironmentOutput {
832
- /**
833
- * @internal
834
- */
835
- const filterSensitiveLog: (obj: CreateEnvironmentOutput) => any;
836
- }
837
- export interface DeleteEnvironmentInput {
838
- /**
839
- * <p>The name of the environment to delete.</p>
840
- */
841
- name: string | undefined;
842
- }
843
- export declare namespace DeleteEnvironmentInput {
844
- /**
845
- * @internal
846
- */
847
- const filterSensitiveLog: (obj: DeleteEnvironmentInput) => any;
848
- }
849
- export interface DeleteEnvironmentOutput {
850
- /**
851
- * <p>The environment detail data that's returned by AWS Proton.</p>
852
- */
853
- environment?: Environment;
854
- }
855
- export declare namespace DeleteEnvironmentOutput {
856
- /**
857
- * @internal
858
- */
859
- const filterSensitiveLog: (obj: DeleteEnvironmentOutput) => any;
860
- }
861
- export interface GetEnvironmentInput {
862
- /**
863
- * <p>The name of the environment that you want to get the detail data for.</p>
864
- */
865
- name: string | undefined;
866
- }
867
- export declare namespace GetEnvironmentInput {
868
- /**
869
- * @internal
870
- */
871
- const filterSensitiveLog: (obj: GetEnvironmentInput) => any;
872
- }
873
- export interface GetEnvironmentOutput {
874
- /**
875
- * <p>The environment detail data that's returned by AWS Proton.</p>
876
- */
877
- environment: Environment | undefined;
878
- }
879
- export declare namespace GetEnvironmentOutput {
880
- /**
881
- * @internal
882
- */
883
- const filterSensitiveLog: (obj: GetEnvironmentOutput) => any;
884
- }
885
- /**
886
- * <p>A search filter for environment templates.</p>
887
- */
888
- export interface EnvironmentTemplateFilter {
889
- /**
890
- * <p>Include <code>templateName</code> to filter search for a template name.</p>
891
- */
892
- templateName: string | undefined;
893
- /**
894
- * <p>Include <code>majorVersion</code> to filter search for a major version.</p>
895
- */
896
- majorVersion: string | undefined;
897
- }
898
- export declare namespace EnvironmentTemplateFilter {
899
- /**
900
- * @internal
901
- */
902
- const filterSensitiveLog: (obj: EnvironmentTemplateFilter) => any;
903
- }
904
- export interface ListEnvironmentsInput {
905
- /**
906
- * <p>A token to indicate the location of the next environment in the array of environments, after the list of environments that was
907
- * previously requested.</p>
908
- */
909
- nextToken?: string;
910
- /**
911
- * <p>The maximum number of environments to list.</p>
912
- */
913
- maxResults?: number;
914
- /**
915
- * <p>An array of the versions of the environment template.</p>
916
- */
917
- environmentTemplates?: EnvironmentTemplateFilter[];
918
- }
919
- export declare namespace ListEnvironmentsInput {
920
- /**
921
- * @internal
922
- */
923
- const filterSensitiveLog: (obj: ListEnvironmentsInput) => any;
924
- }
925
- /**
926
- * <p>A summary of the environment detail data.</p>
927
- */
928
- export interface EnvironmentSummary {
929
- /**
930
- * <p>The name of the environment.</p>
931
- */
932
- name: string | undefined;
933
- /**
934
- * <p>The description of the environment.</p>
935
- */
936
- description?: string;
937
- /**
938
- * <p>The time when the environment was created.</p>
939
- */
940
- createdAt: Date | undefined;
941
- /**
942
- * <p>The time when a deployment of the environment was last attempted.</p>
943
- */
944
- lastDeploymentAttemptedAt: Date | undefined;
945
- /**
946
- * <p>The time when the environment was last deployed successfully.</p>
947
- */
948
- lastDeploymentSucceededAt: Date | undefined;
949
- /**
950
- * <p>The Amazon Resource Name (ARN) of the environment.</p>
951
- */
952
- arn: string | undefined;
953
- /**
954
- * <p>The name of the environment template.</p>
955
- */
956
- templateName: string | undefined;
957
- /**
958
- * <p>The ID of the major version of the environment template.</p>
959
- */
960
- templateMajorVersion: string | undefined;
961
- /**
962
- * <p>The ID of the minor version of the environment template.</p>
963
- */
964
- templateMinorVersion: string | undefined;
965
- /**
966
- * <p>The environment deployment status.</p>
967
- */
968
- deploymentStatus: DeploymentStatus | string | undefined;
969
- /**
970
- * <p>An environment deployment status message.</p>
971
- */
972
- deploymentStatusMessage?: string;
973
- /**
974
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your
975
- * behalf.</p>
976
- */
977
- protonServiceRoleArn?: string;
978
- /**
979
- * <p>The ID of the environment account connection that the environment is associated with.</p>
980
- */
981
- environmentAccountConnectionId?: string;
982
- /**
983
- * <p>The ID of the environment account that the environment infrastructure resources are provisioned in.</p>
984
- */
985
- environmentAccountId?: string;
986
- /**
987
- * <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
988
- */
989
- provisioning?: Provisioning | string;
990
- }
991
- export declare namespace EnvironmentSummary {
992
- /**
993
- * @internal
994
- */
995
- const filterSensitiveLog: (obj: EnvironmentSummary) => any;
996
- }
997
- export interface ListEnvironmentsOutput {
998
- /**
999
- * <p>A token to indicate the location of the next environment in the array of environments, after the current requested list of
1000
- * environments.</p>
1001
- */
1002
- nextToken?: string;
1003
- /**
1004
- * <p>An array of environment detail data summaries.</p>
1005
- */
1006
- environments: EnvironmentSummary[] | undefined;
1007
- }
1008
- export declare namespace ListEnvironmentsOutput {
1009
- /**
1010
- * @internal
1011
- */
1012
- const filterSensitiveLog: (obj: ListEnvironmentsOutput) => any;
1013
- }
1014
- export declare enum DeploymentUpdateType {
1015
- CURRENT_VERSION = "CURRENT_VERSION",
1016
- MAJOR_VERSION = "MAJOR_VERSION",
1017
- MINOR_VERSION = "MINOR_VERSION",
1018
- NONE = "NONE"
1019
- }
1020
- export interface UpdateEnvironmentInput {
1021
- /**
1022
- * <p>The name of the environment to update.</p>
1023
- */
1024
- name: string | undefined;
1025
- /**
1026
- * <p>A description of the environment update.</p>
1027
- */
1028
- description?: string;
1029
- /**
1030
- * <p>The formatted specification that defines the update.</p>
1031
- */
1032
- spec?: string;
1033
- /**
1034
- * <p>The ID of the major version of the environment to update.</p>
1035
- */
1036
- templateMajorVersion?: string;
1037
- /**
1038
- * <p>The ID of the minor version of the environment to update.</p>
1039
- */
1040
- templateMinorVersion?: string;
1041
- /**
1042
- * <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make API calls to other services your
1043
- * behalf.</p>
1044
- */
1045
- protonServiceRoleArn?: string;
1046
- /**
1047
- * <p>There are four modes for updating an environment as described in the following. The <code>deploymentType</code> field defines the
1048
- * mode.</p>
1049
- * <dl>
1050
- * <dt/>
1051
- * <dd>
1052
- * <p>
1053
- * <code>NONE</code>
1054
- * </p>
1055
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
1056
- * </dd>
1057
- * <dt/>
1058
- * <dd>
1059
- * <p>
1060
- * <code>CURRENT_VERSION</code>
1061
- * </p>
1062
- * <p>In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are
1063
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
1064
- * <code>deployment-type</code>.</p>
1065
- * </dd>
1066
- * <dt/>
1067
- * <dd>
1068
- * <p>
1069
- * <code>MINOR_VERSION</code>
1070
- * </p>
1071
- * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current
1072
- * major version in use, by default. You can also specify a different minor version of the current major version in use.</p>
1073
- * </dd>
1074
- * <dt/>
1075
- * <dd>
1076
- * <p>
1077
- * <code>MAJOR_VERSION</code>
1078
- * </p>
1079
- * <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of
1080
- * the current template, by default. You can also specify a different major version that is higher than the major version in use
1081
- * and a minor version (optional).</p>
1082
- * </dd>
1083
- * </dl>
1084
- */
1085
- deploymentType: DeploymentUpdateType | string | undefined;
1086
- /**
1087
- * <p>The ID of the environment account connection.</p>
1088
- * <p>You can only update to a new environment account connection if it was created in the same environment account that the current
1089
- * environment account connection was created in and is associated with the current environment.</p>
1090
- */
1091
- environmentAccountConnectionId?: string;
1092
- }
1093
- export declare namespace UpdateEnvironmentInput {
1094
- /**
1095
- * @internal
1096
- */
1097
- const filterSensitiveLog: (obj: UpdateEnvironmentInput) => any;
1098
- }
1099
- export interface UpdateEnvironmentOutput {
1100
- /**
1101
- * <p>The environment detail data that's returned by AWS Proton.</p>
1102
- */
1103
- environment: Environment | undefined;
1104
- }
1105
- export declare namespace UpdateEnvironmentOutput {
1106
- /**
1107
- * @internal
1108
- */
1109
- const filterSensitiveLog: (obj: UpdateEnvironmentOutput) => any;
1110
- }
1111
- export interface CreateEnvironmentTemplateInput {
1112
- /**
1113
- * <p>The name of the environment template.</p>
1114
- */
1115
- name: string | undefined;
1116
- /**
1117
- * <p>The environment template name as displayed in the developer interface.</p>
1118
- */
1119
- displayName?: string;
1120
- /**
1121
- * <p>A description of the environment template.</p>
1122
- */
1123
- description?: string;
1124
- /**
1125
- * <p>A customer provided encryption key that AWS Proton uses to encrypt data.</p>
1126
- */
1127
- encryptionKey?: string;
1128
- /**
1129
- * <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
1130
- */
1131
- provisioning?: Provisioning | string;
1132
- /**
1133
- * <p>Create tags for your environment template. 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>
1134
- */
1135
- tags?: Tag[];
1136
- }
1137
- export declare namespace CreateEnvironmentTemplateInput {
1138
- /**
1139
- * @internal
1140
- */
1141
- const filterSensitiveLog: (obj: CreateEnvironmentTemplateInput) => any;
1142
- }
1143
- /**
1144
- * <p>The environment template data.</p>
1145
- */
1146
- export interface EnvironmentTemplate {
1147
- /**
1148
- * <p>The name of the environment template.</p>
1149
- */
1150
- name: string | undefined;
1151
- /**
1152
- * <p>The Amazon Resource Name (ARN) of the environment template.</p>
1153
- */
1154
- arn: string | undefined;
1155
- /**
1156
- * <p>The time when the environment template was created.</p>
1157
- */
1158
- createdAt: Date | undefined;
1159
- /**
1160
- * <p>The time when the environment template was last modified.</p>
1161
- */
1162
- lastModifiedAt: Date | undefined;
1163
- /**
1164
- * <p>The name of the environment template as displayed in the developer interface.</p>
1165
- */
1166
- displayName?: string;
1167
- /**
1168
- * <p>A description of the environment template.</p>
1169
- */
1170
- description?: string;
1171
- /**
1172
- * <p>The ID of the recommended version of the environment template.</p>
1173
- */
1174
- recommendedVersion?: string;
1175
- /**
1176
- * <p>The customer provided encryption key for the environment template.</p>
1177
- */
1178
- encryptionKey?: string;
1179
- /**
1180
- * <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
1181
- */
1182
- provisioning?: Provisioning | string;
1183
- }
1184
- export declare namespace EnvironmentTemplate {
1185
- /**
1186
- * @internal
1187
- */
1188
- const filterSensitiveLog: (obj: EnvironmentTemplate) => any;
1189
- }
1190
- export interface CreateEnvironmentTemplateOutput {
1191
- /**
1192
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1193
- */
1194
- environmentTemplate: EnvironmentTemplate | undefined;
1195
- }
1196
- export declare namespace CreateEnvironmentTemplateOutput {
1197
- /**
1198
- * @internal
1199
- */
1200
- const filterSensitiveLog: (obj: CreateEnvironmentTemplateOutput) => any;
1201
- }
1202
- export interface DeleteEnvironmentTemplateInput {
1203
- /**
1204
- * <p>The name of the environment template to delete.</p>
1205
- */
1206
- name: string | undefined;
1207
- }
1208
- export declare namespace DeleteEnvironmentTemplateInput {
1209
- /**
1210
- * @internal
1211
- */
1212
- const filterSensitiveLog: (obj: DeleteEnvironmentTemplateInput) => any;
1213
- }
1214
- export interface DeleteEnvironmentTemplateOutput {
1215
- /**
1216
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1217
- */
1218
- environmentTemplate?: EnvironmentTemplate;
1219
- }
1220
- export declare namespace DeleteEnvironmentTemplateOutput {
1221
- /**
1222
- * @internal
1223
- */
1224
- const filterSensitiveLog: (obj: DeleteEnvironmentTemplateOutput) => any;
1225
- }
1226
- export interface GetEnvironmentTemplateInput {
1227
- /**
1228
- * <p>The name of the environment template that you want to get the detail data for.</p>
1229
- */
1230
- name: string | undefined;
1231
- }
1232
- export declare namespace GetEnvironmentTemplateInput {
1233
- /**
1234
- * @internal
1235
- */
1236
- const filterSensitiveLog: (obj: GetEnvironmentTemplateInput) => any;
1237
- }
1238
- export interface GetEnvironmentTemplateOutput {
1239
- /**
1240
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1241
- */
1242
- environmentTemplate: EnvironmentTemplate | undefined;
1243
- }
1244
- export declare namespace GetEnvironmentTemplateOutput {
1245
- /**
1246
- * @internal
1247
- */
1248
- const filterSensitiveLog: (obj: GetEnvironmentTemplateOutput) => any;
1249
- }
1250
- export interface ListEnvironmentTemplatesInput {
1251
- /**
1252
- * <p>A token to indicate the location of the next environment template in the array of environment templates, after the list of environment
1253
- * templates that was previously requested.</p>
1254
- */
1255
- nextToken?: string;
1256
- /**
1257
- * <p>The maximum number of environment templates to list.</p>
1258
- */
1259
- maxResults?: number;
1260
- }
1261
- export declare namespace ListEnvironmentTemplatesInput {
1262
- /**
1263
- * @internal
1264
- */
1265
- const filterSensitiveLog: (obj: ListEnvironmentTemplatesInput) => any;
1266
- }
1267
- /**
1268
- * <p>The environment template data.</p>
1269
- */
1270
- export interface EnvironmentTemplateSummary {
1271
- /**
1272
- * <p>The name of the environment template.</p>
1273
- */
1274
- name: string | undefined;
1275
- /**
1276
- * <p>The Amazon Resource Name (ARN) of the environment template.</p>
1277
- */
1278
- arn: string | undefined;
1279
- /**
1280
- * <p>The time when the environment template was created.</p>
1281
- */
1282
- createdAt: Date | undefined;
1283
- /**
1284
- * <p>The time when the environment template was last modified.</p>
1285
- */
1286
- lastModifiedAt: Date | undefined;
1287
- /**
1288
- * <p>The name of the environment template as displayed in the developer interface.</p>
1289
- */
1290
- displayName?: string;
1291
- /**
1292
- * <p>A description of the environment template.</p>
1293
- */
1294
- description?: string;
1295
- /**
1296
- * <p>The ID of the recommended version of the environment template.</p>
1297
- */
1298
- recommendedVersion?: string;
1299
- /**
1300
- * <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
1301
- */
1302
- provisioning?: Provisioning | string;
1303
- }
1304
- export declare namespace EnvironmentTemplateSummary {
1305
- /**
1306
- * @internal
1307
- */
1308
- const filterSensitiveLog: (obj: EnvironmentTemplateSummary) => any;
1309
- }
1310
- export interface ListEnvironmentTemplatesOutput {
1311
- /**
1312
- * <p>A token to indicate the location of the next environment template in the array of environment templates, after the current requested
1313
- * list of environment templates.</p>
1314
- */
1315
- nextToken?: string;
1316
- /**
1317
- * <p>An array of environment templates with detail data.</p>
1318
- */
1319
- templates: EnvironmentTemplateSummary[] | undefined;
1320
- }
1321
- export declare namespace ListEnvironmentTemplatesOutput {
1322
- /**
1323
- * @internal
1324
- */
1325
- const filterSensitiveLog: (obj: ListEnvironmentTemplatesOutput) => any;
1326
- }
1327
- export interface UpdateEnvironmentTemplateInput {
1328
- /**
1329
- * <p>The name of the environment template to update.</p>
1330
- */
1331
- name: string | undefined;
1332
- /**
1333
- * <p>The name of the environment template to update as displayed in the developer interface.</p>
1334
- */
1335
- displayName?: string;
1336
- /**
1337
- * <p>A description of the environment template update.</p>
1338
- */
1339
- description?: string;
1340
- }
1341
- export declare namespace UpdateEnvironmentTemplateInput {
1342
- /**
1343
- * @internal
1344
- */
1345
- const filterSensitiveLog: (obj: UpdateEnvironmentTemplateInput) => any;
1346
- }
1347
- export interface UpdateEnvironmentTemplateOutput {
1348
- /**
1349
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1350
- */
1351
- environmentTemplate: EnvironmentTemplate | undefined;
1352
- }
1353
- export declare namespace UpdateEnvironmentTemplateOutput {
1354
- /**
1355
- * @internal
1356
- */
1357
- const filterSensitiveLog: (obj: UpdateEnvironmentTemplateOutput) => any;
1358
- }
1359
- /**
1360
- * <p>Template bundle S3 bucket data.</p>
1361
- */
1362
- export interface S3ObjectSource {
1363
- /**
1364
- * <p>The name of the S3 bucket that contains a template bundle.</p>
1365
- */
1366
- bucket: string | undefined;
1367
- /**
1368
- * <p>The path to the S3 bucket that contains a template bundle.</p>
1369
- */
1370
- key: string | undefined;
1371
- }
1372
- export declare namespace S3ObjectSource {
1373
- /**
1374
- * @internal
1375
- */
1376
- const filterSensitiveLog: (obj: S3ObjectSource) => any;
1377
- }
1378
- /**
1379
- * <p>Template version source data.</p>
1380
- */
1381
- export declare type TemplateVersionSourceInput = TemplateVersionSourceInput.S3Member | TemplateVersionSourceInput.$UnknownMember;
1382
- export declare namespace TemplateVersionSourceInput {
1383
- /**
1384
- * <p>An S3 source object that includes the template bundle S3 path and name for a template minor version.</p>
1385
- */
1386
- interface S3Member {
1387
- s3: S3ObjectSource;
1388
- $unknown?: never;
1389
- }
1390
- interface $UnknownMember {
1391
- s3?: never;
1392
- $unknown: [
1393
- string,
1394
- any
1395
- ];
1396
- }
1397
- interface Visitor<T> {
1398
- s3: (value: S3ObjectSource) => T;
1399
- _: (name: string, value: any) => T;
1400
- }
1401
- const visit: <T>(value: TemplateVersionSourceInput, visitor: Visitor<T>) => T;
1402
- /**
1403
- * @internal
1404
- */
1405
- const filterSensitiveLog: (obj: TemplateVersionSourceInput) => any;
1406
- }
1407
- export interface CreateEnvironmentTemplateVersionInput {
1408
- /**
1409
- * <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the environment template version that
1410
- * the first request created.</p>
1411
- */
1412
- clientToken?: string;
1413
- /**
1414
- * <p>The name of the environment template.</p>
1415
- */
1416
- templateName: string | undefined;
1417
- /**
1418
- * <p>A description of the new version of an environment template.</p>
1419
- */
1420
- description?: string;
1421
- /**
1422
- * <p>To create a new minor version of the environment template, include a <code>majorVersion</code>.</p>
1423
- * <p>To create a new major and minor version of the environment template, <i>exclude</i>
1424
- * <code>majorVersion</code>.</p>
1425
- */
1426
- majorVersion?: string;
1427
- /**
1428
- * <p>An object that includes the template bundle S3 bucket path and name for the new version of an template.</p>
1429
- */
1430
- source: TemplateVersionSourceInput | undefined;
1431
- /**
1432
- * <p>Create tags for a new version of an environment template.</p>
1433
- */
1434
- tags?: Tag[];
1435
- }
1436
- export declare namespace CreateEnvironmentTemplateVersionInput {
1437
- /**
1438
- * @internal
1439
- */
1440
- const filterSensitiveLog: (obj: CreateEnvironmentTemplateVersionInput) => any;
1441
- }
1442
- export declare enum TemplateVersionStatus {
1443
- DRAFT = "DRAFT",
1444
- PUBLISHED = "PUBLISHED",
1445
- REGISTRATION_FAILED = "REGISTRATION_FAILED",
1446
- REGISTRATION_IN_PROGRESS = "REGISTRATION_IN_PROGRESS"
1447
- }
1448
- /**
1449
- * <p>The environment template version data.</p>
1450
- */
1451
- export interface EnvironmentTemplateVersion {
1452
- /**
1453
- * <p>The name of the version of an environment template.</p>
1454
- */
1455
- templateName: string | undefined;
1456
- /**
1457
- * <p>The ID of the latest major version that's associated with the version of an environment template.</p>
1458
- */
1459
- majorVersion: string | undefined;
1460
- /**
1461
- * <p>The ID of the minor version of an environment template.</p>
1462
- */
1463
- minorVersion: string | undefined;
1464
- /**
1465
- * <p>The ID of the recommended minor version of the environment template.</p>
1466
- */
1467
- recommendedMinorVersion?: string;
1468
- /**
1469
- * <p>The status of the version of an environment template.</p>
1470
- */
1471
- status: TemplateVersionStatus | string | undefined;
1472
- /**
1473
- * <p>The status message of the version of an environment template.</p>
1474
- */
1475
- statusMessage?: string;
1476
- /**
1477
- * <p>A description of the minor version of an environment template.</p>
1478
- */
1479
- description?: string;
1480
- /**
1481
- * <p>The Amazon Resource Name (ARN) of the version of an environment template.</p>
1482
- */
1483
- arn: string | undefined;
1484
- /**
1485
- * <p>The time when the version of an environment template was created.</p>
1486
- */
1487
- createdAt: Date | undefined;
1488
- /**
1489
- * <p>The time when the version of an environment template was last modified.</p>
1490
- */
1491
- lastModifiedAt: Date | undefined;
1492
- /**
1493
- * <p>The schema of the version of an environment template.</p>
1494
- */
1495
- schema?: string;
1496
- }
1497
- export declare namespace EnvironmentTemplateVersion {
1498
- /**
1499
- * @internal
1500
- */
1501
- const filterSensitiveLog: (obj: EnvironmentTemplateVersion) => any;
1502
- }
1503
- export interface CreateEnvironmentTemplateVersionOutput {
1504
- /**
1505
- * <p>The environment template detail data that's returned by AWS Proton.</p>
1506
- */
1507
- environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
1508
- }
1509
- export declare namespace CreateEnvironmentTemplateVersionOutput {
1510
- /**
1511
- * @internal
1512
- */
1513
- const filterSensitiveLog: (obj: CreateEnvironmentTemplateVersionOutput) => any;
1514
- }
1515
- export interface DeleteEnvironmentTemplateVersionInput {
1516
- /**
1517
- * <p>The name of the environment template.</p>
1518
- */
1519
- templateName: string | undefined;
1520
- /**
1521
- * <p>The environment template major version to delete.</p>
1522
- */
1523
- majorVersion: string | undefined;
1524
- /**
1525
- * <p>The environment template minor version to delete.</p>
1526
- */
1527
- minorVersion: string | undefined;
1528
- }
1529
- export declare namespace DeleteEnvironmentTemplateVersionInput {
1530
- /**
1531
- * @internal
1532
- */
1533
- const filterSensitiveLog: (obj: DeleteEnvironmentTemplateVersionInput) => any;
1534
- }
1535
- export interface DeleteEnvironmentTemplateVersionOutput {
1536
- /**
1537
- * <p>The environment template version detail data that's returned by AWS Proton.</p>
1538
- */
1539
- environmentTemplateVersion?: EnvironmentTemplateVersion;
1540
- }
1541
- export declare namespace DeleteEnvironmentTemplateVersionOutput {
1542
- /**
1543
- * @internal
1544
- */
1545
- const filterSensitiveLog: (obj: DeleteEnvironmentTemplateVersionOutput) => any;
1546
- }
1547
- export interface GetEnvironmentTemplateVersionInput {
1548
- /**
1549
- * <p>The name of the environment template.</p>
1550
- */
1551
- templateName: string | undefined;
1552
- /**
1553
- * <p>To view environment template major version detail data, include <code>majorVersion</code>.</p>
1554
- */
1555
- majorVersion: string | undefined;
1556
- /**
1557
- * <p>To view environment template minor version detail data, include <code>minorVersion</code>.</p>
1558
- */
1559
- minorVersion: string | undefined;
1560
- }
1561
- export declare namespace GetEnvironmentTemplateVersionInput {
1562
- /**
1563
- * @internal
1564
- */
1565
- const filterSensitiveLog: (obj: GetEnvironmentTemplateVersionInput) => any;
1566
- }
1567
- export interface GetEnvironmentTemplateVersionOutput {
1568
- /**
1569
- * <p>The environment template version detail data that's returned by AWS Proton.</p>
1570
- */
1571
- environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
1572
- }
1573
- export declare namespace GetEnvironmentTemplateVersionOutput {
1574
- /**
1575
- * @internal
1576
- */
1577
- const filterSensitiveLog: (obj: GetEnvironmentTemplateVersionOutput) => any;
1578
- }
1579
- export interface ListEnvironmentTemplateVersionsInput {
1580
- /**
1581
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template,
1582
- * after the list of major or minor versions that was previously requested.</p>
1583
- */
1584
- nextToken?: string;
1585
- /**
1586
- * <p>The maximum number of major or minor versions of an environment template to list.</p>
1587
- */
1588
- maxResults?: number;
1589
- /**
1590
- * <p>The name of the environment template.</p>
1591
- */
1592
- templateName: string | undefined;
1593
- /**
1594
- * <p>To view a list of minor of versions under a major version of an environment template, include <code>majorVersion</code>.</p>
1595
- * <p>To view a list of major versions of an environment template, <i>exclude</i>
1596
- * <code>majorVersion</code>.</p>
1597
- */
1598
- majorVersion?: string;
1599
- }
1600
- export declare namespace ListEnvironmentTemplateVersionsInput {
1601
- /**
1602
- * @internal
1603
- */
1604
- const filterSensitiveLog: (obj: ListEnvironmentTemplateVersionsInput) => any;
1605
- }
1606
- /**
1607
- * <p>A summary of the version of an environment template detail data.</p>
1608
- */
1609
- export interface EnvironmentTemplateVersionSummary {
1610
- /**
1611
- * <p>The name of the version of an environment template.</p>
1612
- */
1613
- templateName: string | undefined;
1614
- /**
1615
- * <p>The ID of the latest major version that's associated with the version of an environment template.</p>
1616
- */
1617
- majorVersion: string | undefined;
1618
- /**
1619
- * <p>The ID of the version of an environment template.</p>
1620
- */
1621
- minorVersion: string | undefined;
1622
- /**
1623
- * <p>The ID of the recommended minor version of the environment template.</p>
1624
- */
1625
- recommendedMinorVersion?: string;
1626
- /**
1627
- * <p>The status of the version of an environment template.</p>
1628
- */
1629
- status: TemplateVersionStatus | string | undefined;
1630
- /**
1631
- * <p>The status message of the version of an environment template.</p>
1632
- */
1633
- statusMessage?: string;
1634
- /**
1635
- * <p>A description of the version of an environment template.</p>
1636
- */
1637
- description?: string;
1638
- /**
1639
- * <p>The Amazon Resource Name (ARN) of the version of an environment template.</p>
1640
- */
1641
- arn: string | undefined;
1642
- /**
1643
- * <p>The time when the version of an environment template was created.</p>
1644
- */
1645
- createdAt: Date | undefined;
1646
- /**
1647
- * <p>The time when the version of an environment template was last modified.</p>
1648
- */
1649
- lastModifiedAt: Date | undefined;
1650
- }
1651
- export declare namespace EnvironmentTemplateVersionSummary {
1652
- /**
1653
- * @internal
1654
- */
1655
- const filterSensitiveLog: (obj: EnvironmentTemplateVersionSummary) => any;
1656
- }
1657
- export interface ListEnvironmentTemplateVersionsOutput {
1658
- /**
1659
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template,
1660
- * after the list of major or minor versions that was previously requested.</p>
1661
- */
1662
- nextToken?: string;
1663
- /**
1664
- * <p>An array of major or minor versions of an environment template detail data.</p>
1665
- */
1666
- templateVersions: EnvironmentTemplateVersionSummary[] | undefined;
1667
- }
1668
- export declare namespace ListEnvironmentTemplateVersionsOutput {
1669
- /**
1670
- * @internal
1671
- */
1672
- const filterSensitiveLog: (obj: ListEnvironmentTemplateVersionsOutput) => any;
1673
- }
1674
- export interface UpdateEnvironmentTemplateVersionInput {
1675
- /**
1676
- * <p>The name of the environment template.</p>
1677
- */
1678
- templateName: string | undefined;
1679
- /**
1680
- * <p>To update a major version of an environment template, include <code>majorVersion</code>.</p>
1681
- */
1682
- majorVersion: string | undefined;
1683
- /**
1684
- * <p>To update a minor version of an environment template, include <code>minorVersion</code>.</p>
1685
- */
1686
- minorVersion: string | undefined;
1687
- /**
1688
- * <p>A description of environment template version to update.</p>
1689
- */
1690
- description?: string;
1691
- /**
1692
- * <p>The status of the environment template minor version to update.</p>
1693
- */
1694
- status?: TemplateVersionStatus | string;
1695
- }
1696
- export declare namespace UpdateEnvironmentTemplateVersionInput {
1697
- /**
1698
- * @internal
1699
- */
1700
- const filterSensitiveLog: (obj: UpdateEnvironmentTemplateVersionInput) => any;
1701
- }
1702
- export interface UpdateEnvironmentTemplateVersionOutput {
1703
- /**
1704
- * <p>The environment template version detail data that's returned by AWS Proton.</p>
1705
- */
1706
- environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
1707
- }
1708
- export declare namespace UpdateEnvironmentTemplateVersionOutput {
1709
- /**
1710
- * @internal
1711
- */
1712
- const filterSensitiveLog: (obj: UpdateEnvironmentTemplateVersionOutput) => any;
1713
- }
1714
- export interface ListTagsForResourceInput {
1715
- /**
1716
- * <p>The Amazon Resource Name (ARN) of the resource for the listed tags.</p>
1717
- */
1718
- resourceArn: string | undefined;
1719
- /**
1720
- * <p>A token to indicate the location of the next resource tag in the array of resource tags, after the list of resource tags that was
1721
- * previously requested.</p>
1722
- */
1723
- nextToken?: string;
1724
- /**
1725
- * <p>The maximum number of tags to list.</p>
1726
- */
1727
- maxResults?: number;
1728
- }
1729
- export declare namespace ListTagsForResourceInput {
1730
- /**
1731
- * @internal
1732
- */
1733
- const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
1734
- }
1735
- export interface ListTagsForResourceOutput {
1736
- /**
1737
- * <p>An array of resource tags with detail data.</p>
1738
- */
1739
- tags: Tag[] | undefined;
1740
- /**
1741
- * <p>A token to indicate the location of the next resource tag in the array of resource tags, after the current requested list of resource
1742
- * tags.</p>
1743
- */
1744
- nextToken?: string;
1745
- }
1746
- export declare namespace ListTagsForResourceOutput {
1747
- /**
1748
- * @internal
1749
- */
1750
- const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
1751
- }
1752
- export interface GetServiceInstanceInput {
1753
- /**
1754
- * <p>The name of a service instance that you want to get the detail data for.</p>
1755
- */
1756
- name: string | undefined;
1757
- /**
1758
- * <p>The name of the service that the service instance belongs to.</p>
1759
- */
1760
- serviceName: string | undefined;
1761
- }
1762
- export declare namespace GetServiceInstanceInput {
1763
- /**
1764
- * @internal
1765
- */
1766
- const filterSensitiveLog: (obj: GetServiceInstanceInput) => any;
1767
- }
1768
- export interface GetServiceInstanceOutput {
1769
- /**
1770
- * <p>The service instance detail data that's returned by AWS Proton.</p>
1771
- */
1772
- serviceInstance: ServiceInstance | undefined;
1773
- }
1774
- export declare namespace GetServiceInstanceOutput {
1775
- /**
1776
- * @internal
1777
- */
1778
- const filterSensitiveLog: (obj: GetServiceInstanceOutput) => any;
1779
- }
1780
- export interface ListServiceInstancesInput {
1781
- /**
1782
- * <p>The name of the service that the service instance belongs to.</p>
1783
- */
1784
- serviceName?: string;
1785
- /**
1786
- * <p>A token to indicate the location of the next service in the array of service instances, after the list of service instances that was
1787
- * previously requested.</p>
1788
- */
1789
- nextToken?: string;
1790
- /**
1791
- * <p>The maximum number of service instances to list.</p>
1792
- */
1793
- maxResults?: number;
1794
- }
1795
- export declare namespace ListServiceInstancesInput {
1796
- /**
1797
- * @internal
1798
- */
1799
- const filterSensitiveLog: (obj: ListServiceInstancesInput) => any;
1800
- }
1801
- /**
1802
- * <p>A summary of the service instance detail data.</p>
1803
- */
1804
- export interface ServiceInstanceSummary {
1805
- /**
1806
- * <p>The name of the service instance.</p>
1807
- */
1808
- name: string | undefined;
1809
- /**
1810
- * <p>The Amazon Resource Name (ARN) of the service instance.</p>
1811
- */
1812
- arn: string | undefined;
1813
- /**
1814
- * <p>The time when the service instance was created.</p>
1815
- */
1816
- createdAt: Date | undefined;
1817
- /**
1818
- * <p>The time when a deployment of the service was last attempted.</p>
1819
- */
1820
- lastDeploymentAttemptedAt: Date | undefined;
1821
- /**
1822
- * <p>The time when the service was last deployed successfully.</p>
1823
- */
1824
- lastDeploymentSucceededAt: Date | undefined;
1825
- /**
1826
- * <p>The name of the service that the service instance belongs to.</p>
1827
- */
1828
- serviceName: string | undefined;
1829
- /**
1830
- * <p>The name of the environment that the service instance was deployed into.</p>
1831
- */
1832
- environmentName: string | undefined;
1833
- /**
1834
- * <p>The name of the service template.</p>
1835
- */
1836
- templateName: string | undefined;
1837
- /**
1838
- * <p>The ID of the major version of a service template.</p>
1839
- */
1840
- templateMajorVersion: string | undefined;
1841
- /**
1842
- * <p>The ID of the minor version of a service template.</p>
1843
- */
1844
- templateMinorVersion: string | undefined;
1845
- /**
1846
- * <p>The service instance deployment status.</p>
1847
- */
1848
- deploymentStatus: DeploymentStatus | string | undefined;
1849
- /**
1850
- * <p>A service instance deployment status message.</p>
1851
- */
1852
- deploymentStatusMessage?: string;
1853
- }
1854
- export declare namespace ServiceInstanceSummary {
1855
- /**
1856
- * @internal
1857
- */
1858
- const filterSensitiveLog: (obj: ServiceInstanceSummary) => any;
1859
- }
1860
- export interface ListServiceInstancesOutput {
1861
- /**
1862
- * <p>A token to indicate the location of the next service instance in the array of service instances, after the current requested list of
1863
- * service instances.</p>
1864
- */
1865
- nextToken?: string;
1866
- /**
1867
- * <p>An array of service instances with summaries of detail data.</p>
1868
- */
1869
- serviceInstances: ServiceInstanceSummary[] | undefined;
1870
- }
1871
- export declare namespace ListServiceInstancesOutput {
1872
- /**
1873
- * @internal
1874
- */
1875
- const filterSensitiveLog: (obj: ListServiceInstancesOutput) => any;
1876
- }
1877
- export interface UpdateServiceInstanceInput {
1878
- /**
1879
- * <p>The name of the service instance to update.</p>
1880
- */
1881
- name: string | undefined;
1882
- /**
1883
- * <p>The name of the service that the service instance belongs to.</p>
1884
- */
1885
- serviceName: string | undefined;
1886
- /**
1887
- * <p>The deployment type.</p>
1888
- * <p>There are four modes for updating a service instance as described in the following. The <code>deploymentType</code> field defines the
1889
- * mode.</p>
1890
- * <dl>
1891
- * <dt/>
1892
- * <dd>
1893
- * <p>
1894
- * <code>NONE</code>
1895
- * </p>
1896
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
1897
- * </dd>
1898
- * <dt/>
1899
- * <dd>
1900
- * <p>
1901
- * <code>CURRENT_VERSION</code>
1902
- * </p>
1903
- * <p>In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are
1904
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
1905
- * <code>deployment-type</code>.</p>
1906
- * </dd>
1907
- * <dt/>
1908
- * <dd>
1909
- * <p>
1910
- * <code>MINOR_VERSION</code>
1911
- * </p>
1912
- * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the
1913
- * current major version in use, by default. You can also specify a different minor version of the current major version in
1914
- * use.</p>
1915
- * </dd>
1916
- * <dt/>
1917
- * <dd>
1918
- * <p>
1919
- * <code>MAJOR_VERSION</code>
1920
- * </p>
1921
- * <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version
1922
- * of the current template, by default. You can also specify a different major version that is higher than the major version in
1923
- * use and a minor version (optional).</p>
1924
- * </dd>
1925
- * </dl>
1926
- */
1927
- deploymentType: DeploymentUpdateType | string | undefined;
1928
- /**
1929
- * <p>The formatted specification that defines the service instance update.</p>
1930
- */
1931
- spec?: string;
1932
- /**
1933
- * <p>The major version of the service template to update.</p>
1934
- */
1935
- templateMajorVersion?: string;
1936
- /**
1937
- * <p>The minor version of the service template to update.</p>
1938
- */
1939
- templateMinorVersion?: string;
1940
- }
1941
- export declare namespace UpdateServiceInstanceInput {
1942
- /**
1943
- * @internal
1944
- */
1945
- const filterSensitiveLog: (obj: UpdateServiceInstanceInput) => any;
1946
- }
1947
- export interface UpdateServiceInstanceOutput {
1948
- /**
1949
- * <p>The service instance summary data returned by AWS Proton.</p>
1950
- */
1951
- serviceInstance: ServiceInstance | undefined;
1952
- }
1953
- export declare namespace UpdateServiceInstanceOutput {
1954
- /**
1955
- * @internal
1956
- */
1957
- const filterSensitiveLog: (obj: UpdateServiceInstanceOutput) => any;
1958
- }
1959
- export interface UpdateServicePipelineInput {
1960
- /**
1961
- * <p>The name of the service to that the pipeline is associated with.</p>
1962
- */
1963
- serviceName: string | undefined;
1964
- /**
1965
- * <p>The spec for the service pipeline to update.</p>
1966
- */
1967
- spec: string | undefined;
1968
- /**
1969
- * <p>The deployment type.</p>
1970
- * <p>There are four modes for updating a service pipeline as described in the following. The <code>deploymentType</code> field defines the
1971
- * mode.</p>
1972
- * <dl>
1973
- * <dt/>
1974
- * <dd>
1975
- * <p>
1976
- * <code>NONE</code>
1977
- * </p>
1978
- * <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
1979
- * </dd>
1980
- * <dt/>
1981
- * <dd>
1982
- * <p>
1983
- * <code>CURRENT_VERSION</code>
1984
- * </p>
1985
- * <p>In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are
1986
- * updated. <i>Don’t</i> include minor or major version parameters when you use this
1987
- * <code>deployment-type</code>.</p>
1988
- * </dd>
1989
- * <dt/>
1990
- * <dd>
1991
- * <p>
1992
- * <code>MINOR_VERSION</code>
1993
- * </p>
1994
- * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the
1995
- * current major version in use, by default. You can also specify a different minor version of the current major version in
1996
- * use.</p>
1997
- * </dd>
1998
- * <dt/>
1999
- * <dd>
2000
- * <p>
2001
- * <code>MAJOR_VERSION</code>
2002
- * </p>
2003
- * <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version
2004
- * of the current template, by default. You can also specify a different major version that is higher than the major version in
2005
- * use and a minor version (optional).</p>
2006
- * </dd>
2007
- * </dl>
2008
- */
2009
- deploymentType: DeploymentUpdateType | string | undefined;
2010
- /**
2011
- * <p>The major version of the service template that was used to create the service that the pipeline is associated with.</p>
2012
- */
2013
- templateMajorVersion?: string;
2014
- /**
2015
- * <p>The minor version of the service template that was used to create the service that the pipeline is associated with.</p>
2016
- */
2017
- templateMinorVersion?: string;
2018
- }
2019
- export declare namespace UpdateServicePipelineInput {
2020
- /**
2021
- * @internal
2022
- */
2023
- const filterSensitiveLog: (obj: UpdateServicePipelineInput) => any;
2024
- }
2025
- export interface UpdateServicePipelineOutput {
2026
- /**
2027
- * <p>The pipeline details returned by AWS Proton.</p>
2028
- */
2029
- pipeline: ServicePipeline | undefined;
2030
- }
2031
- export declare namespace UpdateServicePipelineOutput {
2032
- /**
2033
- * @internal
2034
- */
2035
- const filterSensitiveLog: (obj: UpdateServicePipelineOutput) => any;
2036
- }
2037
- export interface CreateServiceInput {
2038
- /**
2039
- * <p>The service name.</p>
2040
- */
2041
- name: string | undefined;
2042
- /**
2043
- * <p>A description of the AWS Proton service.</p>
2044
- */
2045
- description?: string;
2046
- /**
2047
- * <p>The name of the service template that's used to create the service.</p>
2048
- */
2049
- templateName: string | undefined;
2050
- /**
2051
- * <p>The ID of the major version of the service template that was used to create the service.</p>
2052
- */
2053
- templateMajorVersion: string | undefined;
2054
- /**
2055
- * <p>The ID of the minor version of the service template that was used to create the service.</p>
2056
- */
2057
- templateMinorVersion?: string;
2058
- /**
2059
- * <p>A link to a spec file that provides inputs as defined in the service template bundle schema file. The spec file is in YAML format. Don’t
2060
- * include pipeline inputs in the spec if your service template <i>doesn’t</i> include a service pipeline. For more
2061
- * information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-create-svc.html.html">Create a service</a> in the
2062
- * <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-create.html">Create a service</a> in the <i>AWS Proton User Guide</i>.</p>
2063
- */
2064
- spec: string | undefined;
2065
- /**
2066
- * <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up repository connection</a> in the
2067
- * <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up with AWS Proton</a> in the <i>AWS Proton
2068
- * User Guide</i>. <i>Don't</i> include this parameter if your service template <i>doesn't</i> include
2069
- * a service pipeline.</p>
2070
- */
2071
- repositoryConnectionArn?: string;
2072
- /**
2073
- * <p>The ID of the code repository. <i>Don't</i> include this parameter if your service template <i>doesn't</i>
2074
- * include a service pipeline.</p>
2075
- */
2076
- repositoryId?: string;
2077
- /**
2078
- * <p>The name of the code repository branch that holds the code that's deployed in AWS Proton. <i>Don't</i> include this
2079
- * parameter if your service template <i>doesn't</i> include a service pipeline.</p>
2080
- */
2081
- branchName?: string;
2082
- /**
2083
- * <p>Create tags for your service. 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>
2084
- */
2085
- tags?: Tag[];
2086
- }
2087
- export declare namespace CreateServiceInput {
2088
- /**
2089
- * @internal
2090
- */
2091
- const filterSensitiveLog: (obj: CreateServiceInput) => any;
2092
- }
2093
- export declare enum ServiceStatus {
2094
- ACTIVE = "ACTIVE",
2095
- CREATE_FAILED = "CREATE_FAILED",
2096
- CREATE_FAILED_CLEANUP_COMPLETE = "CREATE_FAILED_CLEANUP_COMPLETE",
2097
- CREATE_FAILED_CLEANUP_FAILED = "CREATE_FAILED_CLEANUP_FAILED",
2098
- CREATE_FAILED_CLEANUP_IN_PROGRESS = "CREATE_FAILED_CLEANUP_IN_PROGRESS",
2099
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
2100
- DELETE_FAILED = "DELETE_FAILED",
2101
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
2102
- UPDATE_COMPLETE_CLEANUP_FAILED = "UPDATE_COMPLETE_CLEANUP_FAILED",
2103
- UPDATE_FAILED = "UPDATE_FAILED",
2104
- UPDATE_FAILED_CLEANUP_COMPLETE = "UPDATE_FAILED_CLEANUP_COMPLETE",
2105
- UPDATE_FAILED_CLEANUP_FAILED = "UPDATE_FAILED_CLEANUP_FAILED",
2106
- UPDATE_FAILED_CLEANUP_IN_PROGRESS = "UPDATE_FAILED_CLEANUP_IN_PROGRESS",
2107
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
2108
- }
2109
- /**
2110
- * <p>The service detail data.</p>
2111
- */
2112
- export interface Service {
2113
- /**
2114
- * <p>The name of the service.</p>
2115
- */
2116
- name: string | undefined;
2117
- /**
2118
- * <p>A description of a service.</p>
2119
- */
2120
- description?: string;
2121
- /**
2122
- * <p>The Amazon Resource Name (ARN) of the service.</p>
2123
- */
2124
- arn: string | undefined;
2125
- /**
2126
- * <p>The name of the service template.</p>
2127
- */
2128
- templateName: string | undefined;
2129
- /**
2130
- * <p>The time when the service was created.</p>
2131
- */
2132
- createdAt: Date | undefined;
2133
- /**
2134
- * <p>The time when the service was last modified.</p>
2135
- */
2136
- lastModifiedAt: Date | undefined;
2137
- /**
2138
- * <p>The status of the service.</p>
2139
- */
2140
- status: ServiceStatus | string | undefined;
2141
- /**
2142
- * <p>A service status message.</p>
2143
- */
2144
- statusMessage?: string;
2145
- /**
2146
- * <p>The formatted specification that defines the service.</p>
2147
- */
2148
- spec: string | undefined;
2149
- /**
2150
- * <p>The service pipeline detail data.</p>
2151
- */
2152
- pipeline?: ServicePipeline;
2153
- /**
2154
- * <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up a repository connection</a> in the
2155
- * <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up with AWS Proton</a> in the <i>AWS Proton
2156
- * User Guide</i>.</p>
2157
- */
2158
- repositoryConnectionArn?: string;
2159
- /**
2160
- * <p>The ID of the code repository.</p>
2161
- */
2162
- repositoryId?: string;
2163
- /**
2164
- * <p>The name of the code repository branch that holds the code that's deployed in AWS Proton.</p>
2165
- */
2166
- branchName?: string;
2167
- }
2168
- export declare namespace Service {
2169
- /**
2170
- * @internal
2171
- */
2172
- const filterSensitiveLog: (obj: Service) => any;
2173
- }
2174
- export interface CreateServiceOutput {
2175
- /**
2176
- * <p>The service detail data that's returned by AWS Proton.</p>
2177
- */
2178
- service: Service | undefined;
2179
- }
2180
- export declare namespace CreateServiceOutput {
2181
- /**
2182
- * @internal
2183
- */
2184
- const filterSensitiveLog: (obj: CreateServiceOutput) => any;
2185
- }
2186
- export interface DeleteServiceInput {
2187
- /**
2188
- * <p>The name of the service to delete.</p>
2189
- */
2190
- name: string | undefined;
2191
- }
2192
- export declare namespace DeleteServiceInput {
2193
- /**
2194
- * @internal
2195
- */
2196
- const filterSensitiveLog: (obj: DeleteServiceInput) => any;
2197
- }
2198
- export interface DeleteServiceOutput {
2199
- /**
2200
- * <p>The service detail data that's returned by AWS Proton.</p>
2201
- */
2202
- service?: Service;
2203
- }
2204
- export declare namespace DeleteServiceOutput {
2205
- /**
2206
- * @internal
2207
- */
2208
- const filterSensitiveLog: (obj: DeleteServiceOutput) => any;
2209
- }
2210
- export interface GetServiceInput {
2211
- /**
2212
- * <p>The name of the service that you want to get the detail data for.</p>
2213
- */
2214
- name: string | undefined;
2215
- }
2216
- export declare namespace GetServiceInput {
2217
- /**
2218
- * @internal
2219
- */
2220
- const filterSensitiveLog: (obj: GetServiceInput) => any;
2221
- }
2222
- export interface GetServiceOutput {
2223
- /**
2224
- * <p>The service detail data that's returned by AWS Proton.</p>
2225
- */
2226
- service?: Service;
2227
- }
2228
- export declare namespace GetServiceOutput {
2229
- /**
2230
- * @internal
2231
- */
2232
- const filterSensitiveLog: (obj: GetServiceOutput) => any;
2233
- }
2234
- export interface ListServicesInput {
2235
- /**
2236
- * <p>A token to indicate the location of the next service in the array of services, after the list of services that was previously
2237
- * requested.</p>
2238
- */
2239
- nextToken?: string;
2240
- /**
2241
- * <p>The maximum number of services to list.</p>
2242
- */
2243
- maxResults?: number;
2244
- }
2245
- export declare namespace ListServicesInput {
2246
- /**
2247
- * @internal
2248
- */
2249
- const filterSensitiveLog: (obj: ListServicesInput) => any;
2250
- }
2251
- /**
2252
- * <p>A summary of the service detail data.</p>
2253
- */
2254
- export interface ServiceSummary {
2255
- /**
2256
- * <p>The name of the service.</p>
2257
- */
2258
- name: string | undefined;
2259
- /**
2260
- * <p>A description of the service.</p>
2261
- */
2262
- description?: string;
2263
- /**
2264
- * <p>The Amazon Resource Name (ARN) of the service.</p>
2265
- */
2266
- arn: string | undefined;
2267
- /**
2268
- * <p>The name of the service template.</p>
2269
- */
2270
- templateName: string | undefined;
2271
- /**
2272
- * <p>The time when the service was created.</p>
2273
- */
2274
- createdAt: Date | undefined;
2275
- /**
2276
- * <p>The time when the service was last modified.</p>
2277
- */
2278
- lastModifiedAt: Date | undefined;
2279
- /**
2280
- * <p>The status of the service.</p>
2281
- */
2282
- status: ServiceStatus | string | undefined;
2283
- /**
2284
- * <p>A service status message.</p>
2285
- */
2286
- statusMessage?: string;
2287
- }
2288
- export declare namespace ServiceSummary {
2289
- /**
2290
- * @internal
2291
- */
2292
- const filterSensitiveLog: (obj: ServiceSummary) => any;
2293
- }
2294
- export interface ListServicesOutput {
2295
- /**
2296
- * <p>A token to indicate the location of the next service in the array of services, after the current requested list of services.</p>
2297
- */
2298
- nextToken?: string;
2299
- /**
2300
- * <p>An array of services with summaries of detail data.</p>
2301
- */
2302
- services: ServiceSummary[] | undefined;
2303
- }
2304
- export declare namespace ListServicesOutput {
2305
- /**
2306
- * @internal
2307
- */
2308
- const filterSensitiveLog: (obj: ListServicesOutput) => any;
2309
- }
2310
- export interface UpdateServiceInput {
2311
- /**
2312
- * <p>The name of the service to edit.</p>
2313
- */
2314
- name: string | undefined;
2315
- /**
2316
- * <p>The edited service description.</p>
2317
- */
2318
- description?: string;
2319
- /**
2320
- * <p>Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the
2321
- * list. <i>Don't</i> include edits to the existing service instances or pipeline. For more information, see <i>Edit a
2322
- * service</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-update.html">AWS Proton Administrator
2323
- * Guide</a> or the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-update.html">AWS Proton User Guide</a>.</p>
2324
- */
2325
- spec?: string;
2326
- }
2327
- export declare namespace UpdateServiceInput {
2328
- /**
2329
- * @internal
2330
- */
2331
- const filterSensitiveLog: (obj: UpdateServiceInput) => any;
2332
- }
2333
- export interface UpdateServiceOutput {
2334
- /**
2335
- * <p>The service detail data that's returned by AWS Proton.</p>
2336
- */
2337
- service: Service | undefined;
2338
- }
2339
- export declare namespace UpdateServiceOutput {
2340
- /**
2341
- * @internal
2342
- */
2343
- const filterSensitiveLog: (obj: UpdateServiceOutput) => any;
2344
- }
2345
- export interface CreateServiceTemplateInput {
2346
- /**
2347
- * <p>The name of the service template.</p>
2348
- */
2349
- name: string | undefined;
2350
- /**
2351
- * <p>The name of the service template as displayed in the developer interface.</p>
2352
- */
2353
- displayName?: string;
2354
- /**
2355
- * <p>A description of the service template.</p>
2356
- */
2357
- description?: string;
2358
- /**
2359
- * <p>A customer provided encryption key that's used to encrypt data.</p>
2360
- */
2361
- encryptionKey?: string;
2362
- /**
2363
- * <p>AWS Proton includes a service pipeline for your service by default. When included, this parameter indicates that an AWS Proton service
2364
- * pipeline <i>won't</i> be included for your service. Once specified, this parameter <i>can't</i> be changed.
2365
- * For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-bundles.html">Service template
2366
- * bundles</a> in the <i>AWS Proton Administrator Guide</i>.</p>
2367
- */
2368
- pipelineProvisioning?: Provisioning | string;
2369
- /**
2370
- * <p>Create tags for your service template. 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>
2371
- */
2372
- tags?: Tag[];
2373
- }
2374
- export declare namespace CreateServiceTemplateInput {
2375
- /**
2376
- * @internal
2377
- */
2378
- const filterSensitiveLog: (obj: CreateServiceTemplateInput) => any;
2379
- }
2380
- /**
2381
- * <p>The service template detail data.</p>
2382
- */
2383
- export interface ServiceTemplate {
2384
- /**
2385
- * <p>The name of the service template.</p>
2386
- */
2387
- name: string | undefined;
2388
- /**
2389
- * <p>The Amazon Resource Name (ARN) of the service template.</p>
2390
- */
2391
- arn: string | undefined;
2392
- /**
2393
- * <p>The time when the service template was created.</p>
2394
- */
2395
- createdAt: Date | undefined;
2396
- /**
2397
- * <p>The time when the service template was last modified.</p>
2398
- */
2399
- lastModifiedAt: Date | undefined;
2400
- /**
2401
- * <p>The service template name as displayed in the developer interface.</p>
2402
- */
2403
- displayName?: string;
2404
- /**
2405
- * <p>A description of the service template.</p>
2406
- */
2407
- description?: string;
2408
- /**
2409
- * <p>The ID of the recommended version of the service template.</p>
2410
- */
2411
- recommendedVersion?: string;
2412
- /**
2413
- * <p>The customer provided service template encryption key that's used to encrypt data.</p>
2414
- */
2415
- encryptionKey?: string;
2416
- /**
2417
- * <p>If <code>pipelineProvisioning</code> is <code>true</code>, a service pipeline is included in the service template. Otherwise, a service
2418
- * pipeline <i>isn't</i> included in the service template.</p>
2419
- */
2420
- pipelineProvisioning?: Provisioning | string;
2421
- }
2422
- export declare namespace ServiceTemplate {
2423
- /**
2424
- * @internal
2425
- */
2426
- const filterSensitiveLog: (obj: ServiceTemplate) => any;
2427
- }
2428
- export interface CreateServiceTemplateOutput {
2429
- /**
2430
- * <p>The service template detail data that's returned by AWS Proton.</p>
2431
- */
2432
- serviceTemplate: ServiceTemplate | undefined;
2433
- }
2434
- export declare namespace CreateServiceTemplateOutput {
2435
- /**
2436
- * @internal
2437
- */
2438
- const filterSensitiveLog: (obj: CreateServiceTemplateOutput) => any;
2439
- }
2440
- export interface DeleteServiceTemplateInput {
2441
- /**
2442
- * <p>The name of the service template to delete.</p>
2443
- */
2444
- name: string | undefined;
2445
- }
2446
- export declare namespace DeleteServiceTemplateInput {
2447
- /**
2448
- * @internal
2449
- */
2450
- const filterSensitiveLog: (obj: DeleteServiceTemplateInput) => any;
2451
- }
2452
- export interface DeleteServiceTemplateOutput {
2453
- /**
2454
- * <p>The service template detail data that's returned by AWS Proton.</p>
2455
- */
2456
- serviceTemplate?: ServiceTemplate;
2457
- }
2458
- export declare namespace DeleteServiceTemplateOutput {
2459
- /**
2460
- * @internal
2461
- */
2462
- const filterSensitiveLog: (obj: DeleteServiceTemplateOutput) => any;
2463
- }
2464
- export interface GetServiceTemplateInput {
2465
- /**
2466
- * <p>The name of the service template that you want to get detail data for.</p>
2467
- */
2468
- name: string | undefined;
2469
- }
2470
- export declare namespace GetServiceTemplateInput {
2471
- /**
2472
- * @internal
2473
- */
2474
- const filterSensitiveLog: (obj: GetServiceTemplateInput) => any;
2475
- }
2476
- export interface GetServiceTemplateOutput {
2477
- /**
2478
- * <p>The service template detail data that's returned by AWS Proton.</p>
2479
- */
2480
- serviceTemplate: ServiceTemplate | undefined;
2481
- }
2482
- export declare namespace GetServiceTemplateOutput {
2483
- /**
2484
- * @internal
2485
- */
2486
- const filterSensitiveLog: (obj: GetServiceTemplateOutput) => any;
2487
- }
2488
- export interface ListServiceTemplatesInput {
2489
- /**
2490
- * <p>A token to indicate the location of the next service template in the array of service templates, after the list of service templates
2491
- * previously requested.</p>
2492
- */
2493
- nextToken?: string;
2494
- /**
2495
- * <p>The maximum number of service templates to list.</p>
2496
- */
2497
- maxResults?: number;
2498
- }
2499
- export declare namespace ListServiceTemplatesInput {
2500
- /**
2501
- * @internal
2502
- */
2503
- const filterSensitiveLog: (obj: ListServiceTemplatesInput) => any;
2504
- }
2505
- /**
2506
- * <p>The service template summary data.</p>
2507
- */
2508
- export interface ServiceTemplateSummary {
2509
- /**
2510
- * <p>The name of the service template.</p>
2511
- */
2512
- name: string | undefined;
2513
- /**
2514
- * <p>The Amazon Resource Name (ARN) of the service template.</p>
2515
- */
2516
- arn: string | undefined;
2517
- /**
2518
- * <p>The time when the service template was created.</p>
2519
- */
2520
- createdAt: Date | undefined;
2521
- /**
2522
- * <p>The time when the service template was last modified.</p>
2523
- */
2524
- lastModifiedAt: Date | undefined;
2525
- /**
2526
- * <p>The service template name as displayed in the developer interface.</p>
2527
- */
2528
- displayName?: string;
2529
- /**
2530
- * <p>A description of the service template.</p>
2531
- */
2532
- description?: string;
2533
- /**
2534
- * <p>The ID of the recommended version of the service template.</p>
2535
- */
2536
- recommendedVersion?: string;
2537
- /**
2538
- * <p>If <code>pipelineProvisioning</code> is <code>true</code>, a service pipeline is included in the service template, otherwise a service
2539
- * pipeline <i>isn't</i> included in the service template.</p>
2540
- */
2541
- pipelineProvisioning?: Provisioning | string;
2542
- }
2543
- export declare namespace ServiceTemplateSummary {
2544
- /**
2545
- * @internal
2546
- */
2547
- const filterSensitiveLog: (obj: ServiceTemplateSummary) => any;
2548
- }
2549
- export interface ListServiceTemplatesOutput {
2550
- /**
2551
- * <p>A token to indicate the location of the next service template in the array of service templates, after the current requested list of
2552
- * service templates.</p>
2553
- */
2554
- nextToken?: string;
2555
- /**
2556
- * <p>An array of service templates with detail data.</p>
2557
- */
2558
- templates: ServiceTemplateSummary[] | undefined;
2559
- }
2560
- export declare namespace ListServiceTemplatesOutput {
2561
- /**
2562
- * @internal
2563
- */
2564
- const filterSensitiveLog: (obj: ListServiceTemplatesOutput) => any;
2565
- }
2566
- export interface UpdateServiceTemplateInput {
2567
- /**
2568
- * <p>The name of the service template to update.</p>
2569
- */
2570
- name: string | undefined;
2571
- /**
2572
- * <p>The name of the service template to update as displayed in the developer interface.</p>
2573
- */
2574
- displayName?: string;
2575
- /**
2576
- * <p>A description of the service template update.</p>
2577
- */
2578
- description?: string;
2579
- }
2580
- export declare namespace UpdateServiceTemplateInput {
2581
- /**
2582
- * @internal
2583
- */
2584
- const filterSensitiveLog: (obj: UpdateServiceTemplateInput) => any;
2585
- }
2586
- export interface UpdateServiceTemplateOutput {
2587
- /**
2588
- * <p>The service template detail data that's returned by AWS Proton.</p>
2589
- */
2590
- serviceTemplate: ServiceTemplate | undefined;
2591
- }
2592
- export declare namespace UpdateServiceTemplateOutput {
2593
- /**
2594
- * @internal
2595
- */
2596
- const filterSensitiveLog: (obj: UpdateServiceTemplateOutput) => any;
2597
- }
2598
- /**
2599
- * <p>Compatible environment template data.</p>
2600
- */
2601
- export interface CompatibleEnvironmentTemplateInput {
2602
- /**
2603
- * <p>The compatible environment template name.</p>
2604
- */
2605
- templateName: string | undefined;
2606
- /**
2607
- * <p>The major version of the compatible environment template.</p>
2608
- */
2609
- majorVersion: string | undefined;
2610
- }
2611
- export declare namespace CompatibleEnvironmentTemplateInput {
2612
- /**
2613
- * @internal
2614
- */
2615
- const filterSensitiveLog: (obj: CompatibleEnvironmentTemplateInput) => any;
2616
- }
2617
- export interface CreateServiceTemplateVersionInput {
2618
- /**
2619
- * <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the service template version that the
2620
- * first request created.</p>
2621
- */
2622
- clientToken?: string;
2623
- /**
2624
- * <p>The name of the service template.</p>
2625
- */
2626
- templateName: string | undefined;
2627
- /**
2628
- * <p>A description of the new version of a service template.</p>
2629
- */
2630
- description?: string;
2631
- /**
2632
- * <p>To create a new minor version of the service template, include a <code>majorVersion</code>.</p>
2633
- * <p>To create a new major and minor version of the service template, <i>exclude</i>
2634
- * <code>majorVersion</code>.</p>
2635
- */
2636
- majorVersion?: string;
2637
- /**
2638
- * <p>An object that includes the template bundle S3 bucket path and name for the new version of a service template.</p>
2639
- */
2640
- source: TemplateVersionSourceInput | undefined;
2641
- /**
2642
- * <p>An array of compatible environment template objects for the new version of a service template.</p>
2643
- */
2644
- compatibleEnvironmentTemplates: CompatibleEnvironmentTemplateInput[] | undefined;
2645
- /**
2646
- * <p>Create tags for a new version of a service template.</p>
2647
- */
2648
- tags?: Tag[];
2649
- }
2650
- export declare namespace CreateServiceTemplateVersionInput {
2651
- /**
2652
- * @internal
2653
- */
2654
- const filterSensitiveLog: (obj: CreateServiceTemplateVersionInput) => any;
2655
- }
2656
- /**
2657
- * <p>Compatible environment template data.</p>
2658
- */
2659
- export interface CompatibleEnvironmentTemplate {
2660
- /**
2661
- * <p>The compatible environment template name.</p>
2662
- */
2663
- templateName: string | undefined;
2664
- /**
2665
- * <p>The major version of the compatible environment template.</p>
2666
- */
2667
- majorVersion: string | undefined;
2668
- }
2669
- export declare namespace CompatibleEnvironmentTemplate {
2670
- /**
2671
- * @internal
2672
- */
2673
- const filterSensitiveLog: (obj: CompatibleEnvironmentTemplate) => any;
2674
- }
2675
- /**
2676
- * <p>The version of a service template detail data.</p>
2677
- */
2678
- export interface ServiceTemplateVersion {
2679
- /**
2680
- * <p>The name of the version of a service template.</p>
2681
- */
2682
- templateName: string | undefined;
2683
- /**
2684
- * <p>The ID of the latest major version that's associated with the version of a service template.</p>
2685
- */
2686
- majorVersion: string | undefined;
2687
- /**
2688
- * <p>The ID of the minor version of a service template.</p>
2689
- */
2690
- minorVersion: string | undefined;
2691
- /**
2692
- * <p>The ID of the recommended minor version of the service template.</p>
2693
- */
2694
- recommendedMinorVersion?: string;
2695
- /**
2696
- * <p>The service template version status.</p>
2697
- */
2698
- status: TemplateVersionStatus | string | undefined;
2699
- /**
2700
- * <p>A service template version status message.</p>
2701
- */
2702
- statusMessage?: string;
2703
- /**
2704
- * <p>A description of the version of a service template.</p>
2705
- */
2706
- description?: string;
2707
- /**
2708
- * <p>The Amazon Resource Name (ARN) of the version of a service template.</p>
2709
- */
2710
- arn: string | undefined;
2711
- /**
2712
- * <p>The time when the version of a service template was created.</p>
2713
- */
2714
- createdAt: Date | undefined;
2715
- /**
2716
- * <p>The time when the version of a service template was last modified.</p>
2717
- */
2718
- lastModifiedAt: Date | undefined;
2719
- /**
2720
- * <p>An array of compatible environment template names for the major version of a service template.</p>
2721
- */
2722
- compatibleEnvironmentTemplates: CompatibleEnvironmentTemplate[] | undefined;
2723
- /**
2724
- * <p>The schema of the version of a service template.</p>
2725
- */
2726
- schema?: string;
2727
- }
2728
- export declare namespace ServiceTemplateVersion {
2729
- /**
2730
- * @internal
2731
- */
2732
- const filterSensitiveLog: (obj: ServiceTemplateVersion) => any;
2733
- }
2734
- export interface CreateServiceTemplateVersionOutput {
2735
- /**
2736
- * <p>The service template version summary of detail data that's returned by AWS Proton.</p>
2737
- */
2738
- serviceTemplateVersion: ServiceTemplateVersion | undefined;
2739
- }
2740
- export declare namespace CreateServiceTemplateVersionOutput {
2741
- /**
2742
- * @internal
2743
- */
2744
- const filterSensitiveLog: (obj: CreateServiceTemplateVersionOutput) => any;
2745
- }
2746
- export interface DeleteServiceTemplateVersionInput {
2747
- /**
2748
- * <p>The name of the service template.</p>
2749
- */
2750
- templateName: string | undefined;
2751
- /**
2752
- * <p>The service template major version to delete.</p>
2753
- */
2754
- majorVersion: string | undefined;
2755
- /**
2756
- * <p>The service template minor version to delete.</p>
2757
- */
2758
- minorVersion: string | undefined;
2759
- }
2760
- export declare namespace DeleteServiceTemplateVersionInput {
2761
- /**
2762
- * @internal
2763
- */
2764
- const filterSensitiveLog: (obj: DeleteServiceTemplateVersionInput) => any;
2765
- }
2766
- export interface DeleteServiceTemplateVersionOutput {
2767
- /**
2768
- * <p>The service template version detail data that's returned by AWS Proton.</p>
2769
- */
2770
- serviceTemplateVersion?: ServiceTemplateVersion;
2771
- }
2772
- export declare namespace DeleteServiceTemplateVersionOutput {
2773
- /**
2774
- * @internal
2775
- */
2776
- const filterSensitiveLog: (obj: DeleteServiceTemplateVersionOutput) => any;
2777
- }
2778
- export interface GetServiceTemplateVersionInput {
2779
- /**
2780
- * <p>The name of the service template.</p>
2781
- */
2782
- templateName: string | undefined;
2783
- /**
2784
- * <p>To view service template major version detail data, include <code>majorVersion</code>.</p>
2785
- */
2786
- majorVersion: string | undefined;
2787
- /**
2788
- * <p>To view service template minor version detail data, include <code>minorVersion</code>.</p>
2789
- */
2790
- minorVersion: string | undefined;
2791
- }
2792
- export declare namespace GetServiceTemplateVersionInput {
2793
- /**
2794
- * @internal
2795
- */
2796
- const filterSensitiveLog: (obj: GetServiceTemplateVersionInput) => any;
2797
- }
2798
- export interface GetServiceTemplateVersionOutput {
2799
- /**
2800
- * <p>The service template version detail data that's returned by AWS Proton.</p>
2801
- */
2802
- serviceTemplateVersion: ServiceTemplateVersion | undefined;
2803
- }
2804
- export declare namespace GetServiceTemplateVersionOutput {
2805
- /**
2806
- * @internal
2807
- */
2808
- const filterSensitiveLog: (obj: GetServiceTemplateVersionOutput) => any;
2809
- }
2810
- export interface ListServiceTemplateVersionsInput {
2811
- /**
2812
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after
2813
- * the list of major or minor versions that was previously requested.</p>
2814
- */
2815
- nextToken?: string;
2816
- /**
2817
- * <p>The maximum number of major or minor versions of a service template to list.</p>
2818
- */
2819
- maxResults?: number;
2820
- /**
2821
- * <p>The name of the service template.</p>
2822
- */
2823
- templateName: string | undefined;
2824
- /**
2825
- * <p>To view a list of minor of versions under a major version of a service template, include <code>majorVersion</code>.</p>
2826
- * <p>To view a list of major versions of a service template, <i>exclude</i>
2827
- * <code>majorVersion</code>.</p>
2828
- */
2829
- majorVersion?: string;
2830
- }
2831
- export declare namespace ListServiceTemplateVersionsInput {
2832
- /**
2833
- * @internal
2834
- */
2835
- const filterSensitiveLog: (obj: ListServiceTemplateVersionsInput) => any;
2836
- }
2837
- /**
2838
- * <p>A summary of the service template version detail data.</p>
2839
- */
2840
- export interface ServiceTemplateVersionSummary {
2841
- /**
2842
- * <p>The name of the service template.</p>
2843
- */
2844
- templateName: string | undefined;
2845
- /**
2846
- * <p>The ID of the latest major version that's associated with the version of a service template.</p>
2847
- */
2848
- majorVersion: string | undefined;
2849
- /**
2850
- * <p>The ID of the minor version of a service template.</p>
2851
- */
2852
- minorVersion: string | undefined;
2853
- /**
2854
- * <p>The ID of the recommended minor version of the service template.</p>
2855
- */
2856
- recommendedMinorVersion?: string;
2857
- /**
2858
- * <p>The service template minor version status.</p>
2859
- */
2860
- status: TemplateVersionStatus | string | undefined;
2861
- /**
2862
- * <p>A service template minor version status message.</p>
2863
- */
2864
- statusMessage?: string;
2865
- /**
2866
- * <p>A description of the version of a service template.</p>
2867
- */
2868
- description?: string;
2869
- /**
2870
- * <p>The Amazon Resource Name (ARN) of the version of a service template.</p>
2871
- */
2872
- arn: string | undefined;
2873
- /**
2874
- * <p>The time when the version of a service template was created.</p>
2875
- */
2876
- createdAt: Date | undefined;
2877
- /**
2878
- * <p>The time when the version of a service template was last modified.</p>
2879
- */
2880
- lastModifiedAt: Date | undefined;
2881
- }
2882
- export declare namespace ServiceTemplateVersionSummary {
2883
- /**
2884
- * @internal
2885
- */
2886
- const filterSensitiveLog: (obj: ServiceTemplateVersionSummary) => any;
2887
- }
2888
- export interface ListServiceTemplateVersionsOutput {
2889
- /**
2890
- * <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after
2891
- * the list of major or minor versions that was previously requested.</p>
2892
- */
2893
- nextToken?: string;
2894
- /**
2895
- * <p>An array of major or minor versions of a service template with detail data.</p>
2896
- */
2897
- templateVersions: ServiceTemplateVersionSummary[] | undefined;
2898
- }
2899
- export declare namespace ListServiceTemplateVersionsOutput {
2900
- /**
2901
- * @internal
2902
- */
2903
- const filterSensitiveLog: (obj: ListServiceTemplateVersionsOutput) => any;
2904
- }
2905
- export interface UpdateServiceTemplateVersionInput {
2906
- /**
2907
- * <p>The name of the service template.</p>
2908
- */
2909
- templateName: string | undefined;
2910
- /**
2911
- * <p>To update a major version of a service template, include <code>majorVersion</code>.</p>
2912
- */
2913
- majorVersion: string | undefined;
2914
- /**
2915
- * <p>To update a minor version of a service template, include <code>minorVersion</code>.</p>
2916
- */
2917
- minorVersion: string | undefined;
2918
- /**
2919
- * <p>A description of a service template version to update.</p>
2920
- */
2921
- description?: string;
2922
- /**
2923
- * <p>The status of the service template minor version to update.</p>
2924
- */
2925
- status?: TemplateVersionStatus | string;
2926
- /**
2927
- * <p>An array of compatible environment names for a service template major or minor version to update.</p>
2928
- */
2929
- compatibleEnvironmentTemplates?: CompatibleEnvironmentTemplateInput[];
2930
- }
2931
- export declare namespace UpdateServiceTemplateVersionInput {
2932
- /**
2933
- * @internal
2934
- */
2935
- const filterSensitiveLog: (obj: UpdateServiceTemplateVersionInput) => any;
2936
- }
2937
- export interface UpdateServiceTemplateVersionOutput {
2938
- /**
2939
- * <p>The service template version detail data that's returned by AWS Proton.</p>
2940
- */
2941
- serviceTemplateVersion: ServiceTemplateVersion | undefined;
2942
- }
2943
- export declare namespace UpdateServiceTemplateVersionOutput {
2944
- /**
2945
- * @internal
2946
- */
2947
- const filterSensitiveLog: (obj: UpdateServiceTemplateVersionOutput) => any;
2948
- }
2949
- export interface TagResourceInput {
2950
- /**
2951
- * <p>The Amazon Resource Name (ARN) of the resource that the resource tag is applied to.</p>
2952
- */
2953
- resourceArn: string | undefined;
2954
- /**
2955
- * <p>An array of resource tags to apply to a resource.</p>
2956
- */
2957
- tags: Tag[] | undefined;
2958
- }
2959
- export declare namespace TagResourceInput {
2960
- /**
2961
- * @internal
2962
- */
2963
- const filterSensitiveLog: (obj: TagResourceInput) => any;
2964
- }
2965
- export interface TagResourceOutput {
2966
- }
2967
- export declare namespace TagResourceOutput {
2968
- /**
2969
- * @internal
2970
- */
2971
- const filterSensitiveLog: (obj: TagResourceOutput) => any;
2972
- }
2973
- export interface UntagResourceInput {
2974
- /**
2975
- * <p>The Amazon Resource Name (ARN) of the resource that the tag is to be removed from.</p>
2976
- */
2977
- resourceArn: string | undefined;
2978
- /**
2979
- * <p>An array of tag keys indicating the resource tags to be removed from the resource.</p>
2980
- */
2981
- tagKeys: string[] | undefined;
2982
- }
2983
- export declare namespace UntagResourceInput {
2984
- /**
2985
- * @internal
2986
- */
2987
- const filterSensitiveLog: (obj: UntagResourceInput) => any;
2988
- }
2989
- export interface UntagResourceOutput {
2990
- }
2991
- export declare namespace UntagResourceOutput {
2992
- /**
2993
- * @internal
2994
- */
2995
- const filterSensitiveLog: (obj: UntagResourceOutput) => any;
2996
- }