@cdk8s/awscdk-resolver 0.0.54 → 0.0.56

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 (371) hide show
  1. package/.jsii +3 -3
  2. package/lib/resolve.js +1 -1
  3. package/node_modules/@aws-sdk/client-cloudformation/README.md +88 -0
  4. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/CreateGeneratedTemplateCommand.js +1 -0
  5. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DeleteGeneratedTemplateCommand.js +1 -0
  6. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeGeneratedTemplateCommand.js +1 -0
  7. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeResourceScanCommand.js +1 -0
  8. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/GetGeneratedTemplateCommand.js +1 -0
  9. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListGeneratedTemplatesCommand.js +1 -0
  10. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanRelatedResourcesCommand.js +1 -0
  11. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanResourcesCommand.js +1 -0
  12. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScansCommand.js +1 -0
  13. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/StartResourceScanCommand.js +1 -0
  14. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/UpdateGeneratedTemplateCommand.js +1 -0
  15. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1677 -73
  16. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/models_1.js +1 -0
  17. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListGeneratedTemplatesPaginator.js +1 -0
  18. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanRelatedResourcesPaginator.js +1 -0
  19. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanResourcesPaginator.js +1 -0
  20. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScansPaginator.js +1 -0
  21. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +1 -2
  22. package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +22 -0
  23. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +24 -0
  24. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +24 -0
  25. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +24 -0
  26. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +24 -0
  27. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +24 -0
  28. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +24 -0
  29. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +24 -0
  30. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +24 -0
  31. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +24 -0
  32. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +24 -0
  33. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +24 -0
  34. package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/index.js +11 -0
  35. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/index.js +1 -0
  36. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_0.js +104 -0
  37. package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_1.js +1 -0
  38. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListGeneratedTemplatesPaginator.js +4 -0
  39. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanRelatedResourcesPaginator.js +4 -0
  40. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanResourcesPaginator.js +4 -0
  41. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScansPaginator.js +4 -0
  42. package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/index.js +4 -0
  43. package/node_modules/@aws-sdk/client-cloudformation/dist-es/protocols/Aws_query.js +1322 -92
  44. package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +1 -2
  45. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +77 -0
  46. package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +13 -2
  47. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +116 -0
  48. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +75 -0
  49. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +135 -0
  50. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +168 -0
  51. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +100 -0
  52. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +112 -0
  53. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +145 -0
  54. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +147 -0
  55. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +97 -0
  56. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +91 -0
  57. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
  58. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +1 -1
  59. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +156 -0
  60. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +1 -1
  61. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +1 -1
  62. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +1 -1
  63. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  64. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +1 -1
  65. package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/index.d.ts +11 -0
  66. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/index.d.ts +1 -0
  67. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +4075 -3877
  68. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +974 -0
  69. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListGeneratedTemplatesPaginator.d.ts +7 -0
  70. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +7 -0
  71. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanResourcesPaginator.d.ts +7 -0
  72. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScansPaginator.d.ts +7 -0
  73. package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/index.d.ts +4 -0
  74. package/node_modules/@aws-sdk/client-cloudformation/dist-types/protocols/Aws_query.d.ts +99 -0
  75. package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +1 -1
  76. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +187 -0
  77. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts +66 -0
  78. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +30 -0
  79. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +26 -0
  80. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +30 -0
  81. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +30 -0
  82. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +30 -0
  83. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +30 -0
  84. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +30 -0
  85. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +30 -0
  86. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +29 -0
  87. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +29 -0
  88. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +1 -1
  89. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +1 -1
  90. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +30 -0
  91. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +1 -1
  92. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +1 -1
  93. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +1 -1
  94. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
  95. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +1 -1
  96. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/index.d.ts +11 -0
  97. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/index.d.ts +1 -0
  98. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +250 -99
  99. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +132 -0
  100. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListGeneratedTemplatesPaginator.d.ts +11 -0
  101. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +11 -0
  102. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanResourcesPaginator.d.ts +11 -0
  103. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScansPaginator.d.ts +11 -0
  104. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/index.d.ts +4 -0
  105. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/protocols/Aws_query.d.ts +132 -0
  106. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +6 -2
  107. package/node_modules/@aws-sdk/client-cloudformation/package.json +13 -13
  108. package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +14 -13
  109. package/node_modules/@aws-sdk/client-sso/package.json +10 -10
  110. package/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
  111. package/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
  112. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDC.js +1 -0
  113. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDCClient.js +1 -0
  114. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenCommand.js +1 -0
  115. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenWithIAMCommand.js +1 -0
  116. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/RegisterClientCommand.js +1 -0
  117. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/StartDeviceAuthorizationCommand.js +1 -0
  118. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/index.js +1 -0
  119. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/credentialDefaultProvider.js +29 -0
  120. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/EndpointParameters.js +1 -0
  121. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +12 -0
  122. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
  123. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/extensionConfiguration.js +1 -0
  124. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1115 -0
  125. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/SSOOIDCServiceException.js +1 -0
  126. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/index.js +1 -0
  127. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/models_0.js +1 -0
  128. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/protocols/Aws_restJson1.js +1 -0
  129. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
  130. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +49 -0
  131. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
  132. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +24 -0
  133. package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeExtensions.js +1 -0
  134. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
  135. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +38 -0
  136. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +25 -0
  137. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +27 -0
  138. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +25 -0
  139. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +25 -0
  140. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
  141. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/credentialDefaultProvider.js +3 -0
  142. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
  143. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +8 -0
  144. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
  145. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
  146. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +6 -0
  147. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
  148. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
  149. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +217 -0
  150. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +553 -0
  151. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
  152. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +44 -0
  153. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
  154. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +20 -0
  155. package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +18 -0
  156. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
  157. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +210 -0
  158. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +161 -0
  159. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +243 -0
  160. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +107 -0
  161. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +110 -0
  162. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
  163. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/credentialDefaultProvider.d.ts +4 -0
  164. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  165. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
  166. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
  167. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +8 -0
  168. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +51 -0
  169. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +13 -0
  170. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
  171. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +734 -0
  172. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  173. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +46 -0
  174. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +46 -0
  175. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +45 -0
  176. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +19 -0
  177. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
  178. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
  179. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +142 -0
  180. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +26 -0
  181. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +30 -0
  182. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +29 -0
  183. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +30 -0
  184. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
  185. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
  186. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  187. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  188. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  189. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  190. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +9 -0
  191. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +8 -0
  192. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
  193. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +201 -0
  194. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
  195. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  196. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  197. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  198. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  199. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  200. package/node_modules/@aws-sdk/client-sso-oidc/package.json +103 -0
  201. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +1 -29
  202. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +1 -29
  203. package/node_modules/@aws-sdk/client-sts/dist-cjs/credentialDefaultProvider.js +29 -0
  204. package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +1 -78
  205. package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1412 -72
  206. package/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +1 -12
  207. package/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +1 -149
  208. package/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1 -1084
  209. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +3 -4
  210. package/node_modules/@aws-sdk/client-sts/dist-es/credentialDefaultProvider.js +3 -0
  211. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +3 -4
  212. package/node_modules/@aws-sdk/client-sts/dist-types/credentialDefaultProvider.d.ts +4 -0
  213. package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +3 -0
  214. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +8 -3
  215. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
  216. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +26 -14
  217. package/node_modules/@aws-sdk/client-sts/package.json +14 -12
  218. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +5 -3
  219. package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +2 -1
  220. package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +4 -1
  221. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +5 -1
  222. package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
  223. package/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
  224. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
  225. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +32 -0
  226. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +65 -0
  227. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
  228. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +59 -0
  229. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
  230. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
  231. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
  232. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
  233. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
  234. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +59 -0
  235. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
  236. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +53 -0
  237. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
  238. package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
  239. package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
  240. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +7 -0
  241. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
  242. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
  243. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
  244. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
  245. package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
  246. package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
  247. package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
  248. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +1 -0
  249. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
  250. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
  251. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
  252. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +7 -0
  253. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
  254. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
  255. package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
  256. package/node_modules/@aws-sdk/credential-provider-http/package.json +67 -0
  257. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +71 -43
  258. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/loadSts.js +1 -0
  259. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -0
  260. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/loadSts.js +2 -0
  261. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +4 -2
  262. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +4 -6
  263. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +2 -3
  264. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +3 -3
  265. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +10 -9
  266. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +9 -6
  267. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +3 -3
  268. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +8 -4
  269. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/loadSts.d.ts +3 -0
  270. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +2 -2
  271. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +2 -1
  272. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +1 -2
  273. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +1 -1
  274. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +6 -3
  275. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +2 -1
  276. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +8 -1
  277. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/loadSts.d.ts +3 -0
  278. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +2 -2
  279. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +4 -1
  280. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +1 -2
  281. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +6 -3
  282. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +3 -1
  283. package/node_modules/@aws-sdk/credential-provider-ini/package.json +7 -6
  284. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +24 -2
  285. package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -1
  286. package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +5 -2
  287. package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +17 -14
  288. package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +3 -0
  289. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +5 -2
  290. package/node_modules/@aws-sdk/credential-provider-node/package.json +8 -7
  291. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +2 -0
  292. package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -0
  293. package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +2 -1
  294. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +4 -1
  295. package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
  296. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +31 -7
  297. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso.js +1 -0
  298. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +5 -1
  299. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
  300. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +7 -5
  301. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -2
  302. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
  303. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +1 -1
  304. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +6 -2
  305. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
  306. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +1 -0
  307. package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
  308. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +5 -4
  309. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +7 -5
  310. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/loadSts.js +5 -0
  311. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -0
  312. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +6 -5
  313. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/loadSts.js +2 -0
  314. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +4 -3
  315. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +14 -4
  316. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/loadSts.d.ts +3 -0
  317. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +7 -2
  318. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +12 -6
  319. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/loadSts.d.ts +3 -0
  320. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -2
  321. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +2 -2
  322. package/node_modules/@aws-sdk/middleware-host-header/package.json +2 -2
  323. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +2 -2
  324. package/node_modules/@aws-sdk/middleware-logger/package.json +2 -2
  325. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +2 -2
  326. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
  327. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +3 -3
  328. package/node_modules/@aws-sdk/middleware-signing/package.json +2 -2
  329. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +3 -3
  330. package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
  331. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +4 -4
  332. package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
  333. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +27 -24
  334. package/node_modules/@aws-sdk/token-providers/dist-cjs/loadSsoOidc.js +1 -0
  335. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -0
  336. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +2 -1
  337. package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +3 -3
  338. package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +2 -2
  339. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -1
  340. package/node_modules/@aws-sdk/token-providers/dist-es/loadSsoOidc.js +2 -0
  341. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +2 -2
  342. package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +3 -3
  343. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +2 -1
  344. package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +2 -1
  345. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -1
  346. package/node_modules/@aws-sdk/token-providers/dist-types/loadSsoOidc.d.ts +2 -0
  347. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +7 -2
  348. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -2
  349. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
  350. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -1
  351. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -1
  352. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/loadSsoOidc.d.ts +2 -0
  353. package/node_modules/@aws-sdk/token-providers/package.json +6 -43
  354. package/node_modules/@aws-sdk/types/dist-cjs/index.js +3 -171
  355. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +15 -0
  356. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
  357. package/node_modules/@aws-sdk/types/package.json +1 -1
  358. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +4 -24
  359. package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
  360. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +2 -2
  361. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +1 -1
  362. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  363. package/package.json +5 -5
  364. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +0 -1032
  365. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +0 -1038
  366. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +0 -1010
  367. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +0 -1017
  368. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +0 -191
  369. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +0 -191
  370. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +0 -235
  371. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +0 -235
