aws-sdk-core 3.132.0 → 3.147.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,216 @@
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
+ # @api private
12
+ module ClientApi
13
+
14
+ include Seahorse::Model
15
+
16
+ AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
+ AccessToken = Shapes::StringShape.new(name: 'AccessToken')
18
+ AuthCode = Shapes::StringShape.new(name: 'AuthCode')
19
+ AuthorizationPendingException = Shapes::StructureShape.new(name: 'AuthorizationPendingException')
20
+ ClientId = Shapes::StringShape.new(name: 'ClientId')
21
+ ClientName = Shapes::StringShape.new(name: 'ClientName')
22
+ ClientSecret = Shapes::StringShape.new(name: 'ClientSecret')
23
+ ClientType = Shapes::StringShape.new(name: 'ClientType')
24
+ CreateTokenRequest = Shapes::StructureShape.new(name: 'CreateTokenRequest')
25
+ CreateTokenResponse = Shapes::StructureShape.new(name: 'CreateTokenResponse')
26
+ DeviceCode = Shapes::StringShape.new(name: 'DeviceCode')
27
+ Error = Shapes::StringShape.new(name: 'Error')
28
+ ErrorDescription = Shapes::StringShape.new(name: 'ErrorDescription')
29
+ ExpirationInSeconds = Shapes::IntegerShape.new(name: 'ExpirationInSeconds')
30
+ ExpiredTokenException = Shapes::StructureShape.new(name: 'ExpiredTokenException')
31
+ GrantType = Shapes::StringShape.new(name: 'GrantType')
32
+ IdToken = Shapes::StringShape.new(name: 'IdToken')
33
+ InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
34
+ IntervalInSeconds = Shapes::IntegerShape.new(name: 'IntervalInSeconds')
35
+ InvalidClientException = Shapes::StructureShape.new(name: 'InvalidClientException')
36
+ InvalidClientMetadataException = Shapes::StructureShape.new(name: 'InvalidClientMetadataException')
37
+ InvalidGrantException = Shapes::StructureShape.new(name: 'InvalidGrantException')
38
+ InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
39
+ InvalidScopeException = Shapes::StructureShape.new(name: 'InvalidScopeException')
40
+ LongTimeStampType = Shapes::IntegerShape.new(name: 'LongTimeStampType')
41
+ RefreshToken = Shapes::StringShape.new(name: 'RefreshToken')
42
+ RegisterClientRequest = Shapes::StructureShape.new(name: 'RegisterClientRequest')
43
+ RegisterClientResponse = Shapes::StructureShape.new(name: 'RegisterClientResponse')
44
+ Scope = Shapes::StringShape.new(name: 'Scope')
45
+ Scopes = Shapes::ListShape.new(name: 'Scopes')
46
+ SlowDownException = Shapes::StructureShape.new(name: 'SlowDownException')
47
+ StartDeviceAuthorizationRequest = Shapes::StructureShape.new(name: 'StartDeviceAuthorizationRequest')
48
+ StartDeviceAuthorizationResponse = Shapes::StructureShape.new(name: 'StartDeviceAuthorizationResponse')
49
+ TokenType = Shapes::StringShape.new(name: 'TokenType')
50
+ URI = Shapes::StringShape.new(name: 'URI')
51
+ UnauthorizedClientException = Shapes::StructureShape.new(name: 'UnauthorizedClientException')
52
+ UnsupportedGrantTypeException = Shapes::StructureShape.new(name: 'UnsupportedGrantTypeException')
53
+ UserCode = Shapes::StringShape.new(name: 'UserCode')
54
+
55
+ AccessDeniedException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
56
+ AccessDeniedException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
57
+ AccessDeniedException.struct_class = Types::AccessDeniedException
58
+
59
+ AuthorizationPendingException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
60
+ AuthorizationPendingException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
61
+ AuthorizationPendingException.struct_class = Types::AuthorizationPendingException
62
+
63
+ CreateTokenRequest.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, required: true, location_name: "clientId"))
64
+ CreateTokenRequest.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecret, required: true, location_name: "clientSecret"))
65
+ CreateTokenRequest.add_member(:grant_type, Shapes::ShapeRef.new(shape: GrantType, required: true, location_name: "grantType"))
66
+ CreateTokenRequest.add_member(:device_code, Shapes::ShapeRef.new(shape: DeviceCode, location_name: "deviceCode"))
67
+ CreateTokenRequest.add_member(:code, Shapes::ShapeRef.new(shape: AuthCode, location_name: "code"))
68
+ CreateTokenRequest.add_member(:refresh_token, Shapes::ShapeRef.new(shape: RefreshToken, location_name: "refreshToken"))
69
+ CreateTokenRequest.add_member(:scope, Shapes::ShapeRef.new(shape: Scopes, location_name: "scope"))
70
+ CreateTokenRequest.add_member(:redirect_uri, Shapes::ShapeRef.new(shape: URI, location_name: "redirectUri"))
71
+ CreateTokenRequest.struct_class = Types::CreateTokenRequest
72
+
73
+ CreateTokenResponse.add_member(:access_token, Shapes::ShapeRef.new(shape: AccessToken, location_name: "accessToken"))
74
+ CreateTokenResponse.add_member(:token_type, Shapes::ShapeRef.new(shape: TokenType, location_name: "tokenType"))
75
+ CreateTokenResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: ExpirationInSeconds, location_name: "expiresIn"))
76
+ CreateTokenResponse.add_member(:refresh_token, Shapes::ShapeRef.new(shape: RefreshToken, location_name: "refreshToken"))
77
+ CreateTokenResponse.add_member(:id_token, Shapes::ShapeRef.new(shape: IdToken, location_name: "idToken"))
78
+ CreateTokenResponse.struct_class = Types::CreateTokenResponse
79
+
80
+ ExpiredTokenException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
81
+ ExpiredTokenException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
82
+ ExpiredTokenException.struct_class = Types::ExpiredTokenException
83
+
84
+ InternalServerException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
85
+ InternalServerException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
86
+ InternalServerException.struct_class = Types::InternalServerException
87
+
88
+ InvalidClientException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
89
+ InvalidClientException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
90
+ InvalidClientException.struct_class = Types::InvalidClientException
91
+
92
+ InvalidClientMetadataException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
93
+ InvalidClientMetadataException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
94
+ InvalidClientMetadataException.struct_class = Types::InvalidClientMetadataException
95
+
96
+ InvalidGrantException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
97
+ InvalidGrantException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
98
+ InvalidGrantException.struct_class = Types::InvalidGrantException
99
+
100
+ InvalidRequestException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
101
+ InvalidRequestException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
102
+ InvalidRequestException.struct_class = Types::InvalidRequestException
103
+
104
+ InvalidScopeException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
105
+ InvalidScopeException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
106
+ InvalidScopeException.struct_class = Types::InvalidScopeException
107
+
108
+ RegisterClientRequest.add_member(:client_name, Shapes::ShapeRef.new(shape: ClientName, required: true, location_name: "clientName"))
109
+ RegisterClientRequest.add_member(:client_type, Shapes::ShapeRef.new(shape: ClientType, required: true, location_name: "clientType"))
110
+ RegisterClientRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: Scopes, location_name: "scopes"))
111
+ RegisterClientRequest.struct_class = Types::RegisterClientRequest
112
+
113
+ RegisterClientResponse.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, location_name: "clientId"))
114
+ RegisterClientResponse.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecret, location_name: "clientSecret"))
115
+ RegisterClientResponse.add_member(:client_id_issued_at, Shapes::ShapeRef.new(shape: LongTimeStampType, location_name: "clientIdIssuedAt"))
116
+ RegisterClientResponse.add_member(:client_secret_expires_at, Shapes::ShapeRef.new(shape: LongTimeStampType, location_name: "clientSecretExpiresAt"))
117
+ RegisterClientResponse.add_member(:authorization_endpoint, Shapes::ShapeRef.new(shape: URI, location_name: "authorizationEndpoint"))
118
+ RegisterClientResponse.add_member(:token_endpoint, Shapes::ShapeRef.new(shape: URI, location_name: "tokenEndpoint"))
119
+ RegisterClientResponse.struct_class = Types::RegisterClientResponse
120
+
121
+ Scopes.member = Shapes::ShapeRef.new(shape: Scope)
122
+
123
+ SlowDownException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
124
+ SlowDownException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
125
+ SlowDownException.struct_class = Types::SlowDownException
126
+
127
+ StartDeviceAuthorizationRequest.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, required: true, location_name: "clientId"))
128
+ StartDeviceAuthorizationRequest.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecret, required: true, location_name: "clientSecret"))
129
+ StartDeviceAuthorizationRequest.add_member(:start_url, Shapes::ShapeRef.new(shape: URI, required: true, location_name: "startUrl"))
130
+ StartDeviceAuthorizationRequest.struct_class = Types::StartDeviceAuthorizationRequest
131
+
132
+ StartDeviceAuthorizationResponse.add_member(:device_code, Shapes::ShapeRef.new(shape: DeviceCode, location_name: "deviceCode"))
133
+ StartDeviceAuthorizationResponse.add_member(:user_code, Shapes::ShapeRef.new(shape: UserCode, location_name: "userCode"))
134
+ StartDeviceAuthorizationResponse.add_member(:verification_uri, Shapes::ShapeRef.new(shape: URI, location_name: "verificationUri"))
135
+ StartDeviceAuthorizationResponse.add_member(:verification_uri_complete, Shapes::ShapeRef.new(shape: URI, location_name: "verificationUriComplete"))
136
+ StartDeviceAuthorizationResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: ExpirationInSeconds, location_name: "expiresIn"))
137
+ StartDeviceAuthorizationResponse.add_member(:interval, Shapes::ShapeRef.new(shape: IntervalInSeconds, location_name: "interval"))
138
+ StartDeviceAuthorizationResponse.struct_class = Types::StartDeviceAuthorizationResponse
139
+
140
+ UnauthorizedClientException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
141
+ UnauthorizedClientException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
142
+ UnauthorizedClientException.struct_class = Types::UnauthorizedClientException
143
+
144
+ UnsupportedGrantTypeException.add_member(:error, Shapes::ShapeRef.new(shape: Error, location_name: "error"))
145
+ UnsupportedGrantTypeException.add_member(:error_description, Shapes::ShapeRef.new(shape: ErrorDescription, location_name: "error_description"))
146
+ UnsupportedGrantTypeException.struct_class = Types::UnsupportedGrantTypeException
147
+
148
+
149
+ # @api private
150
+ API = Seahorse::Model::Api.new.tap do |api|
151
+
152
+ api.version = "2019-06-10"
153
+
154
+ api.metadata = {
155
+ "apiVersion" => "2019-06-10",
156
+ "endpointPrefix" => "oidc",
157
+ "jsonVersion" => "1.1",
158
+ "protocol" => "rest-json",
159
+ "serviceAbbreviation" => "SSO OIDC",
160
+ "serviceFullName" => "AWS SSO OIDC",
161
+ "serviceId" => "SSO OIDC",
162
+ "signatureVersion" => "v4",
163
+ "signingName" => "awsssooidc",
164
+ "uid" => "sso-oidc-2019-06-10",
165
+ }
166
+
167
+ api.add_operation(:create_token, Seahorse::Model::Operation.new.tap do |o|
168
+ o.name = "CreateToken"
169
+ o.http_method = "POST"
170
+ o.http_request_uri = "/token"
171
+ o['authtype'] = "none"
172
+ o.input = Shapes::ShapeRef.new(shape: CreateTokenRequest)
173
+ o.output = Shapes::ShapeRef.new(shape: CreateTokenResponse)
174
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
175
+ o.errors << Shapes::ShapeRef.new(shape: InvalidClientException)
176
+ o.errors << Shapes::ShapeRef.new(shape: InvalidGrantException)
177
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
178
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedGrantTypeException)
179
+ o.errors << Shapes::ShapeRef.new(shape: InvalidScopeException)
180
+ o.errors << Shapes::ShapeRef.new(shape: AuthorizationPendingException)
181
+ o.errors << Shapes::ShapeRef.new(shape: SlowDownException)
182
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
183
+ o.errors << Shapes::ShapeRef.new(shape: ExpiredTokenException)
184
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
185
+ end)
186
+
187
+ api.add_operation(:register_client, Seahorse::Model::Operation.new.tap do |o|
188
+ o.name = "RegisterClient"
189
+ o.http_method = "POST"
190
+ o.http_request_uri = "/client/register"
191
+ o['authtype'] = "none"
192
+ o.input = Shapes::ShapeRef.new(shape: RegisterClientRequest)
193
+ o.output = Shapes::ShapeRef.new(shape: RegisterClientResponse)
194
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
195
+ o.errors << Shapes::ShapeRef.new(shape: InvalidScopeException)
196
+ o.errors << Shapes::ShapeRef.new(shape: InvalidClientMetadataException)
197
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
198
+ end)
199
+
200
+ api.add_operation(:start_device_authorization, Seahorse::Model::Operation.new.tap do |o|
201
+ o.name = "StartDeviceAuthorization"
202
+ o.http_method = "POST"
203
+ o.http_request_uri = "/device_authorization"
204
+ o['authtype'] = "none"
205
+ o.input = Shapes::ShapeRef.new(shape: StartDeviceAuthorizationRequest)
206
+ o.output = Shapes::ShapeRef.new(shape: StartDeviceAuthorizationResponse)
207
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
208
+ o.errors << Shapes::ShapeRef.new(shape: InvalidClientException)
209
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
210
+ o.errors << Shapes::ShapeRef.new(shape: SlowDownException)
211
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
212
+ end)
213
+ end
214
+
215
+ end
216
+ end
@@ -0,0 +1 @@
1
+ # frozen_string_literal: true
@@ -0,0 +1,290 @@
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
+
12
+ # When SSOOIDC returns an error response, the Ruby SDK constructs and raises an error.
13
+ # These errors all extend Aws::SSOOIDC::Errors::ServiceError < {Aws::Errors::ServiceError}
14
+ #
15
+ # You can rescue all SSOOIDC errors using ServiceError:
16
+ #
17
+ # begin
18
+ # # do stuff
19
+ # rescue Aws::SSOOIDC::Errors::ServiceError
20
+ # # rescues all SSOOIDC API errors
21
+ # end
22
+ #
23
+ #
24
+ # ## Request Context
25
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
26
+ # information about the request that generated the error.
27
+ # See {Seahorse::Client::RequestContext} for more information.
28
+ #
29
+ # ## Error Classes
30
+ # * {AccessDeniedException}
31
+ # * {AuthorizationPendingException}
32
+ # * {ExpiredTokenException}
33
+ # * {InternalServerException}
34
+ # * {InvalidClientException}
35
+ # * {InvalidClientMetadataException}
36
+ # * {InvalidGrantException}
37
+ # * {InvalidRequestException}
38
+ # * {InvalidScopeException}
39
+ # * {SlowDownException}
40
+ # * {UnauthorizedClientException}
41
+ # * {UnsupportedGrantTypeException}
42
+ #
43
+ # Additionally, error classes are dynamically generated for service errors based on the error code
44
+ # if they are not defined above.
45
+ module Errors
46
+
47
+ extend Aws::Errors::DynamicErrors
48
+
49
+ class AccessDeniedException < ServiceError
50
+
51
+ # @param [Seahorse::Client::RequestContext] context
52
+ # @param [String] message
53
+ # @param [Aws::SSOOIDC::Types::AccessDeniedException] data
54
+ def initialize(context, message, data = Aws::EmptyStructure.new)
55
+ super(context, message, data)
56
+ end
57
+
58
+ # @return [String]
59
+ def error
60
+ @data[:error]
61
+ end
62
+
63
+ # @return [String]
64
+ def error_description
65
+ @data[:error_description]
66
+ end
67
+ end
68
+
69
+ class AuthorizationPendingException < ServiceError
70
+
71
+ # @param [Seahorse::Client::RequestContext] context
72
+ # @param [String] message
73
+ # @param [Aws::SSOOIDC::Types::AuthorizationPendingException] data
74
+ def initialize(context, message, data = Aws::EmptyStructure.new)
75
+ super(context, message, data)
76
+ end
77
+
78
+ # @return [String]
79
+ def error
80
+ @data[:error]
81
+ end
82
+
83
+ # @return [String]
84
+ def error_description
85
+ @data[:error_description]
86
+ end
87
+ end
88
+
89
+ class ExpiredTokenException < ServiceError
90
+
91
+ # @param [Seahorse::Client::RequestContext] context
92
+ # @param [String] message
93
+ # @param [Aws::SSOOIDC::Types::ExpiredTokenException] data
94
+ def initialize(context, message, data = Aws::EmptyStructure.new)
95
+ super(context, message, data)
96
+ end
97
+
98
+ # @return [String]
99
+ def error
100
+ @data[:error]
101
+ end
102
+
103
+ # @return [String]
104
+ def error_description
105
+ @data[:error_description]
106
+ end
107
+ end
108
+
109
+ class InternalServerException < ServiceError
110
+
111
+ # @param [Seahorse::Client::RequestContext] context
112
+ # @param [String] message
113
+ # @param [Aws::SSOOIDC::Types::InternalServerException] data
114
+ def initialize(context, message, data = Aws::EmptyStructure.new)
115
+ super(context, message, data)
116
+ end
117
+
118
+ # @return [String]
119
+ def error
120
+ @data[:error]
121
+ end
122
+
123
+ # @return [String]
124
+ def error_description
125
+ @data[:error_description]
126
+ end
127
+ end
128
+
129
+ class InvalidClientException < ServiceError
130
+
131
+ # @param [Seahorse::Client::RequestContext] context
132
+ # @param [String] message
133
+ # @param [Aws::SSOOIDC::Types::InvalidClientException] data
134
+ def initialize(context, message, data = Aws::EmptyStructure.new)
135
+ super(context, message, data)
136
+ end
137
+
138
+ # @return [String]
139
+ def error
140
+ @data[:error]
141
+ end
142
+
143
+ # @return [String]
144
+ def error_description
145
+ @data[:error_description]
146
+ end
147
+ end
148
+
149
+ class InvalidClientMetadataException < ServiceError
150
+
151
+ # @param [Seahorse::Client::RequestContext] context
152
+ # @param [String] message
153
+ # @param [Aws::SSOOIDC::Types::InvalidClientMetadataException] data
154
+ def initialize(context, message, data = Aws::EmptyStructure.new)
155
+ super(context, message, data)
156
+ end
157
+
158
+ # @return [String]
159
+ def error
160
+ @data[:error]
161
+ end
162
+
163
+ # @return [String]
164
+ def error_description
165
+ @data[:error_description]
166
+ end
167
+ end
168
+
169
+ class InvalidGrantException < ServiceError
170
+
171
+ # @param [Seahorse::Client::RequestContext] context
172
+ # @param [String] message
173
+ # @param [Aws::SSOOIDC::Types::InvalidGrantException] data
174
+ def initialize(context, message, data = Aws::EmptyStructure.new)
175
+ super(context, message, data)
176
+ end
177
+
178
+ # @return [String]
179
+ def error
180
+ @data[:error]
181
+ end
182
+
183
+ # @return [String]
184
+ def error_description
185
+ @data[:error_description]
186
+ end
187
+ end
188
+
189
+ class InvalidRequestException < ServiceError
190
+
191
+ # @param [Seahorse::Client::RequestContext] context
192
+ # @param [String] message
193
+ # @param [Aws::SSOOIDC::Types::InvalidRequestException] data
194
+ def initialize(context, message, data = Aws::EmptyStructure.new)
195
+ super(context, message, data)
196
+ end
197
+
198
+ # @return [String]
199
+ def error
200
+ @data[:error]
201
+ end
202
+
203
+ # @return [String]
204
+ def error_description
205
+ @data[:error_description]
206
+ end
207
+ end
208
+
209
+ class InvalidScopeException < ServiceError
210
+
211
+ # @param [Seahorse::Client::RequestContext] context
212
+ # @param [String] message
213
+ # @param [Aws::SSOOIDC::Types::InvalidScopeException] data
214
+ def initialize(context, message, data = Aws::EmptyStructure.new)
215
+ super(context, message, data)
216
+ end
217
+
218
+ # @return [String]
219
+ def error
220
+ @data[:error]
221
+ end
222
+
223
+ # @return [String]
224
+ def error_description
225
+ @data[:error_description]
226
+ end
227
+ end
228
+
229
+ class SlowDownException < ServiceError
230
+
231
+ # @param [Seahorse::Client::RequestContext] context
232
+ # @param [String] message
233
+ # @param [Aws::SSOOIDC::Types::SlowDownException] data
234
+ def initialize(context, message, data = Aws::EmptyStructure.new)
235
+ super(context, message, data)
236
+ end
237
+
238
+ # @return [String]
239
+ def error
240
+ @data[:error]
241
+ end
242
+
243
+ # @return [String]
244
+ def error_description
245
+ @data[:error_description]
246
+ end
247
+ end
248
+
249
+ class UnauthorizedClientException < ServiceError
250
+
251
+ # @param [Seahorse::Client::RequestContext] context
252
+ # @param [String] message
253
+ # @param [Aws::SSOOIDC::Types::UnauthorizedClientException] data
254
+ def initialize(context, message, data = Aws::EmptyStructure.new)
255
+ super(context, message, data)
256
+ end
257
+
258
+ # @return [String]
259
+ def error
260
+ @data[:error]
261
+ end
262
+
263
+ # @return [String]
264
+ def error_description
265
+ @data[:error_description]
266
+ end
267
+ end
268
+
269
+ class UnsupportedGrantTypeException < ServiceError
270
+
271
+ # @param [Seahorse::Client::RequestContext] context
272
+ # @param [String] message
273
+ # @param [Aws::SSOOIDC::Types::UnsupportedGrantTypeException] data
274
+ def initialize(context, message, data = Aws::EmptyStructure.new)
275
+ super(context, message, data)
276
+ end
277
+
278
+ # @return [String]
279
+ def error
280
+ @data[:error]
281
+ end
282
+
283
+ # @return [String]
284
+ def error_description
285
+ @data[:error_description]
286
+ end
287
+ end
288
+
289
+ end
290
+ end
@@ -0,0 +1,26 @@
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
+
12
+ class Resource
13
+
14
+ # @param options ({})
15
+ # @option options [Client] :client
16
+ def initialize(options = {})
17
+ @client = options[:client] || Client.new(options)
18
+ end
19
+
20
+ # @return [Client]
21
+ def client
22
+ @client
23
+ end
24
+
25
+ end
26
+ end