aws-sdk-iam 1.3.0 → 1.4.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 +1 -1
- data/lib/aws-sdk-iam/access_key_pair.rb +2 -2
- data/lib/aws-sdk-iam/account_password_policy.rb +33 -15
- data/lib/aws-sdk-iam/assume_role_policy.rb +10 -6
- data/lib/aws-sdk-iam/client.rb +805 -588
- data/lib/aws-sdk-iam/client_api.rb +23 -0
- data/lib/aws-sdk-iam/current_user.rb +4 -4
- data/lib/aws-sdk-iam/group.rb +29 -25
- data/lib/aws-sdk-iam/group_policy.rb +10 -6
- data/lib/aws-sdk-iam/login_profile.rb +22 -16
- data/lib/aws-sdk-iam/mfa_device.rb +2 -2
- data/lib/aws-sdk-iam/policy.rb +31 -27
- data/lib/aws-sdk-iam/policy_version.rb +11 -0
- data/lib/aws-sdk-iam/resource.rb +194 -131
- data/lib/aws-sdk-iam/role.rb +14 -5
- data/lib/aws-sdk-iam/role_policy.rb +10 -6
- data/lib/aws-sdk-iam/server_certificate.rb +6 -6
- data/lib/aws-sdk-iam/signing_certificate.rb +2 -2
- data/lib/aws-sdk-iam/types.rb +687 -477
- data/lib/aws-sdk-iam/user.rb +40 -36
- data/lib/aws-sdk-iam/user_policy.rb +10 -6
- metadata +3 -3
data/lib/aws-sdk-iam/user.rb
CHANGED
@@ -95,7 +95,7 @@ module Aws::IAM
|
|
95
95
|
# then this field contains the date and time the most recent password
|
96
96
|
# was used.
|
97
97
|
#
|
98
|
-
# This value is returned only in the GetUser and ListUsers
|
98
|
+
# This value is returned only in the GetUser and ListUsers operations.
|
99
99
|
#
|
100
100
|
#
|
101
101
|
#
|
@@ -281,7 +281,7 @@ module Aws::IAM
|
|
281
281
|
# This parameter allows (per its [regex pattern][1]) a string of
|
282
282
|
# characters consisting of upper and lowercase alphanumeric characters
|
283
283
|
# with no spaces. You can also include any of the following characters:
|
284
|
-
#
|
284
|
+
# \_+=,.@-
|
285
285
|
#
|
286
286
|
#
|
287
287
|
#
|
@@ -328,12 +328,12 @@ module Aws::IAM
|
|
328
328
|
# This parameter is optional. If it is not included, it defaults to a
|
329
329
|
# slash (/).
|
330
330
|
#
|
331
|
-
# This
|
331
|
+
# This parameter allows (per its [regex pattern][2]) a string of
|
332
332
|
# characters consisting of either a forward slash (/) by itself or a
|
333
|
-
# string that must begin and end with forward slashes,
|
334
|
-
# ASCII character from the ! (\\u0021)
|
335
|
-
# including most punctuation characters, digits,
|
336
|
-
# lowercased letters.
|
333
|
+
# string that must begin and end with forward slashes. In addition, it
|
334
|
+
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
335
|
+
# character (\\u007F), including most punctuation characters, digits,
|
336
|
+
# and upper and lowercased letters.
|
337
337
|
#
|
338
338
|
#
|
339
339
|
#
|
@@ -377,14 +377,14 @@ module Aws::IAM
|
|
377
377
|
# @option options [required, String] :password
|
378
378
|
# The new password for the user.
|
379
379
|
#
|
380
|
-
# The [regex pattern][1] used to validate this parameter is a
|
381
|
-
# characters
|
382
|
-
# space (\\u0020) through the end of the ASCII
|
383
|
-
# (\\u00FF). You can also include the tab (\\u0009),
|
384
|
-
# (\\u000A), and carriage return (\\u000D) characters.
|
385
|
-
# these characters are valid in a password,
|
386
|
-
#
|
387
|
-
#
|
380
|
+
# The [regex pattern][1] that is used to validate this parameter is a
|
381
|
+
# string of characters. That string can include almost any printable
|
382
|
+
# ASCII character from the space (\\u0020) through the end of the ASCII
|
383
|
+
# character range (\\u00FF). You can also include the tab (\\u0009),
|
384
|
+
# line feed (\\u000A), and carriage return (\\u000D) characters. Any of
|
385
|
+
# these characters are valid in a password. However, many tools, such as
|
386
|
+
# the AWS Management Console, might restrict the ability to type certain
|
387
|
+
# characters because they have special meaning within that tool.
|
388
388
|
#
|
389
389
|
#
|
390
390
|
#
|
@@ -416,7 +416,7 @@ module Aws::IAM
|
|
416
416
|
# This parameter allows (per its [regex pattern][1]) a string of
|
417
417
|
# characters consisting of upper and lowercase alphanumeric characters
|
418
418
|
# with no spaces. You can also include any of the following characters:
|
419
|
-
#
|
419
|
+
# \_+=,.@-
|
420
420
|
#
|
421
421
|
#
|
422
422
|
#
|
@@ -425,12 +425,16 @@ module Aws::IAM
|
|
425
425
|
# The policy document.
|
426
426
|
#
|
427
427
|
# The [regex pattern][1] used to validate this parameter is a string of
|
428
|
-
# characters consisting of
|
429
|
-
#
|
430
|
-
#
|
431
|
-
#
|
432
|
-
#
|
433
|
-
#
|
428
|
+
# characters consisting of the following:
|
429
|
+
#
|
430
|
+
# * Any printable ASCII character ranging from the space character
|
431
|
+
# (\\u0020) through the end of the ASCII character range
|
432
|
+
#
|
433
|
+
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
434
|
+
# character set (through \\u00FF)
|
435
|
+
#
|
436
|
+
# * The special characters tab (\\u0009), line feed (\\u000A), and
|
437
|
+
# carriage return (\\u000D)
|
434
438
|
#
|
435
439
|
#
|
436
440
|
#
|
@@ -502,7 +506,7 @@ module Aws::IAM
|
|
502
506
|
# @option options [required, String] :authentication_code_1
|
503
507
|
# An authentication code emitted by the device.
|
504
508
|
#
|
505
|
-
# The format for this parameter is a string of
|
509
|
+
# The format for this parameter is a string of six digits.
|
506
510
|
#
|
507
511
|
# Submit your request immediately after generating the authentication
|
508
512
|
# codes. If you generate the codes and then wait too long to submit the
|
@@ -517,7 +521,7 @@ module Aws::IAM
|
|
517
521
|
# @option options [required, String] :authentication_code_2
|
518
522
|
# A subsequent authentication code emitted by the device.
|
519
523
|
#
|
520
|
-
# The format for this parameter is a string of
|
524
|
+
# The format for this parameter is a string of six digits.
|
521
525
|
#
|
522
526
|
# Submit your request immediately after generating the authentication
|
523
527
|
# codes. If you generate the codes and then wait too long to submit the
|
@@ -552,7 +556,7 @@ module Aws::IAM
|
|
552
556
|
# This parameter allows (per its [regex pattern][1]) a string of
|
553
557
|
# characters consisting of upper and lowercase alphanumeric characters
|
554
558
|
# with no spaces. You can also include any of the following characters:
|
555
|
-
#
|
559
|
+
# \_+=,.@-
|
556
560
|
#
|
557
561
|
#
|
558
562
|
#
|
@@ -575,12 +579,12 @@ module Aws::IAM
|
|
575
579
|
# New path for the IAM user. Include this parameter only if you're
|
576
580
|
# changing the user's path.
|
577
581
|
#
|
578
|
-
# This
|
582
|
+
# This parameter allows (per its [regex pattern][1]) a string of
|
579
583
|
# characters consisting of either a forward slash (/) by itself or a
|
580
|
-
# string that must begin and end with forward slashes,
|
581
|
-
# ASCII character from the ! (\\u0021)
|
582
|
-
# including most punctuation characters, digits,
|
583
|
-
# lowercased letters.
|
584
|
+
# string that must begin and end with forward slashes. In addition, it
|
585
|
+
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
586
|
+
# character (\\u007F), including most punctuation characters, digits,
|
587
|
+
# and upper and lowercased letters.
|
584
588
|
#
|
585
589
|
#
|
586
590
|
#
|
@@ -592,7 +596,7 @@ module Aws::IAM
|
|
592
596
|
# This parameter allows (per its [regex pattern][1]) a string of
|
593
597
|
# characters consisting of upper and lowercase alphanumeric characters
|
594
598
|
# with no spaces. You can also include any of the following characters:
|
595
|
-
#
|
599
|
+
# \_+=,.@-
|
596
600
|
#
|
597
601
|
#
|
598
602
|
#
|
@@ -655,12 +659,12 @@ module Aws::IAM
|
|
655
659
|
# If it is not included, it defaults to a slash (/), listing all
|
656
660
|
# policies.
|
657
661
|
#
|
658
|
-
# This
|
662
|
+
# This parameter allows (per its [regex pattern][1]) a string of
|
659
663
|
# characters consisting of either a forward slash (/) by itself or a
|
660
|
-
# string that must begin and end with forward slashes,
|
661
|
-
# ASCII character from the ! (\\u0021)
|
662
|
-
# including most punctuation characters, digits,
|
663
|
-
# lowercased letters.
|
664
|
+
# string that must begin and end with forward slashes. In addition, it
|
665
|
+
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
666
|
+
# character (\\u007F), including most punctuation characters, digits,
|
667
|
+
# and upper and lowercased letters.
|
664
668
|
#
|
665
669
|
#
|
666
670
|
#
|
@@ -204,12 +204,16 @@ module Aws::IAM
|
|
204
204
|
# The policy document.
|
205
205
|
#
|
206
206
|
# The [regex pattern][1] used to validate this parameter is a string of
|
207
|
-
# characters consisting of
|
208
|
-
#
|
209
|
-
#
|
210
|
-
#
|
211
|
-
#
|
212
|
-
#
|
207
|
+
# characters consisting of the following:
|
208
|
+
#
|
209
|
+
# * Any printable ASCII character ranging from the space character
|
210
|
+
# (\\u0020) through the end of the ASCII character range
|
211
|
+
#
|
212
|
+
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
213
|
+
# character set (through \\u00FF)
|
214
|
+
#
|
215
|
+
# * The special characters tab (\\u0009), line feed (\\u000A), and
|
216
|
+
# carriage return (\\u000D)
|
213
217
|
#
|
214
218
|
#
|
215
219
|
#
|
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.4.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: 2018-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
98
|
version: '0'
|
99
99
|
requirements: []
|
100
100
|
rubyforge_project:
|
101
|
-
rubygems_version: 2.5.
|
101
|
+
rubygems_version: 2.5.2.2
|
102
102
|
signing_key:
|
103
103
|
specification_version: 4
|
104
104
|
summary: AWS SDK for Ruby - IAM
|