aws-sdk-iam 1.50.0 → 1.55.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44f9b7012858e63142582daac01f18eb31196fc6528659e162e11f81d149923f
4
- data.tar.gz: 930e9396d7f19909c9192fe9eefd53126a0752e6ca00d76862302552fe4119de
3
+ metadata.gz: dadc73fbe7c30cca34f990084326e01e4a4a498895c81d8ea08b87f58f661667
4
+ data.tar.gz: a93f3731f19626e42c785d3f86c17895b5ef7235676d80f8ee690e87596d0854
5
5
  SHA512:
6
- metadata.gz: 99ee16ac2feaa07356f13961376b27b218cd01d7c482505cf6adb8e0fc8282c2c0534ce8f56022463d28bf2439faf05328f8793c540922e6c60dc4d2a66078b6
7
- data.tar.gz: e6605b0e74d54e2eb55232a0754e78773d012ee64ac8fb29b9d749227403ce7b9ab9850faad34246d8710f44022ca2a84f318fa39f3d419841562328a469f939
6
+ metadata.gz: 3c2ffa24bc71daa8e623befcfbb345daf662f512763ee110b362903d138f0cc9081f7cd3af7636ee45fce10140b2bc45c5d826024151c6b8e868592fa93875c3
7
+ data.tar.gz: 9a4056d98ae14c10a2c76e4bdc54abe7c16068d5194e975a25eeae8368e1b49b351103e81212a26405769eacf1f39323b79e42b851729844814ae351f5ba91c4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2021-06-02)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS Identity and Access Management (IAM).
8
+
9
+ 1.54.0 (2021-05-20)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for AWS Identity and Access Management (IAM).
13
+
14
+ 1.53.0 (2021-05-19)
15
+ ------------------
16
+
17
+ * Feature - Add pagination to ListUserTags operation
18
+
19
+ 1.52.0 (2021-03-29)
20
+ ------------------
21
+
22
+ * Feature - AWS Identity and Access Management GetAccessKeyLastUsed API will throw a custom error if customer public key is not found for access keys.
23
+
24
+ 1.51.0 (2021-03-23)
25
+ ------------------
26
+
27
+ * Feature - Documentation updates for IAM operations and descriptions.
28
+
4
29
  1.50.0 (2021-03-16)
5
30
  ------------------
6
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.55.0
data/lib/aws-sdk-iam.rb CHANGED
@@ -70,6 +70,6 @@ require_relative 'aws-sdk-iam/customizations'
70
70
  # @!group service
71
71
  module Aws::IAM
72
72
 
73
- GEM_VERSION = '1.50.0'
73
+ GEM_VERSION = '1.55.0'
74
74
 
75
75
  end
@@ -988,15 +988,18 @@ module Aws::IAM
988
988
  end
989
989
 
990
990
  # Creates a new instance profile. For information about instance
991
- # profiles, see [About instance profiles][1].
991
+ # profiles, see [Using roles for applications on Amazon EC2][1] in the
992
+ # *IAM User Guide*, and [Instance profiles][2] in the *Amazon EC2 User
993
+ # Guide*.
992
994
  #
993
995
  # For information about the number of instance profiles you can create,
994
- # see [IAM object quotas][2] in the *IAM User Guide*.
996
+ # see [IAM object quotas][3] in the *IAM User Guide*.
995
997
  #
996
998
  #
997
999
  #
998
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entities
999
- # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
1000
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html
1001
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html#ec2-instance-profile
1002
+ # [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
1000
1003
  #
1001
1004
  # @option params [required, String] :instance_profile_name
1002
1005
  # The name of the instance profile to create.
@@ -1224,6 +1227,14 @@ module Aws::IAM
1224
1227
  # principal in a role's trust policy. Such a policy establishes a trust
1225
1228
  # relationship between AWS and the OIDC provider.
1226
1229
  #
1230
+ # If you are using an OIDC identity provider from Google, Facebook, or
1231
+ # Amazon Cognito, you don't need to create a separate IAM identity
1232
+ # provider. These OIDC identity providers are already built-in to AWS
1233
+ # and are available for your use. Instead, you can move directly to
1234
+ # creating new roles using your identity provider. To learn more, see
1235
+ # [Creating a role for web identity or OpenID connect federation][2] in
1236
+ # the *IAM User Guide*.
1237
+ #
1227
1238
  # When you create the IAM OIDC provider, you specify the following:
1228
1239
  #
1229
1240
  # * The URL of the OIDC identity provider (IdP) to trust
@@ -1247,6 +1258,7 @@ module Aws::IAM
1247
1258
  #
1248
1259
  #
1249
1260
  # [1]: http://openid.net/connect/
1261
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-idp_oidc.html
1250
1262
  #
1251
1263
  # @option params [required, String] :url
1252
1264
  # The URL of the identity provider. The URL must begin with `https://`
@@ -1428,7 +1440,10 @@ module Aws::IAM
1428
1440
  # in JSON or YAML format. AWS CloudFormation always converts a YAML
1429
1441
  # policy to JSON format before submitting it to IAM.
1430
1442
  #
1431
- # The [regex pattern][1] used to validate this parameter is a string of
1443
+ # To learn more about JSON policy grammar, see [Grammar of the IAM JSON
1444
+ # policy language][1] in the *IAM User Guide*.
1445
+ #
1446
+ # The [regex pattern][2] used to validate this parameter is a string of
1432
1447
  # characters consisting of the following:
