aws-sdk-accountaccess 1.0.0
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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-accountaccess/client.rb +1057 -0
- data/lib/aws-sdk-accountaccess/client_api.rb +478 -0
- data/lib/aws-sdk-accountaccess/customizations.rb +0 -0
- data/lib/aws-sdk-accountaccess/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-accountaccess/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-accountaccess/endpoints.rb +20 -0
- data/lib/aws-sdk-accountaccess/errors.rb +166 -0
- data/lib/aws-sdk-accountaccess/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-accountaccess/resource.rb +26 -0
- data/lib/aws-sdk-accountaccess/types.rb +925 -0
- data/lib/aws-sdk-accountaccess/waiters.rb +126 -0
- data/lib/aws-sdk-accountaccess.rb +62 -0
- data/sig/client.rbs +240 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +345 -0
- data/sig/waiters.rbs +23 -0
- metadata +97 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws::AccountAccess
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class AlreadyCreatedException
|
|
17
|
+
attr_accessor message: ::String
|
|
18
|
+
SENSITIVE: []
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
class ApplicationSummary
|
|
22
|
+
attr_accessor application_arn: ::String
|
|
23
|
+
attr_accessor tenant_id: ::String
|
|
24
|
+
attr_accessor created_at: ::Time
|
|
25
|
+
attr_accessor updated_at: ::Time
|
|
26
|
+
SENSITIVE: []
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
class ConflictException
|
|
30
|
+
attr_accessor message: ::String
|
|
31
|
+
SENSITIVE: []
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
class CreateApplicationRequest
|
|
35
|
+
attr_accessor identity_source: Types::IdentitySource
|
|
36
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
37
|
+
SENSITIVE: []
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
class CreateApplicationResponse
|
|
41
|
+
attr_accessor application_arn: ::String
|
|
42
|
+
SENSITIVE: []
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class CreateEntitlementRequest
|
|
46
|
+
attr_accessor application_arn: ::String
|
|
47
|
+
attr_accessor entitlement: Types::Entitlement
|
|
48
|
+
SENSITIVE: []
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
class CreateEntitlementResponse
|
|
52
|
+
attr_accessor entitlement_id: ::String
|
|
53
|
+
SENSITIVE: []
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
class DeleteApplicationRequest
|
|
57
|
+
attr_accessor application_arn: ::String
|
|
58
|
+
SENSITIVE: []
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
class DeleteApplicationResponse < Aws::EmptyStructure
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
class DeleteEntitlementRequest
|
|
65
|
+
attr_accessor application_arn: ::String
|
|
66
|
+
attr_accessor entitlement_id: ::String
|
|
67
|
+
SENSITIVE: []
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
class DeleteEntitlementResponse < Aws::EmptyStructure
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
class Entitlement
|
|
74
|
+
attr_accessor principal_role: Types::PrincipalRoleEntitlement
|
|
75
|
+
attr_accessor unknown: untyped
|
|
76
|
+
SENSITIVE: []
|
|
77
|
+
|
|
78
|
+
class PrincipalRole < Entitlement
|
|
79
|
+
end
|
|
80
|
+
class Unknown < Entitlement
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
class EntitlementDetails
|
|
85
|
+
attr_accessor principal_role: Types::PrincipalRoleEntitlementDetails
|
|
86
|
+
attr_accessor unknown: untyped
|
|
87
|
+
SENSITIVE: []
|
|
88
|
+
|
|
89
|
+
class PrincipalRole < EntitlementDetails
|
|
90
|
+
end
|
|
91
|
+
class Unknown < EntitlementDetails
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
class EntitlementFilter
|
|
96
|
+
attr_accessor principal_role: Types::PrincipalRoleEntitlementFilter
|
|
97
|
+
SENSITIVE: []
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
class EntitlementSummary
|
|
101
|
+
attr_accessor principal_role: Types::PrincipalRoleEntitlementSummary
|
|
102
|
+
attr_accessor unknown: untyped
|
|
103
|
+
SENSITIVE: []
|
|
104
|
+
|
|
105
|
+
class PrincipalRole < EntitlementSummary
|
|
106
|
+
end
|
|
107
|
+
class Unknown < EntitlementSummary
|
|
108
|
+
end
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
class EntitlementsListMember
|
|
112
|
+
attr_accessor entitlement_id: ::String
|
|
113
|
+
attr_accessor entitlement: Types::EntitlementSummary
|
|
114
|
+
attr_accessor created_at: ::Time
|
|
115
|
+
SENSITIVE: []
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
class ErrorDetails
|
|
119
|
+
attr_accessor code: ("AUTHORIZATION_ERROR" | "RESOURCE_NOT_FOUND_ERROR" | "SERVICE_QUOTA_EXCEEDED_ERROR" | "INTERNAL_SERVICE_ERROR")
|
|
120
|
+
attr_accessor message: ::String
|
|
121
|
+
SENSITIVE: []
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
class GetApplicationRequest
|
|
125
|
+
attr_accessor application_arn: ::String
|
|
126
|
+
SENSITIVE: []
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
class GetApplicationResponse
|
|
130
|
+
attr_accessor identity_source: Types::IdentitySourceDetails
|
|
131
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
|
132
|
+
attr_accessor tenant_id: ::String
|
|
133
|
+
attr_accessor created_at: ::Time
|
|
134
|
+
attr_accessor updated_at: ::Time
|
|
135
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
136
|
+
attr_accessor error: Types::ErrorDetails
|
|
137
|
+
SENSITIVE: []
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
class GetEntitlementRequest
|
|
141
|
+
attr_accessor application_arn: ::String
|
|
142
|
+
attr_accessor entitlement_id: ::String
|
|
143
|
+
SENSITIVE: []
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
class GetEntitlementResponse
|
|
147
|
+
attr_accessor application_arn: ::String
|
|
148
|
+
attr_accessor entitlement_id: ::String
|
|
149
|
+
attr_accessor entitlement: Types::EntitlementDetails
|
|
150
|
+
attr_accessor created_at: ::Time
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
class IdentityCenter
|
|
155
|
+
attr_accessor instance_arn: ::String
|
|
156
|
+
SENSITIVE: []
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
class IdentityCenterDetails
|
|
160
|
+
attr_accessor instance_arn: ::String
|
|
161
|
+
attr_accessor application_arn: ::String
|
|
162
|
+
SENSITIVE: []
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
class IdentityCenterPrincipal
|
|
166
|
+
attr_accessor user_id: ::String
|
|
167
|
+
attr_accessor group_id: ::String
|
|
168
|
+
attr_accessor unknown: untyped
|
|
169
|
+
SENSITIVE: []
|
|
170
|
+
|
|
171
|
+
class UserId < IdentityCenterPrincipal
|
|
172
|
+
end
|
|
173
|
+
class GroupId < IdentityCenterPrincipal
|
|
174
|
+
end
|
|
175
|
+
class Unknown < IdentityCenterPrincipal
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
class IdentityCenterPrincipalFilter
|
|
180
|
+
attr_accessor user_id: ::String
|
|
181
|
+
attr_accessor group_id: ::String
|
|
182
|
+
attr_accessor unknown: untyped
|
|
183
|
+
SENSITIVE: []
|
|
184
|
+
|
|
185
|
+
class UserId < IdentityCenterPrincipalFilter
|
|
186
|
+
end
|
|
187
|
+
class GroupId < IdentityCenterPrincipalFilter
|
|
188
|
+
end
|
|
189
|
+
class Unknown < IdentityCenterPrincipalFilter
|
|
190
|
+
end
|
|
191
|
+
end
|
|
192
|
+
|
|
193
|
+
class IdentitySource
|
|
194
|
+
attr_accessor identity_center: Types::IdentityCenter
|
|
195
|
+
attr_accessor unknown: untyped
|
|
196
|
+
SENSITIVE: []
|
|
197
|
+
|
|
198
|
+
class IdentityCenter < IdentitySource
|
|
199
|
+
end
|
|
200
|
+
class Unknown < IdentitySource
|
|
201
|
+
end
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
class IdentitySourceDetails
|
|
205
|
+
attr_accessor identity_center: Types::IdentityCenterDetails
|
|
206
|
+
attr_accessor unknown: untyped
|
|
207
|
+
SENSITIVE: []
|
|
208
|
+
|
|
209
|
+
class IdentityCenter < IdentitySourceDetails
|
|
210
|
+
end
|
|
211
|
+
class Unknown < IdentitySourceDetails
|
|
212
|
+
end
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
class InternalServerException
|
|
216
|
+
attr_accessor message: ::String
|
|
217
|
+
SENSITIVE: []
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
class ListApplicationsRequest
|
|
221
|
+
attr_accessor max_results: ::Integer
|
|
222
|
+
attr_accessor next_token: ::String
|
|
223
|
+
SENSITIVE: []
|
|
224
|
+
end
|
|
225
|
+
|
|
226
|
+
class ListApplicationsResponse
|
|
227
|
+
attr_accessor applications: ::Array[Types::ApplicationSummary]
|
|
228
|
+
attr_accessor next_token: ::String
|
|
229
|
+
SENSITIVE: []
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
class ListEntitlementsRequest
|
|
233
|
+
attr_accessor application_arn: ::String
|
|
234
|
+
attr_accessor filter: Types::EntitlementFilter
|
|
235
|
+
attr_accessor next_token: ::String
|
|
236
|
+
attr_accessor max_results: ::Integer
|
|
237
|
+
SENSITIVE: []
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
class ListEntitlementsResponse
|
|
241
|
+
attr_accessor entitlements: ::Array[Types::EntitlementsListMember]
|
|
242
|
+
attr_accessor next_token: ::String
|
|
243
|
+
SENSITIVE: []
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
class ListTagsForResourceRequest
|
|
247
|
+
attr_accessor resource_arn: ::String
|
|
248
|
+
SENSITIVE: []
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
class ListTagsForResourceResponse
|
|
252
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
253
|
+
SENSITIVE: []
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
class Principal
|
|
257
|
+
attr_accessor identity_center: Types::IdentityCenterPrincipal
|
|
258
|
+
attr_accessor unknown: untyped
|
|
259
|
+
SENSITIVE: []
|
|
260
|
+
|
|
261
|
+
class IdentityCenter < Principal
|
|
262
|
+
end
|
|
263
|
+
class Unknown < Principal
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
class PrincipalFilter
|
|
268
|
+
attr_accessor identity_center: Types::IdentityCenterPrincipalFilter
|
|
269
|
+
attr_accessor unknown: untyped
|
|
270
|
+
SENSITIVE: []
|
|
271
|
+
|
|
272
|
+
class IdentityCenter < PrincipalFilter
|
|
273
|
+
end
|
|
274
|
+
class Unknown < PrincipalFilter
|
|
275
|
+
end
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
class PrincipalRoleEntitlement
|
|
279
|
+
attr_accessor principal: Types::Principal
|
|
280
|
+
attr_accessor role_arn: ::String
|
|
281
|
+
SENSITIVE: []
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
class PrincipalRoleEntitlementDetails
|
|
285
|
+
attr_accessor principal: Types::Principal
|
|
286
|
+
attr_accessor role_arn: ::String
|
|
287
|
+
attr_accessor account: ::String
|
|
288
|
+
attr_accessor account_name: ::String
|
|
289
|
+
SENSITIVE: []
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
class PrincipalRoleEntitlementFilter
|
|
293
|
+
attr_accessor principal: Types::PrincipalFilter
|
|
294
|
+
attr_accessor role_arn: ::String
|
|
295
|
+
attr_accessor account: ::String
|
|
296
|
+
SENSITIVE: []
|
|
297
|
+
end
|
|
298
|
+
|
|
299
|
+
class PrincipalRoleEntitlementSummary
|
|
300
|
+
attr_accessor principal: Types::Principal
|
|
301
|
+
attr_accessor role_arn: ::String
|
|
302
|
+
attr_accessor account: ::String
|
|
303
|
+
attr_accessor account_name: ::String
|
|
304
|
+
SENSITIVE: []
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
class ResourceNotFoundException
|
|
308
|
+
attr_accessor message: ::String
|
|
309
|
+
SENSITIVE: []
|
|
310
|
+
end
|
|
311
|
+
|
|
312
|
+
class ServiceQuotaExceededException
|
|
313
|
+
attr_accessor message: ::String
|
|
314
|
+
SENSITIVE: []
|
|
315
|
+
end
|
|
316
|
+
|
|
317
|
+
class TagResourceRequest
|
|
318
|
+
attr_accessor resource_arn: ::String
|
|
319
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
320
|
+
SENSITIVE: []
|
|
321
|
+
end
|
|
322
|
+
|
|
323
|
+
class TagResourceResponse < Aws::EmptyStructure
|
|
324
|
+
end
|
|
325
|
+
|
|
326
|
+
class ThrottlingException
|
|
327
|
+
attr_accessor message: ::String
|
|
328
|
+
SENSITIVE: []
|
|
329
|
+
end
|
|
330
|
+
|
|
331
|
+
class UntagResourceRequest
|
|
332
|
+
attr_accessor resource_arn: ::String
|
|
333
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
334
|
+
SENSITIVE: []
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
|
338
|
+
end
|
|
339
|
+
|
|
340
|
+
class ValidationException
|
|
341
|
+
attr_accessor message: ::String
|
|
342
|
+
SENSITIVE: []
|
|
343
|
+
end
|
|
344
|
+
end
|
|
345
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module AccountAccess
|
|
10
|
+
module Waiters
|
|
11
|
+
|
|
12
|
+
class ApplicationActive
|
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
15
|
+
|
|
16
|
+
def wait: (
|
|
17
|
+
application_arn: ::String
|
|
18
|
+
) -> Client::_GetApplicationResponseSuccess
|
|
19
|
+
| (Hash[Symbol, untyped]) -> Client::_GetApplicationResponseSuccess
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: aws-sdk-accountaccess
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Amazon Web Services
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: aws-sdk-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '3'
|
|
19
|
+
- - ">="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 3.254.0
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - "~>"
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '3'
|
|
29
|
+
- - ">="
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 3.254.0
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: aws-sigv4
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.5'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.5'
|
|
46
|
+
description: Official AWS Ruby gem for Account Access. This gem is part of the AWS
|
|
47
|
+
SDK for Ruby.
|
|
48
|
+
email:
|
|
49
|
+
- aws-dr-rubygems@amazon.com
|
|
50
|
+
executables: []
|
|
51
|
+
extensions: []
|
|
52
|
+
extra_rdoc_files: []
|
|
53
|
+
files:
|
|
54
|
+
- CHANGELOG.md
|
|
55
|
+
- LICENSE.txt
|
|
56
|
+
- VERSION
|
|
57
|
+
- lib/aws-sdk-accountaccess.rb
|
|
58
|
+
- lib/aws-sdk-accountaccess/client.rb
|
|
59
|
+
- lib/aws-sdk-accountaccess/client_api.rb
|
|
60
|
+
- lib/aws-sdk-accountaccess/customizations.rb
|
|
61
|
+
- lib/aws-sdk-accountaccess/endpoint_parameters.rb
|
|
62
|
+
- lib/aws-sdk-accountaccess/endpoint_provider.rb
|
|
63
|
+
- lib/aws-sdk-accountaccess/endpoints.rb
|
|
64
|
+
- lib/aws-sdk-accountaccess/errors.rb
|
|
65
|
+
- lib/aws-sdk-accountaccess/plugins/endpoints.rb
|
|
66
|
+
- lib/aws-sdk-accountaccess/resource.rb
|
|
67
|
+
- lib/aws-sdk-accountaccess/types.rb
|
|
68
|
+
- lib/aws-sdk-accountaccess/waiters.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
|
75
|
+
licenses:
|
|
76
|
+
- Apache-2.0
|
|
77
|
+
metadata:
|
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-accountaccess
|
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-accountaccess/CHANGELOG.md
|
|
80
|
+
rdoc_options: []
|
|
81
|
+
require_paths:
|
|
82
|
+
- lib
|
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '2.7'
|
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
requirements: []
|
|
94
|
+
rubygems_version: 3.6.7
|
|
95
|
+
specification_version: 4
|
|
96
|
+
summary: AWS SDK for Ruby - Account Access
|
|
97
|
+
test_files: []
|