aws-sdk-iam 1.32.0 → 1.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iam.rb +1 -1
- 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 +5 -4
- data/lib/aws-sdk-iam/client.rb +195 -132
- data/lib/aws-sdk-iam/client_api.rb +8 -0
- data/lib/aws-sdk-iam/current_user.rb +1 -0
- data/lib/aws-sdk-iam/group.rb +11 -10
- data/lib/aws-sdk-iam/group_policy.rb +5 -4
- data/lib/aws-sdk-iam/instance_profile.rb +1 -0
- data/lib/aws-sdk-iam/login_profile.rb +11 -10
- data/lib/aws-sdk-iam/mfa_device.rb +1 -0
- data/lib/aws-sdk-iam/policy.rb +11 -10
- data/lib/aws-sdk-iam/policy_version.rb +1 -0
- data/lib/aws-sdk-iam/resource.rb +51 -51
- data/lib/aws-sdk-iam/role.rb +3 -2
- data/lib/aws-sdk-iam/role_policy.rb +5 -4
- data/lib/aws-sdk-iam/saml_provider.rb +1 -0
- data/lib/aws-sdk-iam/server_certificate.rb +3 -2
- data/lib/aws-sdk-iam/signing_certificate.rb +1 -0
- data/lib/aws-sdk-iam/types.rb +267 -155
- data/lib/aws-sdk-iam/user.rb +17 -16
- data/lib/aws-sdk-iam/user_policy.rb +5 -4
- data/lib/aws-sdk-iam/virtual_mfa_device.rb +1 -0
- metadata +2 -2
data/lib/aws-sdk-iam/user.rb
CHANGED
@@ -21,6 +21,7 @@ module Aws::IAM
|
|
21
21
|
@name = extract_name(args, options)
|
22
22
|
@data = options.delete(:data)
|
23
23
|
@client = options.delete(:client) || Client.new(options)
|
24
|
+
@waiter_block_warned = false
|
24
25
|
end
|
25
26
|
|
26
27
|
# @!group Read-Only Attributes
|
@@ -364,8 +365,8 @@ module Aws::IAM
|
|
364
365
|
# This parameter allows (through its [regex pattern][2]) a string of
|
365
366
|
# characters consisting of either a forward slash (/) by itself or a
|
366
367
|
# string that must begin and end with forward slashes. In addition, it
|
367
|
-
# can contain any ASCII character from the ! (
|
368
|
-
# character (
|
368
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
369
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
369
370
|
# and upper and lowercased letters.
|
370
371
|
#
|
371
372
|
#
|
@@ -430,12 +431,12 @@ module Aws::IAM
|
|
430
431
|
#
|
431
432
|
# The [regex pattern][1] that is used to validate this parameter is a
|
432
433
|
# string of characters. That string can include almost any printable
|
433
|
-
# ASCII character from the space (
|
434
|
-
# character range (
|
435
|
-
# line feed (
|
436
|
-
# these characters are valid in a password. However, many tools, such
|
437
|
-
# the AWS Management Console, might restrict the ability to type
|
438
|
-
# characters because they have special meaning within that tool.
|
434
|
+
# ASCII character from the space (`\u0020`) through the end of the ASCII
|
435
|
+
# character range (`\u00FF`). You can also include the tab (`\u0009`),
|
436
|
+
# line feed (`\u000A`), and carriage return (`\u000D`) characters. Any
|
437
|
+
# of these characters are valid in a password. However, many tools, such
|
438
|
+
# as the AWS Management Console, might restrict the ability to type
|
439
|
+
# certain characters because they have special meaning within that tool.
|
439
440
|
#
|
440
441
|
#
|
441
442
|
#
|
@@ -484,13 +485,13 @@ module Aws::IAM
|
|
484
485
|
# characters consisting of the following:
|
485
486
|
#
|
486
487
|
# * Any printable ASCII character ranging from the space character
|
487
|
-
# (
|
488
|
+
# (`\u0020`) through the end of the ASCII character range
|
488
489
|
#
|
489
490
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
490
|
-
# character set (through
|
491
|
+
# character set (through `\u00FF`)
|
491
492
|
#
|
492
|
-
# * The special characters tab (
|
493
|
-
# carriage return (
|
493
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
494
|
+
# carriage return (`\u000D`)
|
494
495
|
#
|
495
496
|
#
|
496
497
|
#
|
@@ -638,8 +639,8 @@ module Aws::IAM
|
|
638
639
|
# This parameter allows (through its [regex pattern][1]) a string of
|
639
640
|
# characters consisting of either a forward slash (/) by itself or a
|
640
641
|
# string that must begin and end with forward slashes. In addition, it
|
641
|
-
# can contain any ASCII character from the ! (
|
642
|
-
# character (
|
642
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
643
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
643
644
|
# and upper and lowercased letters.
|
644
645
|
#
|
645
646
|
#
|
@@ -713,8 +714,8 @@ module Aws::IAM
|
|
713
714
|
# This parameter allows (through its [regex pattern][1]) a string of
|
714
715
|
# characters consisting of either a forward slash (/) by itself or a
|
715
716
|
# string that must begin and end with forward slashes. In addition, it
|
716
|
-
# can contain any ASCII character from the ! (
|
717
|
-
# character (
|
717
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
718
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
718
719
|
# and upper and lowercased letters.
|
719
720
|
#
|
720
721
|
#
|
@@ -24,6 +24,7 @@ module Aws::IAM
|
|
24
24
|
@name = extract_name(args, options)
|
25
25
|
@data = options.delete(:data)
|
26
26
|
@client = options.delete(:client) || Client.new(options)
|
27
|
+
@waiter_block_warned = false
|
27
28
|
end
|
28
29
|
|
29
30
|
# @!group Read-Only Attributes
|
@@ -217,13 +218,13 @@ module Aws::IAM
|
|
217
218
|
# characters consisting of the following:
|
218
219
|
#
|
219
220
|
# * Any printable ASCII character ranging from the space character
|
220
|
-
# (
|
221
|
+
# (`\u0020`) through the end of the ASCII character range
|
221
222
|
#
|
222
223
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
223
|
-
# character set (through
|
224
|
+
# character set (through `\u00FF`)
|
224
225
|
#
|
225
|
-
# * The special characters tab (
|
226
|
-
# carriage return (
|
226
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
227
|
+
# carriage return (`\u000D`)
|
227
228
|
#
|
228
229
|
#
|
229
230
|
#
|
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.33.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:
|
11
|
+
date: 2020-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|