1433
1448
  #
1434
1449
  # * Any printable ASCII character ranging from the space character
@@ -1442,7 +1457,8 @@ module Aws::IAM
1442
1457
  #
1443
1458
  #
1444
1459
  #
1445
- # [1]: http://wikipedia.org/wiki/regex
1460
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_grammar.html
1461
+ # [2]: http://wikipedia.org/wiki/regex
1446
1462
  #
1447
1463
  # @option params [String] :description
1448
1464
  # A friendly description of the policy.
@@ -8838,6 +8854,8 @@ module Aws::IAM
8838
8854
  # * {Types::ListUserTagsResponse#is_truncated #is_truncated} => Boolean
8839
8855
  # * {Types::ListUserTagsResponse#marker #marker} => String
8840
8856
  #
8857
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8858
+ #
8841
8859
  #
8842
8860
  # @example Example: To list the tags attached to an IAM user
8843
8861
  #
@@ -13053,7 +13071,7 @@ module Aws::IAM
13053
13071
  params: params,
13054
13072
  config: config)
13055
13073
  context[:gem_name] = 'aws-sdk-iam'
13056
- context[:gem_version] = '1.50.0'
13074
+ context[:gem_version] = '1.55.0'
13057
13075
  Seahorse::Client::Request.new(handlers, context)
13058
13076
  end
13059
13077
 
@@ -2739,6 +2739,7 @@ module Aws::IAM
2739
2739
  o.http_request_uri = "/"
2740
2740
  o.input = Shapes::ShapeRef.new(shape: GetAccessKeyLastUsedRequest)
2741
2741
  o.output = Shapes::ShapeRef.new(shape: GetAccessKeyLastUsedResponse)
2742
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchEntityException)
2742
2743
  end)
2743
2744
 
2744
2745
  api.add_operation(:get_account_authorization_details, Seahorse::Model::Operation.new.tap do |o|
@@ -3456,6 +3457,13 @@ module Aws::IAM
3456
3457
  o.output = Shapes::ShapeRef.new(shape: ListUserTagsResponse)
3457
3458
  o.errors << Shapes::ShapeRef.new(shape: NoSuchEntityException)
3458
3459
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3460
+ o[:pager] = Aws::Pager.new(
3461
+ more_results: "is_truncated",
3462
+ limit_key: "max_items",
3463
+ tokens: {
3464
+ "marker" => "marker"
3465
+ }
3466
+ )
3459
3467
  end)
3460
3468
 
3461
3469
  api.add_operation(:list_users, Seahorse::Model::Operation.new.tap do |o|
@@ -338,7 +338,10 @@ module Aws::IAM
338
338
  # in JSON or YAML format. AWS CloudFormation always converts a YAML
339
339
  # policy to JSON format before submitting it to IAM.
340
340
  #
341
- # The [regex pattern][1] used to validate this parameter is a string of
341
+ # To learn more about JSON policy grammar, see [Grammar of the IAM JSON
342
+ # policy language][1] in the *IAM User Guide*.
343
+ #
344
+ # The [regex pattern][2] used to validate this parameter is a string of
342
345
  # characters consisting of the following:
343
346
  #
344
347
  # * Any printable ASCII character ranging from the space character
@@ -352,7 +355,8 @@ module Aws::IAM
352
355
  #
353
356
  #
354
357
  #
355
- # [1]: http://wikipedia.org/wiki/regex
358
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_grammar.html
359
+ # [2]: http://wikipedia.org/wiki/regex
356
360
  # @option options [String] :description
357
361
  # A friendly description of the policy.
358
362
  #
@@ -1129,7 +1129,10 @@ module Aws::IAM
1129
1129
  # policy in JSON or YAML format. AWS CloudFormation always converts a
1130
1130
  # YAML policy to JSON format before submitting it to IAM.
1131
1131
  #
1132
- # The [regex pattern][1] used to validate this parameter is a string
1132
+ # To learn more about JSON policy grammar, see [Grammar of the IAM
1133
+ # JSON policy language][1] in the *IAM User Guide*.
1134
+ #
1135
+ # The [regex pattern][2] used to validate this parameter is a string
1133
1136
  # of characters consisting of the following:
1134
1137
  #
1135
1138
  # * Any printable ASCII character ranging from the space character
@@ -1143,7 +1146,8 @@ module Aws::IAM
1143
1146
  #
1144
1147
  #
1145
1148
  #
1146
- # [1]: http://wikipedia.org/wiki/regex
1149
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_grammar.html
1150
+ # [2]: http://wikipedia.org/wiki/regex
1147
1151
  # @return [String]
1148
1152
  #
1149
1153
  # @!attribute [rw] description
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.50.0
4
+ version: 1.55.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: 2021-03-16 00:00:00.000000000 Z
11
+ date: 2021-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -89,8 +89,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
89
89
  licenses:
90
90
  - Apache-2.0
91
91
  metadata:
92
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-iam
93
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-iam/CHANGELOG.md
92
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iam
93
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iam/CHANGELOG.md
94
94
  post_install_message:
95
95
  rdoc_options: []
96
96
  require_paths:
@@ -106,8 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  - !ruby/object:Gem::Version
107
107
  version: '0'
108
108
  requirements: []
109
- rubyforge_project:
110
- rubygems_version: 2.7.6.2
109
+ rubygems_version: 3.1.6
111
110
  signing_key:
112
111
  specification_version: 4
113
112
  summary: AWS SDK for Ruby - IAM