aws-sdk-core 3.31.0 → 3.168.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (248) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1573 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -1
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +11 -1
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +50 -18
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +7 -2
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +5 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +11 -1
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +71 -9
  22. data/lib/aws-sdk-core/client_stubs.rb +21 -14
  23. data/lib/aws-sdk-core/credential_provider.rb +1 -30
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +107 -43
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +24 -9
  30. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  31. data/lib/aws-sdk-core/endpoints/condition.rb +36 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +71 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +37 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +75 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +26 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +20 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +47 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +32 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +52 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +40 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +59 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +172 -12
  46. data/lib/aws-sdk-core/event_emitter.rb +44 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +2 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +2 -0
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +21 -1
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +10 -0
  55. data/lib/aws-sdk-core/json.rb +11 -28
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +38 -13
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +118 -47
  61. data/lib/aws-sdk-core/pager.rb +5 -0
  62. data/lib/aws-sdk-core/param_converter.rb +2 -0
  63. data/lib/aws-sdk-core/param_validator.rb +63 -7
  64. data/lib/aws-sdk-core/plugins/api_key.rb +5 -1
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +2 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +2 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +2 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +65 -6
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +10 -4
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +50 -7
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +172 -0
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +16 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +2 -0
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +2 -0
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +2 -0
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +2 -0
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +19 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -0
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +2 -0
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -0
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +81 -16
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +3 -1
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +312 -92
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +3 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +42 -32
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +28 -7
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +9 -5
  106. data/lib/aws-sdk-core/process_credentials.rb +20 -15
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +2 -0
  108. data/lib/aws-sdk-core/query/handler.rb +8 -1
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +2 -0
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +2 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +3 -1
  116. data/lib/aws-sdk-core/rest/handler.rb +3 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +2 -0
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +10 -3
  120. data/lib/aws-sdk-core/rest/request/headers.rb +16 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +4 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +2 -0
  123. data/lib/aws-sdk-core/rest/response/headers.rb +6 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +2 -0
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +2 -0
  127. data/lib/aws-sdk-core/shared_config.rb +222 -118
  128. data/lib/aws-sdk-core/shared_credentials.rb +9 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +24 -7
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +2 -0
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +2 -0
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +2 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +2 -0
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +52 -7
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +3 -1
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +2 -2
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +15 -4
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +24 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +2 -0
  151. data/lib/aws-sdk-core/waiters/waiter.rb +4 -2
  152. data/lib/aws-sdk-core/waiters.rb +2 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +5 -3
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +36 -4
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +25 -0
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +7 -0
  167. data/lib/aws-sdk-core/xml.rb +2 -0
  168. data/lib/aws-sdk-core.rb +42 -4
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +112 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +111 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +1426 -616
  192. data/lib/aws-sdk-sts/client_api.rb +76 -1
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +229 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +153 -1
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +4 -1
  202. data/lib/aws-sdk-sts/types.rb +918 -296
  203. data/lib/aws-sdk-sts.rb +20 -6
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +7 -2
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +17 -3
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +6 -2
  221. data/lib/seahorse/client/logging/handler.rb +2 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +30 -23
  224. data/lib/seahorse/client/net_http/handler.rb +24 -7
  225. data/lib/seahorse/client/net_http/patches.rb +16 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +10 -7
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +4 -2
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +2 -0
  233. data/lib/seahorse/client/plugins/net_http.rb +39 -3
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +2 -0
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +23 -14
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +2 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +14 -0
  242. data/lib/seahorse/model/authorizer.rb +2 -0
  243. data/lib/seahorse/model/operation.rb +21 -0
  244. data/lib/seahorse/model/shapes.rb +29 -2
  245. data/lib/seahorse/util.rb +12 -1
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +12 -0
  248. metadata +117 -16