@@ -43,8 +43,10 @@ __export(src_exports, {
43
43
  CloudFormationClient: () => CloudFormationClient,
44
44
  CloudFormationServiceException: () => CloudFormationServiceException,
45
45
  ConcurrencyMode: () => ConcurrencyMode,
46
+ ConcurrentResourcesLimitExceededException: () => ConcurrentResourcesLimitExceededException,
46
47
  ContinueUpdateRollbackCommand: () => ContinueUpdateRollbackCommand,
47
48
  CreateChangeSetCommand: () => CreateChangeSetCommand,
49
+ CreateGeneratedTemplateCommand: () => CreateGeneratedTemplateCommand,
48
50
  CreateStackCommand: () => CreateStackCommand,
49
51
  CreateStackInstancesCommand: () => CreateStackInstancesCommand,
50
52
  CreateStackSetCommand: () => CreateStackSetCommand,
@@ -52,6 +54,7 @@ __export(src_exports, {
52
54
  DeactivateOrganizationsAccessCommand: () => DeactivateOrganizationsAccessCommand,
53
55
  DeactivateTypeCommand: () => DeactivateTypeCommand,
54
56
  DeleteChangeSetCommand: () => DeleteChangeSetCommand,
57
+ DeleteGeneratedTemplateCommand: () => DeleteGeneratedTemplateCommand,
55
58
  DeleteStackCommand: () => DeleteStackCommand,
56
59
  DeleteStackInstancesCommand: () => DeleteStackInstancesCommand,
57
60
  DeleteStackSetCommand: () => DeleteStackSetCommand,
@@ -60,8 +63,10 @@ __export(src_exports, {
60
63
  DescribeAccountLimitsCommand: () => DescribeAccountLimitsCommand,
61
64
  DescribeChangeSetCommand: () => DescribeChangeSetCommand,
62
65
  DescribeChangeSetHooksCommand: () => DescribeChangeSetHooksCommand,
66
+ DescribeGeneratedTemplateCommand: () => DescribeGeneratedTemplateCommand,
63
67
  DescribeOrganizationsAccessCommand: () => DescribeOrganizationsAccessCommand,
64
68
  DescribePublisherCommand: () => DescribePublisherCommand,
69
+ DescribeResourceScanCommand: () => DescribeResourceScanCommand,
65
70
  DescribeStackDriftDetectionStatusCommand: () => DescribeStackDriftDetectionStatusCommand,
66
71
  DescribeStackEventsCommand: () => DescribeStackEventsCommand,
67
72
  DescribeStackInstanceCommand: () => DescribeStackInstanceCommand,
@@ -81,6 +86,12 @@ __export(src_exports, {
81
86
  EvaluationType: () => EvaluationType,
82
87
  ExecuteChangeSetCommand: () => ExecuteChangeSetCommand,
83
88
  ExecutionStatus: () => ExecutionStatus,
89
+ GeneratedTemplateDeletionPolicy: () => GeneratedTemplateDeletionPolicy,
90
+ GeneratedTemplateNotFoundException: () => GeneratedTemplateNotFoundException,
91
+ GeneratedTemplateResourceStatus: () => GeneratedTemplateResourceStatus,
92
+ GeneratedTemplateStatus: () => GeneratedTemplateStatus,
93
+ GeneratedTemplateUpdateReplacePolicy: () => GeneratedTemplateUpdateReplacePolicy,
94
+ GetGeneratedTemplateCommand: () => GetGeneratedTemplateCommand,
84
95
  GetStackPolicyCommand: () => GetStackPolicyCommand,
85
96
  GetTemplateCommand: () => GetTemplateCommand,
86
97
  GetTemplateSummaryCommand: () => GetTemplateSummaryCommand,
@@ -98,7 +109,11 @@ __export(src_exports, {
98
109
  LimitExceededException: () => LimitExceededException,
99
110
  ListChangeSetsCommand: () => ListChangeSetsCommand,
100
111
  ListExportsCommand: () => ListExportsCommand,
112
+ ListGeneratedTemplatesCommand: () => ListGeneratedTemplatesCommand,
101
113
  ListImportsCommand: () => ListImportsCommand,
114
+ ListResourceScanRelatedResourcesCommand: () => ListResourceScanRelatedResourcesCommand,
115
+ ListResourceScanResourcesCommand: () => ListResourceScanResourcesCommand,
116
+ ListResourceScansCommand: () => ListResourceScansCommand,
102
117
  ListStackInstanceResourceDriftsCommand: () => ListStackInstanceResourceDriftsCommand,
103
118
  ListStackInstancesCommand: () => ListStackInstancesCommand,
104
119
  ListStackResourcesCommand: () => ListStackResourcesCommand,
@@ -132,6 +147,10 @@ __export(src_exports, {
132
147
  Replacement: () => Replacement,
133
148
  RequiresRecreation: () => RequiresRecreation,
134
149
  ResourceAttribute: () => ResourceAttribute,
150
+ ResourceScanInProgressException: () => ResourceScanInProgressException,
151
+ ResourceScanLimitExceededException: () => ResourceScanLimitExceededException,
152
+ ResourceScanNotFoundException: () => ResourceScanNotFoundException,
153
+ ResourceScanStatus: () => ResourceScanStatus,
135
154
  ResourceSignalStatus: () => ResourceSignalStatus,
136
155
  ResourceStatus: () => ResourceStatus,
137
156
  RollbackStackCommand: () => RollbackStackCommand,
@@ -157,7 +176,9 @@ __export(src_exports, {
157
176
  StackSetStatus: () => StackSetStatus,
158
177
  StackStatus: () => StackStatus,
159
178
  StaleRequestException: () => StaleRequestException,
179
+ StartResourceScanCommand: () => StartResourceScanCommand,
160
180
  StopStackSetOperationCommand: () => StopStackSetOperationCommand,
181
+ TemplateFormat: () => TemplateFormat,
161
182
  TemplateStage: () => TemplateStage,
162
183
  TestTypeCommand: () => TestTypeCommand,
163
184
  ThirdPartyType: () => ThirdPartyType,
@@ -165,6 +186,7 @@ __export(src_exports, {
165
186
  TypeConfigurationNotFoundException: () => TypeConfigurationNotFoundException,
166
187
  TypeNotFoundException: () => TypeNotFoundException,
167
188
  TypeTestsStatus: () => TypeTestsStatus,
189
+ UpdateGeneratedTemplateCommand: () => UpdateGeneratedTemplateCommand,
168
190
  UpdateStackCommand: () => UpdateStackCommand,
169
191
  UpdateStackInstancesCommand: () => UpdateStackInstancesCommand,
170
192
  UpdateStackSetCommand: () => UpdateStackSetCommand,
@@ -172,6 +194,7 @@ __export(src_exports, {
172
194
  ValidateTemplateCommand: () => ValidateTemplateCommand,
173
195
  VersionBump: () => VersionBump,
174
196
  Visibility: () => Visibility,
197
+ WarningType: () => WarningType,
175
198
  __Client: () => import_smithy_client.Client,
176
199
  paginateDescribeAccountLimits: () => paginateDescribeAccountLimits,
177
200
  paginateDescribeStackEvents: () => paginateDescribeStackEvents,
@@ -179,7 +202,11 @@ __export(src_exports, {
179
202
  paginateDescribeStacks: () => paginateDescribeStacks,
180
203
  paginateListChangeSets: () => paginateListChangeSets,
181
204
  paginateListExports: () => paginateListExports,
205
+ paginateListGeneratedTemplates: () => paginateListGeneratedTemplates,
182
206
  paginateListImports: () => paginateListImports,
207
+ paginateListResourceScanRelatedResources: () => paginateListResourceScanRelatedResources,
208
+ paginateListResourceScanResources: () => paginateListResourceScanResources,
209
+ paginateListResourceScans: () => paginateListResourceScans,
183
210
  paginateListStackInstances: () => paginateListStackInstances,
184
211
  paginateListStackResources: () => paginateListStackResources,
185
212
  paginateListStackSetOperationResults: () => paginateListStackSetOperationResults,
@@ -621,6 +648,32 @@ var _LimitExceededException = class _LimitExceededException extends CloudFormati
621
648
  };
622
649
  __name(_LimitExceededException, "LimitExceededException");
623
650
  var LimitExceededException = _LimitExceededException;
651
+ var _ConcurrentResourcesLimitExceededException = class _ConcurrentResourcesLimitExceededException extends CloudFormationServiceException {
652
+ /**
653
+ * @internal
654
+ */
655
+ constructor(opts) {
656
+ super({
657
+ name: "ConcurrentResourcesLimitExceededException",
658
+ $fault: "client",
659
+ ...opts
660
+ });
661
+ this.name = "ConcurrentResourcesLimitExceededException";
662
+ this.$fault = "client";
663
+ Object.setPrototypeOf(this, _ConcurrentResourcesLimitExceededException.prototype);
664
+ this.Message = opts.Message;
665
+ }
666
+ };
667
+ __name(_ConcurrentResourcesLimitExceededException, "ConcurrentResourcesLimitExceededException");
668
+ var ConcurrentResourcesLimitExceededException = _ConcurrentResourcesLimitExceededException;
669
+ var GeneratedTemplateDeletionPolicy = {
670
+ DELETE: "DELETE",
671
+ RETAIN: "RETAIN"
672
+ };
673
+ var GeneratedTemplateUpdateReplacePolicy = {
674
+ DELETE: "DELETE",
675
+ RETAIN: "RETAIN"
676
+ };
624
677
  var OnFailure = {
625
678
  DELETE: "DELETE",
626
679
  DO_NOTHING: "DO_NOTHING",
@@ -764,6 +817,24 @@ var _InvalidChangeSetStatusException = class _InvalidChangeSetStatusException ex
764
817
  };
765
818
  __name(_InvalidChangeSetStatusException, "InvalidChangeSetStatusException");
766
819
  var InvalidChangeSetStatusException = _InvalidChangeSetStatusException;
820
+ var _GeneratedTemplateNotFoundException = class _GeneratedTemplateNotFoundException extends CloudFormationServiceException {
821
+ /**
822
+ * @internal
823
+ */
824
+ constructor(opts) {
825
+ super({
826
+ name: "GeneratedTemplateNotFoundException",
827
+ $fault: "client",
828
+ ...opts
829
+ });
830
+ this.name = "GeneratedTemplateNotFoundException";
831
+ this.$fault = "client";
832
+ Object.setPrototypeOf(this, _GeneratedTemplateNotFoundException.prototype);
833
+ this.Message = opts.Message;
834
+ }
835
+ };
836
+ __name(_GeneratedTemplateNotFoundException, "GeneratedTemplateNotFoundException");
837
+ var GeneratedTemplateNotFoundException = _GeneratedTemplateNotFoundException;
767
838
  var _StackSetNotEmptyException = class _StackSetNotEmptyException extends CloudFormationServiceException {
768
839
  /**
769
840
  * @internal
@@ -787,6 +858,27 @@ var RegistryType = {
787
858
  MODULE: "MODULE",
788
859
  RESOURCE: "RESOURCE"
789
860
  };
861
+ var GeneratedTemplateResourceStatus = {
862
+ COMPLETE: "COMPLETE",
863
+ FAILED: "FAILED",
864
+ IN_PROGRESS: "IN_PROGRESS",
865
+ PENDING: "PENDING"
866
+ };
867
+ var WarningType = {
868
+ MUTUALLY_EXCLUSIVE_PROPERTIES: "MUTUALLY_EXCLUSIVE_PROPERTIES",
869
+ MUTUALLY_EXCLUSIVE_TYPES: "MUTUALLY_EXCLUSIVE_TYPES",
870
+ UNSUPPORTED_PROPERTIES: "UNSUPPORTED_PROPERTIES"
871
+ };
872
+ var GeneratedTemplateStatus = {
873
+ COMPLETE: "COMPLETE",
874
+ CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
875
+ CREATE_PENDING: "CREATE_PENDING",
876
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
877
+ DELETE_PENDING: "DELETE_PENDING",
878
+ FAILED: "FAILED",
879
+ UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
880
+ UPDATE_PENDING: "UPDATE_PENDING"
881
+ };
790
882
  var OrganizationStatus = {
791
883
  DISABLED: "DISABLED",
792
884
  DISABLED_PERMANENTLY: "DISABLED_PERMANENTLY",
@@ -801,6 +893,30 @@ var PublisherStatus = {
801
893
  UNVERIFIED: "UNVERIFIED",
802
894
  VERIFIED: "VERIFIED"
803
895
  };
896
+ var ResourceScanStatus = {
897
+ COMPLETE: "COMPLETE",
898
+ EXPIRED: "EXPIRED",
899
+ FAILED: "FAILED",
900
+ IN_PROGRESS: "IN_PROGRESS"
901
+ };
902
+ var _ResourceScanNotFoundException = class _ResourceScanNotFoundException extends CloudFormationServiceException {
903
+ /**
904
+ * @internal
905
+ */
906
+ constructor(opts) {
907
+ super({
908
+ name: "ResourceScanNotFoundException",
909
+ $fault: "client",
910
+ ...opts
911
+ });
912
+ this.name = "ResourceScanNotFoundException";
913
+ this.$fault = "client";
914
+ Object.setPrototypeOf(this, _ResourceScanNotFoundException.prototype);
915
+ this.Message = opts.Message;
916
+ }
917
+ };
918
+ __name(_ResourceScanNotFoundException, "ResourceScanNotFoundException");
919
+ var ResourceScanNotFoundException = _ResourceScanNotFoundException;
804
920
  var StackDriftDetectionStatus = {
805
921
  DETECTION_COMPLETE: "DETECTION_COMPLETE",
806
922
  DETECTION_FAILED: "DETECTION_FAILED",
@@ -964,6 +1080,10 @@ var RegistrationStatus = {
964
1080
  FAILED: "FAILED",
965
1081
  IN_PROGRESS: "IN_PROGRESS"
966
1082
  };
1083
+ var TemplateFormat = {
1084
+ JSON: "JSON",
1085
+ YAML: "YAML"
1086
+ };
967
1087
  var TemplateStage = {
968
1088
  Original: "Original",
969
1089
  Processed: "Processed"
@@ -986,6 +1106,24 @@ var _StackNotFoundException = class _StackNotFoundException extends CloudFormati
986
1106
  };
987
1107
  __name(_StackNotFoundException, "StackNotFoundException");
988
1108
  var StackNotFoundException = _StackNotFoundException;
1109
+ var _ResourceScanInProgressException = class _ResourceScanInProgressException extends CloudFormationServiceException {
1110
+ /**
1111
+ * @internal
1112
+ */
1113
+ constructor(opts) {
1114
+ super({
1115
+ name: "ResourceScanInProgressException",
1116
+ $fault: "client",
1117
+ ...opts
1118
+ });
1119
+ this.name = "ResourceScanInProgressException";
1120
+ this.$fault = "client";
1121
+ Object.setPrototypeOf(this, _ResourceScanInProgressException.prototype);
1122
+ this.Message = opts.Message;
1123
+ }
1124
+ };
1125
+ __name(_ResourceScanInProgressException, "ResourceScanInProgressException");
1126
+ var ResourceScanInProgressException = _ResourceScanInProgressException;
989
1127
  var StackInstanceFilterName = {
990
1128
  DETAILED_STATUS: "DETAILED_STATUS",
991
1129
  DRIFT_STATUS: "DRIFT_STATUS",
@@ -1068,6 +1206,24 @@ var ResourceSignalStatus = {
1068
1206
  FAILURE: "FAILURE",
1069
1207
  SUCCESS: "SUCCESS"
1070
1208
  };
1209
+ var _ResourceScanLimitExceededException = class _ResourceScanLimitExceededException extends CloudFormationServiceException {
1210
+ /**
1211
+ * @internal
1212
+ */
1213
+ constructor(opts) {
1214
+ super({
1215
+ name: "ResourceScanLimitExceededException",
1216
+ $fault: "client",
1217
+ ...opts
1218
+ });
1219
+ this.name = "ResourceScanLimitExceededException";
1220
+ this.$fault = "client";
1221
+ Object.setPrototypeOf(this, _ResourceScanLimitExceededException.prototype);
1222
+ this.Message = opts.Message;
1223
+ }
1224
+ };
1225
+ __name(_ResourceScanLimitExceededException, "ResourceScanLimitExceededException");
1226
+ var ResourceScanLimitExceededException = _ResourceScanLimitExceededException;
1071
1227
 
1072
1228
  // src/protocols/Aws_query.ts
1073
1229
  var se_ActivateOrganizationsAccessCommand = /* @__PURE__ */ __name(async (input, context) => {
@@ -1130,6 +1286,16 @@ var se_CreateChangeSetCommand = /* @__PURE__ */ __name(async (input, context) =>
1130
1286
  });
1131
1287
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1132
1288
  }, "se_CreateChangeSetCommand");
1289
+ var se_CreateGeneratedTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
1290
+ const headers = SHARED_HEADERS;
1291
+ let body;
1292
+ body = buildFormUrlencodedString({
1293
+ ...se_CreateGeneratedTemplateInput(input, context),
1294
+ [_A]: _CGT,
1295
+ [_V]: _
1296
+ });
1297
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1298
+ }, "se_CreateGeneratedTemplateCommand");
1133
1299
  var se_CreateStackCommand = /* @__PURE__ */ __name(async (input, context) => {
1134
1300
  const headers = SHARED_HEADERS;
1135
1301
  let body;
@@ -1190,6 +1356,16 @@ var se_DeleteChangeSetCommand = /* @__PURE__ */ __name(async (input, context) =>
1190
1356
  });
1191
1357
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1192
1358
  }, "se_DeleteChangeSetCommand");
1359
+ var se_DeleteGeneratedTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
1360
+ const headers = SHARED_HEADERS;
1361
+ let body;
1362
+ body = buildFormUrlencodedString({
1363
+ ...se_DeleteGeneratedTemplateInput(input, context),
1364
+ [_A]: _DGT,
1365
+ [_V]: _
1366
+ });
1367
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1368
+ }, "se_DeleteGeneratedTemplateCommand");
1193
1369
  var se_DeleteStackCommand = /* @__PURE__ */ __name(async (input, context) => {
1194
1370
  const headers = SHARED_HEADERS;
1195
1371
  let body;
@@ -1260,6 +1436,16 @@ var se_DescribeChangeSetHooksCommand = /* @__PURE__ */ __name(async (input, cont
1260
1436
  });
1261
1437
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1262
1438
  }, "se_DescribeChangeSetHooksCommand");
1439
+ var se_DescribeGeneratedTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
1440
+ const headers = SHARED_HEADERS;
1441
+ let body;
1442
+ body = buildFormUrlencodedString({
1443
+ ...se_DescribeGeneratedTemplateInput(input, context),
1444
+ [_A]: _DGTe,
1445
+ [_V]: _
1446
+ });
1447
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1448
+ }, "se_DescribeGeneratedTemplateCommand");
1263
1449
  var se_DescribeOrganizationsAccessCommand = /* @__PURE__ */ __name(async (input, context) => {
1264
1450
  const headers = SHARED_HEADERS;
1265
1451
  let body;
@@ -1280,6 +1466,16 @@ var se_DescribePublisherCommand = /* @__PURE__ */ __name(async (input, context)
1280
1466
  });
1281
1467
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1282
1468
  }, "se_DescribePublisherCommand");
1469
+ var se_DescribeResourceScanCommand = /* @__PURE__ */ __name(async (input, context) => {
1470
+ const headers = SHARED_HEADERS;
1471
+ let body;
1472
+ body = buildFormUrlencodedString({
1473
+ ...se_DescribeResourceScanInput(input, context),
1474
+ [_A]: _DRS,
1475
+ [_V]: _
1476
+ });
1477
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1478
+ }, "se_DescribeResourceScanCommand");
1283
1479
  var se_DescribeStackDriftDetectionStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
1284
1480
  const headers = SHARED_HEADERS;
1285
1481
  let body;
@@ -1440,6 +1636,16 @@ var se_ExecuteChangeSetCommand = /* @__PURE__ */ __name(async (input, context) =
1440
1636
  });
1441
1637
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1442
1638
  }, "se_ExecuteChangeSetCommand");
1639
+ var se_GetGeneratedTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
1640
+ const headers = SHARED_HEADERS;
1641
+ let body;
1642
+ body = buildFormUrlencodedString({
1643
+ ...se_GetGeneratedTemplateInput(input, context),
1644
+ [_A]: _GGT,
1645
+ [_V]: _
1646
+ });
1647
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1648
+ }, "se_GetGeneratedTemplateCommand");
1443
1649
  var se_GetStackPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
1444
1650
  const headers = SHARED_HEADERS;
1445
1651
  let body;
@@ -1500,6 +1706,16 @@ var se_ListExportsCommand = /* @__PURE__ */ __name(async (input, context) => {
1500
1706
  });
1501
1707
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1502
1708
  }, "se_ListExportsCommand");
1709
+ var se_ListGeneratedTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
1710
+ const headers = SHARED_HEADERS;
1711
+ let body;
1712
+ body = buildFormUrlencodedString({
1713
+ ...se_ListGeneratedTemplatesInput(input, context),
1714
+ [_A]: _LGT,
1715
+ [_V]: _
1716
+ });
1717
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1718
+ }, "se_ListGeneratedTemplatesCommand");
1503
1719
  var se_ListImportsCommand = /* @__PURE__ */ __name(async (input, context) => {
1504
1720
  const headers = SHARED_HEADERS;
1505
1721
  let body;
@@ -1510,6 +1726,36 @@ var se_ListImportsCommand = /* @__PURE__ */ __name(async (input, context) => {
1510
1726
  });
1511
1727
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1512
1728
  }, "se_ListImportsCommand");
1729
+ var se_ListResourceScanRelatedResourcesCommand = /* @__PURE__ */ __name(async (input, context) => {
1730
+ const headers = SHARED_HEADERS;
1731
+ let body;
1732
+ body = buildFormUrlencodedString({
1733
+ ...se_ListResourceScanRelatedResourcesInput(input, context),
1734
+ [_A]: _LRSRR,
1735
+ [_V]: _
1736
+ });
1737
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1738
+ }, "se_ListResourceScanRelatedResourcesCommand");
1739
+ var se_ListResourceScanResourcesCommand = /* @__PURE__ */ __name(async (input, context) => {
1740
+ const headers = SHARED_HEADERS;
1741
+ let body;
1742
+ body = buildFormUrlencodedString({
1743
+ ...se_ListResourceScanResourcesInput(input, context),
1744
+ [_A]: _LRSR,
1745
+ [_V]: _
1746
+ });
1747
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1748
+ }, "se_ListResourceScanResourcesCommand");
1749
+ var se_ListResourceScansCommand = /* @__PURE__ */ __name(async (input, context) => {
1750
+ const headers = SHARED_HEADERS;
1751
+ let body;
1752
+ body = buildFormUrlencodedString({
1753
+ ...se_ListResourceScansInput(input, context),
1754
+ [_A]: _LRS,
1755
+ [_V]: _
1756
+ });
1757
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1758
+ }, "se_ListResourceScansCommand");
1513
1759
  var se_ListStackInstanceResourceDriftsCommand = /* @__PURE__ */ __name(async (input, context) => {
1514
1760
  const headers = SHARED_HEADERS;
1515
1761
  let body;
@@ -1700,6 +1946,16 @@ var se_SignalResourceCommand = /* @__PURE__ */ __name(async (input, context) =>
1700
1946
  });
1701
1947
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1702
1948
  }, "se_SignalResourceCommand");
1949
+ var se_StartResourceScanCommand = /* @__PURE__ */ __name(async (input, context) => {
1950
+ const headers = SHARED_HEADERS;
1951
+ let body;
1952
+ body = buildFormUrlencodedString({
1953
+ ...se_StartResourceScanInput(input, context),
1954
+ [_A]: _SRS,
1955
+ [_V]: _
1956
+ });
1957
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1958
+ }, "se_StartResourceScanCommand");
1703
1959
  var se_StopStackSetOperationCommand = /* @__PURE__ */ __name(async (input, context) => {
1704
1960
  const headers = SHARED_HEADERS;
1705
1961
  let body;
@@ -1720,6 +1976,16 @@ var se_TestTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
1720
1976
  });
1721
1977
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1722
1978
  }, "se_TestTypeCommand");
1979
+ var se_UpdateGeneratedTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
1980
+ const headers = SHARED_HEADERS;
1981
+ let body;
1982
+ body = buildFormUrlencodedString({
1983
+ ...se_UpdateGeneratedTemplateInput(input, context),
1984
+ [_A]: _UGT,
1985
+ [_V]: _
1986
+ });
1987
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1988
+ }, "se_UpdateGeneratedTemplateCommand");
1723
1989
  var se_UpdateStackCommand = /* @__PURE__ */ __name(async (input, context) => {
1724
1990
  const headers = SHARED_HEADERS;
1725
1991
  let body;
@@ -1974,6 +2240,44 @@ var de_CreateChangeSetCommandError = /* @__PURE__ */ __name(async (output, conte
1974
2240
  });
1975
2241
  }
1976
2242
  }, "de_CreateChangeSetCommandError");
2243
+ var de_CreateGeneratedTemplateCommand = /* @__PURE__ */ __name(async (output, context) => {
2244
+ if (output.statusCode >= 300) {
2245
+ return de_CreateGeneratedTemplateCommandError(output, context);
2246
+ }
2247
+ const data = await parseBody(output.body, context);
2248
+ let contents = {};
2249
+ contents = de_CreateGeneratedTemplateOutput(data.CreateGeneratedTemplateResult, context);
2250
+ const response = {
2251
+ $metadata: deserializeMetadata(output),
2252
+ ...contents
2253
+ };
2254
+ return response;
2255
+ }, "de_CreateGeneratedTemplateCommand");
2256
+ var de_CreateGeneratedTemplateCommandError = /* @__PURE__ */ __name(async (output, context) => {
2257
+ const parsedOutput = {
2258
+ ...output,
2259
+ body: await parseErrorBody(output.body, context)
2260
+ };
2261
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
2262
+ switch (errorCode) {
2263
+ case "AlreadyExistsException":
2264
+ case "com.amazonaws.cloudformation#AlreadyExistsException":
2265
+ throw await de_AlreadyExistsExceptionRes(parsedOutput, context);
2266
+ case "ConcurrentResourcesLimitExceeded":
2267
+ case "com.amazonaws.cloudformation#ConcurrentResourcesLimitExceededException":
2268
+ throw await de_ConcurrentResourcesLimitExceededExceptionRes(parsedOutput, context);
2269
+ case "LimitExceededException":
2270
+ case "com.amazonaws.cloudformation#LimitExceededException":
2271
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
2272
+ default:
2273
+ const parsedBody = parsedOutput.body;
2274
+ return throwDefaultError({
2275
+ output,
2276
+ parsedBody: parsedBody.Error,
2277
+ errorCode
2278
+ });
2279
+ }
2280
+ }, "de_CreateGeneratedTemplateCommandError");
1977
2281
  var de_CreateStackCommand = /* @__PURE__ */ __name(async (output, context) => {
1978
2282
  if (output.statusCode >= 300) {
1979
2283
  return de_CreateStackCommandError(output, context);
@@ -2202,6 +2506,38 @@ var de_DeleteChangeSetCommandError = /* @__PURE__ */ __name(async (output, conte
2202
2506
  });
2203
2507
  }
2204
2508
  }, "de_DeleteChangeSetCommandError");
2509
+ var de_DeleteGeneratedTemplateCommand = /* @__PURE__ */ __name(async (output, context) => {
2510
+ if (output.statusCode >= 300) {
2511
+ return de_DeleteGeneratedTemplateCommandError(output, context);
2512
+ }
2513
+ await (0, import_smithy_client.collectBody)(output.body, context);
2514
+ const response = {
2515
+ $metadata: deserializeMetadata(output)
2516
+ };
2517
+ return response;
2518
+ }, "de_DeleteGeneratedTemplateCommand");
2519
+ var de_DeleteGeneratedTemplateCommandError = /* @__PURE__ */ __name(async (output, context) => {
2520
+ const parsedOutput = {
2521
+ ...output,
2522
+ body: await parseErrorBody(output.body, context)
2523
+ };
2524
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
2525
+ switch (errorCode) {
2526
+ case "ConcurrentResourcesLimitExceeded":
2527
+ case "com.amazonaws.cloudformation#ConcurrentResourcesLimitExceededException":
2528
+ throw await de_ConcurrentResourcesLimitExceededExceptionRes(parsedOutput, context);
2529
+ case "GeneratedTemplateNotFound":
2530
+ case "com.amazonaws.cloudformation#GeneratedTemplateNotFoundException":
2531
+ throw await de_GeneratedTemplateNotFoundExceptionRes(parsedOutput, context);
2532
+ default:
2533
+ const parsedBody = parsedOutput.body;
2534
+ return throwDefaultError({
2535
+ output,
2536
+ parsedBody: parsedBody.Error,
2537
+ errorCode
2538
+ });
2539
+ }
2540
+ }, "de_DeleteGeneratedTemplateCommandError");
2205
2541
  var de_DeleteStackCommand = /* @__PURE__ */ __name(async (output, context) => {
2206
2542
  if (output.statusCode >= 300) {
2207
2543
  return de_DeleteStackCommandError(output, context);
@@ -2435,6 +2771,38 @@ var de_DescribeChangeSetHooksCommandError = /* @__PURE__ */ __name(async (output
2435
2771
  });
2436
2772
  }
2437
2773
  }, "de_DescribeChangeSetHooksCommandError");
