@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,75 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
3
+ import { CreateTokenWithIAMCommandInput, CreateTokenWithIAMCommandOutput } from "./commands/CreateTokenWithIAMCommand";
4
+ import { RegisterClientCommandInput, RegisterClientCommandOutput } from "./commands/RegisterClientCommand";
5
+ import { StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput } from "./commands/StartDeviceAuthorizationCommand";
6
+ import { SSOOIDCClient } from "./SSOOIDCClient";
7
+ export interface SSOOIDC {
8
+ /**
9
+ * @see {@link CreateTokenCommand}
10
+ */
11
+ createToken(args: CreateTokenCommandInput, options?: __HttpHandlerOptions): Promise<CreateTokenCommandOutput>;
12
+ createToken(args: CreateTokenCommandInput, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
13
+ createToken(args: CreateTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
14
+ /**
15
+ * @see {@link CreateTokenWithIAMCommand}
16
+ */
17
+ createTokenWithIAM(args: CreateTokenWithIAMCommandInput, options?: __HttpHandlerOptions): Promise<CreateTokenWithIAMCommandOutput>;
18
+ createTokenWithIAM(args: CreateTokenWithIAMCommandInput, cb: (err: any, data?: CreateTokenWithIAMCommandOutput) => void): void;
19
+ createTokenWithIAM(args: CreateTokenWithIAMCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTokenWithIAMCommandOutput) => void): void;
20
+ /**
21
+ * @see {@link RegisterClientCommand}
22
+ */
23
+ registerClient(args: RegisterClientCommandInput, options?: __HttpHandlerOptions): Promise<RegisterClientCommandOutput>;
24
+ registerClient(args: RegisterClientCommandInput, cb: (err: any, data?: RegisterClientCommandOutput) => void): void;
25
+ registerClient(args: RegisterClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterClientCommandOutput) => void): void;
26
+ /**
27
+ * @see {@link StartDeviceAuthorizationCommand}
28
+ */
29
+ startDeviceAuthorization(args: StartDeviceAuthorizationCommandInput, options?: __HttpHandlerOptions): Promise<StartDeviceAuthorizationCommandOutput>;
30
+ startDeviceAuthorization(args: StartDeviceAuthorizationCommandInput, cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void): void;
31
+ startDeviceAuthorization(args: StartDeviceAuthorizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeviceAuthorizationCommandOutput) => void): void;
32
+ }
33
+ /**
34
+ * @public
35
+ * <p>IAM Identity Center OpenID Connect (OIDC) is a web service that enables a client (such as CLI
36
+ * or a native application) to register with IAM Identity Center. The service also enables the client to
37
+ * fetch the user’s access token upon successful authentication and authorization with
38
+ * IAM Identity Center.</p>
39
+ * <note>
40
+ * <p>IAM Identity Center uses the <code>sso</code> and <code>identitystore</code> API namespaces.</p>
41
+ * </note>
42
+ * <p>
43
+ * <b>Considerations for Using This Guide</b>
44
+ * </p>
45
+ * <p>Before you begin using this guide, we recommend that you first review the following
46
+ * important information about how the IAM Identity Center OIDC service works.</p>
47
+ * <ul>
48
+ * <li>
49
+ * <p>The IAM Identity Center OIDC service currently implements only the portions of the OAuth 2.0 Device
50
+ * Authorization Grant standard (<a href="https://tools.ietf.org/html/rfc8628">https://tools.ietf.org/html/rfc8628</a>) that are necessary to enable single
51
+ * sign-on authentication with the CLI. </p>
52
+ * </li>
53
+ * <li>
54
+ * <p>With older versions of the CLI, the service only emits OIDC access tokens, so to
55
+ * obtain a new token, users must explicitly re-authenticate. To access the OIDC flow that
56
+ * supports token refresh and doesn’t require re-authentication, update to the latest CLI
57
+ * version (1.27.10 for CLI V1 and 2.9.0 for CLI V2) with support for OIDC token refresh and
58
+ * configurable IAM Identity Center session durations. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/configure-user-session.html">Configure Amazon Web Services access portal session duration </a>. </p>
59
+ * </li>
60
+ * <li>
61
+ * <p>The access tokens provided by this service grant access to all Amazon Web Services account
62
+ * entitlements assigned to an IAM Identity Center user, not just a particular application.</p>
63
+ * </li>
64
+ * <li>
65
+ * <p>The documentation in this guide does not describe the mechanism to convert the access
66
+ * token into Amazon Web Services Auth (“sigv4”) credentials for use with IAM-protected Amazon Web Services service
67
+ * endpoints. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/PortalAPIReference/API_GetRoleCredentials.html">GetRoleCredentials</a> in the <i>IAM Identity Center Portal API Reference
68
+ * Guide</i>.</p>
69
+ * </li>
70
+ * </ul>
71
+ * <p>For general information about IAM Identity Center, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is
72
+ * IAM Identity Center?</a> in the <i>IAM Identity Center User Guide</i>.</p>
73
+ */
74
+ export declare class SSOOIDC extends SSOOIDCClient implements SSOOIDC {
75
+ }
@@ -0,0 +1,210 @@
1
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
3
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
4
+ import { Credentials as __Credentials } from "@aws-sdk/types";
5
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
6
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
7
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
8
+ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
9
+ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
10
+ import { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
11
+ import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
12
+ import { CreateTokenWithIAMCommandInput, CreateTokenWithIAMCommandOutput } from "./commands/CreateTokenWithIAMCommand";
13
+ import { RegisterClientCommandInput, RegisterClientCommandOutput } from "./commands/RegisterClientCommand";
14
+ import { StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput } from "./commands/StartDeviceAuthorizationCommand";
15
+ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
16
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
17
+ export { __Client };
18
+ /**
19
+ * @public
20
+ */
21
+ export type ServiceInputTypes = CreateTokenCommandInput | CreateTokenWithIAMCommandInput | RegisterClientCommandInput | StartDeviceAuthorizationCommandInput;
22
+ /**
23
+ * @public
24
+ */
25
+ export type ServiceOutputTypes = CreateTokenCommandOutput | CreateTokenWithIAMCommandOutput | RegisterClientCommandOutput | StartDeviceAuthorizationCommandOutput;
26
+ /**
27
+ * @public
28
+ */
29
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
30
+ /**
31
+ * The HTTP handler to use. Fetch in browser and Https in Nodejs.
32
+ */
33
+ requestHandler?: __HttpHandler;
34
+ /**
35
+ * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
36
+ * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
37
+ * @internal
38
+ */
39
+ sha256?: __ChecksumConstructor | __HashConstructor;
40
+ /**
41
+ * The function that will be used to convert strings into HTTP endpoints.
42
+ * @internal
43
+ */
44
+ urlParser?: __UrlParser;
45
+ /**
46
+ * A function that can calculate the length of a request body.
47
+ * @internal
48
+ */
49
+ bodyLengthChecker?: __BodyLengthCalculator;
50
+ /**
51
+ * A function that converts a stream into an array of bytes.
52
+ * @internal
53
+ */
54
+ streamCollector?: __StreamCollector;
55
+ /**
56
+ * The function that will be used to convert a base64-encoded string to a byte array.
57
+ * @internal
58
+ */
59
+ base64Decoder?: __Decoder;
60
+ /**
61
+ * The function that will be used to convert binary data to a base64-encoded string.
62
+ * @internal
63
+ */
64
+ base64Encoder?: __Encoder;
65
+ /**
66
+ * The function that will be used to convert a UTF8-encoded string to a byte array.
67
+ * @internal
68
+ */
69
+ utf8Decoder?: __Decoder;
70
+ /**
71
+ * The function that will be used to convert binary data to a UTF-8 encoded string.
72
+ * @internal
73
+ */
74
+ utf8Encoder?: __Encoder;
75
+ /**
76
+ * The runtime environment.
77
+ * @internal
78
+ */
79
+ runtime?: string;
80
+ /**
81
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
82
+ * trait of an operation.
83
+ */
84
+ disableHostPrefix?: boolean;
85
+ /**
86
+ * Unique service identifier.
87
+ * @internal
88
+ */
89
+ serviceId?: string;
90
+ /**
91
+ * Enables IPv6/IPv4 dualstack endpoint.
92
+ */
93
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
94
+ /**
95
+ * Enables FIPS compatible endpoints.
96
+ */
97
+ useFipsEndpoint?: boolean | __Provider<boolean>;
98
+ /**
99
+ * The AWS region to which this client will send requests
100
+ */
101
+ region?: string | __Provider<string>;
102
+ /**
103
+ * Default credentials provider; Not available in browser runtime.
104
+ * @internal
105
+ */
106
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
107
+ /**
108
+ * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
109
+ * @internal
110
+ */
111
+ defaultUserAgentProvider?: Provider<__UserAgent>;
112
+ /**
113
+ * Value for how many times a request will be made at most in case of retry.
114
+ */
115
+ maxAttempts?: number | __Provider<number>;
116
+ /**
117
+ * Specifies which retry algorithm to use.
118
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
119
+ *
120
+ */
121
+ retryMode?: string | __Provider<string>;
122
+ /**
123
+ * Optional logger for logging debug/info/warn/error.
124
+ */
125
+ logger?: __Logger;
126
+ /**
127
+ * Optional extensions
128
+ */
129
+ extensions?: RuntimeExtension[];
130
+ /**
131
+ * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
132
+ */
133
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
134
+ }
135
+ /**
136
+ * @public
137
+ */
138
+ export type SSOOIDCClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
139
+ /**
140
+ * @public
141
+ *
142
+ * The configuration interface of SSOOIDCClient class constructor that set the region, credentials and other options.
143
+ */
144
+ export interface SSOOIDCClientConfig extends SSOOIDCClientConfigType {
145
+ }
146
+ /**
147
+ * @public
148
+ */
149
+ export type SSOOIDCClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
150
+ /**
151
+ * @public
152
+ *
153
+ * The resolved configuration interface of SSOOIDCClient class. This is resolved and normalized from the {@link SSOOIDCClientConfig | constructor configuration interface}.
154
+ */
155
+ export interface SSOOIDCClientResolvedConfig extends SSOOIDCClientResolvedConfigType {
156
+ }
157
+ /**
158
+ * @public
159
+ * <p>IAM Identity Center OpenID Connect (OIDC) is a web service that enables a client (such as CLI
160
+ * or a native application) to register with IAM Identity Center. The service also enables the client to
161
+ * fetch the user’s access token upon successful authentication and authorization with
162
+ * IAM Identity Center.</p>
163
+ * <note>
164
+ * <p>IAM Identity Center uses the <code>sso</code> and <code>identitystore</code> API namespaces.</p>
165
+ * </note>
166
+ * <p>
167
+ * <b>Considerations for Using This Guide</b>
168
+ * </p>
169
+ * <p>Before you begin using this guide, we recommend that you first review the following
170
+ * important information about how the IAM Identity Center OIDC service works.</p>
171
+ * <ul>
172
+ * <li>
173
+ * <p>The IAM Identity Center OIDC service currently implements only the portions of the OAuth 2.0 Device
174
+ * Authorization Grant standard (<a href="https://tools.ietf.org/html/rfc8628">https://tools.ietf.org/html/rfc8628</a>) that are necessary to enable single
175
+ * sign-on authentication with the CLI. </p>
176
+ * </li>
177
+ * <li>
178
+ * <p>With older versions of the CLI, the service only emits OIDC access tokens, so to
179
+ * obtain a new token, users must explicitly re-authenticate. To access the OIDC flow that
180
+ * supports token refresh and doesn’t require re-authentication, update to the latest CLI
181
+ * version (1.27.10 for CLI V1 and 2.9.0 for CLI V2) with support for OIDC token refresh and
182
+ * configurable IAM Identity Center session durations. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/configure-user-session.html">Configure Amazon Web Services access portal session duration </a>. </p>
183
+ * </li>
184
+ * <li>
185
+ * <p>The access tokens provided by this service grant access to all Amazon Web Services account
186
+ * entitlements assigned to an IAM Identity Center user, not just a particular application.</p>
187
+ * </li>
188
+ * <li>
189
+ * <p>The documentation in this guide does not describe the mechanism to convert the access
190
+ * token into Amazon Web Services Auth (“sigv4”) credentials for use with IAM-protected Amazon Web Services service
191
+ * endpoints. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/PortalAPIReference/API_GetRoleCredentials.html">GetRoleCredentials</a> in the <i>IAM Identity Center Portal API Reference
192
+ * Guide</i>.</p>
193
+ * </li>
194
+ * </ul>
195
+ * <p>For general information about IAM Identity Center, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is
196
+ * IAM Identity Center?</a> in the <i>IAM Identity Center User Guide</i>.</p>
197
+ */
198
+ export declare class SSOOIDCClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig> {
199
+ /**
200
+ * The resolved configuration of SSOOIDCClient class. This is resolved and normalized from the {@link SSOOIDCClientConfig | constructor configuration interface}.
201
+ */
202
+ readonly config: SSOOIDCClientResolvedConfig;
203
+ constructor(...[configuration]: __CheckOptionalClientConfig<SSOOIDCClientConfig>);
204
+ /**
205
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
206
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
207
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
208
+ */
209
+ destroy(): void;
210
+ }
@@ -0,0 +1,161 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link CreateTokenCommand}.
13
+ */
14
+ export interface CreateTokenCommandInput extends CreateTokenRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link CreateTokenCommand}.
20
+ */
21
+ export interface CreateTokenCommandOutput extends CreateTokenResponse, __MetadataBearer {
22
+ }
23
+ declare const CreateTokenCommand_base: {
24
+ new (input: CreateTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Creates and returns access and refresh tokens for clients that are authenticated using
30
+ * client secrets. The access token can be used to fetch short-term credentials for the assigned
31
+ * AWS accounts or to access application APIs using <code>bearer</code> authentication.</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { SSOOIDCClient, CreateTokenCommand } from "@aws-sdk/client-sso-oidc"; // ES Modules import
36
+ * // const { SSOOIDCClient, CreateTokenCommand } = require("@aws-sdk/client-sso-oidc"); // CommonJS import
37
+ * const client = new SSOOIDCClient(config);
38
+ * const input = { // CreateTokenRequest
39
+ * clientId: "STRING_VALUE", // required
40
+ * clientSecret: "STRING_VALUE", // required
41
+ * grantType: "STRING_VALUE", // required
42
+ * deviceCode: "STRING_VALUE",
43
+ * code: "STRING_VALUE",
44
+ * refreshToken: "STRING_VALUE",
45
+ * scope: [ // Scopes
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * redirectUri: "STRING_VALUE",
49
+ * };
50
+ * const command = new CreateTokenCommand(input);
51
+ * const response = await client.send(command);
52
+ * // { // CreateTokenResponse
53
+ * // accessToken: "STRING_VALUE",
54
+ * // tokenType: "STRING_VALUE",
55
+ * // expiresIn: Number("int"),
56
+ * // refreshToken: "STRING_VALUE",
57
+ * // idToken: "STRING_VALUE",
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param CreateTokenCommandInput - {@link CreateTokenCommandInput}
63
+ * @returns {@link CreateTokenCommandOutput}
64
+ * @see {@link CreateTokenCommandInput} for command's `input` shape.
65
+ * @see {@link CreateTokenCommandOutput} for command's `response` shape.
66
+ * @see {@link SSOOIDCClientResolvedConfig | config} for SSOOIDCClient's `config` shape.
67
+ *
68
+ * @throws {@link AccessDeniedException} (client fault)
69
+ * <p>You do not have sufficient access to perform this action.</p>
70
+ *
71
+ * @throws {@link AuthorizationPendingException} (client fault)
72
+ * <p>Indicates that a request to authorize a client with an access user session token is
73
+ * pending.</p>
74
+ *
75
+ * @throws {@link ExpiredTokenException} (client fault)
76
+ * <p>Indicates that the token issued by the service is expired and is no longer valid.</p>
77
+ *
78
+ * @throws {@link InternalServerException} (server fault)
79
+ * <p>Indicates that an error from the service occurred while trying to process a
80
+ * request.</p>
81
+ *
82
+ * @throws {@link InvalidClientException} (client fault)
83
+ * <p>Indicates that the <code>clientId</code> or <code>clientSecret</code> in the request is
84
+ * invalid. For example, this can occur when a client sends an incorrect <code>clientId</code> or
85
+ * an expired <code>clientSecret</code>.</p>
86
+ *
87
+ * @throws {@link InvalidGrantException} (client fault)
88
+ * <p>Indicates that a request contains an invalid grant. This can occur if a client makes a
89
+ * <a>CreateToken</a> request with an invalid grant type.</p>
90
+ *
91
+ * @throws {@link InvalidRequestException} (client fault)
92
+ * <p>Indicates that something is wrong with the input to the request. For example, a required
93
+ * parameter might be missing or out of range.</p>
94
+ *
95
+ * @throws {@link InvalidScopeException} (client fault)
96
+ * <p>Indicates that the scope provided in the request is invalid.</p>
97
+ *
98
+ * @throws {@link SlowDownException} (client fault)
99
+ * <p>Indicates that the client is making the request too frequently and is more than the
100
+ * service can handle. </p>
101
+ *
102
+ * @throws {@link UnauthorizedClientException} (client fault)
103
+ * <p>Indicates that the client is not currently authorized to make the request. This can happen
104
+ * when a <code>clientId</code> is not issued for a public client.</p>
105
+ *
106
+ * @throws {@link UnsupportedGrantTypeException} (client fault)
107
+ * <p>Indicates that the grant type in the request is not supported by the service.</p>
108
+ *
109
+ * @throws {@link SSOOIDCServiceException}
110
+ * <p>Base exception class for all service exceptions from SSOOIDC service.</p>
111
+ *
112
+ * @example Call OAuth/OIDC /token endpoint for Device Code grant with Secret authentication
113
+ * ```javascript
114
+ * //
115
+ * const input = {
116
+ * "clientId": "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID",
117
+ * "clientSecret": "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0",
118
+ * "deviceCode": "yJraWQiOiJrZXktMTU2Njk2ODA4OCIsImFsZyI6IkhTMzIn0EXAMPLEDEVICECODE",
119
+ * "grantType": "urn:ietf:params:oauth:grant-type:device-code"
120
+ * };
121
+ * const command = new CreateTokenCommand(input);
122
+ * const response = await client.send(command);
123
+ * /* response ==
124
+ * {
125
+ * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN",
126
+ * "expiresIn": 1579729529,
127
+ * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN",
128
+ * "tokenType": "Bearer"
129
+ * }
130
+ * *\/
131
+ * // example id: create-token-for-device-code
132
+ * ```
133
+ *
134
+ * @example Call OAuth/OIDC /token endpoint for Refresh Token grant with Secret authentication
135
+ * ```javascript
136
+ * //
137
+ * const input = {
138
+ * "clientId": "_yzkThXVzLWVhc3QtMQEXAMPLECLIENTID",
139
+ * "clientSecret": "VERYLONGSECRETeyJraWQiOiJrZXktMTU2NDAyODA5OSIsImFsZyI6IkhTMzg0In0",
140
+ * "grantType": "refresh_token",
141
+ * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN",
142
+ * "scope": [
143
+ * "codewhisperer:completions"
144
+ * ]
145
+ * };
146
+ * const command = new CreateTokenCommand(input);
147
+ * const response = await client.send(command);
148
+ * /* response ==
149
+ * {
150
+ * "accessToken": "aoal-YigITUDiNX1xZwOMXM5MxOWDL0E0jg9P6_C_jKQPxS_SKCP6f0kh1Up4g7TtvQqkMnD-GJiU_S1gvug6SrggAkc0:MGYCMQD3IatVjV7jAJU91kK3PkS/SfA2wtgWzOgZWDOR7sDGN9t0phCZz5It/aes/3C1Zj0CMQCKWOgRaiz6AIhza3DSXQNMLjRKXC8F8ceCsHlgYLMZ7hZidEXAMPLEACCESSTOKEN",
151
+ * "expiresIn": 1579729529,
152
+ * "refreshToken": "aorvJYubGpU6i91YnH7Mfo-AT2fIVa1zCfA_Rvq9yjVKIP3onFmmykuQ7E93y2I-9Nyj-A_sVvMufaLNL0bqnDRtgAkc0:MGUCMFrRsktMRVlWaOR70XGMFGLL0SlcCw4DiYveIiOVx1uK9BbD0gvAddsW3UTLozXKMgIxAJ3qxUvjpnlLIOaaKOoa/FuNgqJVvr9GMwDtnAtlh9iZzAkEXAMPLEREFRESHTOKEN",
153
+ * "tokenType": "Bearer"
154
+ * }
155
+ * *\/
156
+ * // example id: create-token-for-refresh-token
157
+ * ```
158
+ *
159
+ */
160
+ export declare class CreateTokenCommand extends CreateTokenCommand_base {
161
+ }