@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
@@ -0,0 +1,8 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
6
+ export declare class SSOOIDCServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,201 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ error?: string;
7
+ error_description?: string;
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export declare class AuthorizationPendingException extends __BaseException {
13
+ readonly name: "AuthorizationPendingException";
14
+ readonly $fault: "client";
15
+ error?: string;
16
+ error_description?: string;
17
+ constructor(
18
+ opts: __ExceptionOptionType<AuthorizationPendingException, __BaseException>
19
+ );
20
+ }
21
+ export interface CreateTokenRequest {
22
+ clientId: string | undefined;
23
+ clientSecret: string | undefined;
24
+ grantType: string | undefined;
25
+ deviceCode?: string;
26
+ code?: string;
27
+ refreshToken?: string;
28
+ scope?: string[];
29
+ redirectUri?: string;
30
+ }
31
+ export interface CreateTokenResponse {
32
+ accessToken?: string;
33
+ tokenType?: string;
34
+ expiresIn?: number;
35
+ refreshToken?: string;
36
+ idToken?: string;
37
+ }
38
+ export declare class ExpiredTokenException extends __BaseException {
39
+ readonly name: "ExpiredTokenException";
40
+ readonly $fault: "client";
41
+ error?: string;
42
+ error_description?: string;
43
+ constructor(
44
+ opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
45
+ );
46
+ }
47
+ export declare class InternalServerException extends __BaseException {
48
+ readonly name: "InternalServerException";
49
+ readonly $fault: "server";
50
+ error?: string;
51
+ error_description?: string;
52
+ constructor(
53
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
54
+ );
55
+ }
56
+ export declare class InvalidClientException extends __BaseException {
57
+ readonly name: "InvalidClientException";
58
+ readonly $fault: "client";
59
+ error?: string;
60
+ error_description?: string;
61
+ constructor(
62
+ opts: __ExceptionOptionType<InvalidClientException, __BaseException>
63
+ );
64
+ }
65
+ export declare class InvalidGrantException extends __BaseException {
66
+ readonly name: "InvalidGrantException";
67
+ readonly $fault: "client";
68
+ error?: string;
69
+ error_description?: string;
70
+ constructor(
71
+ opts: __ExceptionOptionType<InvalidGrantException, __BaseException>
72
+ );
73
+ }
74
+ export declare class InvalidRequestException extends __BaseException {
75
+ readonly name: "InvalidRequestException";
76
+ readonly $fault: "client";
77
+ error?: string;
78
+ error_description?: string;
79
+ constructor(
80
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
81
+ );
82
+ }
83
+ export declare class InvalidScopeException extends __BaseException {
84
+ readonly name: "InvalidScopeException";
85
+ readonly $fault: "client";
86
+ error?: string;
87
+ error_description?: string;
88
+ constructor(
89
+ opts: __ExceptionOptionType<InvalidScopeException, __BaseException>
90
+ );
91
+ }
92
+ export declare class SlowDownException extends __BaseException {
93
+ readonly name: "SlowDownException";
94
+ readonly $fault: "client";
95
+ error?: string;
96
+ error_description?: string;
97
+ constructor(opts: __ExceptionOptionType<SlowDownException, __BaseException>);
98
+ }
99
+ export declare class UnauthorizedClientException extends __BaseException {
100
+ readonly name: "UnauthorizedClientException";
101
+ readonly $fault: "client";
102
+ error?: string;
103
+ error_description?: string;
104
+ constructor(
105
+ opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
106
+ );
107
+ }
108
+ export declare class UnsupportedGrantTypeException extends __BaseException {
109
+ readonly name: "UnsupportedGrantTypeException";
110
+ readonly $fault: "client";
111
+ error?: string;
112
+ error_description?: string;
113
+ constructor(
114
+ opts: __ExceptionOptionType<UnsupportedGrantTypeException, __BaseException>
115
+ );
116
+ }
117
+ export interface CreateTokenWithIAMRequest {
118
+ clientId: string | undefined;
119
+ grantType: string | undefined;
120
+ code?: string;
121
+ refreshToken?: string;
122
+ assertion?: string;
123
+ scope?: string[];
124
+ redirectUri?: string;
125
+ subjectToken?: string;
126
+ subjectTokenType?: string;
127
+ requestedTokenType?: string;
128
+ }
129
+ export interface CreateTokenWithIAMResponse {
130
+ accessToken?: string;
131
+ tokenType?: string;
132
+ expiresIn?: number;
133
+ refreshToken?: string;
134
+ idToken?: string;
135
+ issuedTokenType?: string;
136
+ scope?: string[];
137
+ }
138
+ export declare class InvalidRequestRegionException extends __BaseException {
139
+ readonly name: "InvalidRequestRegionException";
140
+ readonly $fault: "client";
141
+ error?: string;
142
+ error_description?: string;
143
+ endpoint?: string;
144
+ region?: string;
145
+ constructor(
146
+ opts: __ExceptionOptionType<InvalidRequestRegionException, __BaseException>
147
+ );
148
+ }
149
+ export declare class InvalidClientMetadataException extends __BaseException {
150
+ readonly name: "InvalidClientMetadataException";
151
+ readonly $fault: "client";
152
+ error?: string;
153
+ error_description?: string;
154
+ constructor(
155
+ opts: __ExceptionOptionType<InvalidClientMetadataException, __BaseException>
156
+ );
157
+ }
158
+ export interface RegisterClientRequest {
159
+ clientName: string | undefined;
160
+ clientType: string | undefined;
161
+ scopes?: string[];
162
+ }
163
+ export interface RegisterClientResponse {
164
+ clientId?: string;
165
+ clientSecret?: string;
166
+ clientIdIssuedAt?: number;
167
+ clientSecretExpiresAt?: number;
168
+ authorizationEndpoint?: string;
169
+ tokenEndpoint?: string;
170
+ }
171
+ export interface StartDeviceAuthorizationRequest {
172
+ clientId: string | undefined;
173
+ clientSecret: string | undefined;
174
+ startUrl: string | undefined;
175
+ }
176
+ export interface StartDeviceAuthorizationResponse {
177
+ deviceCode?: string;
178
+ userCode?: string;
179
+ verificationUri?: string;
180
+ verificationUriComplete?: string;
181
+ expiresIn?: number;
182
+ interval?: number;
183
+ }
184
+ export declare const CreateTokenRequestFilterSensitiveLog: (
185
+ obj: CreateTokenRequest
186
+ ) => any;
187
+ export declare const CreateTokenResponseFilterSensitiveLog: (
188
+ obj: CreateTokenResponse
189
+ ) => any;
190
+ export declare const CreateTokenWithIAMRequestFilterSensitiveLog: (
191
+ obj: CreateTokenWithIAMRequest
192
+ ) => any;
193
+ export declare const CreateTokenWithIAMResponseFilterSensitiveLog: (
194
+ obj: CreateTokenWithIAMResponse
195
+ ) => any;
196
+ export declare const RegisterClientResponseFilterSensitiveLog: (
197
+ obj: RegisterClientResponse
198
+ ) => any;
199
+ export declare const StartDeviceAuthorizationRequestFilterSensitiveLog: (
200
+ obj: StartDeviceAuthorizationRequest
201
+ ) => any;
@@ -0,0 +1,53 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateTokenCommandInput,
8
+ CreateTokenCommandOutput,
9
+ } from "../commands/CreateTokenCommand";
10
+ import {
11
+ CreateTokenWithIAMCommandInput,
12
+ CreateTokenWithIAMCommandOutput,
13
+ } from "../commands/CreateTokenWithIAMCommand";
14
+ import {
15
+ RegisterClientCommandInput,
16
+ RegisterClientCommandOutput,
17
+ } from "../commands/RegisterClientCommand";
18
+ import {
19
+ StartDeviceAuthorizationCommandInput,
20
+ StartDeviceAuthorizationCommandOutput,
21
+ } from "../commands/StartDeviceAuthorizationCommand";
22
+ export declare const se_CreateTokenCommand: (
23
+ input: CreateTokenCommandInput,
24
+ context: __SerdeContext
25
+ ) => Promise<__HttpRequest>;
26
+ export declare const se_CreateTokenWithIAMCommand: (
27
+ input: CreateTokenWithIAMCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const se_RegisterClientCommand: (
31
+ input: RegisterClientCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const se_StartDeviceAuthorizationCommand: (
35
+ input: StartDeviceAuthorizationCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const de_CreateTokenCommand: (
39
+ output: __HttpResponse,
40
+ context: __SerdeContext
41
+ ) => Promise<CreateTokenCommandOutput>;
42
+ export declare const de_CreateTokenWithIAMCommand: (
43
+ output: __HttpResponse,
44
+ context: __SerdeContext
45
+ ) => Promise<CreateTokenWithIAMCommandOutput>;
46
+ export declare const de_RegisterClientCommand: (
47
+ output: __HttpResponse,
48
+ context: __SerdeContext
49
+ ) => Promise<RegisterClientCommandOutput>;
50
+ export declare const de_StartDeviceAuthorizationCommand: (
51
+ output: __HttpResponse,
52
+ context: __SerdeContext
53
+ ) => Promise<StartDeviceAuthorizationCommandOutput>;
@@ -0,0 +1,97 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { SSOOIDCClientConfig } from "./SSOOIDCClient";
3
+ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/types").RequestHandler<
24
+ import("@smithy/protocol-http").HttpRequest,
25
+ import("@smithy/protocol-http").HttpResponse,
26
+ import("@smithy/types").HttpHandlerOptions
27
+ > & {
28
+ updateHttpClientConfig(key: never, value: never): void;
29
+ httpHandlerConfigs(): {};
30
+ })
31
+ | RequestHandler;
32
+ retryMode: string | import("@smithy/types").Provider<string>;
33
+ sha256: import("@smithy/types").HashConstructor;
34
+ streamCollector: import("@smithy/types").StreamCollector;
35
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
36
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
37
+ apiVersion: string;
38
+ urlParser: import("@smithy/types").UrlParser;
39
+ base64Decoder: import("@smithy/types").Decoder;
40
+ base64Encoder: import("@smithy/types").Encoder;
41
+ utf8Decoder: import("@smithy/types").Decoder;
42
+ utf8Encoder: import("@smithy/types").Encoder;
43
+ disableHostPrefix: boolean;
44
+ serviceId: string;
45
+ logger: import("@smithy/types").Logger;
46
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger | undefined;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean | undefined;
71
+ retryStrategy?:
72
+ | import("@smithy/types").RetryStrategy
73
+ | import("@smithy/types").RetryStrategyV2
74
+ | undefined;
75
+ credentials?:
76
+ | import("@smithy/types").AwsCredentialIdentity
77
+ | import("@smithy/types").Provider<
78
+ import("@smithy/types").AwsCredentialIdentity
79
+ >
80
+ | undefined;
81
+ signer?:
82
+ | import("@smithy/types").RequestSigner
83
+ | ((
84
+ authScheme?: import("@smithy/types").AuthScheme | undefined
85
+ ) => Promise<import("@smithy/types").RequestSigner>)
86
+ | undefined;
87
+ signingEscapePath?: boolean | undefined;
88
+ systemClockOffset?: number | undefined;
89
+ signingRegion?: string | undefined;
90
+ signerConstructor?:
91
+ | (new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner)
95
+ | undefined;
96
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
97
+ };
@@ -0,0 +1,95 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { SSOOIDCClientConfig } from "./SSOOIDCClient";
3
+ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: any;
10
+ defaultUserAgentProvider: import("@smithy/types").Provider<
11
+ import("@smithy/types").UserAgent
12
+ >;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler:
16
+ | (import("@smithy/types").RequestHandler<
17
+ any,
18
+ any,
19
+ import("@smithy/types").HttpHandlerOptions
20
+ > &
21
+ import("@smithy/types").RequestHandler<
22
+ import("@smithy/protocol-http").HttpRequest,
23
+ import("@smithy/protocol-http").HttpResponse,
24
+ import("@smithy/types").HttpHandlerOptions
25
+ > & {
26
+ updateHttpClientConfig(key: never, value: never): void;
27
+ httpHandlerConfigs(): {};
28
+ })
29
+ | RequestHandler;
30
+ retryMode: string | import("@smithy/types").Provider<string>;
31
+ sha256: import("@smithy/types").HashConstructor;
32
+ streamCollector: import("@smithy/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
35
+ apiVersion: string;
36
+ urlParser: import("@smithy/types").UrlParser;
37
+ base64Decoder: import("@smithy/types").Decoder;
38
+ base64Encoder: import("@smithy/types").Encoder;
39
+ utf8Decoder: import("@smithy/types").Decoder;
40
+ utf8Encoder: import("@smithy/types").Encoder;
41
+ disableHostPrefix: boolean;
42
+ serviceId: string;
43
+ logger: import("@smithy/types").Logger;
44
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
45
+ endpoint?:
46
+ | ((
47
+ | string
48
+ | import("@smithy/types").Endpoint
49
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
50
+ | import("@smithy/types").EndpointV2
51
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
52
+ ) &
53
+ (
54
+ | string
55
+ | import("@smithy/types").Provider<string>
56
+ | import("@smithy/types").Endpoint
57
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
+ | import("@smithy/types").EndpointV2
59
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
60
+ ))
61
+ | undefined;
62
+ endpointProvider: (
63
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
64
+ context?: {
65
+ logger?: import("@smithy/types").Logger | undefined;
66
+ }
67
+ ) => import("@smithy/types").EndpointV2;
68
+ tls?: boolean | undefined;
69
+ retryStrategy?:
70
+ | import("@smithy/types").RetryStrategy
71
+ | import("@smithy/types").RetryStrategyV2
72
+ | undefined;
73
+ credentials?:
74
+ | import("@smithy/types").AwsCredentialIdentity
75
+ | import("@smithy/types").Provider<
76
+ import("@smithy/types").AwsCredentialIdentity
77
+ >
78
+ | undefined;
79
+ signer?:
80
+ | import("@smithy/types").RequestSigner
81
+ | ((
82
+ authScheme?: import("@smithy/types").AuthScheme | undefined
83
+ ) => Promise<import("@smithy/types").RequestSigner>)
84
+ | undefined;
85
+ signingEscapePath?: boolean | undefined;
86
+ systemClockOffset?: number | undefined;
87
+ signingRegion?: string | undefined;
88
+ signerConstructor?:
89
+ | (new (
90
+ options: import("@smithy/signature-v4").SignatureV4Init &
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit
92
+ ) => import("@smithy/types").RequestSigner)
93
+ | undefined;
94
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
95
+ };
@@ -0,0 +1,88 @@
1
+ import { SSOOIDCClientConfig } from "./SSOOIDCClient";
2
+ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | (import("@smithy/types").RequestHandler<
7
+ any,
8
+ any,
9
+ import("@smithy/types").HttpHandlerOptions
10
+ > &
11
+ import("@smithy/types").RequestHandler<
12
+ import("@smithy/protocol-http").HttpRequest,
13
+ import("@smithy/protocol-http").HttpResponse,
14
+ import("@smithy/types").HttpHandlerOptions
15
+ > & {
16
+ updateHttpClientConfig(key: never, value: never): void;
17
+ httpHandlerConfigs(): {};
18
+ })
19
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
+ streamCollector: import("@smithy/types").StreamCollector;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: import("@smithy/types").Encoder;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: import("@smithy/types").Encoder;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ region: string | import("@smithy/types").Provider<any>;
33
+ credentialDefaultProvider: (
34
+ input: any
35
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
36
+ defaultUserAgentProvider: import("@smithy/types").Provider<
37
+ import("@smithy/types").UserAgent
38
+ >;
39
+ maxAttempts: number | import("@smithy/types").Provider<number>;
40
+ retryMode: string | import("@smithy/types").Provider<string>;
41
+ logger: import("@smithy/types").Logger;
42
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ defaultsMode:
44
+ | import("@smithy/smithy-client").DefaultsMode
45
+ | import("@smithy/types").Provider<
46
+ import("@smithy/smithy-client").DefaultsMode
47
+ >;
48
+ endpoint?:
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ | undefined;
55
+ endpointProvider: (
56
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
57
+ context?: {
58
+ logger?: import("@smithy/types").Logger | undefined;
59
+ }
60
+ ) => import("@smithy/types").EndpointV2;
61
+ tls?: boolean | undefined;
62
+ retryStrategy?:
63
+ | import("@smithy/types").RetryStrategy
64
+ | import("@smithy/types").RetryStrategyV2
65
+ | undefined;
66
+ credentials?:
67
+ | import("@smithy/types").AwsCredentialIdentity
68
+ | import("@smithy/types").Provider<
69
+ import("@smithy/types").AwsCredentialIdentity
70
+ >
71
+ | undefined;
72
+ signer?:
73
+ | import("@smithy/types").RequestSigner
74
+ | ((
75
+ authScheme?: import("@smithy/types").AuthScheme | undefined
76
+ ) => Promise<import("@smithy/types").RequestSigner>)
77
+ | undefined;
78
+ signingEscapePath?: boolean | undefined;
79
+ systemClockOffset?: number | undefined;
80
+ signingRegion?: string | undefined;
81
+ signerConstructor?:
82
+ | (new (
83
+ options: import("@smithy/signature-v4").SignatureV4Init &
84
+ import("@smithy/signature-v4").SignatureV4CryptoInit
85
+ ) => import("@smithy/types").RequestSigner)
86
+ | undefined;
87
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
88
+ };
@@ -0,0 +1,19 @@
1
+ import { SSOOIDCClientConfig } from "./SSOOIDCClient";
2
+ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: import("@smithy/types").Encoder;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger | undefined;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ logger: import("@smithy/types").Logger;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
@@ -0,0 +1,11 @@
1
+ import { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: SSOOIDCExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;