@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,1369 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListEnvironmentsInput = exports.EnvironmentTemplateFilter = exports.GetEnvironmentOutput = exports.GetEnvironmentInput = exports.DeleteEnvironmentOutput = exports.DeleteEnvironmentInput = exports.CreateEnvironmentOutput = exports.CreateEnvironmentInput = exports.Tag = exports.UpdateEnvironmentAccountConnectionOutput = exports.UpdateEnvironmentAccountConnectionInput = exports.RejectEnvironmentAccountConnectionOutput = exports.RejectEnvironmentAccountConnectionInput = exports.ListEnvironmentAccountConnectionsOutput = exports.EnvironmentAccountConnectionSummary = exports.ListEnvironmentAccountConnectionsInput = exports.EnvironmentAccountConnectionRequesterAccountType = exports.GetEnvironmentAccountConnectionOutput = exports.GetEnvironmentAccountConnectionInput = exports.DeleteEnvironmentAccountConnectionOutput = exports.DeleteEnvironmentAccountConnectionInput = exports.ServiceQuotaExceededException = exports.CreateEnvironmentAccountConnectionOutput = exports.CreateEnvironmentAccountConnectionInput = exports.CancelServicePipelineDeploymentOutput = exports.ServicePipeline = exports.CancelServicePipelineDeploymentInput = exports.CancelServiceInstanceDeploymentOutput = exports.ServiceInstance = exports.CancelServiceInstanceDeploymentInput = exports.CancelEnvironmentDeploymentOutput = exports.Environment = exports.Provisioning = exports.DeploymentStatus = exports.CancelEnvironmentDeploymentInput = exports.UpdateAccountSettingsOutput = exports.UpdateAccountSettingsInput = exports.GetAccountSettingsOutput = exports.GetAccountSettingsInput = exports.AccountSettings = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = exports.AcceptEnvironmentAccountConnectionOutput = exports.EnvironmentAccountConnection = exports.EnvironmentAccountConnectionStatus = exports.AcceptEnvironmentAccountConnectionInput = void 0;
4
- exports.GetServiceInput = exports.DeleteServiceOutput = exports.DeleteServiceInput = exports.CreateServiceOutput = exports.Service = exports.ServiceStatus = exports.CreateServiceInput = exports.UpdateServicePipelineOutput = exports.UpdateServicePipelineInput = exports.UpdateServiceInstanceOutput = exports.UpdateServiceInstanceInput = exports.ListServiceInstancesOutput = exports.ServiceInstanceSummary = exports.ListServiceInstancesInput = exports.GetServiceInstanceOutput = exports.GetServiceInstanceInput = exports.ListTagsForResourceOutput = exports.ListTagsForResourceInput = exports.UpdateEnvironmentTemplateVersionOutput = exports.UpdateEnvironmentTemplateVersionInput = exports.ListEnvironmentTemplateVersionsOutput = exports.EnvironmentTemplateVersionSummary = exports.ListEnvironmentTemplateVersionsInput = exports.GetEnvironmentTemplateVersionOutput = exports.GetEnvironmentTemplateVersionInput = exports.DeleteEnvironmentTemplateVersionOutput = exports.DeleteEnvironmentTemplateVersionInput = exports.CreateEnvironmentTemplateVersionOutput = exports.EnvironmentTemplateVersion = exports.TemplateVersionStatus = exports.CreateEnvironmentTemplateVersionInput = exports.TemplateVersionSourceInput = exports.S3ObjectSource = exports.UpdateEnvironmentTemplateOutput = exports.UpdateEnvironmentTemplateInput = exports.ListEnvironmentTemplatesOutput = exports.EnvironmentTemplateSummary = exports.ListEnvironmentTemplatesInput = exports.GetEnvironmentTemplateOutput = exports.GetEnvironmentTemplateInput = exports.DeleteEnvironmentTemplateOutput = exports.DeleteEnvironmentTemplateInput = exports.CreateEnvironmentTemplateOutput = exports.EnvironmentTemplate = exports.CreateEnvironmentTemplateInput = exports.UpdateEnvironmentOutput = exports.UpdateEnvironmentInput = exports.DeploymentUpdateType = exports.ListEnvironmentsOutput = exports.EnvironmentSummary = void 0;
5
- exports.UntagResourceOutput = exports.UntagResourceInput = exports.TagResourceOutput = exports.TagResourceInput = exports.UpdateServiceTemplateVersionOutput = exports.UpdateServiceTemplateVersionInput = exports.ListServiceTemplateVersionsOutput = exports.ServiceTemplateVersionSummary = exports.ListServiceTemplateVersionsInput = exports.GetServiceTemplateVersionOutput = exports.GetServiceTemplateVersionInput = exports.DeleteServiceTemplateVersionOutput = exports.DeleteServiceTemplateVersionInput = exports.CreateServiceTemplateVersionOutput = exports.ServiceTemplateVersion = exports.CompatibleEnvironmentTemplate = exports.CreateServiceTemplateVersionInput = exports.CompatibleEnvironmentTemplateInput = exports.UpdateServiceTemplateOutput = exports.UpdateServiceTemplateInput = exports.ListServiceTemplatesOutput = exports.ServiceTemplateSummary = exports.ListServiceTemplatesInput = exports.GetServiceTemplateOutput = exports.GetServiceTemplateInput = exports.DeleteServiceTemplateOutput = exports.DeleteServiceTemplateInput = exports.CreateServiceTemplateOutput = exports.ServiceTemplate = exports.CreateServiceTemplateInput = exports.UpdateServiceOutput = exports.UpdateServiceInput = exports.ListServicesOutput = exports.ServiceSummary = exports.ListServicesInput = exports.GetServiceOutput = void 0;
6
- const smithy_client_1 = require("@aws-sdk/smithy-client");
7
- var AcceptEnvironmentAccountConnectionInput;
8
- (function (AcceptEnvironmentAccountConnectionInput) {
9
- /**
10
- * @internal
11
- */
12
- AcceptEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
13
- ...obj,
14
- });
15
- })(AcceptEnvironmentAccountConnectionInput = exports.AcceptEnvironmentAccountConnectionInput || (exports.AcceptEnvironmentAccountConnectionInput = {}));
16
- var EnvironmentAccountConnectionStatus;
17
- (function (EnvironmentAccountConnectionStatus) {
18
- EnvironmentAccountConnectionStatus["CONNECTED"] = "CONNECTED";
19
- EnvironmentAccountConnectionStatus["PENDING"] = "PENDING";
20
- EnvironmentAccountConnectionStatus["REJECTED"] = "REJECTED";
21
- })(EnvironmentAccountConnectionStatus = exports.EnvironmentAccountConnectionStatus || (exports.EnvironmentAccountConnectionStatus = {}));
22
- var EnvironmentAccountConnection;
23
- (function (EnvironmentAccountConnection) {
24
- /**
25
- * @internal
26
- */
27
- EnvironmentAccountConnection.filterSensitiveLog = (obj) => ({
28
- ...obj,
29
- });
30
- })(EnvironmentAccountConnection = exports.EnvironmentAccountConnection || (exports.EnvironmentAccountConnection = {}));
31
- var AcceptEnvironmentAccountConnectionOutput;
32
- (function (AcceptEnvironmentAccountConnectionOutput) {
33
- /**
34
- * @internal
35
- */
36
- AcceptEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
37
- ...obj,
38
- });
39
- })(AcceptEnvironmentAccountConnectionOutput = exports.AcceptEnvironmentAccountConnectionOutput || (exports.AcceptEnvironmentAccountConnectionOutput = {}));
40
- var AccessDeniedException;
41
- (function (AccessDeniedException) {
42
- /**
43
- * @internal
44
- */
45
- AccessDeniedException.filterSensitiveLog = (obj) => ({
46
- ...obj,
47
- ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
48
- });
49
- })(AccessDeniedException = exports.AccessDeniedException || (exports.AccessDeniedException = {}));
50
- var ConflictException;
51
- (function (ConflictException) {
52
- /**
53
- * @internal
54
- */
55
- ConflictException.filterSensitiveLog = (obj) => ({
56
- ...obj,
57
- ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
58
- });
59
- })(ConflictException = exports.ConflictException || (exports.ConflictException = {}));
60
- var InternalServerException;
61
- (function (InternalServerException) {
62
- /**
63
- * @internal
64
- */
65
- InternalServerException.filterSensitiveLog = (obj) => ({
66
- ...obj,
67
- ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
68
- });
69
- })(InternalServerException = exports.InternalServerException || (exports.InternalServerException = {}));
70
- var ResourceNotFoundException;
71
- (function (ResourceNotFoundException) {
72
- /**
73
- * @internal
74
- */
75
- ResourceNotFoundException.filterSensitiveLog = (obj) => ({
76
- ...obj,
77
- ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
78
- });
79
- })(ResourceNotFoundException = exports.ResourceNotFoundException || (exports.ResourceNotFoundException = {}));
80
- var ThrottlingException;
81
- (function (ThrottlingException) {
82
- /**
83
- * @internal
84
- */
85
- ThrottlingException.filterSensitiveLog = (obj) => ({
86
- ...obj,
87
- ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
88
- });
89
- })(ThrottlingException = exports.ThrottlingException || (exports.ThrottlingException = {}));
90
- var ValidationException;
91
- (function (ValidationException) {
92
- /**
93
- * @internal
94
- */
95
- ValidationException.filterSensitiveLog = (obj) => ({
96
- ...obj,
97
- ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
98
- });
99
- })(ValidationException = exports.ValidationException || (exports.ValidationException = {}));
100
- var AccountSettings;
101
- (function (AccountSettings) {
102
- /**
103
- * @internal
104
- */
105
- AccountSettings.filterSensitiveLog = (obj) => ({
106
- ...obj,
107
- });
108
- })(AccountSettings = exports.AccountSettings || (exports.AccountSettings = {}));
109
- var GetAccountSettingsInput;
110
- (function (GetAccountSettingsInput) {
111
- /**
112
- * @internal
113
- */
114
- GetAccountSettingsInput.filterSensitiveLog = (obj) => ({
115
- ...obj,
116
- });
117
- })(GetAccountSettingsInput = exports.GetAccountSettingsInput || (exports.GetAccountSettingsInput = {}));
118
- var GetAccountSettingsOutput;
119
- (function (GetAccountSettingsOutput) {
120
- /**
121
- * @internal
122
- */
123
- GetAccountSettingsOutput.filterSensitiveLog = (obj) => ({
124
- ...obj,
125
- });
126
- })(GetAccountSettingsOutput = exports.GetAccountSettingsOutput || (exports.GetAccountSettingsOutput = {}));
127
- var UpdateAccountSettingsInput;
128
- (function (UpdateAccountSettingsInput) {
129
- /**
130
- * @internal
131
- */
132
- UpdateAccountSettingsInput.filterSensitiveLog = (obj) => ({
133
- ...obj,
134
- });
135
- })(UpdateAccountSettingsInput = exports.UpdateAccountSettingsInput || (exports.UpdateAccountSettingsInput = {}));
136
- var UpdateAccountSettingsOutput;
137
- (function (UpdateAccountSettingsOutput) {
138
- /**
139
- * @internal
140
- */
141
- UpdateAccountSettingsOutput.filterSensitiveLog = (obj) => ({
142
- ...obj,
143
- });
144
- })(UpdateAccountSettingsOutput = exports.UpdateAccountSettingsOutput || (exports.UpdateAccountSettingsOutput = {}));
145
- var CancelEnvironmentDeploymentInput;
146
- (function (CancelEnvironmentDeploymentInput) {
147
- /**
148
- * @internal
149
- */
150
- CancelEnvironmentDeploymentInput.filterSensitiveLog = (obj) => ({
151
- ...obj,
152
- });
153
- })(CancelEnvironmentDeploymentInput = exports.CancelEnvironmentDeploymentInput || (exports.CancelEnvironmentDeploymentInput = {}));
154
- var DeploymentStatus;
155
- (function (DeploymentStatus) {
156
- DeploymentStatus["CANCELLED"] = "CANCELLED";
157
- DeploymentStatus["CANCELLING"] = "CANCELLING";
158
- DeploymentStatus["DELETE_COMPLETE"] = "DELETE_COMPLETE";
159
- DeploymentStatus["DELETE_FAILED"] = "DELETE_FAILED";
160
- DeploymentStatus["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
161
- DeploymentStatus["FAILED"] = "FAILED";
162
- DeploymentStatus["IN_PROGRESS"] = "IN_PROGRESS";
163
- DeploymentStatus["SUCCEEDED"] = "SUCCEEDED";
164
- })(DeploymentStatus = exports.DeploymentStatus || (exports.DeploymentStatus = {}));
165
- var Provisioning;
166
- (function (Provisioning) {
167
- Provisioning["CUSTOMER_MANAGED"] = "CUSTOMER_MANAGED";
168
- })(Provisioning = exports.Provisioning || (exports.Provisioning = {}));
169
- var Environment;
170
- (function (Environment) {
171
- /**
172
- * @internal
173
- */
174
- Environment.filterSensitiveLog = (obj) => ({
175
- ...obj,
176
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
177
- ...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
178
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
179
- });
180
- })(Environment = exports.Environment || (exports.Environment = {}));
181
- var CancelEnvironmentDeploymentOutput;
182
- (function (CancelEnvironmentDeploymentOutput) {
183
- /**
184
- * @internal
185
- */
186
- CancelEnvironmentDeploymentOutput.filterSensitiveLog = (obj) => ({
187
- ...obj,
188
- ...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
189
- });
190
- })(CancelEnvironmentDeploymentOutput = exports.CancelEnvironmentDeploymentOutput || (exports.CancelEnvironmentDeploymentOutput = {}));
191
- var CancelServiceInstanceDeploymentInput;
192
- (function (CancelServiceInstanceDeploymentInput) {
193
- /**
194
- * @internal
195
- */
196
- CancelServiceInstanceDeploymentInput.filterSensitiveLog = (obj) => ({
197
- ...obj,
198
- });
199
- })(CancelServiceInstanceDeploymentInput = exports.CancelServiceInstanceDeploymentInput || (exports.CancelServiceInstanceDeploymentInput = {}));
200
- var ServiceInstance;
201
- (function (ServiceInstance) {
202
- /**
203
- * @internal
204
- */
205
- ServiceInstance.filterSensitiveLog = (obj) => ({
206
- ...obj,
207
- ...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
208
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
209
- });
210
- })(ServiceInstance = exports.ServiceInstance || (exports.ServiceInstance = {}));
211
- var CancelServiceInstanceDeploymentOutput;
212
- (function (CancelServiceInstanceDeploymentOutput) {
213
- /**
214
- * @internal
215
- */
216
- CancelServiceInstanceDeploymentOutput.filterSensitiveLog = (obj) => ({
217
- ...obj,
218
- ...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
219
- });
220
- })(CancelServiceInstanceDeploymentOutput = exports.CancelServiceInstanceDeploymentOutput || (exports.CancelServiceInstanceDeploymentOutput = {}));
221
- var CancelServicePipelineDeploymentInput;
222
- (function (CancelServicePipelineDeploymentInput) {
223
- /**
224
- * @internal
225
- */
226
- CancelServicePipelineDeploymentInput.filterSensitiveLog = (obj) => ({
227
- ...obj,
228
- });
229
- })(CancelServicePipelineDeploymentInput = exports.CancelServicePipelineDeploymentInput || (exports.CancelServicePipelineDeploymentInput = {}));
230
- var ServicePipeline;
231
- (function (ServicePipeline) {
232
- /**
233
- * @internal
234
- */
235
- ServicePipeline.filterSensitiveLog = (obj) => ({
236
- ...obj,
237
- ...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
238
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
239
- });
240
- })(ServicePipeline = exports.ServicePipeline || (exports.ServicePipeline = {}));
241
- var CancelServicePipelineDeploymentOutput;
242
- (function (CancelServicePipelineDeploymentOutput) {
243
- /**
244
- * @internal
245
- */
246
- CancelServicePipelineDeploymentOutput.filterSensitiveLog = (obj) => ({
247
- ...obj,
248
- ...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
249
- });
250
- })(CancelServicePipelineDeploymentOutput = exports.CancelServicePipelineDeploymentOutput || (exports.CancelServicePipelineDeploymentOutput = {}));
251
- var CreateEnvironmentAccountConnectionInput;
252
- (function (CreateEnvironmentAccountConnectionInput) {
253
- /**
254
- * @internal
255
- */
256
- CreateEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
257
- ...obj,
258
- });
259
- })(CreateEnvironmentAccountConnectionInput = exports.CreateEnvironmentAccountConnectionInput || (exports.CreateEnvironmentAccountConnectionInput = {}));
260
- var CreateEnvironmentAccountConnectionOutput;
261
- (function (CreateEnvironmentAccountConnectionOutput) {
262
- /**
263
- * @internal
264
- */
265
- CreateEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
266
- ...obj,
267
- });
268
- })(CreateEnvironmentAccountConnectionOutput = exports.CreateEnvironmentAccountConnectionOutput || (exports.CreateEnvironmentAccountConnectionOutput = {}));
269
- var ServiceQuotaExceededException;
270
- (function (ServiceQuotaExceededException) {
271
- /**
272
- * @internal
273
- */
274
- ServiceQuotaExceededException.filterSensitiveLog = (obj) => ({
275
- ...obj,
276
- ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
277
- });
278
- })(ServiceQuotaExceededException = exports.ServiceQuotaExceededException || (exports.ServiceQuotaExceededException = {}));
279
- var DeleteEnvironmentAccountConnectionInput;
280
- (function (DeleteEnvironmentAccountConnectionInput) {
281
- /**
282
- * @internal
283
- */
284
- DeleteEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
285
- ...obj,
286
- });
287
- })(DeleteEnvironmentAccountConnectionInput = exports.DeleteEnvironmentAccountConnectionInput || (exports.DeleteEnvironmentAccountConnectionInput = {}));
288
- var DeleteEnvironmentAccountConnectionOutput;
289
- (function (DeleteEnvironmentAccountConnectionOutput) {
290
- /**
291
- * @internal
292
- */
293
- DeleteEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
294
- ...obj,
295
- });
296
- })(DeleteEnvironmentAccountConnectionOutput = exports.DeleteEnvironmentAccountConnectionOutput || (exports.DeleteEnvironmentAccountConnectionOutput = {}));
297
- var GetEnvironmentAccountConnectionInput;
298
- (function (GetEnvironmentAccountConnectionInput) {
299
- /**
300
- * @internal
301
- */
302
- GetEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
303
- ...obj,
304
- });
305
- })(GetEnvironmentAccountConnectionInput = exports.GetEnvironmentAccountConnectionInput || (exports.GetEnvironmentAccountConnectionInput = {}));
306
- var GetEnvironmentAccountConnectionOutput;
307
- (function (GetEnvironmentAccountConnectionOutput) {
308
- /**
309
- * @internal
310
- */
311
- GetEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
312
- ...obj,
313
- });
314
- })(GetEnvironmentAccountConnectionOutput = exports.GetEnvironmentAccountConnectionOutput || (exports.GetEnvironmentAccountConnectionOutput = {}));
315
- var EnvironmentAccountConnectionRequesterAccountType;
316
- (function (EnvironmentAccountConnectionRequesterAccountType) {
317
- EnvironmentAccountConnectionRequesterAccountType["ENVIRONMENT_ACCOUNT"] = "ENVIRONMENT_ACCOUNT";
318
- EnvironmentAccountConnectionRequesterAccountType["MANAGEMENT_ACCOUNT"] = "MANAGEMENT_ACCOUNT";
319
- })(EnvironmentAccountConnectionRequesterAccountType = exports.EnvironmentAccountConnectionRequesterAccountType || (exports.EnvironmentAccountConnectionRequesterAccountType = {}));
320
- var ListEnvironmentAccountConnectionsInput;
321
- (function (ListEnvironmentAccountConnectionsInput) {
322
- /**
323
- * @internal
324
- */
325
- ListEnvironmentAccountConnectionsInput.filterSensitiveLog = (obj) => ({
326
- ...obj,
327
- });
328
- })(ListEnvironmentAccountConnectionsInput = exports.ListEnvironmentAccountConnectionsInput || (exports.ListEnvironmentAccountConnectionsInput = {}));
329
- var EnvironmentAccountConnectionSummary;
330
- (function (EnvironmentAccountConnectionSummary) {
331
- /**
332
- * @internal
333
- */
334
- EnvironmentAccountConnectionSummary.filterSensitiveLog = (obj) => ({
335
- ...obj,
336
- });
337
- })(EnvironmentAccountConnectionSummary = exports.EnvironmentAccountConnectionSummary || (exports.EnvironmentAccountConnectionSummary = {}));
338
- var ListEnvironmentAccountConnectionsOutput;
339
- (function (ListEnvironmentAccountConnectionsOutput) {
340
- /**
341
- * @internal
342
- */
343
- ListEnvironmentAccountConnectionsOutput.filterSensitiveLog = (obj) => ({
344
- ...obj,
345
- });
346
- })(ListEnvironmentAccountConnectionsOutput = exports.ListEnvironmentAccountConnectionsOutput || (exports.ListEnvironmentAccountConnectionsOutput = {}));
347
- var RejectEnvironmentAccountConnectionInput;
348
- (function (RejectEnvironmentAccountConnectionInput) {
349
- /**
350
- * @internal
351
- */
352
- RejectEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
353
- ...obj,
354
- });
355
- })(RejectEnvironmentAccountConnectionInput = exports.RejectEnvironmentAccountConnectionInput || (exports.RejectEnvironmentAccountConnectionInput = {}));
356
- var RejectEnvironmentAccountConnectionOutput;
357
- (function (RejectEnvironmentAccountConnectionOutput) {
358
- /**
359
- * @internal
360
- */
361
- RejectEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
362
- ...obj,
363
- });
364
- })(RejectEnvironmentAccountConnectionOutput = exports.RejectEnvironmentAccountConnectionOutput || (exports.RejectEnvironmentAccountConnectionOutput = {}));
365
- var UpdateEnvironmentAccountConnectionInput;
366
- (function (UpdateEnvironmentAccountConnectionInput) {
367
- /**
368
- * @internal
369
- */
370
- UpdateEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
371
- ...obj,
372
- });
373
- })(UpdateEnvironmentAccountConnectionInput = exports.UpdateEnvironmentAccountConnectionInput || (exports.UpdateEnvironmentAccountConnectionInput = {}));
374
- var UpdateEnvironmentAccountConnectionOutput;
375
- (function (UpdateEnvironmentAccountConnectionOutput) {
376
- /**
377
- * @internal
378
- */
379
- UpdateEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
380
- ...obj,
381
- });
382
- })(UpdateEnvironmentAccountConnectionOutput = exports.UpdateEnvironmentAccountConnectionOutput || (exports.UpdateEnvironmentAccountConnectionOutput = {}));
383
- var Tag;
384
- (function (Tag) {
385
- /**
386
- * @internal
387
- */
388
- Tag.filterSensitiveLog = (obj) => ({
389
- ...obj,
390
- });
391
- })(Tag = exports.Tag || (exports.Tag = {}));
392
- var CreateEnvironmentInput;
393
- (function (CreateEnvironmentInput) {
394
- /**
395
- * @internal
396
- */
397
- CreateEnvironmentInput.filterSensitiveLog = (obj) => ({
398
- ...obj,
399
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
400
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
401
- });
402
- })(CreateEnvironmentInput = exports.CreateEnvironmentInput || (exports.CreateEnvironmentInput = {}));
403
- var CreateEnvironmentOutput;
404
- (function (CreateEnvironmentOutput) {
405
- /**
406
- * @internal
407
- */
408
- CreateEnvironmentOutput.filterSensitiveLog = (obj) => ({
409
- ...obj,
410
- ...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
411
- });
412
- })(CreateEnvironmentOutput = exports.CreateEnvironmentOutput || (exports.CreateEnvironmentOutput = {}));
413
- var DeleteEnvironmentInput;
414
- (function (DeleteEnvironmentInput) {
415
- /**
416
- * @internal
417
- */
418
- DeleteEnvironmentInput.filterSensitiveLog = (obj) => ({
419
- ...obj,
420
- });
421
- })(DeleteEnvironmentInput = exports.DeleteEnvironmentInput || (exports.DeleteEnvironmentInput = {}));
422
- var DeleteEnvironmentOutput;
423
- (function (DeleteEnvironmentOutput) {
424
- /**
425
- * @internal
426
- */
427
- DeleteEnvironmentOutput.filterSensitiveLog = (obj) => ({
428
- ...obj,
429
- ...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
430
- });
431
- })(DeleteEnvironmentOutput = exports.DeleteEnvironmentOutput || (exports.DeleteEnvironmentOutput = {}));
432
- var GetEnvironmentInput;
433
- (function (GetEnvironmentInput) {
434
- /**
435
- * @internal
436
- */
437
- GetEnvironmentInput.filterSensitiveLog = (obj) => ({
438
- ...obj,
439
- });
440
- })(GetEnvironmentInput = exports.GetEnvironmentInput || (exports.GetEnvironmentInput = {}));
441
- var GetEnvironmentOutput;
442
- (function (GetEnvironmentOutput) {
443
- /**
444
- * @internal
445
- */
446
- GetEnvironmentOutput.filterSensitiveLog = (obj) => ({
447
- ...obj,
448
- ...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
449
- });
450
- })(GetEnvironmentOutput = exports.GetEnvironmentOutput || (exports.GetEnvironmentOutput = {}));
451
- var EnvironmentTemplateFilter;
452
- (function (EnvironmentTemplateFilter) {
453
- /**
454
- * @internal
455
- */
456
- EnvironmentTemplateFilter.filterSensitiveLog = (obj) => ({
457
- ...obj,
458
- });
459
- })(EnvironmentTemplateFilter = exports.EnvironmentTemplateFilter || (exports.EnvironmentTemplateFilter = {}));
460
- var ListEnvironmentsInput;
461
- (function (ListEnvironmentsInput) {
462
- /**
463
- * @internal
464
- */
465
- ListEnvironmentsInput.filterSensitiveLog = (obj) => ({
466
- ...obj,
467
- });
468
- })(ListEnvironmentsInput = exports.ListEnvironmentsInput || (exports.ListEnvironmentsInput = {}));
469
- var EnvironmentSummary;
470
- (function (EnvironmentSummary) {
471
- /**
472
- * @internal
473
- */
474
- EnvironmentSummary.filterSensitiveLog = (obj) => ({
475
- ...obj,
476
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
477
- ...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
478
- });
479
- })(EnvironmentSummary = exports.EnvironmentSummary || (exports.EnvironmentSummary = {}));
480
- var ListEnvironmentsOutput;
481
- (function (ListEnvironmentsOutput) {
482
- /**
483
- * @internal
484
- */
485
- ListEnvironmentsOutput.filterSensitiveLog = (obj) => ({
486
- ...obj,
487
- ...(obj.environments && {
488
- environments: obj.environments.map((item) => EnvironmentSummary.filterSensitiveLog(item)),
489
- }),
490
- });
491
- })(ListEnvironmentsOutput = exports.ListEnvironmentsOutput || (exports.ListEnvironmentsOutput = {}));
492
- var DeploymentUpdateType;
493
- (function (DeploymentUpdateType) {
494
- DeploymentUpdateType["CURRENT_VERSION"] = "CURRENT_VERSION";
495
- DeploymentUpdateType["MAJOR_VERSION"] = "MAJOR_VERSION";
496
- DeploymentUpdateType["MINOR_VERSION"] = "MINOR_VERSION";
497
- DeploymentUpdateType["NONE"] = "NONE";
498
- })(DeploymentUpdateType = exports.DeploymentUpdateType || (exports.DeploymentUpdateType = {}));
499
- var UpdateEnvironmentInput;
500
- (function (UpdateEnvironmentInput) {
501
- /**
502
- * @internal
503
- */
504
- UpdateEnvironmentInput.filterSensitiveLog = (obj) => ({
505
- ...obj,
506
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
507
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
508
- });
509
- })(UpdateEnvironmentInput = exports.UpdateEnvironmentInput || (exports.UpdateEnvironmentInput = {}));
510
- var UpdateEnvironmentOutput;
511
- (function (UpdateEnvironmentOutput) {
512
- /**
513
- * @internal
514
- */
515
- UpdateEnvironmentOutput.filterSensitiveLog = (obj) => ({
516
- ...obj,
517
- ...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
518
- });
519
- })(UpdateEnvironmentOutput = exports.UpdateEnvironmentOutput || (exports.UpdateEnvironmentOutput = {}));
520
- var CreateEnvironmentTemplateInput;
521
- (function (CreateEnvironmentTemplateInput) {
522
- /**
523
- * @internal
524
- */
525
- CreateEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
526
- ...obj,
527
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
528
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
529
- });
530
- })(CreateEnvironmentTemplateInput = exports.CreateEnvironmentTemplateInput || (exports.CreateEnvironmentTemplateInput = {}));
531
- var EnvironmentTemplate;
532
- (function (EnvironmentTemplate) {
533
- /**
534
- * @internal
535
- */
536
- EnvironmentTemplate.filterSensitiveLog = (obj) => ({
537
- ...obj,
538
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
539
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
540
- });
541
- })(EnvironmentTemplate = exports.EnvironmentTemplate || (exports.EnvironmentTemplate = {}));
542
- var CreateEnvironmentTemplateOutput;
543
- (function (CreateEnvironmentTemplateOutput) {
544
- /**
545
- * @internal
546
- */
547
- CreateEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
548
- ...obj,
549
- ...(obj.environmentTemplate && {
550
- environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
551
- }),
552
- });
553
- })(CreateEnvironmentTemplateOutput = exports.CreateEnvironmentTemplateOutput || (exports.CreateEnvironmentTemplateOutput = {}));
554
- var DeleteEnvironmentTemplateInput;
555
- (function (DeleteEnvironmentTemplateInput) {
556
- /**
557
- * @internal
558
- */
559
- DeleteEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
560
- ...obj,
561
- });
562
- })(DeleteEnvironmentTemplateInput = exports.DeleteEnvironmentTemplateInput || (exports.DeleteEnvironmentTemplateInput = {}));
563
- var DeleteEnvironmentTemplateOutput;
564
- (function (DeleteEnvironmentTemplateOutput) {
565
- /**
566
- * @internal
567
- */
568
- DeleteEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
569
- ...obj,
570
- ...(obj.environmentTemplate && {
571
- environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
572
- }),
573
- });
574
- })(DeleteEnvironmentTemplateOutput = exports.DeleteEnvironmentTemplateOutput || (exports.DeleteEnvironmentTemplateOutput = {}));
575
- var GetEnvironmentTemplateInput;
576
- (function (GetEnvironmentTemplateInput) {
577
- /**
578
- * @internal
579
- */
580
- GetEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
581
- ...obj,
582
- });
583
- })(GetEnvironmentTemplateInput = exports.GetEnvironmentTemplateInput || (exports.GetEnvironmentTemplateInput = {}));
584
- var GetEnvironmentTemplateOutput;
585
- (function (GetEnvironmentTemplateOutput) {
586
- /**
587
- * @internal
588
- */
589
- GetEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
590
- ...obj,
591
- ...(obj.environmentTemplate && {
592
- environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
593
- }),
594
- });
595
- })(GetEnvironmentTemplateOutput = exports.GetEnvironmentTemplateOutput || (exports.GetEnvironmentTemplateOutput = {}));
596
- var ListEnvironmentTemplatesInput;
597
- (function (ListEnvironmentTemplatesInput) {
598
- /**
599
- * @internal
600
- */
601
- ListEnvironmentTemplatesInput.filterSensitiveLog = (obj) => ({
602
- ...obj,
603
- });
604
- })(ListEnvironmentTemplatesInput = exports.ListEnvironmentTemplatesInput || (exports.ListEnvironmentTemplatesInput = {}));
605
- var EnvironmentTemplateSummary;
606
- (function (EnvironmentTemplateSummary) {
607
- /**
608
- * @internal
609
- */
610
- EnvironmentTemplateSummary.filterSensitiveLog = (obj) => ({
611
- ...obj,
612
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
613
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
614
- });
615
- })(EnvironmentTemplateSummary = exports.EnvironmentTemplateSummary || (exports.EnvironmentTemplateSummary = {}));
616
- var ListEnvironmentTemplatesOutput;
617
- (function (ListEnvironmentTemplatesOutput) {
618
- /**
619
- * @internal
620
- */
621
- ListEnvironmentTemplatesOutput.filterSensitiveLog = (obj) => ({
622
- ...obj,
623
- ...(obj.templates && {
624
- templates: obj.templates.map((item) => EnvironmentTemplateSummary.filterSensitiveLog(item)),
625
- }),
626
- });
627
- })(ListEnvironmentTemplatesOutput = exports.ListEnvironmentTemplatesOutput || (exports.ListEnvironmentTemplatesOutput = {}));
628
- var UpdateEnvironmentTemplateInput;
629
- (function (UpdateEnvironmentTemplateInput) {
630
- /**
631
- * @internal
632
- */
633
- UpdateEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
634
- ...obj,
635
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
636
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
637
- });
638
- })(UpdateEnvironmentTemplateInput = exports.UpdateEnvironmentTemplateInput || (exports.UpdateEnvironmentTemplateInput = {}));
639
- var UpdateEnvironmentTemplateOutput;
640
- (function (UpdateEnvironmentTemplateOutput) {
641
- /**
642
- * @internal
643
- */
644
- UpdateEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
645
- ...obj,
646
- ...(obj.environmentTemplate && {
647
- environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
648
- }),
649
- });
650
- })(UpdateEnvironmentTemplateOutput = exports.UpdateEnvironmentTemplateOutput || (exports.UpdateEnvironmentTemplateOutput = {}));
651
- var S3ObjectSource;
652
- (function (S3ObjectSource) {
653
- /**
654
- * @internal
655
- */
656
- S3ObjectSource.filterSensitiveLog = (obj) => ({
657
- ...obj,
658
- });
659
- })(S3ObjectSource = exports.S3ObjectSource || (exports.S3ObjectSource = {}));
660
- var TemplateVersionSourceInput;
661
- (function (TemplateVersionSourceInput) {
662
- TemplateVersionSourceInput.visit = (value, visitor) => {
663
- if (value.s3 !== undefined)
664
- return visitor.s3(value.s3);
665
- return visitor._(value.$unknown[0], value.$unknown[1]);
666
- };
667
- /**
668
- * @internal
669
- */
670
- TemplateVersionSourceInput.filterSensitiveLog = (obj) => {
671
- if (obj.s3 !== undefined)
672
- return { s3: S3ObjectSource.filterSensitiveLog(obj.s3) };
673
- if (obj.$unknown !== undefined)
674
- return { [obj.$unknown[0]]: "UNKNOWN" };
675
- };
676
- })(TemplateVersionSourceInput = exports.TemplateVersionSourceInput || (exports.TemplateVersionSourceInput = {}));
677
- var CreateEnvironmentTemplateVersionInput;
678
- (function (CreateEnvironmentTemplateVersionInput) {
679
- /**
680
- * @internal
681
- */
682
- CreateEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
683
- ...obj,
684
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
685
- ...(obj.source && { source: TemplateVersionSourceInput.filterSensitiveLog(obj.source) }),
686
- });
687
- })(CreateEnvironmentTemplateVersionInput = exports.CreateEnvironmentTemplateVersionInput || (exports.CreateEnvironmentTemplateVersionInput = {}));
688
- var TemplateVersionStatus;
689
- (function (TemplateVersionStatus) {
690
- TemplateVersionStatus["DRAFT"] = "DRAFT";
691
- TemplateVersionStatus["PUBLISHED"] = "PUBLISHED";
692
- TemplateVersionStatus["REGISTRATION_FAILED"] = "REGISTRATION_FAILED";
693
- TemplateVersionStatus["REGISTRATION_IN_PROGRESS"] = "REGISTRATION_IN_PROGRESS";
694
- })(TemplateVersionStatus = exports.TemplateVersionStatus || (exports.TemplateVersionStatus = {}));
695
- var EnvironmentTemplateVersion;
696
- (function (EnvironmentTemplateVersion) {
697
- /**
698
- * @internal
699
- */
700
- EnvironmentTemplateVersion.filterSensitiveLog = (obj) => ({
701
- ...obj,
702
- ...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
703
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
704
- ...(obj.schema && { schema: smithy_client_1.SENSITIVE_STRING }),
705
- });
706
- })(EnvironmentTemplateVersion = exports.EnvironmentTemplateVersion || (exports.EnvironmentTemplateVersion = {}));
707
- var CreateEnvironmentTemplateVersionOutput;
708
- (function (CreateEnvironmentTemplateVersionOutput) {
709
- /**
710
- * @internal
711
- */
712
- CreateEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
713
- ...obj,
714
- ...(obj.environmentTemplateVersion && {
715
- environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
716
- }),
717
- });
718
- })(CreateEnvironmentTemplateVersionOutput = exports.CreateEnvironmentTemplateVersionOutput || (exports.CreateEnvironmentTemplateVersionOutput = {}));
719
- var DeleteEnvironmentTemplateVersionInput;
720
- (function (DeleteEnvironmentTemplateVersionInput) {
721
- /**
722
- * @internal
723
- */
724
- DeleteEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
725
- ...obj,
726
- });
727
- })(DeleteEnvironmentTemplateVersionInput = exports.DeleteEnvironmentTemplateVersionInput || (exports.DeleteEnvironmentTemplateVersionInput = {}));
728
- var DeleteEnvironmentTemplateVersionOutput;
729
- (function (DeleteEnvironmentTemplateVersionOutput) {
730
- /**
731
- * @internal
732
- */
733
- DeleteEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
734
- ...obj,
735
- ...(obj.environmentTemplateVersion && {
736
- environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
737
- }),
738
- });
739
- })(DeleteEnvironmentTemplateVersionOutput = exports.DeleteEnvironmentTemplateVersionOutput || (exports.DeleteEnvironmentTemplateVersionOutput = {}));
740
- var GetEnvironmentTemplateVersionInput;
741
- (function (GetEnvironmentTemplateVersionInput) {
742
- /**
743
- * @internal
744
- */
745
- GetEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
746
- ...obj,
747
- });
748
- })(GetEnvironmentTemplateVersionInput = exports.GetEnvironmentTemplateVersionInput || (exports.GetEnvironmentTemplateVersionInput = {}));
749
- var GetEnvironmentTemplateVersionOutput;
750
- (function (GetEnvironmentTemplateVersionOutput) {
751
- /**
752
- * @internal
753
- */
754
- GetEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
755
- ...obj,
756
- ...(obj.environmentTemplateVersion && {
757
- environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
758
- }),
759
- });
760
- })(GetEnvironmentTemplateVersionOutput = exports.GetEnvironmentTemplateVersionOutput || (exports.GetEnvironmentTemplateVersionOutput = {}));
761
- var ListEnvironmentTemplateVersionsInput;
762
- (function (ListEnvironmentTemplateVersionsInput) {
763
- /**
764
- * @internal
765
- */
766
- ListEnvironmentTemplateVersionsInput.filterSensitiveLog = (obj) => ({
767
- ...obj,
768
- });
769
- })(ListEnvironmentTemplateVersionsInput = exports.ListEnvironmentTemplateVersionsInput || (exports.ListEnvironmentTemplateVersionsInput = {}));
770
- var EnvironmentTemplateVersionSummary;
771
- (function (EnvironmentTemplateVersionSummary) {
772
- /**
773
- * @internal
774
- */
775
- EnvironmentTemplateVersionSummary.filterSensitiveLog = (obj) => ({
776
- ...obj,
777
- ...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
778
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
779
- });
780
- })(EnvironmentTemplateVersionSummary = exports.EnvironmentTemplateVersionSummary || (exports.EnvironmentTemplateVersionSummary = {}));
781
- var ListEnvironmentTemplateVersionsOutput;
782
- (function (ListEnvironmentTemplateVersionsOutput) {
783
- /**
784
- * @internal
785
- */
786
- ListEnvironmentTemplateVersionsOutput.filterSensitiveLog = (obj) => ({
787
- ...obj,
788
- ...(obj.templateVersions && {
789
- templateVersions: obj.templateVersions.map((item) => EnvironmentTemplateVersionSummary.filterSensitiveLog(item)),
790
- }),
791
- });
792
- })(ListEnvironmentTemplateVersionsOutput = exports.ListEnvironmentTemplateVersionsOutput || (exports.ListEnvironmentTemplateVersionsOutput = {}));
793
- var UpdateEnvironmentTemplateVersionInput;
794
- (function (UpdateEnvironmentTemplateVersionInput) {
795
- /**
796
- * @internal
797
- */
798
- UpdateEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
799
- ...obj,
800
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
801
- });
802
- })(UpdateEnvironmentTemplateVersionInput = exports.UpdateEnvironmentTemplateVersionInput || (exports.UpdateEnvironmentTemplateVersionInput = {}));
803
- var UpdateEnvironmentTemplateVersionOutput;
804
- (function (UpdateEnvironmentTemplateVersionOutput) {
805
- /**
806
- * @internal
807
- */
808
- UpdateEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
809
- ...obj,
810
- ...(obj.environmentTemplateVersion && {
811
- environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
812
- }),
813
- });
814
- })(UpdateEnvironmentTemplateVersionOutput = exports.UpdateEnvironmentTemplateVersionOutput || (exports.UpdateEnvironmentTemplateVersionOutput = {}));
815
- var ListTagsForResourceInput;
816
- (function (ListTagsForResourceInput) {
817
- /**
818
- * @internal
819
- */
820
- ListTagsForResourceInput.filterSensitiveLog = (obj) => ({
821
- ...obj,
822
- });
823
- })(ListTagsForResourceInput = exports.ListTagsForResourceInput || (exports.ListTagsForResourceInput = {}));
824
- var ListTagsForResourceOutput;
825
- (function (ListTagsForResourceOutput) {
826
- /**
827
- * @internal
828
- */
829
- ListTagsForResourceOutput.filterSensitiveLog = (obj) => ({
830
- ...obj,
831
- });
832
- })(ListTagsForResourceOutput = exports.ListTagsForResourceOutput || (exports.ListTagsForResourceOutput = {}));
833
- var GetServiceInstanceInput;
834
- (function (GetServiceInstanceInput) {
835
- /**
836
- * @internal
837
- */
838
- GetServiceInstanceInput.filterSensitiveLog = (obj) => ({
839
- ...obj,
840
- });
841
- })(GetServiceInstanceInput = exports.GetServiceInstanceInput || (exports.GetServiceInstanceInput = {}));
842
- var GetServiceInstanceOutput;
843
- (function (GetServiceInstanceOutput) {
844
- /**
845
- * @internal
846
- */
847
- GetServiceInstanceOutput.filterSensitiveLog = (obj) => ({
848
- ...obj,
849
- ...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
850
- });
851
- })(GetServiceInstanceOutput = exports.GetServiceInstanceOutput || (exports.GetServiceInstanceOutput = {}));
852
- var ListServiceInstancesInput;
853
- (function (ListServiceInstancesInput) {
854
- /**
855
- * @internal
856
- */
857
- ListServiceInstancesInput.filterSensitiveLog = (obj) => ({
858
- ...obj,
859
- });
860
- })(ListServiceInstancesInput = exports.ListServiceInstancesInput || (exports.ListServiceInstancesInput = {}));
861
- var ServiceInstanceSummary;
862
- (function (ServiceInstanceSummary) {
863
- /**
864
- * @internal
865
- */
866
- ServiceInstanceSummary.filterSensitiveLog = (obj) => ({
867
- ...obj,
868
- ...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
869
- });
870
- })(ServiceInstanceSummary = exports.ServiceInstanceSummary || (exports.ServiceInstanceSummary = {}));
871
- var ListServiceInstancesOutput;
872
- (function (ListServiceInstancesOutput) {
873
- /**
874
- * @internal
875
- */
876
- ListServiceInstancesOutput.filterSensitiveLog = (obj) => ({
877
- ...obj,
878
- ...(obj.serviceInstances && {
879
- serviceInstances: obj.serviceInstances.map((item) => ServiceInstanceSummary.filterSensitiveLog(item)),
880
- }),
881
- });
882
- })(ListServiceInstancesOutput = exports.ListServiceInstancesOutput || (exports.ListServiceInstancesOutput = {}));
883
- var UpdateServiceInstanceInput;
884
- (function (UpdateServiceInstanceInput) {
885
- /**
886
- * @internal
887
- */
888
- UpdateServiceInstanceInput.filterSensitiveLog = (obj) => ({
889
- ...obj,
890
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
891
- });
892
- })(UpdateServiceInstanceInput = exports.UpdateServiceInstanceInput || (exports.UpdateServiceInstanceInput = {}));
893
- var UpdateServiceInstanceOutput;
894
- (function (UpdateServiceInstanceOutput) {
895
- /**
896
- * @internal
897
- */
898
- UpdateServiceInstanceOutput.filterSensitiveLog = (obj) => ({
899
- ...obj,
900
- ...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
901
- });
902
- })(UpdateServiceInstanceOutput = exports.UpdateServiceInstanceOutput || (exports.UpdateServiceInstanceOutput = {}));
903
- var UpdateServicePipelineInput;
904
- (function (UpdateServicePipelineInput) {
905
- /**
906
- * @internal
907
- */
908
- UpdateServicePipelineInput.filterSensitiveLog = (obj) => ({
909
- ...obj,
910
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
911
- });
912
- })(UpdateServicePipelineInput = exports.UpdateServicePipelineInput || (exports.UpdateServicePipelineInput = {}));
913
- var UpdateServicePipelineOutput;
914
- (function (UpdateServicePipelineOutput) {
915
- /**
916
- * @internal
917
- */
918
- UpdateServicePipelineOutput.filterSensitiveLog = (obj) => ({
919
- ...obj,
920
- ...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
921
- });
922
- })(UpdateServicePipelineOutput = exports.UpdateServicePipelineOutput || (exports.UpdateServicePipelineOutput = {}));
923
- var CreateServiceInput;
924
- (function (CreateServiceInput) {
925
- /**
926
- * @internal
927
- */
928
- CreateServiceInput.filterSensitiveLog = (obj) => ({
929
- ...obj,
930
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
931
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
932
- });
933
- })(CreateServiceInput = exports.CreateServiceInput || (exports.CreateServiceInput = {}));
934
- var ServiceStatus;
935
- (function (ServiceStatus) {
936
- ServiceStatus["ACTIVE"] = "ACTIVE";
937
- ServiceStatus["CREATE_FAILED"] = "CREATE_FAILED";
938
- ServiceStatus["CREATE_FAILED_CLEANUP_COMPLETE"] = "CREATE_FAILED_CLEANUP_COMPLETE";
939
- ServiceStatus["CREATE_FAILED_CLEANUP_FAILED"] = "CREATE_FAILED_CLEANUP_FAILED";
940
- ServiceStatus["CREATE_FAILED_CLEANUP_IN_PROGRESS"] = "CREATE_FAILED_CLEANUP_IN_PROGRESS";
941
- ServiceStatus["CREATE_IN_PROGRESS"] = "CREATE_IN_PROGRESS";
942
- ServiceStatus["DELETE_FAILED"] = "DELETE_FAILED";
943
- ServiceStatus["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
944
- ServiceStatus["UPDATE_COMPLETE_CLEANUP_FAILED"] = "UPDATE_COMPLETE_CLEANUP_FAILED";
945
- ServiceStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
946
- ServiceStatus["UPDATE_FAILED_CLEANUP_COMPLETE"] = "UPDATE_FAILED_CLEANUP_COMPLETE";
947
- ServiceStatus["UPDATE_FAILED_CLEANUP_FAILED"] = "UPDATE_FAILED_CLEANUP_FAILED";
948
- ServiceStatus["UPDATE_FAILED_CLEANUP_IN_PROGRESS"] = "UPDATE_FAILED_CLEANUP_IN_PROGRESS";
949
- ServiceStatus["UPDATE_IN_PROGRESS"] = "UPDATE_IN_PROGRESS";
950
- })(ServiceStatus = exports.ServiceStatus || (exports.ServiceStatus = {}));
951
- var Service;
952
- (function (Service) {
953
- /**
954
- * @internal
955
- */
956
- Service.filterSensitiveLog = (obj) => ({
957
- ...obj,
958
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
959
- ...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
960
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
961
- ...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
962
- });
963
- })(Service = exports.Service || (exports.Service = {}));
964
- var CreateServiceOutput;
965
- (function (CreateServiceOutput) {
966
- /**
967
- * @internal
968
- */
969
- CreateServiceOutput.filterSensitiveLog = (obj) => ({
970
- ...obj,
971
- ...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
972
- });
973
- })(CreateServiceOutput = exports.CreateServiceOutput || (exports.CreateServiceOutput = {}));
974
- var DeleteServiceInput;
975
- (function (DeleteServiceInput) {
976
- /**
977
- * @internal
978
- */
979
- DeleteServiceInput.filterSensitiveLog = (obj) => ({
980
- ...obj,
981
- });
982
- })(DeleteServiceInput = exports.DeleteServiceInput || (exports.DeleteServiceInput = {}));
983
- var DeleteServiceOutput;
984
- (function (DeleteServiceOutput) {
985
- /**
986
- * @internal
987
- */
988
- DeleteServiceOutput.filterSensitiveLog = (obj) => ({
989
- ...obj,
990
- ...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
991
- });
992
- })(DeleteServiceOutput = exports.DeleteServiceOutput || (exports.DeleteServiceOutput = {}));
993
- var GetServiceInput;
994
- (function (GetServiceInput) {
995
- /**
996
- * @internal
997
- */
998
- GetServiceInput.filterSensitiveLog = (obj) => ({
999
- ...obj,
1000
- });
1001
- })(GetServiceInput = exports.GetServiceInput || (exports.GetServiceInput = {}));
1002
- var GetServiceOutput;
1003
- (function (GetServiceOutput) {
1004
- /**
1005
- * @internal
1006
- */
1007
- GetServiceOutput.filterSensitiveLog = (obj) => ({
1008
- ...obj,
1009
- ...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
1010
- });
1011
- })(GetServiceOutput = exports.GetServiceOutput || (exports.GetServiceOutput = {}));
1012
- var ListServicesInput;
1013
- (function (ListServicesInput) {
1014
- /**
1015
- * @internal
1016
- */
1017
- ListServicesInput.filterSensitiveLog = (obj) => ({
1018
- ...obj,
1019
- });
1020
- })(ListServicesInput = exports.ListServicesInput || (exports.ListServicesInput = {}));
1021
- var ServiceSummary;
1022
- (function (ServiceSummary) {
1023
- /**
1024
- * @internal
1025
- */
1026
- ServiceSummary.filterSensitiveLog = (obj) => ({
1027
- ...obj,
1028
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1029
- ...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
1030
- });
1031
- })(ServiceSummary = exports.ServiceSummary || (exports.ServiceSummary = {}));
1032
- var ListServicesOutput;
1033
- (function (ListServicesOutput) {
1034
- /**
1035
- * @internal
1036
- */
1037
- ListServicesOutput.filterSensitiveLog = (obj) => ({
1038
- ...obj,
1039
- ...(obj.services && { services: obj.services.map((item) => ServiceSummary.filterSensitiveLog(item)) }),
1040
- });
1041
- })(ListServicesOutput = exports.ListServicesOutput || (exports.ListServicesOutput = {}));
1042
- var UpdateServiceInput;
1043
- (function (UpdateServiceInput) {
1044
- /**
1045
- * @internal
1046
- */
1047
- UpdateServiceInput.filterSensitiveLog = (obj) => ({
1048
- ...obj,
1049
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1050
- ...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
1051
- });
1052
- })(UpdateServiceInput = exports.UpdateServiceInput || (exports.UpdateServiceInput = {}));
1053
- var UpdateServiceOutput;
1054
- (function (UpdateServiceOutput) {
1055
- /**
1056
- * @internal
1057
- */
1058
- UpdateServiceOutput.filterSensitiveLog = (obj) => ({
1059
- ...obj,
1060
- ...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
1061
- });
1062
- })(UpdateServiceOutput = exports.UpdateServiceOutput || (exports.UpdateServiceOutput = {}));
1063
- var CreateServiceTemplateInput;
1064
- (function (CreateServiceTemplateInput) {
1065
- /**
1066
- * @internal
1067
- */
1068
- CreateServiceTemplateInput.filterSensitiveLog = (obj) => ({
1069
- ...obj,
1070
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
1071
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1072
- });
1073
- })(CreateServiceTemplateInput = exports.CreateServiceTemplateInput || (exports.CreateServiceTemplateInput = {}));
1074
- var ServiceTemplate;
1075
- (function (ServiceTemplate) {
1076
- /**
1077
- * @internal
1078
- */
1079
- ServiceTemplate.filterSensitiveLog = (obj) => ({
1080
- ...obj,
1081
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
1082
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1083
- });
1084
- })(ServiceTemplate = exports.ServiceTemplate || (exports.ServiceTemplate = {}));
1085
- var CreateServiceTemplateOutput;
1086
- (function (CreateServiceTemplateOutput) {
1087
- /**
1088
- * @internal
1089
- */
1090
- CreateServiceTemplateOutput.filterSensitiveLog = (obj) => ({
1091
- ...obj,
1092
- ...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
1093
- });
1094
- })(CreateServiceTemplateOutput = exports.CreateServiceTemplateOutput || (exports.CreateServiceTemplateOutput = {}));
1095
- var DeleteServiceTemplateInput;
1096
- (function (DeleteServiceTemplateInput) {
1097
- /**
1098
- * @internal
1099
- */
1100
- DeleteServiceTemplateInput.filterSensitiveLog = (obj) => ({
1101
- ...obj,
1102
- });
1103
- })(DeleteServiceTemplateInput = exports.DeleteServiceTemplateInput || (exports.DeleteServiceTemplateInput = {}));
1104
- var DeleteServiceTemplateOutput;
1105
- (function (DeleteServiceTemplateOutput) {
1106
- /**
1107
- * @internal
1108
- */
1109
- DeleteServiceTemplateOutput.filterSensitiveLog = (obj) => ({
1110
- ...obj,
1111
- ...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
1112
- });
1113
- })(DeleteServiceTemplateOutput = exports.DeleteServiceTemplateOutput || (exports.DeleteServiceTemplateOutput = {}));
1114
- var GetServiceTemplateInput;
1115
- (function (GetServiceTemplateInput) {
1116
- /**
1117
- * @internal
1118
- */
1119
- GetServiceTemplateInput.filterSensitiveLog = (obj) => ({
1120
- ...obj,
1121
- });
1122
- })(GetServiceTemplateInput = exports.GetServiceTemplateInput || (exports.GetServiceTemplateInput = {}));
1123
- var GetServiceTemplateOutput;
1124
- (function (GetServiceTemplateOutput) {
1125
- /**
1126
- * @internal
1127
- */
1128
- GetServiceTemplateOutput.filterSensitiveLog = (obj) => ({
1129
- ...obj,
1130
- ...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
1131
- });
1132
- })(GetServiceTemplateOutput = exports.GetServiceTemplateOutput || (exports.GetServiceTemplateOutput = {}));
1133
- var ListServiceTemplatesInput;
1134
- (function (ListServiceTemplatesInput) {
1135
- /**
1136
- * @internal
1137
- */
1138
- ListServiceTemplatesInput.filterSensitiveLog = (obj) => ({
1139
- ...obj,
1140
- });
1141
- })(ListServiceTemplatesInput = exports.ListServiceTemplatesInput || (exports.ListServiceTemplatesInput = {}));
1142
- var ServiceTemplateSummary;
1143
- (function (ServiceTemplateSummary) {
1144
- /**
1145
- * @internal
1146
- */
1147
- ServiceTemplateSummary.filterSensitiveLog = (obj) => ({
1148
- ...obj,
1149
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
1150
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1151
- });
1152
- })(ServiceTemplateSummary = exports.ServiceTemplateSummary || (exports.ServiceTemplateSummary = {}));
1153
- var ListServiceTemplatesOutput;
1154
- (function (ListServiceTemplatesOutput) {
1155
- /**
1156
- * @internal
1157
- */
1158
- ListServiceTemplatesOutput.filterSensitiveLog = (obj) => ({
1159
- ...obj,
1160
- ...(obj.templates && { templates: obj.templates.map((item) => ServiceTemplateSummary.filterSensitiveLog(item)) }),
1161
- });
1162
- })(ListServiceTemplatesOutput = exports.ListServiceTemplatesOutput || (exports.ListServiceTemplatesOutput = {}));
1163
- var UpdateServiceTemplateInput;
1164
- (function (UpdateServiceTemplateInput) {
1165
- /**
1166
- * @internal
1167
- */
1168
- UpdateServiceTemplateInput.filterSensitiveLog = (obj) => ({
1169
- ...obj,
1170
- ...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
1171
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1172
- });
1173
- })(UpdateServiceTemplateInput = exports.UpdateServiceTemplateInput || (exports.UpdateServiceTemplateInput = {}));
1174
- var UpdateServiceTemplateOutput;
1175
- (function (UpdateServiceTemplateOutput) {
1176
- /**
1177
- * @internal
1178
- */
1179
- UpdateServiceTemplateOutput.filterSensitiveLog = (obj) => ({
1180
- ...obj,
1181
- ...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
1182
- });
1183
- })(UpdateServiceTemplateOutput = exports.UpdateServiceTemplateOutput || (exports.UpdateServiceTemplateOutput = {}));
1184
- var CompatibleEnvironmentTemplateInput;
1185
- (function (CompatibleEnvironmentTemplateInput) {
1186
- /**
1187
- * @internal
1188
- */
1189
- CompatibleEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
1190
- ...obj,
1191
- });
1192
- })(CompatibleEnvironmentTemplateInput = exports.CompatibleEnvironmentTemplateInput || (exports.CompatibleEnvironmentTemplateInput = {}));
1193
- var CreateServiceTemplateVersionInput;
1194
- (function (CreateServiceTemplateVersionInput) {
1195
- /**
1196
- * @internal
1197
- */
1198
- CreateServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
1199
- ...obj,
1200
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1201
- ...(obj.source && { source: TemplateVersionSourceInput.filterSensitiveLog(obj.source) }),
1202
- });
1203
- })(CreateServiceTemplateVersionInput = exports.CreateServiceTemplateVersionInput || (exports.CreateServiceTemplateVersionInput = {}));
1204
- var CompatibleEnvironmentTemplate;
1205
- (function (CompatibleEnvironmentTemplate) {
1206
- /**
1207
- * @internal
1208
- */
1209
- CompatibleEnvironmentTemplate.filterSensitiveLog = (obj) => ({
1210
- ...obj,
1211
- });
1212
- })(CompatibleEnvironmentTemplate = exports.CompatibleEnvironmentTemplate || (exports.CompatibleEnvironmentTemplate = {}));
1213
- var ServiceTemplateVersion;
1214
- (function (ServiceTemplateVersion) {
1215
- /**
1216
- * @internal
1217
- */
1218
- ServiceTemplateVersion.filterSensitiveLog = (obj) => ({
1219
- ...obj,
1220
- ...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
1221
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1222
- ...(obj.schema && { schema: smithy_client_1.SENSITIVE_STRING }),
1223
- });
1224
- })(ServiceTemplateVersion = exports.ServiceTemplateVersion || (exports.ServiceTemplateVersion = {}));
1225
- var CreateServiceTemplateVersionOutput;
1226
- (function (CreateServiceTemplateVersionOutput) {
1227
- /**
1228
- * @internal
1229
- */
1230
- CreateServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
1231
- ...obj,
1232
- ...(obj.serviceTemplateVersion && {
1233
- serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
1234
- }),
1235
- });
1236
- })(CreateServiceTemplateVersionOutput = exports.CreateServiceTemplateVersionOutput || (exports.CreateServiceTemplateVersionOutput = {}));
1237
- var DeleteServiceTemplateVersionInput;
1238
- (function (DeleteServiceTemplateVersionInput) {
1239
- /**
1240
- * @internal
1241
- */
1242
- DeleteServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
1243
- ...obj,
1244
- });
1245
- })(DeleteServiceTemplateVersionInput = exports.DeleteServiceTemplateVersionInput || (exports.DeleteServiceTemplateVersionInput = {}));
1246
- var DeleteServiceTemplateVersionOutput;
1247
- (function (DeleteServiceTemplateVersionOutput) {
1248
- /**
1249
- * @internal
1250
- */
1251
- DeleteServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
1252
- ...obj,
1253
- ...(obj.serviceTemplateVersion && {
1254
- serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
1255
- }),
1256
- });
1257
- })(DeleteServiceTemplateVersionOutput = exports.DeleteServiceTemplateVersionOutput || (exports.DeleteServiceTemplateVersionOutput = {}));
1258
- var GetServiceTemplateVersionInput;
1259
- (function (GetServiceTemplateVersionInput) {
1260
- /**
1261
- * @internal
1262
- */
1263
- GetServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
1264
- ...obj,
1265
- });
1266
- })(GetServiceTemplateVersionInput = exports.GetServiceTemplateVersionInput || (exports.GetServiceTemplateVersionInput = {}));
1267
- var GetServiceTemplateVersionOutput;
1268
- (function (GetServiceTemplateVersionOutput) {
1269
- /**
1270
- * @internal
1271
- */
1272
- GetServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
1273
- ...obj,
1274
- ...(obj.serviceTemplateVersion && {
1275
- serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
1276
- }),
1277
- });
1278
- })(GetServiceTemplateVersionOutput = exports.GetServiceTemplateVersionOutput || (exports.GetServiceTemplateVersionOutput = {}));
1279
- var ListServiceTemplateVersionsInput;
1280
- (function (ListServiceTemplateVersionsInput) {
1281
- /**
1282
- * @internal
1283
- */
1284
- ListServiceTemplateVersionsInput.filterSensitiveLog = (obj) => ({
1285
- ...obj,
1286
- });
1287
- })(ListServiceTemplateVersionsInput = exports.ListServiceTemplateVersionsInput || (exports.ListServiceTemplateVersionsInput = {}));
1288
- var ServiceTemplateVersionSummary;
1289
- (function (ServiceTemplateVersionSummary) {
1290
- /**
1291
- * @internal
1292
- */
1293
- ServiceTemplateVersionSummary.filterSensitiveLog = (obj) => ({
1294
- ...obj,
1295
- ...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
1296
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1297
- });
1298
- })(ServiceTemplateVersionSummary = exports.ServiceTemplateVersionSummary || (exports.ServiceTemplateVersionSummary = {}));
1299
- var ListServiceTemplateVersionsOutput;
1300
- (function (ListServiceTemplateVersionsOutput) {
1301
- /**
1302
- * @internal
1303
- */
1304
- ListServiceTemplateVersionsOutput.filterSensitiveLog = (obj) => ({
1305
- ...obj,
1306
- ...(obj.templateVersions && {
1307
- templateVersions: obj.templateVersions.map((item) => ServiceTemplateVersionSummary.filterSensitiveLog(item)),
1308
- }),
1309
- });
1310
- })(ListServiceTemplateVersionsOutput = exports.ListServiceTemplateVersionsOutput || (exports.ListServiceTemplateVersionsOutput = {}));
1311
- var UpdateServiceTemplateVersionInput;
1312
- (function (UpdateServiceTemplateVersionInput) {
1313
- /**
1314
- * @internal
1315
- */
1316
- UpdateServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
1317
- ...obj,
1318
- ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
1319
- });
1320
- })(UpdateServiceTemplateVersionInput = exports.UpdateServiceTemplateVersionInput || (exports.UpdateServiceTemplateVersionInput = {}));
1321
- var UpdateServiceTemplateVersionOutput;
1322
- (function (UpdateServiceTemplateVersionOutput) {
1323
- /**
1324
- * @internal
1325
- */
1326
- UpdateServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
1327
- ...obj,
1328
- ...(obj.serviceTemplateVersion && {
1329
- serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
1330
- }),
1331
- });
1332
- })(UpdateServiceTemplateVersionOutput = exports.UpdateServiceTemplateVersionOutput || (exports.UpdateServiceTemplateVersionOutput = {}));
1333
- var TagResourceInput;
1334
- (function (TagResourceInput) {
1335
- /**
1336
- * @internal
1337
- */
1338
- TagResourceInput.filterSensitiveLog = (obj) => ({
1339
- ...obj,
1340
- });
1341
- })(TagResourceInput = exports.TagResourceInput || (exports.TagResourceInput = {}));
1342
- var TagResourceOutput;
1343
- (function (TagResourceOutput) {
1344
- /**
1345
- * @internal
1346
- */
1347
- TagResourceOutput.filterSensitiveLog = (obj) => ({
1348
- ...obj,
1349
- });
1350
- })(TagResourceOutput = exports.TagResourceOutput || (exports.TagResourceOutput = {}));
1351
- var UntagResourceInput;
1352
- (function (UntagResourceInput) {
1353
- /**
1354
- * @internal
1355
- */
1356
- UntagResourceInput.filterSensitiveLog = (obj) => ({
1357
- ...obj,
1358
- });
1359
- })(UntagResourceInput = exports.UntagResourceInput || (exports.UntagResourceInput = {}));
1360
- var UntagResourceOutput;
1361
- (function (UntagResourceOutput) {
1362
- /**
1363
- * @internal
1364
- */
1365
- UntagResourceOutput.filterSensitiveLog = (obj) => ({
1366
- ...obj,
1367
- });
1368
- })(UntagResourceOutput = exports.UntagResourceOutput || (exports.UntagResourceOutput = {}));
1369
- //# sourceMappingURL=models_0.js.map