2774
+ var de_DescribeGeneratedTemplateCommand = /* @__PURE__ */ __name(async (output, context) => {
2775
+ if (output.statusCode >= 300) {
2776
+ return de_DescribeGeneratedTemplateCommandError(output, context);
2777
+ }
2778
+ const data = await parseBody(output.body, context);
2779
+ let contents = {};
2780
+ contents = de_DescribeGeneratedTemplateOutput(data.DescribeGeneratedTemplateResult, context);
2781
+ const response = {
2782
+ $metadata: deserializeMetadata(output),
2783
+ ...contents
2784
+ };
2785
+ return response;
2786
+ }, "de_DescribeGeneratedTemplateCommand");
2787
+ var de_DescribeGeneratedTemplateCommandError = /* @__PURE__ */ __name(async (output, context) => {
2788
+ const parsedOutput = {
2789
+ ...output,
2790
+ body: await parseErrorBody(output.body, context)
2791
+ };
2792
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
2793
+ switch (errorCode) {
2794
+ case "GeneratedTemplateNotFound":
2795
+ case "com.amazonaws.cloudformation#GeneratedTemplateNotFoundException":
2796
+ throw await de_GeneratedTemplateNotFoundExceptionRes(parsedOutput, context);
2797
+ default:
2798
+ const parsedBody = parsedOutput.body;
2799
+ return throwDefaultError({
2800
+ output,
2801
+ parsedBody: parsedBody.Error,
2802
+ errorCode
2803
+ });
2804
+ }
2805
+ }, "de_DescribeGeneratedTemplateCommandError");
2438
2806
  var de_DescribeOrganizationsAccessCommand = /* @__PURE__ */ __name(async (output, context) => {
2439
2807
  if (output.statusCode >= 300) {
2440
2808
  return de_DescribeOrganizationsAccessCommandError(output, context);
@@ -2502,6 +2870,38 @@ var de_DescribePublisherCommandError = /* @__PURE__ */ __name(async (output, con
2502
2870
  });
2503
2871
  }
2504
2872
  }, "de_DescribePublisherCommandError");
2873
+ var de_DescribeResourceScanCommand = /* @__PURE__ */ __name(async (output, context) => {
2874
+ if (output.statusCode >= 300) {
2875
+ return de_DescribeResourceScanCommandError(output, context);
2876
+ }
2877
+ const data = await parseBody(output.body, context);
2878
+ let contents = {};
2879
+ contents = de_DescribeResourceScanOutput(data.DescribeResourceScanResult, context);
2880
+ const response = {
2881
+ $metadata: deserializeMetadata(output),
2882
+ ...contents
2883
+ };
2884
+ return response;
2885
+ }, "de_DescribeResourceScanCommand");
2886
+ var de_DescribeResourceScanCommandError = /* @__PURE__ */ __name(async (output, context) => {
2887
+ const parsedOutput = {
2888
+ ...output,
2889
+ body: await parseErrorBody(output.body, context)
2890
+ };
2891
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
2892
+ switch (errorCode) {
2893
+ case "ResourceScanNotFound":
2894
+ case "com.amazonaws.cloudformation#ResourceScanNotFoundException":
2895
+ throw await de_ResourceScanNotFoundExceptionRes(parsedOutput, context);
2896
+ default:
2897
+ const parsedBody = parsedOutput.body;
2898
+ return throwDefaultError({
2899
+ output,
2900
+ parsedBody: parsedBody.Error,
2901
+ errorCode
2902
+ });
2903
+ }
2904
+ }, "de_DescribeResourceScanCommandError");
2505
2905
  var de_DescribeStackDriftDetectionStatusCommand = /* @__PURE__ */ __name(async (output, context) => {
2506
2906
  if (output.statusCode >= 300) {
2507
2907
  return de_DescribeStackDriftDetectionStatusCommandError(output, context);
@@ -2984,6 +3384,38 @@ var de_ExecuteChangeSetCommandError = /* @__PURE__ */ __name(async (output, cont
2984
3384
  });
2985
3385
  }
2986
3386
  }, "de_ExecuteChangeSetCommandError");
3387
+ var de_GetGeneratedTemplateCommand = /* @__PURE__ */ __name(async (output, context) => {
3388
+ if (output.statusCode >= 300) {
3389
+ return de_GetGeneratedTemplateCommandError(output, context);
3390
+ }
3391
+ const data = await parseBody(output.body, context);
3392
+ let contents = {};
3393
+ contents = de_GetGeneratedTemplateOutput(data.GetGeneratedTemplateResult, context);
3394
+ const response = {
3395
+ $metadata: deserializeMetadata(output),
3396
+ ...contents
3397
+ };
3398
+ return response;
3399
+ }, "de_GetGeneratedTemplateCommand");
3400
+ var de_GetGeneratedTemplateCommandError = /* @__PURE__ */ __name(async (output, context) => {
3401
+ const parsedOutput = {
3402
+ ...output,
3403
+ body: await parseErrorBody(output.body, context)
3404
+ };
3405
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
3406
+ switch (errorCode) {
3407
+ case "GeneratedTemplateNotFound":
3408
+ case "com.amazonaws.cloudformation#GeneratedTemplateNotFoundException":
3409
+ throw await de_GeneratedTemplateNotFoundExceptionRes(parsedOutput, context);
3410
+ default:
3411
+ const parsedBody = parsedOutput.body;
3412
+ return throwDefaultError({
3413
+ output,
3414
+ parsedBody: parsedBody.Error,
3415
+ errorCode
3416
+ });
3417
+ }
3418
+ }, "de_GetGeneratedTemplateCommandError");
2987
3419
  var de_GetStackPolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
2988
3420
  if (output.statusCode >= 300) {
2989
3421
  return de_GetStackPolicyCommandError(output, context);
@@ -3176,6 +3608,32 @@ var de_ListExportsCommandError = /* @__PURE__ */ __name(async (output, context)
3176
3608
  errorCode
3177
3609
  });
3178
3610
  }, "de_ListExportsCommandError");
3611
+ var de_ListGeneratedTemplatesCommand = /* @__PURE__ */ __name(async (output, context) => {
3612
+ if (output.statusCode >= 300) {
3613
+ return de_ListGeneratedTemplatesCommandError(output, context);
3614
+ }
3615
+ const data = await parseBody(output.body, context);
3616
+ let contents = {};
3617
+ contents = de_ListGeneratedTemplatesOutput(data.ListGeneratedTemplatesResult, context);
3618
+ const response = {
3619
+ $metadata: deserializeMetadata(output),
3620
+ ...contents
3621
+ };
3622
+ return response;
3623
+ }, "de_ListGeneratedTemplatesCommand");
3624
+ var de_ListGeneratedTemplatesCommandError = /* @__PURE__ */ __name(async (output, context) => {
3625
+ const parsedOutput = {
3626
+ ...output,
3627
+ body: await parseErrorBody(output.body, context)
3628
+ };
3629
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
3630
+ const parsedBody = parsedOutput.body;
3631
+ return throwDefaultError({
3632
+ output,
3633
+ parsedBody: parsedBody.Error,
3634
+ errorCode
3635
+ });
3636
+ }, "de_ListGeneratedTemplatesCommandError");
3179
3637
  var de_ListImportsCommand = /* @__PURE__ */ __name(async (output, context) => {
3180
3638
  if (output.statusCode >= 300) {
3181
3639
  return de_ListImportsCommandError(output, context);
@@ -3202,6 +3660,102 @@ var de_ListImportsCommandError = /* @__PURE__ */ __name(async (output, context)
3202
3660
  errorCode
3203
3661
  });
3204
3662
  }, "de_ListImportsCommandError");
3663
+ var de_ListResourceScanRelatedResourcesCommand = /* @__PURE__ */ __name(async (output, context) => {
3664
+ if (output.statusCode >= 300) {
3665
+ return de_ListResourceScanRelatedResourcesCommandError(output, context);
3666
+ }
3667
+ const data = await parseBody(output.body, context);
3668
+ let contents = {};
3669
+ contents = de_ListResourceScanRelatedResourcesOutput(data.ListResourceScanRelatedResourcesResult, context);
3670
+ const response = {
3671
+ $metadata: deserializeMetadata(output),
3672
+ ...contents
3673
+ };
3674
+ return response;
3675
+ }, "de_ListResourceScanRelatedResourcesCommand");
3676
+ var de_ListResourceScanRelatedResourcesCommandError = /* @__PURE__ */ __name(async (output, context) => {
3677
+ const parsedOutput = {
3678
+ ...output,
3679
+ body: await parseErrorBody(output.body, context)
3680
+ };
3681
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
3682
+ switch (errorCode) {
3683
+ case "ResourceScanInProgress":
3684
+ case "com.amazonaws.cloudformation#ResourceScanInProgressException":
3685
+ throw await de_ResourceScanInProgressExceptionRes(parsedOutput, context);
3686
+ case "ResourceScanNotFound":
3687
+ case "com.amazonaws.cloudformation#ResourceScanNotFoundException":
3688
+ throw await de_ResourceScanNotFoundExceptionRes(parsedOutput, context);
3689
+ default:
3690
+ const parsedBody = parsedOutput.body;
3691
+ return throwDefaultError({
3692
+ output,
3693
+ parsedBody: parsedBody.Error,
3694
+ errorCode
3695
+ });
3696
+ }
3697
+ }, "de_ListResourceScanRelatedResourcesCommandError");
3698
+ var de_ListResourceScanResourcesCommand = /* @__PURE__ */ __name(async (output, context) => {
3699
+ if (output.statusCode >= 300) {
3700
+ return de_ListResourceScanResourcesCommandError(output, context);
3701
+ }
3702
+ const data = await parseBody(output.body, context);
3703
+ let contents = {};
3704
+ contents = de_ListResourceScanResourcesOutput(data.ListResourceScanResourcesResult, context);
3705
+ const response = {
3706
+ $metadata: deserializeMetadata(output),
3707
+ ...contents
3708
+ };
3709
+ return response;
3710
+ }, "de_ListResourceScanResourcesCommand");
3711
+ var de_ListResourceScanResourcesCommandError = /* @__PURE__ */ __name(async (output, context) => {
3712
+ const parsedOutput = {
3713
+ ...output,
3714
+ body: await parseErrorBody(output.body, context)
3715
+ };
3716
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
3717
+ switch (errorCode) {
3718
+ case "ResourceScanInProgress":
3719
+ case "com.amazonaws.cloudformation#ResourceScanInProgressException":
3720
+ throw await de_ResourceScanInProgressExceptionRes(parsedOutput, context);
3721
+ case "ResourceScanNotFound":
3722
+ case "com.amazonaws.cloudformation#ResourceScanNotFoundException":
3723
+ throw await de_ResourceScanNotFoundExceptionRes(parsedOutput, context);
3724
+ default:
3725
+ const parsedBody = parsedOutput.body;
3726
+ return throwDefaultError({
3727
+ output,
3728
+ parsedBody: parsedBody.Error,
3729
+ errorCode
3730
+ });
3731
+ }
3732
+ }, "de_ListResourceScanResourcesCommandError");
3733
+ var de_ListResourceScansCommand = /* @__PURE__ */ __name(async (output, context) => {
3734
+ if (output.statusCode >= 300) {
3735
+ return de_ListResourceScansCommandError(output, context);
3736
+ }
3737
+ const data = await parseBody(output.body, context);
3738
+ let contents = {};
3739
+ contents = de_ListResourceScansOutput(data.ListResourceScansResult, context);
3740
+ const response = {
3741
+ $metadata: deserializeMetadata(output),
3742
+ ...contents
3743
+ };
3744
+ return response;
3745
+ }, "de_ListResourceScansCommand");
3746
+ var de_ListResourceScansCommandError = /* @__PURE__ */ __name(async (output, context) => {
3747
+ const parsedOutput = {
3748
+ ...output,
3749
+ body: await parseErrorBody(output.body, context)
3750
+ };
3751
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
3752
+ const parsedBody = parsedOutput.body;
3753
+ return throwDefaultError({
3754
+ output,
3755
+ parsedBody: parsedBody.Error,
3756
+ errorCode
3757
+ });
3758
+ }, "de_ListResourceScansCommandError");
3205
3759
  var de_ListStackInstanceResourceDriftsCommand = /* @__PURE__ */ __name(async (output, context) => {
3206
3760
  if (output.statusCode >= 300) {
3207
3761
  return de_ListStackInstanceResourceDriftsCommandError(output, context);
@@ -3795,6 +4349,41 @@ var de_SignalResourceCommandError = /* @__PURE__ */ __name(async (output, contex
3795
4349
  errorCode
3796
4350
  });
3797
4351
  }, "de_SignalResourceCommandError");
4352
+ var de_StartResourceScanCommand = /* @__PURE__ */ __name(async (output, context) => {
4353
+ if (output.statusCode >= 300) {
4354
+ return de_StartResourceScanCommandError(output, context);
4355
+ }
4356
+ const data = await parseBody(output.body, context);
4357
+ let contents = {};
4358
+ contents = de_StartResourceScanOutput(data.StartResourceScanResult, context);
4359
+ const response = {
4360
+ $metadata: deserializeMetadata(output),
4361
+ ...contents
4362
+ };
4363
+ return response;
4364
+ }, "de_StartResourceScanCommand");
4365
+ var de_StartResourceScanCommandError = /* @__PURE__ */ __name(async (output, context) => {
4366
+ const parsedOutput = {
4367
+ ...output,
4368
+ body: await parseErrorBody(output.body, context)
4369
+ };
4370
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
4371
+ switch (errorCode) {
4372
+ case "ResourceScanInProgress":
4373
+ case "com.amazonaws.cloudformation#ResourceScanInProgressException":
4374
+ throw await de_ResourceScanInProgressExceptionRes(parsedOutput, context);
4375
+ case "ResourceScanLimitExceeded":
4376
+ case "com.amazonaws.cloudformation#ResourceScanLimitExceededException":
4377
+ throw await de_ResourceScanLimitExceededExceptionRes(parsedOutput, context);
4378
+ default:
4379
+ const parsedBody = parsedOutput.body;
4380
+ return throwDefaultError({
4381
+ output,
4382
+ parsedBody: parsedBody.Error,
4383
+ errorCode
4384
+ });
4385
+ }
4386
+ }, "de_StartResourceScanCommandError");
3798
4387
  var de_StopStackSetOperationCommand = /* @__PURE__ */ __name(async (output, context) => {
3799
4388
  if (output.statusCode >= 300) {
3800
4389
  return de_StopStackSetOperationCommandError(output, context);
@@ -3868,6 +4457,44 @@ var de_TestTypeCommandError = /* @__PURE__ */ __name(async (output, context) =>
3868
4457
  });
3869
4458
  }
3870
4459
  }, "de_TestTypeCommandError");
4460
+ var de_UpdateGeneratedTemplateCommand = /* @__PURE__ */ __name(async (output, context) => {
4461
+ if (output.statusCode >= 300) {
4462
+ return de_UpdateGeneratedTemplateCommandError(output, context);
4463
+ }
4464
+ const data = await parseBody(output.body, context);
4465
+ let contents = {};
4466
+ contents = de_UpdateGeneratedTemplateOutput(data.UpdateGeneratedTemplateResult, context);
4467
+ const response = {
4468
+ $metadata: deserializeMetadata(output),
4469
+ ...contents
4470
+ };
4471
+ return response;
4472
+ }, "de_UpdateGeneratedTemplateCommand");
4473
+ var de_UpdateGeneratedTemplateCommandError = /* @__PURE__ */ __name(async (output, context) => {
4474
+ const parsedOutput = {
4475
+ ...output,
4476
+ body: await parseErrorBody(output.body, context)
4477
+ };
4478
+ const errorCode = loadQueryErrorCode(output, parsedOutput.body);
4479
+ switch (errorCode) {
4480
+ case "AlreadyExistsException":
4481
+ case "com.amazonaws.cloudformation#AlreadyExistsException":
4482
+ throw await de_AlreadyExistsExceptionRes(parsedOutput, context);
4483
+ case "GeneratedTemplateNotFound":
4484
+ case "com.amazonaws.cloudformation#GeneratedTemplateNotFoundException":
4485
+ throw await de_GeneratedTemplateNotFoundExceptionRes(parsedOutput, context);
4486
+ case "LimitExceededException":
4487
+ case "com.amazonaws.cloudformation#LimitExceededException":
4488
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
4489
+ default:
4490
+ const parsedBody = parsedOutput.body;
4491
+ return throwDefaultError({
4492
+ output,
4493
+ parsedBody: parsedBody.Error,
4494
+ errorCode
4495
+ });
4496
+ }
4497
+ }, "de_UpdateGeneratedTemplateCommandError");
3871
4498
  var de_UpdateStackCommand = /* @__PURE__ */ __name(async (output, context) => {
3872
4499
  if (output.statusCode >= 300) {
3873
4500
  return de_UpdateStackCommandError(output, context);
@@ -4076,6 +4703,15 @@ var de_ChangeSetNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutpu
4076
4703
  });
4077
4704
  return (0, import_smithy_client.decorateServiceException)(exception, body);
4078
4705
  }, "de_ChangeSetNotFoundExceptionRes");
4706
+ var de_ConcurrentResourcesLimitExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4707
+ const body = parsedOutput.body;
4708
+ const deserialized = de_ConcurrentResourcesLimitExceededException(body.Error, context);
4709
+ const exception = new ConcurrentResourcesLimitExceededException({
4710
+ $metadata: deserializeMetadata(parsedOutput),
4711
+ ...deserialized
4712
+ });
4713
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
4714
+ }, "de_ConcurrentResourcesLimitExceededExceptionRes");
4079
4715
  var de_CreatedButModifiedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4080
4716
  const body = parsedOutput.body;
4081
4717
  const deserialized = de_CreatedButModifiedException(body.Error, context);
@@ -4085,6 +4721,15 @@ var de_CreatedButModifiedExceptionRes = /* @__PURE__ */ __name(async (parsedOutp
4085
4721
  });
4086
4722
  return (0, import_smithy_client.decorateServiceException)(exception, body);
4087
4723
  }, "de_CreatedButModifiedExceptionRes");
4724
+ var de_GeneratedTemplateNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4725
+ const body = parsedOutput.body;
4726
+ const deserialized = de_GeneratedTemplateNotFoundException(body.Error, context);
4727
+ const exception = new GeneratedTemplateNotFoundException({
4728
+ $metadata: deserializeMetadata(parsedOutput),
4729
+ ...deserialized
4730
+ });
4731
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
4732
+ }, "de_GeneratedTemplateNotFoundExceptionRes");
4088
4733
  var de_InsufficientCapabilitiesExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4089
4734
  const body = parsedOutput.body;
4090
4735
  const deserialized = de_InsufficientCapabilitiesException(body.Error, context);
@@ -4175,6 +4820,33 @@ var de_OperationStatusCheckFailedExceptionRes = /* @__PURE__ */ __name(async (pa
4175
4820
  });
4176
4821
  return (0, import_smithy_client.decorateServiceException)(exception, body);
4177
4822
  }, "de_OperationStatusCheckFailedExceptionRes");
4823
+ var de_ResourceScanInProgressExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4824
+ const body = parsedOutput.body;
4825
+ const deserialized = de_ResourceScanInProgressException(body.Error, context);
4826
+ const exception = new ResourceScanInProgressException({
4827
+ $metadata: deserializeMetadata(parsedOutput),
4828
+ ...deserialized
4829
+ });
4830
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
4831
+ }, "de_ResourceScanInProgressExceptionRes");
4832
+ var de_ResourceScanLimitExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4833
+ const body = parsedOutput.body;
4834
+ const deserialized = de_ResourceScanLimitExceededException(body.Error, context);
4835
+ const exception = new ResourceScanLimitExceededException({
4836
+ $metadata: deserializeMetadata(parsedOutput),
4837
+ ...deserialized
4838
+ });
4839
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
4840
+ }, "de_ResourceScanLimitExceededExceptionRes");
4841
+ var de_ResourceScanNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4842
+ const body = parsedOutput.body;
4843
+ const deserialized = de_ResourceScanNotFoundException(body.Error, context);
4844
+ const exception = new ResourceScanNotFoundException({
4845
+ $metadata: deserializeMetadata(parsedOutput),
4846
+ ...deserialized
4847
+ });
4848
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
4849
+ }, "de_ResourceScanNotFoundExceptionRes");
4178
4850
  var de_StackInstanceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
