aws-sdk-iam 1.33.0 → 1.34.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 +4 -4
- data/lib/aws-sdk-iam.rb +7 -4
- data/lib/aws-sdk-iam/access_key.rb +1 -0
- data/lib/aws-sdk-iam/access_key_pair.rb +1 -0
- data/lib/aws-sdk-iam/account_password_policy.rb +1 -0
- data/lib/aws-sdk-iam/account_summary.rb +1 -0
- data/lib/aws-sdk-iam/assume_role_policy.rb +1 -0
- data/lib/aws-sdk-iam/client.rb +61 -10
- data/lib/aws-sdk-iam/current_user.rb +1 -0
- data/lib/aws-sdk-iam/errors.rb +49 -27
- data/lib/aws-sdk-iam/group.rb +1 -0
- data/lib/aws-sdk-iam/group_policy.rb +1 -0
- data/lib/aws-sdk-iam/instance_profile.rb +1 -0
- data/lib/aws-sdk-iam/login_profile.rb +1 -0
- data/lib/aws-sdk-iam/mfa_device.rb +1 -0
- data/lib/aws-sdk-iam/policy.rb +1 -0
- data/lib/aws-sdk-iam/policy_version.rb +1 -0
- data/lib/aws-sdk-iam/resource.rb +7 -0
- data/lib/aws-sdk-iam/role.rb +1 -0
- data/lib/aws-sdk-iam/role_policy.rb +1 -0
- data/lib/aws-sdk-iam/saml_provider.rb +1 -0
- data/lib/aws-sdk-iam/server_certificate.rb +1 -0
- data/lib/aws-sdk-iam/signing_certificate.rb +1 -0
- data/lib/aws-sdk-iam/user.rb +1 -0
- data/lib/aws-sdk-iam/user_policy.rb +1 -0
- data/lib/aws-sdk-iam/virtual_mfa_device.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a04021cf135f23b1b20e2ca6223141d4ceb54d97
|
4
|
+
data.tar.gz: 42ea296a22a37525890fa80fc38f8917f3e37734
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba460dc7dc24ab33a8487f24ef50ae7f074a5b1d94f173d2082ba0a5d8058b3acda4e39be64b4c9fc57db61664860545faafafa43064358b5639e0804cb30c74
|
7
|
+
data.tar.gz: bb4b90cf05bbdbf1546684ed9b09745e60987cc44f8248d7b70b32e9be0ca942c4921c3c70735409c4881fc99a26240e697e9dae086133f6563f02e6b89cfc89
|
data/lib/aws-sdk-iam.rb
CHANGED
@@ -46,17 +46,20 @@ require_relative 'aws-sdk-iam/customizations'
|
|
46
46
|
# methods each accept a hash of request parameters and return a response
|
47
47
|
# structure.
|
48
48
|
#
|
49
|
+
# iam = Aws::IAM::Client.new
|
50
|
+
# resp = iam.add_client_id_to_open_id_connect_provider(params)
|
51
|
+
#
|
49
52
|
# See {Client} for more information.
|
50
53
|
#
|
51
54
|
# # Errors
|
52
55
|
#
|
53
|
-
# Errors returned from AWS Identity and Access Management
|
54
|
-
# extend {Errors::ServiceError}.
|
56
|
+
# Errors returned from AWS Identity and Access Management are defined in the
|
57
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
55
58
|
#
|
56
59
|
# begin
|
57
60
|
# # do stuff
|
58
61
|
# rescue Aws::IAM::Errors::ServiceError
|
59
|
-
# # rescues all
|
62
|
+
# # rescues all AWS Identity and Access Management API errors
|
60
63
|
# end
|
61
64
|
#
|
62
65
|
# See {Errors} for more information.
|
@@ -64,6 +67,6 @@ require_relative 'aws-sdk-iam/customizations'
|
|
64
67
|
# @service
|
65
68
|
module Aws::IAM
|
66
69
|
|
67
|
-
GEM_VERSION = '1.
|
70
|
+
GEM_VERSION = '1.34.0'
|
68
71
|
|
69
72
|
end
|
data/lib/aws-sdk-iam/client.rb
CHANGED
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/query.rb'
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:iam)
|
31
31
|
|
32
32
|
module Aws::IAM
|
33
|
+
# An API client for IAM. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
|
+
#
|
35
|
+
# client = Aws::IAM::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
|
+
#
|
41
|
+
# For details on configuring region and credentials see
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
43
|
+
#
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
45
|
class Client < Seahorse::Client::Base
|
34
46
|
|
35
47
|
include Aws::ClientStubs
|
@@ -108,6 +120,12 @@ module Aws::IAM
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
110
122
|
#
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
127
|
+
# not retry instead of sleeping.
|
128
|
+
#
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
131
|
# this client.
|
@@ -132,6 +150,10 @@ module Aws::IAM
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
133
151
|
# the required types.
|
134
152
|
#
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
156
|
+
#
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
137
159
|
# to default service endpoint when available.
|
@@ -166,15 +188,29 @@ module Aws::IAM
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
167
189
|
# is not set, logging will be disabled.
|
168
190
|
#
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
193
|
+
# a single request, including the initial attempt. For example,
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
196
|
+
#
|
169
197
|
# @option options [String] :profile ("default")
|
170
198
|
# Used when loading credentials from the shared credentials file
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
200
|
#
|
201
|
+
# @option options [Proc] :retry_backoff
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
204
|
+
#
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
207
|
+
# is only used in the `legacy` retry mode.
|
175
208
|
#
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
213
|
+
# in the `legacy` retry mode.
|
178
214
|
#
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
216
|
#
|
@@ -182,11 +218,26 @@ module Aws::IAM
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
187
224
|
#
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
227
|
+
# used by the default backoff function. This option is only used in the
|
228
|
+
# `legacy` retry mode.
|
229
|
+
#
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
231
|
+
# Specifies which retry algorithm to use. Values are:
|
232
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
233
|
+
# no retry mode is provided.
|
234
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
235
|
+
# This includes support for retry quotas, which limit the number of
|
236
|
+
# unsuccessful retries a client can make.
|
237
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
238
|
+
# functionality of `standard` mode along with automatic client side
|
239
|
+
# throttling. This is a provisional mode that may change behavior
|
240
|
+
# in the future.
|
190
241
|
#
|
191
242
|
# @option options [String] :secret_access_key
|
192
243
|
#
|
@@ -209,16 +260,16 @@ module Aws::IAM
|
|
209
260
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
261
|
#
|
211
262
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
263
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
264
|
# `Timeout::Error`.
|
214
265
|
#
|
215
266
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
267
|
# number of seconds to wait for response data. This value can
|
217
268
|
# safely be set
|
218
|
-
# per-request on the session
|
269
|
+
# per-request on the session yielded by {#session_for}.
|
219
270
|
#
|
220
271
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
272
|
+
# seconds a connection is allowed to sit idle before it is
|
222
273
|
# considered stale. Stale connections are closed and removed
|
223
274
|
# from the pool before making a request.
|
224
275
|
#
|
@@ -227,7 +278,7 @@ module Aws::IAM
|
|
227
278
|
# request body. This option has no effect unless the request has
|
228
279
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
280
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
281
|
+
# request on the session yielded by {#session_for}.
|
231
282
|
#
|
232
283
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
284
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -11400,7 +11451,7 @@ module Aws::IAM
|
|
11400
11451
|
params: params,
|
11401
11452
|
config: config)
|
11402
11453
|
context[:gem_name] = 'aws-sdk-iam'
|
11403
|
-
context[:gem_version] = '1.
|
11454
|
+
context[:gem_version] = '1.34.0'
|
11404
11455
|
Seahorse::Client::Request.new(handlers, context)
|
11405
11456
|
end
|
11406
11457
|
|
data/lib/aws-sdk-iam/errors.rb
CHANGED
@@ -6,6 +6,55 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::IAM
|
9
|
+
|
10
|
+
# When IAM returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::IAM::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all IAM errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::IAM::Errors::ServiceError
|
18
|
+
# # rescues all IAM API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {ConcurrentModificationException}
|
29
|
+
# * {CredentialReportExpiredException}
|
30
|
+
# * {CredentialReportNotPresentException}
|
31
|
+
# * {CredentialReportNotReadyException}
|
32
|
+
# * {DeleteConflictException}
|
33
|
+
# * {DuplicateCertificateException}
|
34
|
+
# * {DuplicateSSHPublicKeyException}
|
35
|
+
# * {EntityAlreadyExistsException}
|
36
|
+
# * {EntityTemporarilyUnmodifiableException}
|
37
|
+
# * {InvalidAuthenticationCodeException}
|
38
|
+
# * {InvalidCertificateException}
|
39
|
+
# * {InvalidInputException}
|
40
|
+
# * {InvalidPublicKeyException}
|
41
|
+
# * {InvalidUserTypeException}
|
42
|
+
# * {KeyPairMismatchException}
|
43
|
+
# * {LimitExceededException}
|
44
|
+
# * {MalformedCertificateException}
|
45
|
+
# * {MalformedPolicyDocumentException}
|
46
|
+
# * {NoSuchEntityException}
|
47
|
+
# * {PasswordPolicyViolationException}
|
48
|
+
# * {PolicyEvaluationException}
|
49
|
+
# * {PolicyNotAttachableException}
|
50
|
+
# * {ReportGenerationLimitExceededException}
|
51
|
+
# * {ServiceFailureException}
|
52
|
+
# * {ServiceNotSupportedException}
|
53
|
+
# * {UnmodifiableEntityException}
|
54
|
+
# * {UnrecognizedPublicKeyEncodingException}
|
55
|
+
#
|
56
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
57
|
+
# if they are not defined above.
|
9
58
|
module Errors
|
10
59
|
|
11
60
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +72,6 @@ module Aws::IAM
|
|
23
72
|
def message
|
24
73
|
@message || @data[:message]
|
25
74
|
end
|
26
|
-
|
27
75
|
end
|
28
76
|
|
29
77
|
class CredentialReportExpiredException < ServiceError
|
@@ -39,7 +87,6 @@ module Aws::IAM
|
|
39
87
|
def message
|
40
88
|
@message || @data[:message]
|
41
89
|
end
|
42
|
-
|
43
90
|
end
|
44
91
|
|
45
92
|
class CredentialReportNotPresentException < ServiceError
|
@@ -55,7 +102,6 @@ module Aws::IAM
|
|
55
102
|
def message
|
56
103
|
@message || @data[:message]
|
57
104
|
end
|
58
|
-
|
59
105
|
end
|
60
106
|
|
61
107
|
class CredentialReportNotReadyException < ServiceError
|
@@ -71,7 +117,6 @@ module Aws::IAM
|
|
71
117
|
def message
|
72
118
|
@message || @data[:message]
|
73
119
|
end
|
74
|
-
|
75
120
|
end
|
76
121
|
|
77
122
|
class DeleteConflictException < ServiceError
|
@@ -87,7 +132,6 @@ module Aws::IAM
|
|
87
132
|
def message
|
88
133
|
@message || @data[:message]
|
89
134
|
end
|
90
|
-
|
91
135
|
end
|
92
136
|
|
93
137
|
class DuplicateCertificateException < ServiceError
|
@@ -103,7 +147,6 @@ module Aws::IAM
|
|
103
147
|
def message
|
104
148
|
@message || @data[:message]
|
105
149
|
end
|
106
|
-
|
107
150
|
end
|
108
151
|
|
109
152
|
class DuplicateSSHPublicKeyException < ServiceError
|
@@ -119,7 +162,6 @@ module Aws::IAM
|
|
119
162
|
def message
|
120
163
|
@message || @data[:message]
|
121
164
|
end
|
122
|
-
|
123
165
|
end
|
124
166
|
|
125
167
|
class EntityAlreadyExistsException < ServiceError
|
@@ -135,7 +177,6 @@ module Aws::IAM
|
|
135
177
|
def message
|
136
178
|
@message || @data[:message]
|
137
179
|
end
|
138
|
-
|
139
180
|
end
|
140
181
|
|
141
182
|
class EntityTemporarilyUnmodifiableException < ServiceError
|
@@ -151,7 +192,6 @@ module Aws::IAM
|
|
151
192
|
def message
|
152
193
|
@message || @data[:message]
|
153
194
|
end
|
154
|
-
|
155
195
|
end
|
156
196
|
|
157
197
|
class InvalidAuthenticationCodeException < ServiceError
|
@@ -167,7 +207,6 @@ module Aws::IAM
|
|
167
207
|
def message
|
168
208
|
@message || @data[:message]
|
169
209
|
end
|
170
|
-
|
171
210
|
end
|
172
211
|
|
173
212
|
class InvalidCertificateException < ServiceError
|
@@ -183,7 +222,6 @@ module Aws::IAM
|
|
183
222
|
def message
|
184
223
|
@message || @data[:message]
|
185
224
|
end
|
186
|
-
|
187
225
|
end
|
188
226
|
|
189
227
|
class InvalidInputException < ServiceError
|
@@ -199,7 +237,6 @@ module Aws::IAM
|
|
199
237
|
def message
|
200
238
|
@message || @data[:message]
|
201
239
|
end
|
202
|
-
|
203
240
|
end
|
204
241
|
|
205
242
|
class InvalidPublicKeyException < ServiceError
|
@@ -215,7 +252,6 @@ module Aws::IAM
|
|
215
252
|
def message
|
216
253
|
@message || @data[:message]
|
217
254
|
end
|
218
|
-
|
219
255
|
end
|
220
256
|
|
221
257
|
class InvalidUserTypeException < ServiceError
|
@@ -231,7 +267,6 @@ module Aws::IAM
|
|
231
267
|
def message
|
232
268
|
@message || @data[:message]
|
233
269
|
end
|
234
|
-
|
235
270
|
end
|
236
271
|
|
237
272
|
class KeyPairMismatchException < ServiceError
|
@@ -247,7 +282,6 @@ module Aws::IAM
|
|
247
282
|
def message
|
248
283
|
@message || @data[:message]
|
249
284
|
end
|
250
|
-
|
251
285
|
end
|
252
286
|
|
253
287
|
class LimitExceededException < ServiceError
|
@@ -263,7 +297,6 @@ module Aws::IAM
|
|
263
297
|
def message
|
264
298
|
@message || @data[:message]
|
265
299
|
end
|
266
|
-
|
267
300
|
end
|
268
301
|
|
269
302
|
class MalformedCertificateException < ServiceError
|
@@ -279,7 +312,6 @@ module Aws::IAM
|
|
279
312
|
def message
|
280
313
|
@message || @data[:message]
|
281
314
|
end
|
282
|
-
|
283
315
|
end
|
284
316
|
|
285
317
|
class MalformedPolicyDocumentException < ServiceError
|
@@ -295,7 +327,6 @@ module Aws::IAM
|
|
295
327
|
def message
|
296
328
|
@message || @data[:message]
|
297
329
|
end
|
298
|
-
|
299
330
|
end
|
300
331
|
|
301
332
|
class NoSuchEntityException < ServiceError
|
@@ -311,7 +342,6 @@ module Aws::IAM
|
|
311
342
|
def message
|
312
343
|
@message || @data[:message]
|
313
344
|
end
|
314
|
-
|
315
345
|
end
|
316
346
|
|
317
347
|
class PasswordPolicyViolationException < ServiceError
|
@@ -327,7 +357,6 @@ module Aws::IAM
|
|
327
357
|
def message
|
328
358
|
@message || @data[:message]
|
329
359
|
end
|
330
|
-
|
331
360
|
end
|
332
361
|
|
333
362
|
class PolicyEvaluationException < ServiceError
|
@@ -343,7 +372,6 @@ module Aws::IAM
|
|
343
372
|
def message
|
344
373
|
@message || @data[:message]
|
345
374
|
end
|
346
|
-
|
347
375
|
end
|
348
376
|
|
349
377
|
class PolicyNotAttachableException < ServiceError
|
@@ -359,7 +387,6 @@ module Aws::IAM
|
|
359
387
|
def message
|
360
388
|
@message || @data[:message]
|
361
389
|
end
|
362
|
-
|
363
390
|
end
|
364
391
|
|
365
392
|
class ReportGenerationLimitExceededException < ServiceError
|
@@ -375,7 +402,6 @@ module Aws::IAM
|
|
375
402
|
def message
|
376
403
|
@message || @data[:message]
|
377
404
|
end
|
378
|
-
|
379
405
|
end
|
380
406
|
|
381
407
|
class ServiceFailureException < ServiceError
|
@@ -391,7 +417,6 @@ module Aws::IAM
|
|
391
417
|
def message
|
392
418
|
@message || @data[:message]
|
393
419
|
end
|
394
|
-
|
395
420
|
end
|
396
421
|
|
397
422
|
class ServiceNotSupportedException < ServiceError
|
@@ -407,7 +432,6 @@ module Aws::IAM
|
|
407
432
|
def message
|
408
433
|
@message || @data[:message]
|
409
434
|
end
|
410
|
-
|
411
435
|
end
|
412
436
|
|
413
437
|
class UnmodifiableEntityException < ServiceError
|
@@ -423,7 +447,6 @@ module Aws::IAM
|
|
423
447
|
def message
|
424
448
|
@message || @data[:message]
|
425
449
|
end
|
426
|
-
|
427
450
|
end
|
428
451
|
|
429
452
|
class UnrecognizedPublicKeyEncodingException < ServiceError
|
@@ -439,7 +462,6 @@ module Aws::IAM
|
|
439
462
|
def message
|
440
463
|
@message || @data[:message]
|
441
464
|
end
|
442
|
-
|
443
465
|
end
|
444
466
|
|
445
467
|
end
|
data/lib/aws-sdk-iam/group.rb
CHANGED
data/lib/aws-sdk-iam/policy.rb
CHANGED
data/lib/aws-sdk-iam/resource.rb
CHANGED
@@ -6,6 +6,13 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::IAM
|
9
|
+
# This class provides a resource oriented interface for IAM.
|
10
|
+
# To create a resource object:
|
11
|
+
# resource = Aws::IAM::Resource.new(region: 'us-west-2')
|
12
|
+
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
+
# If you do not pass +:client+, a default client will be constructed.
|
14
|
+
# client = Aws::IAM::Client.new(region: 'us-west-2')
|
15
|
+
# resource = Aws::IAM::Resource.new(client: client)
|
9
16
|
class Resource
|
10
17
|
|
11
18
|
# @param options ({})
|
data/lib/aws-sdk-iam/role.rb
CHANGED
data/lib/aws-sdk-iam/user.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|