aws-sdk-iam 1.41.0 → 1.42.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/client.rb +46 -37
- data/lib/aws-sdk-iam/types.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dbcd42534424b694e07c444c4bc2d25bb2ae97ff3fcea72cebdad51d8b367385
|
|
4
|
+
data.tar.gz: '000449527a0679969fb315674192581d431a77abfc0abd7985216d1fde65d398'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ad96325dbf07379ddeaad107e54bd665e395f40bcc4123efcbcbb7a505e75799a304b6fefd412e94b2c5fe8e99891c5562886db91206a4c2318cbbae57170ee
|
|
7
|
+
data.tar.gz: 4e85fe09bd46652fecdce6b8cb91f61c8039cbb612988f7bc02dd737ab6b2a565798a1d270e9a61f5a2dbb163588f2deb100d0b57282567b004e47fcb3ac12f2
|
data/lib/aws-sdk-iam.rb
CHANGED
data/lib/aws-sdk-iam/client.rb
CHANGED
|
@@ -358,30 +358,33 @@ module Aws::IAM
|
|
|
358
358
|
end
|
|
359
359
|
|
|
360
360
|
# Adds the specified IAM role to the specified instance profile. An
|
|
361
|
-
# instance profile can contain only one role
|
|
362
|
-
#
|
|
363
|
-
#
|
|
364
|
-
#
|
|
365
|
-
#
|
|
366
|
-
#
|
|
367
|
-
# instance and then
|
|
361
|
+
# instance profile can contain only one role. (The number and size of
|
|
362
|
+
# IAM resources in an AWS account are limited. For more information, see
|
|
363
|
+
# [IAM and STS Quotas][1] in the *IAM User Guide*.) You can remove the
|
|
364
|
+
# existing role and then add a different role to an instance profile.
|
|
365
|
+
# You must then wait for the change to appear across all of AWS because
|
|
366
|
+
# of [eventual consistency][2]. To force the change, you must
|
|
367
|
+
# [disassociate the instance profile][3] and then [associate the
|
|
368
|
+
# instance profile][4], or you can stop your instance and then restart
|
|
369
|
+
# it.
|
|
368
370
|
#
|
|
369
371
|
# <note markdown="1"> The caller of this API must be granted the `PassRole` permission on
|
|
370
372
|
# the IAM role by a permissions policy.
|
|
371
373
|
#
|
|
372
374
|
# </note>
|
|
373
375
|
#
|
|
374
|
-
# For more information about roles, go to [Working with Roles][
|
|
376
|
+
# For more information about roles, go to [Working with Roles][5]. For
|
|
375
377
|
# more information about instance profiles, go to [About Instance
|
|
376
|
-
# Profiles][
|
|
378
|
+
# Profiles][6].
|
|
377
379
|
#
|
|
378
380
|
#
|
|
379
381
|
#
|
|
380
|
-
# [1]: https://
|
|
381
|
-
# [2]: https://
|
|
382
|
-
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
|
383
|
-
# [4]: https://docs.aws.amazon.com/
|
|
384
|
-
# [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
382
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
383
|
+
# [2]: https://en.wikipedia.org/wiki/Eventual_consistency
|
|
384
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DisassociateIamInstanceProfile.html
|
|
385
|
+
# [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_AssociateIamInstanceProfile.html
|
|
386
|
+
# [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
|
387
|
+
# [6]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
|
385
388
|
#
|
|
386
389
|
# @option params [required, String] :instance_profile_name
|
|
387
390
|
# The name of the instance profile to update.
|
|
@@ -755,8 +758,9 @@ module Aws::IAM
|
|
|
755
758
|
# credentials. This is true even if the AWS account has no associated
|
|
756
759
|
# users.
|
|
757
760
|
#
|
|
758
|
-
#
|
|
759
|
-
#
|
|
761
|
+
# The number and size of IAM resources in an AWS account are limited.
|
|
762
|
+
# For more information, see [IAM and STS Quotas][1] in the *IAM User
|
|
763
|
+
# Guide*.
|
|
760
764
|
#
|
|
761
765
|
# To ensure the security of your AWS account, the secret access key is
|
|
762
766
|
# accessible only during key and user creation. You must save the key
|
|
@@ -766,7 +770,7 @@ module Aws::IAM
|
|
|
766
770
|
#
|
|
767
771
|
#
|
|
768
772
|
#
|
|
769
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
773
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
770
774
|
#
|
|
771
775
|
# @option params [String] :user_name
|
|
772
776
|
# The name of the IAM user that the new key will belong to.
|
|
@@ -875,12 +879,13 @@ module Aws::IAM
|
|
|
875
879
|
|
|
876
880
|
# Creates a new group.
|
|
877
881
|
#
|
|
878
|
-
#
|
|
879
|
-
#
|
|
882
|
+
# The number and size of IAM resources in an AWS account are limited.
|
|
883
|
+
# For more information, see [IAM and STS Quotas][1] in the *IAM User
|
|
884
|
+
# Guide*.
|
|
880
885
|
#
|
|
881
886
|
#
|
|
882
887
|
#
|
|
883
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
888
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
884
889
|
#
|
|
885
890
|
# @option params [String] :path
|
|
886
891
|
# The path to the group. For more information about paths, see [IAM
|
|
@@ -960,13 +965,14 @@ module Aws::IAM
|
|
|
960
965
|
# Creates a new instance profile. For information about instance
|
|
961
966
|
# profiles, go to [About Instance Profiles][1].
|
|
962
967
|
#
|
|
963
|
-
#
|
|
964
|
-
# see [
|
|
968
|
+
# The number and size of IAM resources in an AWS account are limited.
|
|
969
|
+
# For more information, see [IAM and STS Quotas][2] in the *IAM User
|
|
970
|
+
# Guide*.
|
|
965
971
|
#
|
|
966
972
|
#
|
|
967
973
|
#
|
|
968
974
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
|
|
969
|
-
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
975
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
970
976
|
#
|
|
971
977
|
# @option params [required, String] :instance_profile_name
|
|
972
978
|
# The name of the instance profile to create.
|
|
@@ -1496,14 +1502,14 @@ module Aws::IAM
|
|
|
1496
1502
|
end
|
|
1497
1503
|
|
|
1498
1504
|
# Creates a new role for your AWS account. For more information about
|
|
1499
|
-
# roles, go to [IAM Roles][1].
|
|
1500
|
-
#
|
|
1501
|
-
#
|
|
1505
|
+
# roles, go to [IAM Roles][1]. The number and size of IAM resources in
|
|
1506
|
+
# an AWS account are limited. For more information, see [IAM and STS
|
|
1507
|
+
# Quotas][2] in the *IAM User Guide*.
|
|
1502
1508
|
#
|
|
1503
1509
|
#
|
|
1504
1510
|
#
|
|
1505
1511
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
|
|
1506
|
-
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
1512
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
1507
1513
|
#
|
|
1508
1514
|
# @option params [String] :path
|
|
1509
1515
|
# The path to the role. For more information about paths, see [IAM
|
|
@@ -1916,12 +1922,13 @@ module Aws::IAM
|
|
|
1916
1922
|
|
|
1917
1923
|
# Creates a new IAM user for your AWS account.
|
|
1918
1924
|
#
|
|
1919
|
-
#
|
|
1920
|
-
#
|
|
1925
|
+
# The number and size of IAM resources in an AWS account are limited.
|
|
1926
|
+
# For more information, see [IAM and STS Quotas][1] in the *IAM User
|
|
1927
|
+
# Guide*.
|
|
1921
1928
|
#
|
|
1922
1929
|
#
|
|
1923
1930
|
#
|
|
1924
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
1931
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
1925
1932
|
#
|
|
1926
1933
|
# @option params [String] :path
|
|
1927
1934
|
# The path for the user name. For more information about paths, see [IAM
|
|
@@ -2036,8 +2043,9 @@ module Aws::IAM
|
|
|
2036
2043
|
# MFA devices, go to [Using a Virtual MFA Device][1] in the *IAM User
|
|
2037
2044
|
# Guide*.
|
|
2038
2045
|
#
|
|
2039
|
-
#
|
|
2040
|
-
#
|
|
2046
|
+
# The number and size of IAM resources in an AWS account are limited.
|
|
2047
|
+
# For more information, see [IAM and STS Quotas][2] in the *IAM User
|
|
2048
|
+
# Guide*.
|
|
2041
2049
|
#
|
|
2042
2050
|
# The seed information contained in the QR code and the Base32 string
|
|
2043
2051
|
# should be treated like any other secret access information. In other
|
|
@@ -2048,7 +2056,7 @@ module Aws::IAM
|
|
|
2048
2056
|
#
|
|
2049
2057
|
#
|
|
2050
2058
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_VirtualMFA.html
|
|
2051
|
-
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
2059
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
2052
2060
|
#
|
|
2053
2061
|
# @option params [String] :path
|
|
2054
2062
|
# The path for the virtual MFA device. For more information about paths,
|
|
@@ -4134,12 +4142,13 @@ module Aws::IAM
|
|
|
4134
4142
|
# Retrieves information about IAM entity usage and IAM quotas in the AWS
|
|
4135
4143
|
# account.
|
|
4136
4144
|
#
|
|
4137
|
-
#
|
|
4138
|
-
# IAM
|
|
4145
|
+
# The number and size of IAM resources in an AWS account are limited.
|
|
4146
|
+
# For more information, see [IAM and STS Quotas][1] in the *IAM User
|
|
4147
|
+
# Guide*.
|
|
4139
4148
|
#
|
|
4140
4149
|
#
|
|
4141
4150
|
#
|
|
4142
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
4151
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
|
|
4143
4152
|
#
|
|
4144
4153
|
# @return [Types::GetAccountSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4145
4154
|
#
|
|
@@ -11565,7 +11574,7 @@ module Aws::IAM
|
|
|
11565
11574
|
params: params,
|
|
11566
11575
|
config: config)
|
|
11567
11576
|
context[:gem_name] = 'aws-sdk-iam'
|
|
11568
|
-
context[:gem_version] = '1.
|
|
11577
|
+
context[:gem_version] = '1.42.0'
|
|
11569
11578
|
Seahorse::Client::Request.new(handlers, context)
|
|
11570
11579
|
end
|
|
11571
11580
|
|
data/lib/aws-sdk-iam/types.rb
CHANGED
|
@@ -4979,8 +4979,8 @@ module Aws::IAM
|
|
|
4979
4979
|
end
|
|
4980
4980
|
|
|
4981
4981
|
# The request was rejected because it attempted to create resources
|
|
4982
|
-
# beyond the current AWS account
|
|
4983
|
-
# limit exceeded.
|
|
4982
|
+
# beyond the current AWS account limitations. The error message
|
|
4983
|
+
# describes the limit exceeded.
|
|
4984
4984
|
#
|
|
4985
4985
|
# @!attribute [rw] message
|
|
4986
4986
|
# @return [String]
|
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.42.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-06-
|
|
11
|
+
date: 2020-06-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|