@@ -0,0 +1,502 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::SSOOIDC
11
+ module Types
12
+
13
+ # You do not have sufficient access to perform this action.
14
+ #
15
+ # @!attribute [rw] error
16
+ # @return [String]
17
+ #
18
+ # @!attribute [rw] error_description
19
+ # @return [String]
20
+ #
21
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/AccessDeniedException AWS API Documentation
22
+ #
23
+ class AccessDeniedException < Struct.new(
24
+ :error,
25
+ :error_description)
26
+ SENSITIVE = []
27
+ include Aws::Structure
28
+ end
29
+
30
+ # Indicates that a request to authorize a client with an access user
31
+ # session token is pending.
32
+ #
33
+ # @!attribute [rw] error
34
+ # @return [String]
35
+ #
36
+ # @!attribute [rw] error_description
37
+ # @return [String]
38
+ #
39
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/AuthorizationPendingException AWS API Documentation
40
+ #
41
+ class AuthorizationPendingException < Struct.new(
42
+ :error,
43
+ :error_description)
44
+ SENSITIVE = []
45
+ include Aws::Structure
46
+ end
47
+
48
+ # @!attribute [rw] client_id
49
+ # The unique identifier string for each client. This value should come
50
+ # from the persisted result of the RegisterClient API.
51
+ # @return [String]
52
+ #
53
+ # @!attribute [rw] client_secret
54
+ # A secret string generated for the client. This value should come
55
+ # from the persisted result of the RegisterClient API.
56
+ # @return [String]
57
+ #
58
+ # @!attribute [rw] grant_type
59
+ # Supports grant types for the authorization code, refresh token, and
60
+ # device code request. For device code requests, specify the following
61
+ # value:
62
+ #
63
+ # `urn:ietf:params:oauth:grant-type:device_code `
64
+ #
65
+ # For information about how to obtain the device code, see the
66
+ # StartDeviceAuthorization topic.
67
+ # @return [String]
68
+ #
69
+ # @!attribute [rw] device_code
70
+ # Used only when calling this API for the device code grant type. This
71
+ # short-term code is used to identify this authentication attempt.
72
+ # This should come from an in-memory reference to the result of the
73
+ # StartDeviceAuthorization API.
74
+ # @return [String]
75
+ #
76
+ # @!attribute [rw] code
77
+ # The authorization code received from the authorization service. This
78
+ # parameter is required to perform an authorization grant request to
79
+ # get access to a token.
80
+ # @return [String]
81
+ #
82
+ # @!attribute [rw] refresh_token
83
+ # Currently, `refreshToken` is not yet implemented and is not
84
+ # supported. For more information about the features and limitations
85
+ # of the current IAM Identity Center OIDC implementation, see
86
+ # *Considerations for Using this Guide* in the [IAM Identity Center
87
+ # OIDC API Reference][1].
88
+ #
89
+ # The token used to obtain an access token in the event that the
90
+ # access token is invalid or expired.
91
+ #
92
+ #
93
+ #
94
+ # [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
95
+ # @return [String]
96
+ #
97
+ # @!attribute [rw] scope
98
+ # The list of scopes that is defined by the client. Upon
99
+ # authorization, this list is used to restrict permissions when
100
+ # granting an access token.
101
+ # @return [Array<String>]
102
+ #
103
+ # @!attribute [rw] redirect_uri
104
+ # The location of the application that will receive the authorization
105
+ # code. Users authorize the service to send the request to this
106
+ # location.
107
+ # @return [String]
108
+ #
109
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/CreateTokenRequest AWS API Documentation
110
+ #
111
+ class CreateTokenRequest < Struct.new(
112
+ :client_id,
113
+ :client_secret,
114
+ :grant_type,
115
+ :device_code,
116
+ :code,
117
+ :refresh_token,
118
+ :scope,
119
+ :redirect_uri)
120
+ SENSITIVE = []
121
+ include Aws::Structure
122
+ end
123
+
124
+ # @!attribute [rw] access_token
125
+ # An opaque token to access IAM Identity Center resources assigned to
126
+ # a user.
127
+ # @return [String]
128
+ #
129
+ # @!attribute [rw] token_type
130
+ # Used to notify the client that the returned token is an access
131
+ # token. The supported type is `BearerToken`.
132
+ # @return [String]
133
+ #
134
+ # @!attribute [rw] expires_in
135
+ # Indicates the time in seconds when an access token will expire.
136
+ # @return [Integer]
137
+ #
138
+ # @!attribute [rw] refresh_token
139
+ # Currently, `refreshToken` is not yet implemented and is not
140
+ # supported. For more information about the features and limitations
141
+ # of the current IAM Identity Center OIDC implementation, see
142
+ # *Considerations for Using this Guide* in the [IAM Identity Center
143
+ # OIDC API Reference][1].
144
+ #
145
+ # A token that, if present, can be used to refresh a previously issued
146
+ # access token that might have expired.
147
+ #
148
+ #
149
+ #
150
+ # [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
151
+ # @return [String]
152
+ #
153
+ # @!attribute [rw] id_token
154
+ # Currently, `idToken` is not yet implemented and is not supported.
155
+ # For more information about the features and limitations of the
156
+ # current IAM Identity Center OIDC implementation, see *Considerations
157
+ # for Using this Guide* in the [IAM Identity Center OIDC API
158
+ # Reference][1].
159
+ #
160
+ # The identifier of the user that associated with the access token, if
161
+ # present.
162
+ #
163
+ #
164
+ #
165
+ # [1]: https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/Welcome.html
166
+ # @return [String]
167
+ #
168
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/CreateTokenResponse AWS API Documentation
169
+ #
170
+ class CreateTokenResponse < Struct.new(
171
+ :access_token,
172
+ :token_type,
173
+ :expires_in,
174
+ :refresh_token,
175
+ :id_token)
176
+ SENSITIVE = []
177
+ include Aws::Structure
178
+ end
179
+
180
+ # Indicates that the token issued by the service is expired and is no
181
+ # longer valid.
182
+ #
183
+ # @!attribute [rw] error
184
+ # @return [String]
185
+ #
186
+ # @!attribute [rw] error_description
187
+ # @return [String]
188
+ #
189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/ExpiredTokenException AWS API Documentation
190
+ #
191
+ class ExpiredTokenException < Struct.new(
192
+ :error,
193
+ :error_description)
194
+ SENSITIVE = []
195
+ include Aws::Structure
196
+ end
197
+
198
+ # Indicates that an error from the service occurred while trying to
199
+ # process a request.
200
+ #
201
+ # @!attribute [rw] error
202
+ # @return [String]
203
+ #
204
+ # @!attribute [rw] error_description
205
+ # @return [String]
206
+ #
207
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/InternalServerException AWS API Documentation
208
+ #
209
+ class InternalServerException < Struct.new(
210
+ :error,
211
+ :error_description)
212
+ SENSITIVE = []
213
+ include Aws::Structure
214
+ end
215
+
216
+ # Indicates that the `clientId` or `clientSecret` in the request is
217
+ # invalid. For example, this can occur when a client sends an incorrect
218
+ # `clientId` or an expired `clientSecret`.
219
+ #
220
+ # @!attribute [rw] error
221
+ # @return [String]
222
+ #
223
+ # @!attribute [rw] error_description
224
+ # @return [String]
225
+ #
226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/InvalidClientException AWS API Documentation
227
+ #
228
+ class InvalidClientException < Struct.new(
229
+ :error,
230
+ :error_description)
231
+ SENSITIVE = []
232
+ include Aws::Structure
233
+ end
234
+
235
+ # Indicates that the client information sent in the request during
236
+ # registration is invalid.
237
+ #
238
+ # @!attribute [rw] error
239
+ # @return [String]
240
+ #
241
+ # @!attribute [rw] error_description
242
+ # @return [String]
243
+ #
244
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/InvalidClientMetadataException AWS API Documentation
245
+ #
246
+ class InvalidClientMetadataException < Struct.new(
247
+ :error,
248
+ :error_description)
249
+ SENSITIVE = []
250
+ include Aws::Structure
251
+ end
252
+
253
+ # Indicates that a request contains an invalid grant. This can occur if
254
+ # a client makes a CreateToken request with an invalid grant type.
255
+ #
256
+ # @!attribute [rw] error
257
+ # @return [String]
258
+ #
259
+ # @!attribute [rw] error_description
260
+ # @return [String]
261
+ #
262
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/InvalidGrantException AWS API Documentation
263
+ #
264
+ class InvalidGrantException < Struct.new(
265
+ :error,
266
+ :error_description)
267
+ SENSITIVE = []
268
+ include Aws::Structure
269
+ end
270
+
271
+ # Indicates that something is wrong with the input to the request. For
272
+ # example, a required parameter might be missing or out of range.
273
+ #
274
+ # @!attribute [rw] error
275
+ # @return [String]
276
+ #
277
+ # @!attribute [rw] error_description
278
+ # @return [String]
279
+ #
280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/InvalidRequestException AWS API Documentation
281
+ #
282
+ class InvalidRequestException < Struct.new(
283
+ :error,
284
+ :error_description)
285
+ SENSITIVE = []
286
+ include Aws::Structure
287
+ end
288
+
289
+ # Indicates that the scope provided in the request is invalid.
290
+ #
291
+ # @!attribute [rw] error
292
+ # @return [String]
293
+ #
294
+ # @!attribute [rw] error_description
295
+ # @return [String]
296
+ #
297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/InvalidScopeException AWS API Documentation
298
+ #
299
+ class InvalidScopeException < Struct.new(
300
+ :error,
301
+ :error_description)
302
+ SENSITIVE = []
303
+ include Aws::Structure
304
+ end
305
+
306
+ # @!attribute [rw] client_name
307
+ # The friendly name of the client.
308
+ # @return [String]
309
+ #
310
+ # @!attribute [rw] client_type
311
+ # The type of client. The service supports only `public` as a client
312
+ # type. Anything other than public will be rejected by the service.
313
+ # @return [String]
314
+ #
315
+ # @!attribute [rw] scopes
316
+ # The list of scopes that are defined by the client. Upon
317
+ # authorization, this list is used to restrict permissions when
318
+ # granting an access token.
319
+ # @return [Array<String>]
320
+ #
321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/RegisterClientRequest AWS API Documentation
322
+ #
323
+ class RegisterClientRequest < Struct.new(
324
+ :client_name,
325
+ :client_type,
326
+ :scopes)
327
+ SENSITIVE = []
328
+ include Aws::Structure
329
+ end
330
+
331
+ # @!attribute [rw] client_id
332
+ # The unique identifier string for each client. This client uses this
333
+ # identifier to get authenticated by the service in subsequent calls.
334
+ # @return [String]
335
+ #
336
+ # @!attribute [rw] client_secret
337
+ # A secret string generated for the client. The client will use this
338
+ # string to get authenticated by the service in subsequent calls.
339
+ # @return [String]
340
+ #
341
+ # @!attribute [rw] client_id_issued_at
342
+ # Indicates the time at which the `clientId` and `clientSecret` were
343
+ # issued.
344
+ # @return [Integer]
345
+ #
346
+ # @!attribute [rw] client_secret_expires_at
347
+ # Indicates the time at which the `clientId` and `clientSecret` will
348
+ # become invalid.
349
+ # @return [Integer]
350
+ #
351
+ # @!attribute [rw] authorization_endpoint
352
+ # The endpoint where the client can request authorization.
353
+ # @return [String]
354
+ #
355
+ # @!attribute [rw] token_endpoint
356
+ # The endpoint where the client can get an access token.
357
+ # @return [String]
358
+ #
359
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/RegisterClientResponse AWS API Documentation
360
+ #
361
+ class RegisterClientResponse < Struct.new(
362
+ :client_id,
363
+ :client_secret,
364
+ :client_id_issued_at,
365
+ :client_secret_expires_at,
366
+ :authorization_endpoint,
367
+ :token_endpoint)
368
+ SENSITIVE = []
369
+ include Aws::Structure
370
+ end
371
+
372
+ # Indicates that the client is making the request too frequently and is
373
+ # more than the service can handle.
374
+ #
375
+ # @!attribute [rw] error
376
+ # @return [String]
377
+ #
378
+ # @!attribute [rw] error_description
379
+ # @return [String]
380
+ #
381
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/SlowDownException AWS API Documentation
382
+ #
383
+ class SlowDownException < Struct.new(
384
+ :error,
385
+ :error_description)
386
+ SENSITIVE = []
387
+ include Aws::Structure
388
+ end
389
+
390
+ # @!attribute [rw] client_id
391
+ # The unique identifier string for the client that is registered with
392
+ # IAM Identity Center. This value should come from the persisted
393
+ # result of the RegisterClient API operation.
394
+ # @return [String]
395
+ #
396
+ # @!attribute [rw] client_secret
397
+ # A secret string that is generated for the client. This value should
398
+ # come from the persisted result of the RegisterClient API operation.
399
+ # @return [String]
400
+ #
401
+ # @!attribute [rw] start_url
402
+ # The URL for the AWS access portal. For more information, see [Using
403
+ # the AWS access portal][1] in the *IAM Identity Center User Guide*.
404
+ #
405
+ #
406
+ #
407
+ # [1]: https://docs.aws.amazon.com/singlesignon/latest/userguide/using-the-portal.html
408
+ # @return [String]
409
+ #
410
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/StartDeviceAuthorizationRequest AWS API Documentation
411
+ #
412
+ class StartDeviceAuthorizationRequest < Struct.new(
413
+ :client_id,
414
+ :client_secret,
415
+ :start_url)
416
+ SENSITIVE = []
417
+ include Aws::Structure
418
+ end
419
+
420
+ # @!attribute [rw] device_code
421
+ # The short-lived code that is used by the device when polling for a
422
+ # session token.
423
+ # @return [String]
424
+ #
425
+ # @!attribute [rw] user_code
426
+ # A one-time user verification code. This is needed to authorize an
427
+ # in-use device.
428
+ # @return [String]
429
+ #
430
+ # @!attribute [rw] verification_uri
431
+ # The URI of the verification page that takes the `userCode` to
432
+ # authorize the device.
433
+ # @return [String]
434
+ #
435
+ # @!attribute [rw] verification_uri_complete
436
+ # An alternate URL that the client can use to automatically launch a
437
+ # browser. This process skips the manual step in which the user visits
438
+ # the verification page and enters their code.
439
+ # @return [String]
440
+ #
441
+ # @!attribute [rw] expires_in
442
+ # Indicates the number of seconds in which the verification code will
443
+ # become invalid.
444
+ # @return [Integer]
445
+ #
446
+ # @!attribute [rw] interval
447
+ # Indicates the number of seconds the client must wait between
448
+ # attempts when polling for a session.
449
+ # @return [Integer]
450
+ #
451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/StartDeviceAuthorizationResponse AWS API Documentation
452
+ #
453
+ class StartDeviceAuthorizationResponse < Struct.new(
454
+ :device_code,
455
+ :user_code,
456
+ :verification_uri,
457
+ :verification_uri_complete,
458
+ :expires_in,
459
+ :interval)
460
+ SENSITIVE = []
461
+ include Aws::Structure
462
+ end
463
+
464
+ # Indicates that the client is not currently authorized to make the
465
+ # request. This can happen when a `clientId` is not issued for a public
466
+ # client.
467
+ #
468
+ # @!attribute [rw] error
469
+ # @return [String]
470
+ #
471
+ # @!attribute [rw] error_description
472
+ # @return [String]
473
+ #
474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/UnauthorizedClientException AWS API Documentation
475
+ #
476
+ class UnauthorizedClientException < Struct.new(
477
+ :error,
478
+ :error_description)
479
+ SENSITIVE = []
480
+ include Aws::Structure
481
+ end
482
+
483
+ # Indicates that the grant type in the request is not supported by the
484
+ # service.
485
+ #
486
+ # @!attribute [rw] error
487
+ # @return [String]
488
+ #
489
+ # @!attribute [rw] error_description
490
+ # @return [String]
491
+ #
492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sso-oidc-2019-06-10/UnsupportedGrantTypeException AWS API Documentation
493
+ #
494
+ class UnsupportedGrantTypeException < Struct.new(
495
+ :error,
496
+ :error_description)
497
+ SENSITIVE = []
498
+ include Aws::Structure
499
+ end
500
+
501
+ end
502
+ end
@@ -0,0 +1,59 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ unless Module.const_defined?(:Aws)
12
+ require 'aws-sdk-core'
13
+ require 'aws-sigv4'
14
+ end
15
+
16
+ require_relative 'aws-sdk-ssooidc/types'
17
+ require_relative 'aws-sdk-ssooidc/client_api'
18
+ require_relative 'aws-sdk-ssooidc/plugins/endpoints.rb'
19
+ require_relative 'aws-sdk-ssooidc/client'
20
+ require_relative 'aws-sdk-ssooidc/errors'
21
+ require_relative 'aws-sdk-ssooidc/resource'
22
+ require_relative 'aws-sdk-ssooidc/endpoint_parameters'
23
+ require_relative 'aws-sdk-ssooidc/endpoint_provider'
24
+ require_relative 'aws-sdk-ssooidc/endpoints'
25
+ require_relative 'aws-sdk-ssooidc/customizations'
26
+
27
+ # This module provides support for AWS SSO OIDC. This module is available in the
28
+ # `aws-sdk-core` gem.
29
+ #
30
+ # # Client
31
+ #
32
+ # The {Client} class provides one method for each API operation. Operation
33
+ # methods each accept a hash of request parameters and return a response
34
+ # structure.
35
+ #
36
+ # ssooidc = Aws::SSOOIDC::Client.new
37
+ # resp = ssooidc.create_token(params)
38
+ #
39
+ # See {Client} for more information.
40
+ #
41
+ # # Errors
42
+ #
43
+ # Errors returned from AWS SSO OIDC are defined in the
44
+ # {Errors} module and all extend {Errors::ServiceError}.
45
+ #
46
+ # begin
47
+ # # do stuff
48
+ # rescue Aws::SSOOIDC::Errors::ServiceError
49
+ # # rescues all AWS SSO OIDC API errors
50
+ # end
51
+ #
52
+ # See {Errors} for more information.
53
+ #
54
+ # @!group service
55
+ module Aws::SSOOIDC
56
+
57
+ GEM_VERSION = '3.168.4'
58
+
59
+ end