4179
4851
  const body = parsedOutput.body;
4180
4852
  const deserialized = de_StackInstanceNotFoundException(body.Error, context);
@@ -4373,7 +5045,7 @@ var se_ContinueUpdateRollbackInput = /* @__PURE__ */ __name((input, context) =>
4373
5045
  return entries;
4374
5046
  }, "se_ContinueUpdateRollbackInput");
4375
5047
  var se_CreateChangeSetInput = /* @__PURE__ */ __name((input, context) => {
4376
- var _a, _b, _c, _d, _e, _f;
5048
+ var _a, _b, _c, _d, _e2, _f;
4377
5049
  const entries = {};
4378
5050
  if (input[_SN] != null) {
4379
5051
  entries[_SN] = input[_SN];
@@ -4439,7 +5111,7 @@ var se_CreateChangeSetInput = /* @__PURE__ */ __name((input, context) => {
4439
5111
  }
4440
5112
  if (input[_Ta] != null) {
4441
5113
  const memberEntries = se_Tags(input[_Ta], context);
4442
- if (((_e = input[_Ta]) == null ? void 0 : _e.length) === 0) {
5114
+ if (((_e2 = input[_Ta]) == null ? void 0 : _e2.length) === 0) {
4443
5115
  entries.Tags = [];
4444
5116
  }
4445
5117
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -4480,8 +5152,36 @@ var se_CreateChangeSetInput = /* @__PURE__ */ __name((input, context) => {
4480
5152
  }
4481
5153
  return entries;
4482
5154
  }, "se_CreateChangeSetInput");
5155
+ var se_CreateGeneratedTemplateInput = /* @__PURE__ */ __name((input, context) => {
5156
+ var _a;
5157
+ const entries = {};
5158
+ if (input[_R] != null) {
5159
+ const memberEntries = se_ResourceDefinitions(input[_R], context);
5160
+ if (((_a = input[_R]) == null ? void 0 : _a.length) === 0) {
5161
+ entries.Resources = [];
5162
+ }
5163
+ Object.entries(memberEntries).forEach(([key, value]) => {
5164
+ const loc = `Resources.${key}`;
5165
+ entries[loc] = value;
5166
+ });
5167
+ }
5168
+ if (input[_GTN] != null) {
5169
+ entries[_GTN] = input[_GTN];
5170
+ }
5171
+ if (input[_SN] != null) {
5172
+ entries[_SN] = input[_SN];
5173
+ }
5174
+ if (input[_TC] != null) {
5175
+ const memberEntries = se_TemplateConfiguration(input[_TC], context);
5176
+ Object.entries(memberEntries).forEach(([key, value]) => {
5177
+ const loc = `TemplateConfiguration.${key}`;
5178
+ entries[loc] = value;
5179
+ });
5180
+ }
5181
+ return entries;
5182
+ }, "se_CreateGeneratedTemplateInput");
4483
5183
  var se_CreateStackInput = /* @__PURE__ */ __name((input, context) => {
4484
- var _a, _b, _c, _d, _e;
5184
+ var _a, _b, _c, _d, _e2;
4485
5185
  const entries = {};
4486
5186
  if (input[_SN] != null) {
4487
5187
  entries[_SN] = input[_SN];
@@ -4559,7 +5259,7 @@ var se_CreateStackInput = /* @__PURE__ */ __name((input, context) => {
4559
5259
  }
4560
5260
  if (input[_Ta] != null) {
4561
5261
  const memberEntries = se_Tags(input[_Ta], context);
4562
- if (((_e = input[_Ta]) == null ? void 0 : _e.length) === 0) {
5262
+ if (((_e2 = input[_Ta]) == null ? void 0 : _e2.length) === 0) {
4563
5263
  entries.Tags = [];
4564
5264
  }
4565
5265
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -4601,9 +5301,9 @@ var se_CreateStackInstancesInput = /* @__PURE__ */ __name((input, context) => {
4601
5301
  entries[loc] = value;
4602
5302
  });
4603
5303
  }
4604
- if (input[_R] != null) {
4605
- const memberEntries = se_RegionList(input[_R], context);
4606
- if (((_b = input[_R]) == null ? void 0 : _b.length) === 0) {
5304
+ if (input[_Re] != null) {
5305
+ const memberEntries = se_RegionList(input[_Re], context);
5306
+ if (((_b = input[_Re]) == null ? void 0 : _b.length) === 0) {
4607
5307
  entries.Regions = [];
4608
5308
  }
4609
5309
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -4748,6 +5448,13 @@ var se_DeleteChangeSetInput = /* @__PURE__ */ __name((input, context) => {
4748
5448
  }
4749
5449
  return entries;
4750
5450
  }, "se_DeleteChangeSetInput");
5451
+ var se_DeleteGeneratedTemplateInput = /* @__PURE__ */ __name((input, context) => {
5452
+ const entries = {};
5453
+ if (input[_GTN] != null) {
5454
+ entries[_GTN] = input[_GTN];
5455
+ }
5456
+ return entries;
5457
+ }, "se_DeleteGeneratedTemplateInput");
4751
5458
  var se_DeleteStackInput = /* @__PURE__ */ __name((input, context) => {
4752
5459
  var _a;
4753
5460
  const entries = {};
@@ -4795,9 +5502,9 @@ var se_DeleteStackInstancesInput = /* @__PURE__ */ __name((input, context) => {
4795
5502
  entries[loc] = value;
4796
5503
  });
4797
5504
  }
4798
- if (input[_R] != null) {
4799
- const memberEntries = se_RegionList(input[_R], context);
4800
- if (((_b = input[_R]) == null ? void 0 : _b.length) === 0) {
5505
+ if (input[_Re] != null) {
5506
+ const memberEntries = se_RegionList(input[_Re], context);
5507
+ if (((_b = input[_Re]) == null ? void 0 : _b.length) === 0) {
4801
5508
  entries.Regions = [];
4802
5509
  }
4803
5510
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -4919,6 +5626,13 @@ var se_DescribeChangeSetInput = /* @__PURE__ */ __name((input, context) => {
4919
5626
  }
4920
5627
  return entries;
4921
5628
  }, "se_DescribeChangeSetInput");
5629
+ var se_DescribeGeneratedTemplateInput = /* @__PURE__ */ __name((input, context) => {
5630
+ const entries = {};
5631
+ if (input[_GTN] != null) {
5632
+ entries[_GTN] = input[_GTN];
5633
+ }
5634
+ return entries;
5635
+ }, "se_DescribeGeneratedTemplateInput");
4922
5636
  var se_DescribeOrganizationsAccessInput = /* @__PURE__ */ __name((input, context) => {
4923
5637
  const entries = {};
4924
5638
  if (input[_CA] != null) {
@@ -4933,6 +5647,13 @@ var se_DescribePublisherInput = /* @__PURE__ */ __name((input, context) => {
4933
5647
  }
4934
5648
  return entries;
4935
5649
  }, "se_DescribePublisherInput");
5650
+ var se_DescribeResourceScanInput = /* @__PURE__ */ __name((input, context) => {
5651
+ const entries = {};
5652
+ if (input[_RSI] != null) {
5653
+ entries[_RSI] = input[_RSI];
5654
+ }
5655
+ return entries;
5656
+ }, "se_DescribeResourceScanInput");
4936
5657
  var se_DescribeStackDriftDetectionStatusInput = /* @__PURE__ */ __name((input, context) => {
4937
5658
  const entries = {};
4938
5659
  if (input[_SDDI] != null) {
@@ -5166,6 +5887,16 @@ var se_ExecuteChangeSetInput = /* @__PURE__ */ __name((input, context) => {
5166
5887
  }
5167
5888
  return entries;
5168
5889
  }, "se_ExecuteChangeSetInput");
5890
+ var se_GetGeneratedTemplateInput = /* @__PURE__ */ __name((input, context) => {
5891
+ const entries = {};
5892
+ if (input[_F] != null) {
5893
+ entries[_F] = input[_F];
5894
+ }
5895
+ if (input[_GTN] != null) {
5896
+ entries[_GTN] = input[_GTN];
5897
+ }
5898
+ return entries;
5899
+ }, "se_GetGeneratedTemplateInput");
5169
5900
  var se_GetStackPolicyInput = /* @__PURE__ */ __name((input, context) => {
5170
5901
  const entries = {};
5171
5902
  if (input[_SN] != null) {
@@ -5258,7 +5989,29 @@ var se_ImportStacksToStackSetInput = /* @__PURE__ */ __name((input, context) =>
5258
5989
  entries[_CA] = input[_CA];
5259
5990
  }
5260
5991
  return entries;
5261
- }, "se_ImportStacksToStackSetInput");
5992
+ }, "se_ImportStacksToStackSetInput");
5993
+ var se_JazzLogicalResourceIds = /* @__PURE__ */ __name((input, context) => {
5994
+ const entries = {};
5995
+ let counter = 1;
5996
+ for (const entry of input) {
5997
+ if (entry === null) {
5998
+ continue;
5999
+ }
6000
+ entries[`member.${counter}`] = entry;
6001
+ counter++;
6002
+ }
6003
+ return entries;
6004
+ }, "se_JazzLogicalResourceIds");
6005
+ var se_JazzResourceIdentifierProperties = /* @__PURE__ */ __name((input, context) => {
6006
+ const entries = {};
6007
+ let counter = 1;
6008
+ Object.keys(input).filter((key) => input[key] != null).forEach((key) => {
6009
+ entries[`entry.${counter}.key`] = key;
6010
+ entries[`entry.${counter}.value`] = input[key];
6011
+ counter++;
6012
+ });
6013
+ return entries;
6014
+ }, "se_JazzResourceIdentifierProperties");
5262
6015
  var se_ListChangeSetsInput = /* @__PURE__ */ __name((input, context) => {
5263
6016
  const entries = {};
5264
6017
  if (input[_SN] != null) {
@@ -5276,6 +6029,16 @@ var se_ListExportsInput = /* @__PURE__ */ __name((input, context) => {
5276
6029
  }
5277
6030
  return entries;
5278
6031
  }, "se_ListExportsInput");
6032
+ var se_ListGeneratedTemplatesInput = /* @__PURE__ */ __name((input, context) => {
6033
+ const entries = {};
6034
+ if (input[_NT] != null) {
6035
+ entries[_NT] = input[_NT];
6036
+ }
6037
+ if (input[_MR] != null) {
6038
+ entries[_MR] = input[_MR];
6039
+ }
6040
+ return entries;
6041
+ }, "se_ListGeneratedTemplatesInput");
5279
6042
  var se_ListImportsInput = /* @__PURE__ */ __name((input, context) => {
5280
6043
  const entries = {};
5281
6044
  if (input[_EN] != null) {
@@ -5286,6 +6049,65 @@ var se_ListImportsInput = /* @__PURE__ */ __name((input, context) => {
5286
6049
  }
5287
6050
  return entries;
5288
6051
  }, "se_ListImportsInput");
6052
+ var se_ListResourceScanRelatedResourcesInput = /* @__PURE__ */ __name((input, context) => {
6053
+ var _a;
6054
+ const entries = {};
6055
+ if (input[_RSI] != null) {
6056
+ entries[_RSI] = input[_RSI];
6057
+ }
6058
+ if (input[_R] != null) {
6059
+ const memberEntries = se_ScannedResourceIdentifiers(input[_R], context);
6060
+ if (((_a = input[_R]) == null ? void 0 : _a.length) === 0) {
6061
+ entries.Resources = [];
6062
+ }
6063
+ Object.entries(memberEntries).forEach(([key, value]) => {
6064
+ const loc = `Resources.${key}`;
6065
+ entries[loc] = value;
6066
+ });
6067
+ }
6068
+ if (input[_NT] != null) {
6069
+ entries[_NT] = input[_NT];
6070
+ }
6071
+ if (input[_MR] != null) {
6072
+ entries[_MR] = input[_MR];
6073
+ }
6074
+ return entries;
6075
+ }, "se_ListResourceScanRelatedResourcesInput");
6076
+ var se_ListResourceScanResourcesInput = /* @__PURE__ */ __name((input, context) => {
6077
+ const entries = {};
6078
+ if (input[_RSI] != null) {
6079
+ entries[_RSI] = input[_RSI];
6080
+ }
6081
+ if (input[_RI] != null) {
6082
+ entries[_RI] = input[_RI];
6083
+ }
6084
+ if (input[_RTP] != null) {
6085
+ entries[_RTP] = input[_RTP];
6086
+ }
6087
+ if (input[_TK] != null) {
6088
+ entries[_TK] = input[_TK];
6089
+ }
6090
+ if (input[_TV] != null) {
6091
+ entries[_TV] = input[_TV];
6092
+ }
6093
+ if (input[_NT] != null) {
6094
+ entries[_NT] = input[_NT];
6095
+ }
6096
+ if (input[_MR] != null) {
6097
+ entries[_MR] = input[_MR];
6098
+ }
6099
+ return entries;
6100
+ }, "se_ListResourceScanResourcesInput");
6101
+ var se_ListResourceScansInput = /* @__PURE__ */ __name((input, context) => {
6102
+ const entries = {};
6103
+ if (input[_NT] != null) {
6104
+ entries[_NT] = input[_NT];
6105
+ }
6106
+ if (input[_MR] != null) {
6107
+ entries[_MR] = input[_MR];
6108
+ }
6109
+ return entries;
6110
+ }, "se_ListResourceScansInput");
5289
6111
  var se_ListStackInstanceResourceDriftsInput = /* @__PURE__ */ __name((input, context) => {
5290
6112
  var _a;
5291
6113
  const entries = {};
@@ -5334,9 +6156,9 @@ var se_ListStackInstancesInput = /* @__PURE__ */ __name((input, context) => {
5334
6156
  if (input[_MR] != null) {
5335
6157
  entries[_MR] = input[_MR];
5336
6158
  }
5337
- if (input[_F] != null) {
5338
- const memberEntries = se_StackInstanceFilters(input[_F], context);
5339
- if (((_a = input[_F]) == null ? void 0 : _a.length) === 0) {
6159
+ if (input[_Fi] != null) {
6160
+ const memberEntries = se_StackInstanceFilters(input[_Fi], context);
6161
+ if (((_a = input[_Fi]) == null ? void 0 : _a.length) === 0) {
5340
6162
  entries.Filters = [];
5341
6163
  }
5342
6164
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -5383,9 +6205,9 @@ var se_ListStackSetOperationResultsInput = /* @__PURE__ */ __name((input, contex
5383
6205
  if (input[_CA] != null) {
5384
6206
  entries[_CA] = input[_CA];
5385
6207
  }
5386
- if (input[_F] != null) {
5387
- const memberEntries = se_OperationResultFilters(input[_F], context);
5388
- if (((_a = input[_F]) == null ? void 0 : _a.length) === 0) {
6208
+ if (input[_Fi] != null) {
6209
+ const memberEntries = se_OperationResultFilters(input[_Fi], context);
6210
+ if (((_a = input[_Fi]) == null ? void 0 : _a.length) === 0) {
5389
6211
  entries.Filters = [];
5390
6212
  }
5391
6213
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -5481,8 +6303,8 @@ var se_ListTypesInput = /* @__PURE__ */ __name((input, context) => {
5481
6303
  if (input[_T] != null) {
5482
6304
  entries[_T] = input[_T];
5483
6305
  }
5484
- if (input[_F] != null) {
5485
- const memberEntries = se_TypeFilters(input[_F], context);
6306
+ if (input[_Fi] != null) {
6307
+ const memberEntries = se_TypeFilters(input[_Fi], context);
5486
6308
  Object.entries(memberEntries).forEach(([key, value]) => {
5487
6309
  const loc = `Filters.${key}`;
5488
6310
  entries[loc] = value;
@@ -5719,6 +6541,38 @@ var se_RegisterTypeInput = /* @__PURE__ */ __name((input, context) => {
5719
6541
  }
5720
6542
  return entries;
5721
6543
  }, "se_RegisterTypeInput");
6544
+ var se_ResourceDefinition = /* @__PURE__ */ __name((input, context) => {
6545
+ const entries = {};
6546
+ if (input[_RTes] != null) {
6547
+ entries[_RTes] = input[_RTes];
6548
+ }
6549
+ if (input[_LRI] != null) {
6550
+ entries[_LRI] = input[_LRI];
6551
+ }
6552
+ if (input[_RI] != null) {
6553
+ const memberEntries = se_ResourceIdentifierProperties(input[_RI], context);
6554
+ Object.entries(memberEntries).forEach(([key, value]) => {
6555
+ const loc = `ResourceIdentifier.${key}`;
6556
+ entries[loc] = value;
6557
+ });
6558
+ }
6559
+ return entries;
6560
+ }, "se_ResourceDefinition");
6561
+ var se_ResourceDefinitions = /* @__PURE__ */ __name((input, context) => {
6562
+ const entries = {};
6563
+ let counter = 1;
6564
+ for (const entry of input) {
6565
+ if (entry === null) {
6566
+ continue;
6567
+ }
6568
+ const memberEntries = se_ResourceDefinition(entry, context);
6569
+ Object.entries(memberEntries).forEach(([key, value]) => {
6570
+ entries[`member.${counter}.${key}`] = value;
6571
+ });
6572
+ counter++;
6573
+ }
6574
+ return entries;
6575
+ }, "se_ResourceDefinitions");
5722
6576
  var se_ResourceIdentifierProperties = /* @__PURE__ */ __name((input, context) => {
5723
6577
  const entries = {};
5724
6578
  let counter = 1;
@@ -5856,6 +6710,35 @@ var se_RollbackTriggers = /* @__PURE__ */ __name((input, context) => {
5856
6710
  }
5857
6711
  return entries;
5858
6712
  }, "se_RollbackTriggers");
6713
+ var se_ScannedResourceIdentifier = /* @__PURE__ */ __name((input, context) => {
6714
+ const entries = {};
6715
+ if (input[_RTes] != null) {
6716
+ entries[_RTes] = input[_RTes];
6717
+ }
6718
+ if (input[_RI] != null) {
6719
+ const memberEntries = se_JazzResourceIdentifierProperties(input[_RI], context);
6720
+ Object.entries(memberEntries).forEach(([key, value]) => {
6721
+ const loc = `ResourceIdentifier.${key}`;
6722
+ entries[loc] = value;
6723
+ });
6724
+ }
6725
+ return entries;
6726
+ }, "se_ScannedResourceIdentifier");
6727
+ var se_ScannedResourceIdentifiers = /* @__PURE__ */ __name((input, context) => {
6728
+ const entries = {};
6729
+ let counter = 1;
6730
+ for (const entry of input) {
6731
+ if (entry === null) {
6732
+ continue;
6733
+ }
6734
+ const memberEntries = se_ScannedResourceIdentifier(entry, context);
6735
+ Object.entries(memberEntries).forEach(([key, value]) => {
6736
+ entries[`member.${counter}.${key}`] = value;
6737
+ });
6738
+ counter++;
6739
+ }
6740
+ return entries;
6741
+ }, "se_ScannedResourceIdentifiers");
5859
6742
  var se_SetStackPolicyInput = /* @__PURE__ */ __name((input, context) => {
5860
6743
  const entries = {};
5861
6744
  if (input[_SN] != null) {
@@ -6014,6 +6897,13 @@ var se_StackStatusFilter = /* @__PURE__ */ __name((input, context) => {
6014
6897
  }
6015
6898
  return entries;
6016
6899
  }, "se_StackStatusFilter");
6900
+ var se_StartResourceScanInput = /* @__PURE__ */ __name((input, context) => {
6901
+ const entries = {};
6902
+ if (input[_CRT] != null) {
6903
+ entries[_CRT] = input[_CRT];
6904
+ }
6905
+ return entries;
6906
+ }, "se_StartResourceScanInput");
6017
6907
  var se_StopStackSetOperationInput = /* @__PURE__ */ __name((input, context) => {
6018
6908
  const entries = {};
6019
6909
  if (input[_SSN] != null) {
@@ -6052,6 +6942,16 @@ var se_Tags = /* @__PURE__ */ __name((input, context) => {
6052
6942
  }
6053
6943
  return entries;
6054
6944
  }, "se_Tags");
6945
+ var se_TemplateConfiguration = /* @__PURE__ */ __name((input, context) => {
6946
+ const entries = {};
6947
+ if (input[_DPe] != null) {
6948
+ entries[_DPe] = input[_DPe];
6949
+ }
6950
+ if (input[_URP] != null) {
6951
+ entries[_URP] = input[_URP];
6952
+ }
6953
+ return entries;
6954
+ }, "se_TemplateConfiguration");
6055
6955
  var se_TemplateSummaryConfig = /* @__PURE__ */ __name((input, context) => {
6056
6956
  const entries = {};
6057
6957
  if (input[_TURTAW] != null) {
@@ -6125,8 +7025,49 @@ var se_TypeFilters = /* @__PURE__ */ __name((input, context) => {
6125
7025
  }
6126
7026
  return entries;
6127
7027
  }, "se_TypeFilters");
7028
+ var se_UpdateGeneratedTemplateInput = /* @__PURE__ */ __name((input, context) => {
7029
+ var _a, _b;
7030
+ const entries = {};
7031
+ if (input[_GTN] != null) {
7032
+ entries[_GTN] = input[_GTN];
7033
+ }
7034
+ if (input[_NGTN] != null) {
7035
+ entries[_NGTN] = input[_NGTN];
7036
+ }
7037
+ if (input[_AR] != null) {
7038
+ const memberEntries = se_ResourceDefinitions(input[_AR], context);
7039
+ if (((_a = input[_AR]) == null ? void 0 : _a.length) === 0) {
7040
+ entries.AddResources = [];
7041
+ }
7042
+ Object.entries(memberEntries).forEach(([key, value]) => {
7043
+ const loc = `AddResources.${key}`;
7044
+ entries[loc] = value;
7045
+ });
7046
+ }
7047
+ if (input[_RRe] != null) {
7048
+ const memberEntries = se_JazzLogicalResourceIds(input[_RRe], context);
7049
+ if (((_b = input[_RRe]) == null ? void 0 : _b.length) === 0) {
7050
+ entries.RemoveResources = [];
7051
+ }
7052
+ Object.entries(memberEntries).forEach(([key, value]) => {
7053
+ const loc = `RemoveResources.${key}`;
7054
+ entries[loc] = value;
7055
+ });
7056
+ }
7057
+ if (input[_RAR] != null) {
7058
+ entries[_RAR] = input[_RAR];
7059
+ }
7060
+ if (input[_TC] != null) {
7061
+ const memberEntries = se_TemplateConfiguration(input[_TC], context);
7062
+ Object.entries(memberEntries).forEach(([key, value]) => {
7063
+ const loc = `TemplateConfiguration.${key}`;
7064
+ entries[loc] = value;
7065
+ });
7066
+ }
7067
+ return entries;
7068
+ }, "se_UpdateGeneratedTemplateInput");
6128
7069
  var se_UpdateStackInput = /* @__PURE__ */ __name((input, context) => {
6129
- var _a, _b, _c, _d, _e;
7070
+ var _a, _b, _c, _d, _e2;
6130
7071
  const entries = {};
6131
7072
  if (input[_SN] != null) {
6132
7073
  entries[_SN] = input[_SN];
@@ -6204,7 +7145,7 @@ var se_UpdateStackInput = /* @__PURE__ */ __name((input, context) => {
6204
7145
  }
6205
7146
  if (input[_Ta] != null) {
6206
7147
  const memberEntries = se_Tags(input[_Ta], context);
6207
- if (((_e = input[_Ta]) == null ? void 0 : _e.length) === 0) {
7148
+ if (((_e2 = input[_Ta]) == null ? void 0 : _e2.length) === 0) {
6208
7149
  entries.Tags = [];
6209
7150
  }
6210
7151
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -6246,9 +7187,9 @@ var se_UpdateStackInstancesInput = /* @__PURE__ */ __name((input, context) => {
6246
7187
  entries[loc] = value;
6247
7188
  });
6248
7189
  }
6249
- if (input[_R] != null) {
6250
- const memberEntries = se_RegionList(input[_R], context);
6251
- if (((_b = input[_R]) == null ? void 0 : _b.length) === 0) {
7190
+ if (input[_Re] != null) {
7191
+ const memberEntries = se_RegionList(input[_Re], context);
7192
+ if (((_b = input[_Re]) == null ? void 0 : _b.length) === 0) {
6252
7193
  entries.Regions = [];
6253
7194
  }
6254
7195
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -6285,7 +7226,7 @@ var se_UpdateStackInstancesInput = /* @__PURE__ */ __name((input, context) => {
6285
7226
  return entries;
6286
7227
  }, "se_UpdateStackInstancesInput");
6287
7228
  var se_UpdateStackSetInput = /* @__PURE__ */ __name((input, context) => {
6288
- var _a, _b, _c, _d, _e;
7229
+ var _a, _b, _c, _d, _e2;
6289
7230
  const entries = {};
6290
7231
  if (input[_SSN] != null) {
6291
7232
  entries[_SSN] = input[_SSN];
@@ -6378,9 +7319,9 @@ var se_UpdateStackSetInput = /* @__PURE__ */ __name((input, context) => {
6378
7319
  entries[loc] = value;
6379
7320
  });
6380
7321
  }
6381
- if (input[_R] != null) {
6382
- const memberEntries = se_RegionList(input[_R], context);
6383
- if (((_e = input[_R]) == null ? void 0 : _e.length) === 0) {
7322
+ if (input[_Re] != null) {
7323
+ const memberEntries = se_RegionList(input[_Re], context);
7324
+ if (((_e2 = input[_Re]) == null ? void 0 : _e2.length) === 0) {
6384
7325
  entries.Regions = [];
6385
7326
  }
6386
7327
  Object.entries(memberEntries).forEach(([key, value]) => {
@@ -6514,9 +7455,9 @@ var de_BatchDescribeTypeConfigurationsOutput = /* @__PURE__ */ __name((output, c
6514
7455
  contents[_UTC] = de_UnprocessedTypeConfigurations((0, import_smithy_client.getArrayIfSingleItem)(output[_UTC][_m]), context);
6515
7456
  }
6516
7457
  if (output.TypeConfigurations === "") {
6517
- contents[_TC] = [];
6518
- } else if (output[_TC] != null && output[_TC][_m] != null) {
6519
- contents[_TC] = de_TypeConfigurationDetailsList((0, import_smithy_client.getArrayIfSingleItem)(output[_TC][_m]), context);
7458
+ contents[_TCy] = [];
7459
+ } else if (output[_TCy] != null && output[_TCy][_m] != null) {
7460
+ contents[_TCy] = de_TypeConfigurationDetailsList((0, import_smithy_client.getArrayIfSingleItem)(output[_TCy][_m]), context);
6520
7461
  }
6521
7462
  return contents;
6522
7463
  }, "de_BatchDescribeTypeConfigurationsOutput");
@@ -6655,6 +7596,13 @@ var de_ChangeSetSummary = /* @__PURE__ */ __name((output, context) => {
6655
7596
  }
6656
7597
  return contents;
6657
7598
  }, "de_ChangeSetSummary");
7599
+ var de_ConcurrentResourcesLimitExceededException = /* @__PURE__ */ __name((output, context) => {
7600
+ const contents = {};
7601
+ if (output[_M] != null) {
7602
+ contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
7603
+ }
7604
+ return contents;
7605
+ }, "de_ConcurrentResourcesLimitExceededException");
6658
7606
  var de_ContinueUpdateRollbackOutput = /* @__PURE__ */ __name((output, context) => {
6659
7607
  const contents = {};
6660
7608
  return contents;
@@ -6676,6 +7624,13 @@ var de_CreatedButModifiedException = /* @__PURE__ */ __name((output, context) =>
6676
7624
  }
6677
7625
  return contents;
6678
7626
  }, "de_CreatedButModifiedException");
7627
+ var de_CreateGeneratedTemplateOutput = /* @__PURE__ */ __name((output, context) => {
7628
+ const contents = {};
7629
+ if (output[_GTI] != null) {
7630
+ contents[_GTI] = (0, import_smithy_client.expectString)(output[_GTI]);
7631
+ }
7632
+ return contents;
7633
+ }, "de_CreateGeneratedTemplateOutput");
6679
7634
  var de_CreateStackInstancesOutput = /* @__PURE__ */ __name((output, context) => {
6680
7635
  const contents = {};
6681
7636
  if (output[_OI] != null) {
@@ -6860,6 +7815,45 @@ var de_DescribeChangeSetOutput = /* @__PURE__ */ __name((output, context) => {
6860
7815
  }
6861
7816
  return contents;
6862
7817
  }, "de_DescribeChangeSetOutput");
7818
+ var de_DescribeGeneratedTemplateOutput = /* @__PURE__ */ __name((output, context) => {
7819
+ const contents = {};
7820
+ if (output[_GTI] != null) {
7821
+ contents[_GTI] = (0, import_smithy_client.expectString)(output[_GTI]);
7822
+ }
7823
+ if (output[_GTN] != null) {
7824
+ contents[_GTN] = (0, import_smithy_client.expectString)(output[_GTN]);
7825
+ }
7826
+ if (output.Resources === "") {
7827
+ contents[_R] = [];
7828
+ } else if (output[_R] != null && output[_R][_m] != null) {
7829
+ contents[_R] = de_ResourceDetails((0, import_smithy_client.getArrayIfSingleItem)(output[_R][_m]), context);
7830
+ }
7831
+ if (output[_S] != null) {
7832
+ contents[_S] = (0, import_smithy_client.expectString)(output[_S]);
7833
+ }
7834
+ if (output[_SRt] != null) {
7835
+ contents[_SRt] = (0, import_smithy_client.expectString)(output[_SRt]);
7836
+ }
7837
+ if (output[_CTr] != null) {
7838
+ contents[_CTr] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTr]));
7839
+ }
7840
+ if (output[_LUT] != null) {
7841
+ contents[_LUT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LUT]));
7842
+ }
7843
+ if (output[_Pr] != null) {
7844
+ contents[_Pr] = de_TemplateProgress(output[_Pr], context);
7845
+ }
7846
+ if (output[_SI] != null) {
7847
+ contents[_SI] = (0, import_smithy_client.expectString)(output[_SI]);
7848
+ }
7849
+ if (output[_TC] != null) {
7850
+ contents[_TC] = de_TemplateConfiguration(output[_TC], context);
7851
+ }
7852
+ if (output[_TW] != null) {
7853
+ contents[_TW] = (0, import_smithy_client.strictParseInt32)(output[_TW]);
7854
+ }
7855
+ return contents;
7856
+ }, "de_DescribeGeneratedTemplateOutput");
6863
7857
  var de_DescribeOrganizationsAccessOutput = /* @__PURE__ */ __name((output, context) => {
6864
7858
  const contents = {};
6865
7859
  if (output[_S] != null) {
@@ -6883,6 +7877,39 @@ var de_DescribePublisherOutput = /* @__PURE__ */ __name((output, context) => {
6883
7877
  }
6884
7878
  return contents;
6885
7879
  }, "de_DescribePublisherOutput");
7880
+ var de_DescribeResourceScanOutput = /* @__PURE__ */ __name((output, context) => {
7881
+ const contents = {};
7882
+ if (output[_RSI] != null) {
7883
+ contents[_RSI] = (0, import_smithy_client.expectString)(output[_RSI]);
7884
+ }
7885
+ if (output[_S] != null) {
7886
+ contents[_S] = (0, import_smithy_client.expectString)(output[_S]);
7887
+ }
7888
+ if (output[_SRt] != null) {
7889
+ contents[_SRt] = (0, import_smithy_client.expectString)(output[_SRt]);
7890
+ }
7891
+ if (output[_ST] != null) {
7892
+ contents[_ST] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ST]));
7893
+ }
7894
+ if (output[_ET] != null) {
7895
+ contents[_ET] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ET]));
7896
+ }
7897
+ if (output[_PC] != null) {
7898
+ contents[_PC] = (0, import_smithy_client.strictParseFloat)(output[_PC]);
7899
+ }
7900
+ if (output.ResourceTypes === "") {
7901
+ contents[_RTe] = [];
7902
+ } else if (output[_RTe] != null && output[_RTe][_m] != null) {
7903
+ contents[_RTe] = de_ResourceTypes((0, import_smithy_client.getArrayIfSingleItem)(output[_RTe][_m]), context);
7904
+ }
7905
+ if (output[_RSes] != null) {
7906
+ contents[_RSes] = (0, import_smithy_client.strictParseInt32)(output[_RSes]);
7907
+ }
7908
+ if (output[_RRes] != null) {
7909
+ contents[_RRes] = (0, import_smithy_client.strictParseInt32)(output[_RRes]);
7910
+ }
7911
+ return contents;
7912
+ }, "de_DescribeResourceScanOutput");
6886
7913
  var de_DescribeStackDriftDetectionStatusOutput = /* @__PURE__ */ __name((output, context) => {
6887
7914
  const contents = {};
6888
7915
  if (output[_SI] != null) {
@@ -7134,6 +8161,23 @@ var de_Exports = /* @__PURE__ */ __name((output, context) => {
7134
8161
  return de_Export(entry, context);
7135
8162
  });
7136
8163
  }, "de_Exports");
8164
+ var de_GeneratedTemplateNotFoundException = /* @__PURE__ */ __name((output, context) => {
8165
+ const contents = {};
8166
+ if (output[_M] != null) {
8167
+ contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
8168
+ }
8169
+ return contents;
8170
+ }, "de_GeneratedTemplateNotFoundException");
8171
+ var de_GetGeneratedTemplateOutput = /* @__PURE__ */ __name((output, context) => {
8172
+ const contents = {};
8173
+ if (output[_S] != null) {
8174
+ contents[_S] = (0, import_smithy_client.expectString)(output[_S]);
8175
+ }
8176
+ if (output[_TB] != null) {
8177
+ contents[_TB] = (0, import_smithy_client.expectString)(output[_TB]);
8178
+ }
8179
+ return contents;
8180
+ }, "de_GetGeneratedTemplateOutput");
7137
8181
  var de_GetStackPolicyOutput = /* @__PURE__ */ __name((output, context) => {
7138
8182
  const contents = {};
7139
8183
  if (output[_SPB] != null) {
@@ -7237,6 +8281,15 @@ var de_InvalidStateTransitionException = /* @__PURE__ */ __name((output, context
7237
8281
  }
7238
8282
  return contents;
7239
8283
  }, "de_InvalidStateTransitionException");
8284
+ var de_JazzResourceIdentifierProperties = /* @__PURE__ */ __name((output, context) => {
8285
+ return output.reduce((acc, pair) => {
8286
+ if (pair["value"] === null) {
8287
+ return acc;
8288
+ }
8289
+ acc[pair["key"]] = (0, import_smithy_client.expectString)(pair["value"]);
8290
+ return acc;
8291
+ }, {});
8292
+ }, "de_JazzResourceIdentifierProperties");
7240
8293
  var de_LimitExceededException = /* @__PURE__ */ __name((output, context) => {
7241
8294
  const contents = {};
7242
8295
  if (output[_M] != null) {
@@ -7268,6 +8321,18 @@ var de_ListExportsOutput = /* @__PURE__ */ __name((output, context) => {
7268
8321
  }
7269
8322
  return contents;
7270
8323
  }, "de_ListExportsOutput");
8324
+ var de_ListGeneratedTemplatesOutput = /* @__PURE__ */ __name((output, context) => {
8325
+ const contents = {};
8326
+ if (output.Summaries === "") {
8327
+ contents[_Su] = [];
8328
+ } else if (output[_Su] != null && output[_Su][_m] != null) {
8329
+ contents[_Su] = de_TemplateSummaries((0, import_smithy_client.getArrayIfSingleItem)(output[_Su][_m]), context);
8330
+ }
8331
+ if (output[_NT] != null) {
8332
+ contents[_NT] = (0, import_smithy_client.expectString)(output[_NT]);
8333
+ }
8334
+ return contents;
8335
+ }, "de_ListGeneratedTemplatesOutput");
7271
8336
  var de_ListImportsOutput = /* @__PURE__ */ __name((output, context) => {
7272
8337
  const contents = {};
7273
8338
  if (output.Imports === "") {
@@ -7280,6 +8345,42 @@ var de_ListImportsOutput = /* @__PURE__ */ __name((output, context) => {
7280
8345
  }
7281
8346
  return contents;
7282
8347
  }, "de_ListImportsOutput");
8348
+ var de_ListResourceScanRelatedResourcesOutput = /* @__PURE__ */ __name((output, context) => {
8349
+ const contents = {};
8350
+ if (output.RelatedResources === "") {
8351
+ contents[_RRel] = [];
8352
+ } else if (output[_RRel] != null && output[_RRel][_m] != null) {
8353
+ contents[_RRel] = de_RelatedResources((0, import_smithy_client.getArrayIfSingleItem)(output[_RRel][_m]), context);
8354
+ }
8355
+ if (output[_NT] != null) {
8356
+ contents[_NT] = (0, import_smithy_client.expectString)(output[_NT]);
8357
+ }
8358
+ return contents;
8359
+ }, "de_ListResourceScanRelatedResourcesOutput");
8360
+ var de_ListResourceScanResourcesOutput = /* @__PURE__ */ __name((output, context) => {
8361
+ const contents = {};
8362
+ if (output.Resources === "") {
8363
+ contents[_R] = [];
8364
+ } else if (output[_R] != null && output[_R][_m] != null) {
8365
+ contents[_R] = de_ScannedResources((0, import_smithy_client.getArrayIfSingleItem)(output[_R][_m]), context);
8366
+ }
8367
+ if (output[_NT] != null) {
8368
+ contents[_NT] = (0, import_smithy_client.expectString)(output[_NT]);
8369
+ }
8370
+ return contents;
8371
+ }, "de_ListResourceScanResourcesOutput");
8372
+ var de_ListResourceScansOutput = /* @__PURE__ */ __name((output, context) => {
8373
+ const contents = {};
8374
+ if (output.ResourceScanSummaries === "") {
8375
+ contents[_RSS] = [];
8376
+ } else if (output[_RSS] != null && output[_RSS][_m] != null) {
8377
+ contents[_RSS] = de_ResourceScanSummaries((0, import_smithy_client.getArrayIfSingleItem)(output[_RSS][_m]), context);
8378
+ }
8379
+ if (output[_NT] != null) {
8380
+ contents[_NT] = (0, import_smithy_client.expectString)(output[_NT]);
8381
+ }
8382
+ return contents;
8383
+ }, "de_ListResourceScansOutput");
7283
8384
  var de_ListStackInstanceResourceDriftsOutput = /* @__PURE__ */ __name((output, context) => {
7284
8385
  const contents = {};
7285
8386
  if (output.Summaries === "") {
@@ -7307,9 +8408,9 @@ var de_ListStackInstancesOutput = /* @__PURE__ */ __name((output, context) => {
7307
8408
  var de_ListStackResourcesOutput = /* @__PURE__ */ __name((output, context) => {
7308
8409
  const contents = {};
7309
8410
  if (output.StackResourceSummaries === "") {
7310
- contents[_SRS] = [];
7311
- } else if (output[_SRS] != null && output[_SRS][_m] != null) {
7312
- contents[_SRS] = de_StackResourceSummaries((0, import_smithy_client.getArrayIfSingleItem)(output[_SRS][_m]), context);
8411
+ contents[_SRSt] = [];
8412
+ } else if (output[_SRSt] != null && output[_SRSt][_m] != null) {
8413
+ contents[_SRSt] = de_StackResourceSummaries((0, import_smithy_client.getArrayIfSingleItem)(output[_SRSt][_m]), context);
7313
8414
  }
7314
8415
  if (output[_NT] != null) {
7315
8416
  contents[_NT] = (0, import_smithy_client.expectString)(output[_NT]);
@@ -7540,8 +8641,8 @@ var de_ParameterDeclaration = /* @__PURE__ */ __name((output, context) => {
7540
8641
  if (output[_D] != null) {
7541
8642
  contents[_D] = (0, import_smithy_client.expectString)(output[_D]);
7542
8643
  }
7543
- if (output[_PC] != null) {
7544
- contents[_PC] = de_ParameterConstraints(output[_PC], context);
8644
+ if (output[_PCa] != null) {
8645
+ contents[_PCa] = de_ParameterConstraints(output[_PCa], context);
7545
8646
  }
7546
8647
  return contents;
7547
8648
  }, "de_ParameterDeclaration");
@@ -7626,6 +8727,11 @@ var de_RegistrationTokenList = /* @__PURE__ */ __name((output, context) => {
7626
8727
  return (0, import_smithy_client.expectString)(entry);
7627
8728
  });
7628
8729
  }, "de_RegistrationTokenList");
8730
+ var de_RelatedResources = /* @__PURE__ */ __name((output, context) => {
8731
+ return (output || []).filter((e) => e != null).map((entry) => {
8732
+ return de_ScannedResource(entry, context);
8733
+ });
8734
+ }, "de_RelatedResources");
7629
8735
  var de_RequiredActivatedType = /* @__PURE__ */ __name((output, context) => {
7630
8736
  const contents = {};
7631
8737
  if (output[_TNA] != null) {
@@ -7663,8 +8769,8 @@ var de_ResourceChange = /* @__PURE__ */ __name((output, context) => {
7663
8769
  if (output[_RTes] != null) {
7664
8770
  contents[_RTes] = (0, import_smithy_client.expectString)(output[_RTes]);
7665
8771
  }
7666
- if (output[_Re] != null) {
7667
- contents[_Re] = (0, import_smithy_client.expectString)(output[_Re]);
8772
+ if (output[_Rep] != null) {
8773
+ contents[_Rep] = (0, import_smithy_client.expectString)(output[_Rep]);
7668
8774
  }
7669
8775
  if (output.Scope === "") {
7670
8776
  contents[_Sco] = [];
@@ -7692,19 +8798,59 @@ var de_ResourceChangeDetail = /* @__PURE__ */ __name((output, context) => {
7692
8798
  if (output[_Ev] != null) {
7693
8799
  contents[_Ev] = (0, import_smithy_client.expectString)(output[_Ev]);
7694
8800
  }
7695
- if (output[_CSh] != null) {
7696
- contents[_CSh] = (0, import_smithy_client.expectString)(output[_CSh]);
8801
+ if (output[_CSh] != null) {
8802
+ contents[_CSh] = (0, import_smithy_client.expectString)(output[_CSh]);
8803
+ }
8804
+ if (output[_CE] != null) {
8805
+ contents[_CE] = (0, import_smithy_client.expectString)(output[_CE]);
8806
+ }
8807
+ return contents;
8808
+ }, "de_ResourceChangeDetail");
8809
+ var de_ResourceChangeDetails = /* @__PURE__ */ __name((output, context) => {
8810
+ return (output || []).filter((e) => e != null).map((entry) => {
8811
+ return de_ResourceChangeDetail(entry, context);
8812
+ });
8813
+ }, "de_ResourceChangeDetails");
8814
+ var de_ResourceDetail = /* @__PURE__ */ __name((output, context) => {
8815
+ const contents = {};
8816
+ if (output[_RTes] != null) {
8817
+ contents[_RTes] = (0, import_smithy_client.expectString)(output[_RTes]);
8818
+ }
8819
+ if (output[_LRI] != null) {
8820
+ contents[_LRI] = (0, import_smithy_client.expectString)(output[_LRI]);
8821
+ }
8822
+ if (output.ResourceIdentifier === "") {
8823
+ contents[_RI] = {};
8824
+ } else if (output[_RI] != null && output[_RI][_e] != null) {
8825
+ contents[_RI] = de_ResourceIdentifierProperties((0, import_smithy_client.getArrayIfSingleItem)(output[_RI][_e]), context);
8826
+ }
8827
+ if (output[_RSeso] != null) {
8828
+ contents[_RSeso] = (0, import_smithy_client.expectString)(output[_RSeso]);
8829
+ }
8830
+ if (output[_RSR] != null) {
8831
+ contents[_RSR] = (0, import_smithy_client.expectString)(output[_RSR]);
7697
8832
  }
7698
- if (output[_CE] != null) {
7699
- contents[_CE] = (0, import_smithy_client.expectString)(output[_CE]);
8833
+ if (output.Warnings === "") {
8834
+ contents[_W] = [];
8835
+ } else if (output[_W] != null && output[_W][_m] != null) {
8836
+ contents[_W] = de_WarningDetails((0, import_smithy_client.getArrayIfSingleItem)(output[_W][_m]), context);
7700
8837
  }
7701
8838
  return contents;
7702
- }, "de_ResourceChangeDetail");
7703
- var de_ResourceChangeDetails = /* @__PURE__ */ __name((output, context) => {
8839
+ }, "de_ResourceDetail");
8840
+ var de_ResourceDetails = /* @__PURE__ */ __name((output, context) => {
7704
8841
  return (output || []).filter((e) => e != null).map((entry) => {
7705
- return de_ResourceChangeDetail(entry, context);
8842
+ return de_ResourceDetail(entry, context);
7706
8843
  });
7707
- }, "de_ResourceChangeDetails");
8844
+ }, "de_ResourceDetails");
8845
+ var de_ResourceIdentifierProperties = /* @__PURE__ */ __name((output, context) => {
8846
+ return output.reduce((acc, pair) => {
8847
+ if (pair["value"] === null) {
8848
+ return acc;
8849
+ }
8850
+ acc[pair["key"]] = (0, import_smithy_client.expectString)(pair["value"]);
8851
+ return acc;
8852
+ }, {});
8853
+ }, "de_ResourceIdentifierProperties");
7708
8854
  var de_ResourceIdentifiers = /* @__PURE__ */ __name((output, context) => {
7709
8855
  return (output || []).filter((e) => e != null).map((entry) => {
7710
8856
  return (0, import_smithy_client.expectString)(entry);
@@ -7732,6 +8878,54 @@ var de_ResourceIdentifierSummary = /* @__PURE__ */ __name((output, context) => {
7732
8878
  }
7733
8879
  return contents;
7734
8880
  }, "de_ResourceIdentifierSummary");
8881
+ var de_ResourceScanInProgressException = /* @__PURE__ */ __name((output, context) => {
8882
+ const contents = {};
8883
+ if (output[_M] != null) {
8884
+ contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
8885
+ }
8886
+ return contents;
8887
+ }, "de_ResourceScanInProgressException");
8888
+ var de_ResourceScanLimitExceededException = /* @__PURE__ */ __name((output, context) => {
8889
+ const contents = {};
8890
+ if (output[_M] != null) {
8891
+ contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
8892
+ }
8893
+ return contents;
8894
+ }, "de_ResourceScanLimitExceededException");
8895
+ var de_ResourceScanNotFoundException = /* @__PURE__ */ __name((output, context) => {
8896
+ const contents = {};
8897
+ if (output[_M] != null) {
8898
+ contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
8899
+ }
8900
+ return contents;
8901
+ }, "de_ResourceScanNotFoundException");
8902
+ var de_ResourceScanSummaries = /* @__PURE__ */ __name((output, context) => {
8903
+ return (output || []).filter((e) => e != null).map((entry) => {
8904
+ return de_ResourceScanSummary(entry, context);
8905
+ });
8906
+ }, "de_ResourceScanSummaries");
8907
+ var de_ResourceScanSummary = /* @__PURE__ */ __name((output, context) => {
8908
+ const contents = {};
8909
+ if (output[_RSI] != null) {
8910
+ contents[_RSI] = (0, import_smithy_client.expectString)(output[_RSI]);
8911
+ }
8912
+ if (output[_S] != null) {
8913
+ contents[_S] = (0, import_smithy_client.expectString)(output[_S]);
8914
+ }
8915
+ if (output[_SRt] != null) {
8916
+ contents[_SRt] = (0, import_smithy_client.expectString)(output[_SRt]);
8917
+ }
8918
+ if (output[_ST] != null) {
8919
+ contents[_ST] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ST]));
8920
+ }
8921
+ if (output[_ET] != null) {
8922
+ contents[_ET] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ET]));
8923
+ }
8924
+ if (output[_PC] != null) {
8925
+ contents[_PC] = (0, import_smithy_client.strictParseFloat)(output[_PC]);
8926
+ }
8927
+ return contents;
8928
+ }, "de_ResourceScanSummary");
7735
8929
  var de_ResourceTargetDefinition = /* @__PURE__ */ __name((output, context) => {
7736
8930
  const contents = {};
7737
8931
  if (output[_At] != null) {
@@ -7740,8 +8934,8 @@ var de_ResourceTargetDefinition = /* @__PURE__ */ __name((output, context) => {
7740
8934
  if (output[_N] != null) {
7741
8935
  contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
7742
8936
  }
7743
- if (output[_RRe] != null) {
7744
- contents[_RRe] = (0, import_smithy_client.expectString)(output[_RRe]);
8937
+ if (output[_RReq] != null) {
8938
+ contents[_RReq] = (0, import_smithy_client.expectString)(output[_RReq]);
7745
8939
  }
7746
8940
  return contents;
7747
8941
  }, "de_ResourceTargetDefinition");
@@ -7784,6 +8978,26 @@ var de_RollbackTriggers = /* @__PURE__ */ __name((output, context) => {
7784
8978
  return de_RollbackTrigger(entry, context);
7785
8979
  });
7786
8980
  }, "de_RollbackTriggers");
8981
+ var de_ScannedResource = /* @__PURE__ */ __name((output, context) => {
8982
+ const contents = {};
8983
+ if (output[_RTes] != null) {
8984
+ contents[_RTes] = (0, import_smithy_client.expectString)(output[_RTes]);
8985
+ }
8986
+ if (output.ResourceIdentifier === "") {
8987
+ contents[_RI] = {};
8988
+ } else if (output[_RI] != null && output[_RI][_e] != null) {
8989
+ contents[_RI] = de_JazzResourceIdentifierProperties((0, import_smithy_client.getArrayIfSingleItem)(output[_RI][_e]), context);
8990
+ }
8991
+ if (output[_MBS] != null) {
8992
+ contents[_MBS] = (0, import_smithy_client.parseBoolean)(output[_MBS]);
8993
+ }
8994
+ return contents;
8995
+ }, "de_ScannedResource");
8996
+ var de_ScannedResources = /* @__PURE__ */ __name((output, context) => {
8997
+ return (output || []).filter((e) => e != null).map((entry) => {
8998
+ return de_ScannedResource(entry, context);
8999
+ });
9000
+ }, "de_ScannedResources");
7787
9001
  var de_Scope = /* @__PURE__ */ __name((output, context) => {
7788
9002
  return (output || []).filter((e) => e != null).map((entry) => {
7789
9003
  return (0, import_smithy_client.expectString)(entry);
@@ -7926,8 +9140,8 @@ var de_StackEvent = /* @__PURE__ */ __name((output, context) => {
7926
9140
  if (output[_Ti] != null) {
7927
9141
  contents[_Ti] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_Ti]));
7928
9142
  }
7929
- if (output[_RSes] != null) {
7930
- contents[_RSes] = (0, import_smithy_client.expectString)(output[_RSes]);
9143
+ if (output[_RSeso] != null) {
9144
+ contents[_RSeso] = (0, import_smithy_client.expectString)(output[_RSeso]);
7931
9145
  }
7932
9146
  if (output[_RSR] != null) {
7933
9147
  contents[_RSR] = (0, import_smithy_client.expectString)(output[_RSR]);
@@ -8122,8 +9336,8 @@ var de_StackResource = /* @__PURE__ */ __name((output, context) => {
8122
9336
  if (output[_Ti] != null) {
8123
9337
  contents[_Ti] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_Ti]));
8124
9338
  }
8125
- if (output[_RSes] != null) {
8126
- contents[_RSes] = (0, import_smithy_client.expectString)(output[_RSes]);
9339
+ if (output[_RSeso] != null) {
9340
+ contents[_RSeso] = (0, import_smithy_client.expectString)(output[_RSeso]);
8127
9341
  }
8128
9342
  if (output[_RSR] != null) {
8129
9343
  contents[_RSR] = (0, import_smithy_client.expectString)(output[_RSR]);
@@ -8159,8 +9373,8 @@ var de_StackResourceDetail = /* @__PURE__ */ __name((output, context) => {
8159
9373
  if (output[_LUTa] != null) {
8160
9374
  contents[_LUTa] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LUTa]));
8161
9375
  }
8162
- if (output[_RSes] != null) {
8163
- contents[_RSes] = (0, import_smithy_client.expectString)(output[_RSes]);
9376
+ if (output[_RSeso] != null) {
9377
+ contents[_RSeso] = (0, import_smithy_client.expectString)(output[_RSeso]);
8164
9378
  }
8165
9379
  if (output[_RSR] != null) {
8166
9380
  contents[_RSR] = (0, import_smithy_client.expectString)(output[_RSR]);
@@ -8269,8 +9483,8 @@ var de_StackResourceSummary = /* @__PURE__ */ __name((output, context) => {
8269
9483
  if (output[_LUTa] != null) {
8270
9484
  contents[_LUTa] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LUTa]));
8271
9485
  }
8272
- if (output[_RSes] != null) {
8273
- contents[_RSes] = (0, import_smithy_client.expectString)(output[_RSes]);
9486
+ if (output[_RSeso] != null) {
9487
+ contents[_RSeso] = (0, import_smithy_client.expectString)(output[_RSeso]);
8274
9488
  }
8275
9489
  if (output[_RSR] != null) {
8276
9490
  contents[_RSR] = (0, import_smithy_client.expectString)(output[_RSR]);
@@ -8347,9 +9561,9 @@ var de_StackSet = /* @__PURE__ */ __name((output, context) => {
8347
9561
  contents[_ME] = de_ManagedExecution(output[_ME], context);
8348
9562
  }
8349
9563
  if (output.Regions === "") {
8350
- contents[_R] = [];
8351
- } else if (output[_R] != null && output[_R][_m] != null) {
8352
- contents[_R] = de_RegionList((0, import_smithy_client.getArrayIfSingleItem)(output[_R][_m]), context);
9564
+ contents[_Re] = [];
9565
+ } else if (output[_Re] != null && output[_Re][_m] != null) {
9566
+ contents[_Re] = de_RegionList((0, import_smithy_client.getArrayIfSingleItem)(output[_Re][_m]), context);
8353
9567
  }
8354
9568
  return contents;
8355
9569
  }, "de_StackSet");
@@ -8424,8 +9638,8 @@ var de_StackSetOperation = /* @__PURE__ */ __name((output, context) => {
8424
9638
  if (output[_CTre] != null) {
8425
9639
  contents[_CTre] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTre]));
8426
9640
  }
8427
- if (output[_ET] != null) {
8428
- contents[_ET] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ET]));
9641
+ if (output[_ETn] != null) {
9642
+ contents[_ETn] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ETn]));
8429
9643
  }
8430
9644
  if (output[_DTep] != null) {
8431
9645
  contents[_DTep] = de_DeploymentTargets(output[_DTep], context);
@@ -8521,8 +9735,8 @@ var de_StackSetOperationSummary = /* @__PURE__ */ __name((output, context) => {
8521
9735
  if (output[_CTre] != null) {
8522
9736
  contents[_CTre] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTre]));
8523
9737
  }
8524
- if (output[_ET] != null) {
8525
- contents[_ET] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ET]));
9738
+ if (output[_ETn] != null) {
9739
+ contents[_ETn] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_ETn]));
8526
9740
  }
8527
9741
  if (output[_SRt] != null) {
8528
9742
  contents[_SRt] = (0, import_smithy_client.expectString)(output[_SRt]);
@@ -8625,6 +9839,13 @@ var de_StaleRequestException = /* @__PURE__ */ __name((output, context) => {
8625
9839
  }
8626
9840
  return contents;
8627
9841
  }, "de_StaleRequestException");
9842
+ var de_StartResourceScanOutput = /* @__PURE__ */ __name((output, context) => {
9843
+ const contents = {};
9844
+ if (output[_RSI] != null) {
9845
+ contents[_RSI] = (0, import_smithy_client.expectString)(output[_RSI]);
9846
+ }
9847
+ return contents;
9848
+ }, "de_StartResourceScanOutput");
8628
9849
  var de_StopStackSetOperationOutput = /* @__PURE__ */ __name((output, context) => {
8629
9850
  const contents = {};
8630
9851
  return contents;
@@ -8649,6 +9870,16 @@ var de_Tags = /* @__PURE__ */ __name((output, context) => {
8649
9870
  return de_Tag(entry, context);
8650
9871
  });
8651
9872
  }, "de_Tags");
9873
+ var de_TemplateConfiguration = /* @__PURE__ */ __name((output, context) => {
9874
+ const contents = {};
9875
+ if (output[_DPe] != null) {
9876
+ contents[_DPe] = (0, import_smithy_client.expectString)(output[_DPe]);
9877
+ }
9878
+ if (output[_URP] != null) {
9879
+ contents[_URP] = (0, import_smithy_client.expectString)(output[_URP]);
9880
+ }
9881
+ return contents;
9882
+ }, "de_TemplateConfiguration");
8652
9883
  var de_TemplateParameter = /* @__PURE__ */ __name((output, context) => {
8653
9884
  const contents = {};
8654
9885
  if (output[_PK] != null) {
@@ -8670,6 +9901,52 @@ var de_TemplateParameters = /* @__PURE__ */ __name((output, context) => {
8670
9901
  return de_TemplateParameter(entry, context);
8671
9902
  });
8672
9903
  }, "de_TemplateParameters");
9904
+ var de_TemplateProgress = /* @__PURE__ */ __name((output, context) => {
9905
+ const contents = {};
9906
+ if (output[_RSesou] != null) {
9907
+ contents[_RSesou] = (0, import_smithy_client.strictParseInt32)(output[_RSesou]);
9908
+ }
9909
+ if (output[_RF] != null) {
9910
+ contents[_RF] = (0, import_smithy_client.strictParseInt32)(output[_RF]);
9911
+ }
9912
+ if (output[_RPes] != null) {
9913
+ contents[_RPes] = (0, import_smithy_client.strictParseInt32)(output[_RPes]);
9914
+ }
9915
+ if (output[_RPeso] != null) {
9916
+ contents[_RPeso] = (0, import_smithy_client.strictParseInt32)(output[_RPeso]);
9917
+ }
9918
+ return contents;
9919
+ }, "de_TemplateProgress");
9920
+ var de_TemplateSummaries = /* @__PURE__ */ __name((output, context) => {
9921
+ return (output || []).filter((e) => e != null).map((entry) => {
9922
+ return de_TemplateSummary(entry, context);
9923
+ });
9924
+ }, "de_TemplateSummaries");
9925
+ var de_TemplateSummary = /* @__PURE__ */ __name((output, context) => {
9926
+ const contents = {};
9927
+ if (output[_GTI] != null) {
9928
+ contents[_GTI] = (0, import_smithy_client.expectString)(output[_GTI]);
9929
+ }
9930
+ if (output[_GTN] != null) {
9931
+ contents[_GTN] = (0, import_smithy_client.expectString)(output[_GTN]);
9932
+ }
9933
+ if (output[_S] != null) {
9934
+ contents[_S] = (0, import_smithy_client.expectString)(output[_S]);
9935
+ }
9936
+ if (output[_SRt] != null) {
9937
+ contents[_SRt] = (0, import_smithy_client.expectString)(output[_SRt]);
9938
+ }
9939
+ if (output[_CTr] != null) {
9940
+ contents[_CTr] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTr]));
9941
+ }
9942
+ if (output[_LUT] != null) {
9943
+ contents[_LUT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LUT]));
9944
+ }
9945
+ if (output[_NOR] != null) {
9946
+ contents[_NOR] = (0, import_smithy_client.strictParseInt32)(output[_NOR]);
9947
+ }
9948
+ return contents;
9949
+ }, "de_TemplateSummary");
8673
9950
  var de_TestTypeOutput = /* @__PURE__ */ __name((output, context) => {
8674
9951
  const contents = {};
8675
9952
  if (output[_TVA] != null) {
@@ -8838,6 +10115,13 @@ var de_UnprocessedTypeConfigurations = /* @__PURE__ */ __name((output, context)
8838
10115
  return de_TypeConfigurationIdentifier(entry, context);
8839
10116
  });
8840
10117
  }, "de_UnprocessedTypeConfigurations");
10118
+ var de_UpdateGeneratedTemplateOutput = /* @__PURE__ */ __name((output, context) => {
10119
+ const contents = {};
10120
+ if (output[_GTI] != null) {
10121
+ contents[_GTI] = (0, import_smithy_client.expectString)(output[_GTI]);
10122
+ }
10123
+ return contents;
10124
+ }, "de_UpdateGeneratedTemplateOutput");
8841
10125
  var de_UpdateStackInstancesOutput = /* @__PURE__ */ __name((output, context) => {
8842
10126
  const contents = {};
8843
10127
  if (output[_OI] != null) {
@@ -8891,6 +10175,41 @@ var de_ValidateTemplateOutput = /* @__PURE__ */ __name((output, context) => {
8891
10175
  }
8892
10176
  return contents;
8893
10177
  }, "de_ValidateTemplateOutput");
10178
+ var de_WarningDetail = /* @__PURE__ */ __name((output, context) => {
10179
+ const contents = {};
10180
+ if (output[_T] != null) {
10181
+ contents[_T] = (0, import_smithy_client.expectString)(output[_T]);
10182
+ }
10183
+ if (output.Properties === "") {
10184
+ contents[_Pro] = [];
10185
+ } else if (output[_Pro] != null && output[_Pro][_m] != null) {
10186
+ contents[_Pro] = de_WarningProperties((0, import_smithy_client.getArrayIfSingleItem)(output[_Pro][_m]), context);
10187
+ }
10188
+ return contents;
10189
+ }, "de_WarningDetail");
10190
+ var de_WarningDetails = /* @__PURE__ */ __name((output, context) => {
10191
+ return (output || []).filter((e) => e != null).map((entry) => {
10192
+ return de_WarningDetail(entry, context);
10193
+ });
10194
+ }, "de_WarningDetails");
10195
+ var de_WarningProperties = /* @__PURE__ */ __name((output, context) => {
10196
+ return (output || []).filter((e) => e != null).map((entry) => {
10197
+ return de_WarningProperty(entry, context);
10198
+ });
10199
+ }, "de_WarningProperties");
10200
+ var de_WarningProperty = /* @__PURE__ */ __name((output, context) => {
10201
+ const contents = {};
10202
+ if (output[_PPr] != null) {
10203
+ contents[_PPr] = (0, import_smithy_client.expectString)(output[_PPr]);
10204
+ }
10205
+ if (output[_Req] != null) {
10206
+ contents[_Req] = (0, import_smithy_client.parseBoolean)(output[_Req]);
10207
+ }
10208
+ if (output[_D] != null) {
10209
+ contents[_D] = (0, import_smithy_client.expectString)(output[_D]);
10210
+ }
10211
+ return contents;
10212
+ }, "de_WarningProperty");
8894
10213
  var de_Warnings = /* @__PURE__ */ __name((output, context) => {
8895
10214
  const contents = {};
8896
10215
  if (output.UnrecognizedResourceTypes === "") {
@@ -8937,6 +10256,7 @@ var _AGR = "AccountGateResult";
8937
10256
  var _AL = "AccountLimits";
8938
10257
  var _AOA = "ActivateOrganizationsAccess";
8939
10258
  var _AP = "ActualProperties";
10259
+ var _AR = "AddResources";
8940
10260
  var _ARARN = "AdministrationRoleARN";
8941
10261
  var _AT = "ActivateType";
8942
10262
  var _ATAC = "AcceptTermsAndConditions";
@@ -8959,6 +10279,7 @@ var _CAon = "ConfigurationAlias";
8959
10279
  var _CAonf = "ConfigurationArn";
8960
10280
  var _CCS = "CreateChangeSet";
8961
10281
  var _CE = "CausingEntity";
10282
+ var _CGT = "CreateGeneratedTemplate";
8962
10283
  var _CM = "ConcurrencyMode";
8963
10284
  var _COS = "CurrentOperationStatus";
8964
10285
  var _CR = "CapabilitiesReason";
@@ -8985,11 +10306,15 @@ var _DCS = "DeleteChangeSet";
8985
10306
  var _DCSH = "DescribeChangeSetHooks";
8986
10307
  var _DCSe = "DescribeChangeSet";
8987
10308
  var _DDS = "DriftDetectionStatus";
10309
+ var _DGT = "DeleteGeneratedTemplate";
10310
+ var _DGTe = "DescribeGeneratedTemplate";
8988
10311
  var _DI = "DriftInformation";
8989
10312
  var _DOA = "DeactivateOrganizationsAccess";
8990
10313
  var _DOAe = "DescribeOrganizationsAccess";
8991
10314
  var _DP = "DescribePublisher";
10315
+ var _DPe = "DeletionPolicy";
8992
10316
  var _DR = "DisableRollback";
10317
+ var _DRS = "DescribeResourceScan";
8993
10318
  var _DS = "DeleteStack";
8994
10319
  var _DSD = "DetectStackDrift";
8995
10320
  var _DSDDS = "DescribeStackDriftDetectionStatus";
@@ -9035,20 +10360,25 @@ var _ERA = "ExecutionRoleArn";
9035
10360
  var _ERN = "ExecutionRoleName";
9036
10361
  var _ES = "ExecutionStatus";
9037
10362
  var _ESI = "ExportingStackId";
9038
- var _ET = "EndTimestamp";
10363
+ var _ET = "EndTime";
9039
10364
  var _ETC = "EstimateTemplateCost";
9040
10365
  var _ETP = "EnableTerminationProtection";
10366
+ var _ETn = "EndTimestamp";
9041
10367
  var _EV = "ExpectedValue";
9042
10368
  var _Er = "Errors";
9043
10369
  var _Ev = "Evaluation";
9044
10370
  var _Ex = "Exports";
9045
- var _F = "Filters";
10371
+ var _F = "Format";
9046
10372
  var _FM = "FailureMode";
9047
10373
  var _FSIC = "FailedStackInstancesCount";
9048
10374
  var _FTC = "FailureToleranceCount";
9049
10375
  var _FTP = "FailureTolerancePercentage";
10376
+ var _Fi = "Filters";
10377
+ var _GGT = "GetGeneratedTemplate";
9050
10378
  var _GSP = "GetStackPolicy";
9051
10379
  var _GT = "GetTemplate";
10380
+ var _GTI = "GeneratedTemplateId";
10381
+ var _GTN = "GeneratedTemplateName";
9052
10382
  var _GTS = "GetTemplateSummary";
9053
10383
  var _H = "Hooks";
9054
10384
  var _HFM = "HookFailureMode";
@@ -9077,6 +10407,7 @@ var _LDB = "LogDeliveryBucket";
9077
10407
  var _LDCT = "LastDriftCheckTimestamp";
9078
10408
  var _LE = "ListExports";
9079
10409
  var _LGN = "LogGroupName";
10410
+ var _LGT = "ListGeneratedTemplates";
9080
10411
  var _LI = "ListImports";
9081
10412
  var _LIH = "LogicalIdHierarchy";
9082
10413
  var _LOI = "LastOperationId";
@@ -9084,6 +10415,9 @@ var _LPV = "LatestPublicVersion";
9084
10415
  var _LRA = "LogRoleArn";
9085
10416
  var _LRI = "LogicalResourceId";
9086
10417
  var _LRIo = "LogicalResourceIds";
10418
+ var _LRS = "ListResourceScans";
10419
+ var _LRSR = "ListResourceScanResources";
10420
+ var _LRSRR = "ListResourceScanRelatedResources";
9087
10421
  var _LS = "ListStacks";
9088
10422
  var _LSI = "ListStackInstances";
9089
10423
  var _LSIRD = "ListStackInstanceResourceDrifts";
@@ -9098,6 +10432,7 @@ var _LU = "LastUpdated";
9098
10432
  var _LUT = "LastUpdatedTime";
9099
10433
  var _LUTa = "LastUpdatedTimestamp";
9100
10434
  var _M = "Message";
10435
+ var _MBS = "ManagedByStack";
9101
10436
  var _MCC = "MaxConcurrentCount";
9102
10437
  var _MCP = "MaxConcurrentPercentage";
9103
10438
  var _ME = "ManagedExecution";
@@ -9109,6 +10444,8 @@ var _Me = "Metadata";
9109
10444
  var _N = "Name";
9110
10445
  var _NARN = "NotificationARNs";
9111
10446
  var _NE = "NoEcho";
10447
+ var _NGTN = "NewGeneratedTemplateName";
10448
+ var _NOR = "NumberOfResources";
9112
10449
  var _NT = "NextToken";
9113
10450
  var _O = "Outputs";
9114
10451
  var _OF = "OnFailure";
@@ -9123,8 +10460,9 @@ var _OUI = "OrganizationalUnitIds";
9123
10460
  var _OUIr = "OrganizationalUnitId";
9124
10461
  var _OV = "OutputValue";
9125
10462
  var _P = "Parameters";
9126
- var _PC = "ParameterConstraints";
10463
+ var _PC = "PercentageCompleted";
9127
10464
  var _PCSI = "ParentChangeSetId";
10465
+ var _PCa = "ParameterConstraints";
9128
10466
  var _PD = "PropertyDifferences";
9129
10467
  var _PI = "PublisherId";
9130
10468
  var _PIa = "ParentId";
@@ -9145,8 +10483,11 @@ var _PTa = "ParameterType";
9145
10483
  var _PTr = "ProvisioningType";
9146
10484
  var _PV = "ParameterValue";
9147
10485
  var _PVN = "PublicVersionNumber";
9148
- var _R = "Regions";
10486
+ var _Pr = "Progress";
10487
+ var _Pro = "Properties";
10488
+ var _R = "Resources";
9149
10489
  var _RA = "ResourceAction";
10490
+ var _RAR = "RefreshAllResources";
9150
10491
  var _RARN = "RoleARN";
9151
10492
  var _RAT = "RequiredActivatedTypes";
9152
10493
  var _RC = "RollbackConfiguration";
@@ -9154,6 +10495,7 @@ var _RCSI = "RootChangeSetId";
9154
10495
  var _RCT = "RegionConcurrencyType";
9155
10496
  var _RCe = "ResourceChange";
9156
10497
  var _REOC = "RetainExceptOnCreate";
10498
+ var _RF = "ResourcesFailed";
9157
10499
  var _RHP = "RecordHandlerProgress";
9158
10500
  var _RI = "ResourceIdentifier";
9159
10501
  var _RIS = "ResourceIdentifierSummaries";
@@ -9163,26 +10505,38 @@ var _RM = "ResourceModel";
9163
10505
  var _RO = "RegionOrder";
9164
10506
  var _RP = "RegisterPublisher";
9165
10507
  var _RPe = "ResourceProperties";
10508
+ var _RPes = "ResourcesProcessing";
10509
+ var _RPeso = "ResourcesPending";
9166
10510
  var _RR = "RetainResources";
9167
- var _RRe = "RequiresRecreation";
10511
+ var _RRe = "RemoveResources";
10512
+ var _RRel = "RelatedResources";
10513
+ var _RReq = "RequiresRecreation";
10514
+ var _RRes = "ResourcesRead";
9168
10515
  var _RS = "RollbackStack";
9169
10516
  var _RSF = "RegistrationStatusFilter";
10517
+ var _RSI = "ResourceScanId";
9170
10518
  var _RSOAR = "RetainStacksOnAccountRemoval";
9171
10519
  var _RSR = "ResourceStatusReason";
10520
+ var _RSS = "ResourceScanSummaries";
9172
10521
  var _RSe = "RetainStacks";
9173
- var _RSes = "ResourceStatus";
10522
+ var _RSes = "ResourcesScanned";
10523
+ var _RSeso = "ResourceStatus";
10524
+ var _RSesou = "ResourcesSucceeded";
9174
10525
  var _RT = "RegisterType";
9175
10526
  var _RTD = "ResourceTargetDetails";
9176
10527
  var _RTI = "ResourcesToImport";
9177
10528
  var _RTL = "RegistrationTokenList";
10529
+ var _RTP = "ResourceTypePrefix";
9178
10530
  var _RTS = "ResourcesToSkip";
9179
10531
  var _RTe = "ResourceTypes";
9180
10532
  var _RTeg = "RegistrationToken";
9181
10533
  var _RTes = "ResourceType";
9182
10534
  var _RTo = "RollbackTriggers";
9183
10535
  var _RV = "ResolvedValue";
9184
- var _Re = "Replacement";
10536
+ var _Re = "Regions";
9185
10537
  var _Reg = "Region";
10538
+ var _Rep = "Replacement";
10539
+ var _Req = "Required";
9186
10540
  var _S = "Status";
9187
10541
  var _SA = "StagesAvailable";
9188
10542
  var _SD = "StatusDetails";
@@ -9211,7 +10565,8 @@ var _SRDS = "StackResourceDriftStatus";
9211
10565
  var _SRDSF = "StackResourceDriftStatusFilters";
9212
10566
  var _SRDt = "StackResourceDetail";
9213
10567
  var _SRDta = "StackResourceDrift";
9214
- var _SRS = "StackResourceSummaries";
10568
+ var _SRS = "StartResourceScan";
10569
+ var _SRSt = "StackResourceSummaries";
9215
10570
  var _SRt = "StatusReason";
9216
10571
  var _SRta = "StackResources";
9217
10572
  var _SS = "StackSet";
@@ -9226,6 +10581,7 @@ var _SSR = "StackStatusReason";
9226
10581
  var _SSSO = "StopStackSetOperation";
9227
10582
  var _SSt = "StackSummaries";
9228
10583
  var _SSta = "StackStatus";
10584
+ var _ST = "StartTime";
9229
10585
  var _STC = "SetTypeConfiguration";
9230
10586
  var _STDV = "SetTypeDefaultVersion";
9231
10587
  var _SU = "SourceUrl";
@@ -9236,17 +10592,19 @@ var _Su = "Summaries";
9236
10592
  var _T = "Type";
9237
10593
  var _TA = "TypeArn";
9238
10594
  var _TB = "TemplateBody";
9239
- var _TC = "TypeConfigurations";
10595
+ var _TC = "TemplateConfiguration";
9240
10596
  var _TCA = "TypeConfigurationAlias";
9241
10597
  var _TCAy = "TypeConfigurationArn";
9242
10598
  var _TCI = "TypeConfigurationIdentifiers";
9243
10599
  var _TCIy = "TypeConfigurationIdentifier";
9244
10600
  var _TCVI = "TypeConfigurationVersionId";
9245
10601
  var _TCi = "TimeCreated";
10602
+ var _TCy = "TypeConfigurations";
9246
10603
  var _TD = "TargetDetails";
9247
10604
  var _TDe = "TemplateDescription";
9248
10605
  var _TH = "TypeHierarchy";
9249
10606
  var _TIM = "TimeoutInMinutes";
10607
+ var _TK = "TagKey";
9250
10608
  var _TN = "TypeName";
9251
10609
  var _TNA = "TypeNameAlias";
9252
10610
  var _TNP = "TypeNamePrefix";
@@ -9260,16 +10618,20 @@ var _TTSD = "TypeTestsStatusDescription";
9260
10618
  var _TTa = "TargetType";
9261
10619
  var _TURL = "TemplateURL";
9262
10620
  var _TURTAW = "TreatUnrecognizedResourceTypesAsWarnings";
10621
+ var _TV = "TagValue";
9263
10622
  var _TVA = "TypeVersionArn";
9264
10623
  var _TVI = "TypeVersionId";
9265
10624
  var _TVS = "TypeVersionSummaries";
10625
+ var _TW = "TotalWarnings";
9266
10626
  var _Ta = "Tags";
9267
10627
  var _Tar = "Target";
9268
10628
  var _Ti = "Timestamp";
9269
10629
  var _U = "Url";
10630
+ var _UGT = "UpdateGeneratedTemplate";
9270
10631
  var _UI = "UniqueId";
9271
10632
  var _UPT = "UsePreviousTemplate";
9272
10633
  var _UPV = "UsePreviousValue";
10634
+ var _URP = "UpdateReplacePolicy";
9273
10635
  var _URT = "UnrecognizedResourceTypes";
9274
10636
  var _US = "UpdateStack";
9275
10637
  var _USI = "UpdateStackInstances";
@@ -9284,6 +10646,7 @@ var _Va = "Values";
9284
10646
  var _Val = "Value";
9285
10647
  var _Vi = "Visibility";
9286
10648
  var _W = "Warnings";
10649
+ var _e = "entry";
9287
10650
  var _m = "member";
9288
10651
  var parseBody = /* @__PURE__ */ __name((streamBody, context) => collectBodyString(streamBody, context).then((encoded) => {
9289
10652
  if (encoded.length) {
@@ -9426,6 +10789,23 @@ var _CreateChangeSetCommand = class _CreateChangeSetCommand extends import_smith
9426
10789
  __name(_CreateChangeSetCommand, "CreateChangeSetCommand");
9427
10790
  var CreateChangeSetCommand = _CreateChangeSetCommand;
9428
10791
 
10792
+ // src/commands/CreateGeneratedTemplateCommand.ts
10793
+
10794
+
10795
+
10796
+
10797
+ var _CreateGeneratedTemplateCommand = class _CreateGeneratedTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
10798
+ ...commonParams
10799
+ }).m(function(Command, cs, config, o) {
10800
+ return [
10801
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
10802
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
10803
+ ];
10804
+ }).s("CloudFormation", "CreateGeneratedTemplate", {}).n("CloudFormationClient", "CreateGeneratedTemplateCommand").f(void 0, void 0).ser(se_CreateGeneratedTemplateCommand).de(de_CreateGeneratedTemplateCommand).build() {
10805
+ };
10806
+ __name(_CreateGeneratedTemplateCommand, "CreateGeneratedTemplateCommand");
10807
+ var CreateGeneratedTemplateCommand = _CreateGeneratedTemplateCommand;
10808
+
9429
10809
  // src/commands/CreateStackCommand.ts
9430
10810
 
9431
10811
 
@@ -9528,6 +10908,23 @@ var _DeleteChangeSetCommand = class _DeleteChangeSetCommand extends import_smith
9528
10908
  __name(_DeleteChangeSetCommand, "DeleteChangeSetCommand");
9529
10909
  var DeleteChangeSetCommand = _DeleteChangeSetCommand;
9530
10910
 
10911
+ // src/commands/DeleteGeneratedTemplateCommand.ts
10912
+
10913
+
10914
+
10915
+
10916
+ var _DeleteGeneratedTemplateCommand = class _DeleteGeneratedTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
10917
+ ...commonParams
10918
+ }).m(function(Command, cs, config, o) {
10919
+ return [
10920
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
10921
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
10922
+ ];
10923
+ }).s("CloudFormation", "DeleteGeneratedTemplate", {}).n("CloudFormationClient", "DeleteGeneratedTemplateCommand").f(void 0, void 0).ser(se_DeleteGeneratedTemplateCommand).de(de_DeleteGeneratedTemplateCommand).build() {
10924
+ };
10925
+ __name(_DeleteGeneratedTemplateCommand, "DeleteGeneratedTemplateCommand");
10926
+ var DeleteGeneratedTemplateCommand = _DeleteGeneratedTemplateCommand;
10927
+
9531
10928
  // src/commands/DeleteStackCommand.ts
9532
10929
 
9533
10930
 
@@ -9647,6 +11044,23 @@ var _DescribeChangeSetHooksCommand = class _DescribeChangeSetHooksCommand extend
9647
11044
  __name(_DescribeChangeSetHooksCommand, "DescribeChangeSetHooksCommand");
9648
11045
  var DescribeChangeSetHooksCommand = _DescribeChangeSetHooksCommand;
9649
11046
 
11047
+ // src/commands/DescribeGeneratedTemplateCommand.ts
11048
+
11049
+
11050
+
11051
+
11052
+ var _DescribeGeneratedTemplateCommand = class _DescribeGeneratedTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
11053
+ ...commonParams
11054
+ }).m(function(Command, cs, config, o) {
11055
+ return [
11056
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11057
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11058
+ ];
11059
+ }).s("CloudFormation", "DescribeGeneratedTemplate", {}).n("CloudFormationClient", "DescribeGeneratedTemplateCommand").f(void 0, void 0).ser(se_DescribeGeneratedTemplateCommand).de(de_DescribeGeneratedTemplateCommand).build() {
11060
+ };
11061
+ __name(_DescribeGeneratedTemplateCommand, "DescribeGeneratedTemplateCommand");
11062
+ var DescribeGeneratedTemplateCommand = _DescribeGeneratedTemplateCommand;
11063
+
9650
11064
  // src/commands/DescribeOrganizationsAccessCommand.ts
9651
11065
 
9652
11066
 
@@ -9681,6 +11095,23 @@ var _DescribePublisherCommand = class _DescribePublisherCommand extends import_s
9681
11095
  __name(_DescribePublisherCommand, "DescribePublisherCommand");
9682
11096
  var DescribePublisherCommand = _DescribePublisherCommand;
9683
11097
 
11098
+ // src/commands/DescribeResourceScanCommand.ts
11099
+
11100
+
11101
+
11102
+
11103
+ var _DescribeResourceScanCommand = class _DescribeResourceScanCommand extends import_smithy_client.Command.classBuilder().ep({
11104
+ ...commonParams
11105
+ }).m(function(Command, cs, config, o) {
11106
+ return [
11107
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11108
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11109
+ ];
11110
+ }).s("CloudFormation", "DescribeResourceScan", {}).n("CloudFormationClient", "DescribeResourceScanCommand").f(void 0, void 0).ser(se_DescribeResourceScanCommand).de(de_DescribeResourceScanCommand).build() {
11111
+ };
11112
+ __name(_DescribeResourceScanCommand, "DescribeResourceScanCommand");
11113
+ var DescribeResourceScanCommand = _DescribeResourceScanCommand;
11114
+
9684
11115
  // src/commands/DescribeStackDriftDetectionStatusCommand.ts
9685
11116
 
9686
11117
 
@@ -9953,6 +11384,23 @@ var _ExecuteChangeSetCommand = class _ExecuteChangeSetCommand extends import_smi
9953
11384
  __name(_ExecuteChangeSetCommand, "ExecuteChangeSetCommand");
9954
11385
  var ExecuteChangeSetCommand = _ExecuteChangeSetCommand;
9955
11386
 
11387
+ // src/commands/GetGeneratedTemplateCommand.ts
11388
+
11389
+
11390
+
11391
+
11392
+ var _GetGeneratedTemplateCommand = class _GetGeneratedTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
11393
+ ...commonParams
11394
+ }).m(function(Command, cs, config, o) {
11395
+ return [
11396
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11397
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11398
+ ];
11399
+ }).s("CloudFormation", "GetGeneratedTemplate", {}).n("CloudFormationClient", "GetGeneratedTemplateCommand").f(void 0, void 0).ser(se_GetGeneratedTemplateCommand).de(de_GetGeneratedTemplateCommand).build() {
11400
+ };
11401
+ __name(_GetGeneratedTemplateCommand, "GetGeneratedTemplateCommand");
11402
+ var GetGeneratedTemplateCommand = _GetGeneratedTemplateCommand;
11403
+
9956
11404
  // src/commands/GetStackPolicyCommand.ts
9957
11405
 
9958
11406
 
@@ -10055,6 +11503,23 @@ var _ListExportsCommand = class _ListExportsCommand extends import_smithy_client
10055
11503
  __name(_ListExportsCommand, "ListExportsCommand");
10056
11504
  var ListExportsCommand = _ListExportsCommand;
10057
11505
 
11506
+ // src/commands/ListGeneratedTemplatesCommand.ts
11507
+
11508
+
11509
+
11510
+
11511
+ var _ListGeneratedTemplatesCommand = class _ListGeneratedTemplatesCommand extends import_smithy_client.Command.classBuilder().ep({
11512
+ ...commonParams
11513
+ }).m(function(Command, cs, config, o) {
11514
+ return [
11515
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11516
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11517
+ ];
11518
+ }).s("CloudFormation", "ListGeneratedTemplates", {}).n("CloudFormationClient", "ListGeneratedTemplatesCommand").f(void 0, void 0).ser(se_ListGeneratedTemplatesCommand).de(de_ListGeneratedTemplatesCommand).build() {
11519
+ };
11520
+ __name(_ListGeneratedTemplatesCommand, "ListGeneratedTemplatesCommand");
11521
+ var ListGeneratedTemplatesCommand = _ListGeneratedTemplatesCommand;
11522
+
10058
11523
  // src/commands/ListImportsCommand.ts
10059
11524
 
10060
11525
 
@@ -10072,6 +11537,57 @@ var _ListImportsCommand = class _ListImportsCommand extends import_smithy_client
10072
11537
  __name(_ListImportsCommand, "ListImportsCommand");
10073
11538
  var ListImportsCommand = _ListImportsCommand;
10074
11539
 
11540
+ // src/commands/ListResourceScanRelatedResourcesCommand.ts
11541
+
11542
+
11543
+
11544
+
11545
+ var _ListResourceScanRelatedResourcesCommand = class _ListResourceScanRelatedResourcesCommand extends import_smithy_client.Command.classBuilder().ep({
11546
+ ...commonParams
11547
+ }).m(function(Command, cs, config, o) {
11548
+ return [
11549
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11550
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11551
+ ];
11552
+ }).s("CloudFormation", "ListResourceScanRelatedResources", {}).n("CloudFormationClient", "ListResourceScanRelatedResourcesCommand").f(void 0, void 0).ser(se_ListResourceScanRelatedResourcesCommand).de(de_ListResourceScanRelatedResourcesCommand).build() {
11553
+ };
11554
+ __name(_ListResourceScanRelatedResourcesCommand, "ListResourceScanRelatedResourcesCommand");
11555
+ var ListResourceScanRelatedResourcesCommand = _ListResourceScanRelatedResourcesCommand;
11556
+
11557
+ // src/commands/ListResourceScanResourcesCommand.ts
11558
+
11559
+
11560
+
11561
+
11562
+ var _ListResourceScanResourcesCommand = class _ListResourceScanResourcesCommand extends import_smithy_client.Command.classBuilder().ep({
11563
+ ...commonParams
11564
+ }).m(function(Command, cs, config, o) {
11565
+ return [
11566
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11567
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11568
+ ];
11569
+ }).s("CloudFormation", "ListResourceScanResources", {}).n("CloudFormationClient", "ListResourceScanResourcesCommand").f(void 0, void 0).ser(se_ListResourceScanResourcesCommand).de(de_ListResourceScanResourcesCommand).build() {
11570
+ };
11571
+ __name(_ListResourceScanResourcesCommand, "ListResourceScanResourcesCommand");
11572
+ var ListResourceScanResourcesCommand = _ListResourceScanResourcesCommand;
11573
+
11574
+ // src/commands/ListResourceScansCommand.ts
11575
+
11576
+
11577
+
11578
+
11579
+ var _ListResourceScansCommand = class _ListResourceScansCommand extends import_smithy_client.Command.classBuilder().ep({
11580
+ ...commonParams
11581
+ }).m(function(Command, cs, config, o) {
11582
+ return [
11583
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11584
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11585
+ ];
11586
+ }).s("CloudFormation", "ListResourceScans", {}).n("CloudFormationClient", "ListResourceScansCommand").f(void 0, void 0).ser(se_ListResourceScansCommand).de(de_ListResourceScansCommand).build() {
11587
+ };
11588
+ __name(_ListResourceScansCommand, "ListResourceScansCommand");
11589
+ var ListResourceScansCommand = _ListResourceScansCommand;
11590
+
10075
11591
  // src/commands/ListStackInstanceResourceDriftsCommand.ts
10076
11592
 
10077
11593
 
@@ -10395,6 +11911,23 @@ var _SignalResourceCommand = class _SignalResourceCommand extends import_smithy_
10395
11911
  __name(_SignalResourceCommand, "SignalResourceCommand");
10396
11912
  var SignalResourceCommand = _SignalResourceCommand;
10397
11913
 
11914
+ // src/commands/StartResourceScanCommand.ts
11915
+
11916
+
11917
+
11918
+
11919
+ var _StartResourceScanCommand = class _StartResourceScanCommand extends import_smithy_client.Command.classBuilder().ep({
11920
+ ...commonParams
11921
+ }).m(function(Command, cs, config, o) {
11922
+ return [
11923
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11924
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11925
+ ];
11926
+ }).s("CloudFormation", "StartResourceScan", {}).n("CloudFormationClient", "StartResourceScanCommand").f(void 0, void 0).ser(se_StartResourceScanCommand).de(de_StartResourceScanCommand).build() {
11927
+ };
11928
+ __name(_StartResourceScanCommand, "StartResourceScanCommand");
11929
+ var StartResourceScanCommand = _StartResourceScanCommand;
11930
+
10398
11931
  // src/commands/StopStackSetOperationCommand.ts
10399
11932
 
10400
11933
 
@@ -10429,6 +11962,23 @@ var _TestTypeCommand = class _TestTypeCommand extends import_smithy_client.Comma
10429
11962
  __name(_TestTypeCommand, "TestTypeCommand");
10430
11963
  var TestTypeCommand = _TestTypeCommand;
10431
11964
 
11965
+ // src/commands/UpdateGeneratedTemplateCommand.ts
11966
+
11967
+
11968
+
11969
+
11970
+ var _UpdateGeneratedTemplateCommand = class _UpdateGeneratedTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
11971
+ ...commonParams
11972
+ }).m(function(Command, cs, config, o) {
11973
+ return [
11974
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
11975
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
11976
+ ];
11977
+ }).s("CloudFormation", "UpdateGeneratedTemplate", {}).n("CloudFormationClient", "UpdateGeneratedTemplateCommand").f(void 0, void 0).ser(se_UpdateGeneratedTemplateCommand).de(de_UpdateGeneratedTemplateCommand).build() {
11978
+ };
11979
+ __name(_UpdateGeneratedTemplateCommand, "UpdateGeneratedTemplateCommand");
11980
+ var UpdateGeneratedTemplateCommand = _UpdateGeneratedTemplateCommand;
11981
+
10432
11982
  // src/commands/UpdateStackCommand.ts
10433
11983
 
10434
11984
 
@@ -10522,12 +12072,14 @@ var commands = {
10522
12072
  CancelUpdateStackCommand,
10523
12073
  ContinueUpdateRollbackCommand,
10524
12074
  CreateChangeSetCommand,
12075
+ CreateGeneratedTemplateCommand,
10525
12076
  CreateStackCommand,
10526
12077
  CreateStackInstancesCommand,
10527
12078
  CreateStackSetCommand,
10528
12079
  DeactivateOrganizationsAccessCommand,
10529
12080
  DeactivateTypeCommand,
10530
12081
  DeleteChangeSetCommand,
12082
+ DeleteGeneratedTemplateCommand,
10531
12083
  DeleteStackCommand,
10532
12084
  DeleteStackInstancesCommand,
10533
12085
  DeleteStackSetCommand,
@@ -10535,8 +12087,10 @@ var commands = {
10535
12087
  DescribeAccountLimitsCommand,
10536
12088
  DescribeChangeSetCommand,
10537
12089
  DescribeChangeSetHooksCommand,
12090
+ DescribeGeneratedTemplateCommand,
10538
12091
  DescribeOrganizationsAccessCommand,
10539
12092
  DescribePublisherCommand,
12093
+ DescribeResourceScanCommand,
10540
12094
  DescribeStackDriftDetectionStatusCommand,
10541
12095
  DescribeStackEventsCommand,
10542
12096
  DescribeStackInstanceCommand,
@@ -10553,13 +12107,18 @@ var commands = {
10553
12107
  DetectStackSetDriftCommand,
10554
12108
  EstimateTemplateCostCommand,
10555
12109
  ExecuteChangeSetCommand,
12110
+ GetGeneratedTemplateCommand,
10556
12111
  GetStackPolicyCommand,
10557
12112
  GetTemplateCommand,
10558
12113
  GetTemplateSummaryCommand,
10559
12114
  ImportStacksToStackSetCommand,
10560
12115
  ListChangeSetsCommand,
10561
12116
  ListExportsCommand,
12117
+ ListGeneratedTemplatesCommand,
10562
12118
  ListImportsCommand,
12119
+ ListResourceScanRelatedResourcesCommand,
12120
+ ListResourceScanResourcesCommand,
12121
+ ListResourceScansCommand,
10563
12122
  ListStackInstanceResourceDriftsCommand,
10564
12123
  ListStackInstancesCommand,
10565
12124
  ListStackResourcesCommand,
@@ -10579,8 +12138,10 @@ var commands = {
10579
12138
  SetTypeConfigurationCommand,
10580
12139
  SetTypeDefaultVersionCommand,
10581
12140
  SignalResourceCommand,
12141
+ StartResourceScanCommand,
10582
12142
  StopStackSetOperationCommand,
10583
12143
  TestTypeCommand,
12144
+ UpdateGeneratedTemplateCommand,
10584
12145
  UpdateStackCommand,
10585
12146
  UpdateStackInstancesCommand,
10586
12147
  UpdateStackSetCommand,
@@ -10617,10 +12178,26 @@ var paginateListChangeSets = (0, import_core.createPaginator)(CloudFormationClie
10617
12178
 
10618
12179
  var paginateListExports = (0, import_core.createPaginator)(CloudFormationClient, ListExportsCommand, "NextToken", "NextToken", "");
10619
12180
 
12181
+ // src/pagination/ListGeneratedTemplatesPaginator.ts
12182
+
12183
+ var paginateListGeneratedTemplates = (0, import_core.createPaginator)(CloudFormationClient, ListGeneratedTemplatesCommand, "NextToken", "NextToken", "MaxResults");
12184
+
10620
12185
  // src/pagination/ListImportsPaginator.ts
10621
12186
 
10622
12187
  var paginateListImports = (0, import_core.createPaginator)(CloudFormationClient, ListImportsCommand, "NextToken", "NextToken", "");
10623
12188
 
12189
+ // src/pagination/ListResourceScanRelatedResourcesPaginator.ts
12190
+
12191
+ var paginateListResourceScanRelatedResources = (0, import_core.createPaginator)(CloudFormationClient, ListResourceScanRelatedResourcesCommand, "NextToken", "NextToken", "MaxResults");
12192
+
12193
+ // src/pagination/ListResourceScanResourcesPaginator.ts
12194
+
12195
+ var paginateListResourceScanResources = (0, import_core.createPaginator)(CloudFormationClient, ListResourceScanResourcesCommand, "NextToken", "NextToken", "MaxResults");
12196
+
12197
+ // src/pagination/ListResourceScansPaginator.ts
12198
+
12199
+ var paginateListResourceScans = (0, import_core.createPaginator)(CloudFormationClient, ListResourceScansCommand, "NextToken", "NextToken", "MaxResults");
12200
+
10624
12201
  // src/pagination/ListStackInstancesPaginator.ts
10625
12202
 
10626
12203
  var paginateListStackInstances = (0, import_core.createPaginator)(CloudFormationClient, ListStackInstancesCommand, "NextToken", "NextToken", "MaxResults");
@@ -11473,12 +13050,14 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11473
13050
  CancelUpdateStackCommand,
11474
13051
  ContinueUpdateRollbackCommand,
11475
13052
  CreateChangeSetCommand,
13053
+ CreateGeneratedTemplateCommand,
11476
13054
  CreateStackCommand,
11477
13055
  CreateStackInstancesCommand,
11478
13056
  CreateStackSetCommand,
11479
13057
  DeactivateOrganizationsAccessCommand,
11480
13058
  DeactivateTypeCommand,
11481
13059
  DeleteChangeSetCommand,
13060
+ DeleteGeneratedTemplateCommand,
11482
13061
  DeleteStackCommand,
11483
13062
  DeleteStackInstancesCommand,
11484
13063
  DeleteStackSetCommand,
@@ -11486,8 +13065,10 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11486
13065
  DescribeAccountLimitsCommand,
11487
13066
  DescribeChangeSetCommand,
11488
13067
  DescribeChangeSetHooksCommand,
13068
+ DescribeGeneratedTemplateCommand,
11489
13069
  DescribeOrganizationsAccessCommand,
11490
13070
  DescribePublisherCommand,
13071
+ DescribeResourceScanCommand,
11491
13072
  DescribeStackDriftDetectionStatusCommand,
11492
13073
  DescribeStackEventsCommand,
11493
13074
  DescribeStackInstanceCommand,
@@ -11504,13 +13085,18 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11504
13085
  DetectStackSetDriftCommand,
11505
13086
  EstimateTemplateCostCommand,
11506
13087
  ExecuteChangeSetCommand,
13088
+ GetGeneratedTemplateCommand,
11507
13089
  GetStackPolicyCommand,
11508
13090
  GetTemplateCommand,
11509
13091
  GetTemplateSummaryCommand,
11510
13092
  ImportStacksToStackSetCommand,
11511
13093
  ListChangeSetsCommand,
11512
13094
  ListExportsCommand,
13095
+ ListGeneratedTemplatesCommand,
11513
13096
  ListImportsCommand,
13097
+ ListResourceScanRelatedResourcesCommand,
13098
+ ListResourceScanResourcesCommand,
13099
+ ListResourceScansCommand,
11514
13100
  ListStackInstanceResourceDriftsCommand,
11515
13101
  ListStackInstancesCommand,
11516
13102
  ListStackResourcesCommand,
@@ -11530,8 +13116,10 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11530
13116
  SetTypeConfigurationCommand,
11531
13117
  SetTypeDefaultVersionCommand,
11532
13118
  SignalResourceCommand,
13119
+ StartResourceScanCommand,
11533
13120
  StopStackSetOperationCommand,
11534
13121
  TestTypeCommand,
13122
+ UpdateGeneratedTemplateCommand,
11535
13123
  UpdateStackCommand,
11536
13124
  UpdateStackInstancesCommand,
11537
13125
  UpdateStackSetCommand,
@@ -11543,7 +13131,11 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11543
13131
  paginateDescribeStacks,
11544
13132
  paginateListChangeSets,
11545
13133
  paginateListExports,
13134
+ paginateListGeneratedTemplates,
11546
13135
  paginateListImports,
13136
+ paginateListResourceScanRelatedResources,
13137
+ paginateListResourceScanResources,
13138
+ paginateListResourceScans,
11547
13139
  paginateListStackInstances,
11548
13140
  paginateListStackResources,
11549
13141
  paginateListStackSetOperationResults,
@@ -11601,6 +13193,9 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11601
13193
  OnStackFailure,
11602
13194
  InsufficientCapabilitiesException,
11603
13195
  LimitExceededException,
13196
+ ConcurrentResourcesLimitExceededException,
13197
+ GeneratedTemplateDeletionPolicy,
13198
+ GeneratedTemplateUpdateReplacePolicy,
11604
13199
  OnFailure,
11605
13200
  ConcurrencyMode,
11606
13201
  RegionConcurrencyType,
@@ -11612,11 +13207,17 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11612
13207
  PermissionModels,
11613
13208
  NameAlreadyExistsException,
11614
13209
  InvalidChangeSetStatusException,
13210
+ GeneratedTemplateNotFoundException,
11615
13211
  StackSetNotEmptyException,
11616
13212
  RegistryType,
13213
+ GeneratedTemplateResourceStatus,
13214
+ WarningType,
13215
+ GeneratedTemplateStatus,
11617
13216
  OrganizationStatus,
11618
13217
  IdentityProvider,
11619
13218
  PublisherStatus,
13219
+ ResourceScanStatus,
13220
+ ResourceScanNotFoundException,
11620
13221
  StackDriftDetectionStatus,
11621
13222
  StackDriftStatus,
11622
13223
  HookStatus,
@@ -11637,8 +13238,10 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11637
13238
  TypeTestsStatus,
11638
13239
  Visibility,
11639
13240
  RegistrationStatus,
13241
+ TemplateFormat,
11640
13242
  TemplateStage,
11641
13243
  StackNotFoundException,
13244
+ ResourceScanInProgressException,
11642
13245
  StackInstanceFilterName,
11643
13246
  OperationResultFilterName,
11644
13247
  StackSetOperationResultStatus,
@@ -11646,6 +13249,7 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
11646
13249
  OperationStatusCheckFailedException,
11647
13250
  OperationStatus,
11648
13251
  HandlerErrorCode,
11649
- ResourceSignalStatus
13252
+ ResourceSignalStatus,
13253
+ ResourceScanLimitExceededException
11650
13254
  });
11651
13255