aws-sdk-iam 1.49.0 → 1.50.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam.rb +1 -1
- data/lib/aws-sdk-iam/client.rb +23 -7
- 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: 44f9b7012858e63142582daac01f18eb31196fc6528659e162e11f81d149923f
|
4
|
+
data.tar.gz: 930e9396d7f19909c9192fe9eefd53126a0752e6ca00d76862302552fe4119de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99ee16ac2feaa07356f13961376b27b218cd01d7c482505cf6adb8e0fc8282c2c0534ce8f56022463d28bf2439faf05328f8793c540922e6c60dc4d2a66078b6
|
7
|
+
data.tar.gz: e6605b0e74d54e2eb55232a0754e78773d012ee64ac8fb29b9d749227403ce7b9ab9850faad34246d8710f44022ca2a84f318fa39f3d419841562328a469f939
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
data/lib/aws-sdk-iam.rb
CHANGED
data/lib/aws-sdk-iam/client.rb
CHANGED
@@ -509,12 +509,16 @@ module Aws::IAM
|
|
509
509
|
# You use this operation to attach a managed policy to a group. To embed
|
510
510
|
# an inline policy in a group, use PutGroupPolicy.
|
511
511
|
#
|
512
|
+
# As a best practice, you can validate your IAM policies. To learn more,
|
513
|
+
# see [Validating IAM policies][1] in the *IAM User Guide*.
|
514
|
+
#
|
512
515
|
# For more information about policies, see [Managed policies and inline
|
513
|
-
# policies][
|
516
|
+
# policies][2] in the *IAM User Guide*.
|
514
517
|
#
|
515
518
|
#
|
516
519
|
#
|
517
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
520
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_policy-validator.html
|
521
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
518
522
|
#
|
519
523
|
# @option params [required, String] :group_name
|
520
524
|
# The name (friendly name, not ARN) of the group to attach the policy
|
@@ -583,9 +587,13 @@ module Aws::IAM
|
|
583
587
|
# policies, see [Managed policies and inline policies][1] in the *IAM
|
584
588
|
# User Guide*.
|
585
589
|
#
|
590
|
+
# As a best practice, you can validate your IAM policies. To learn more,
|
591
|
+
# see [Validating IAM policies][2] in the *IAM User Guide*.
|
592
|
+
#
|
586
593
|
#
|
587
594
|
#
|
588
595
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
596
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_policy-validator.html
|
589
597
|
#
|
590
598
|
# @option params [required, String] :role_name
|
591
599
|
# The name (friendly name, not ARN) of the role to attach the policy to.
|
@@ -642,12 +650,16 @@ module Aws::IAM
|
|
642
650
|
# You use this operation to attach a *managed* policy to a user. To
|
643
651
|
# embed an inline policy in a user, use PutUserPolicy.
|
644
652
|
#
|
653
|
+
# As a best practice, you can validate your IAM policies. To learn more,
|
654
|
+
# see [Validating IAM policies][1] in the *IAM User Guide*.
|
655
|
+
#
|
645
656
|
# For more information about policies, see [Managed policies and inline
|
646
|
-
# policies][
|
657
|
+
# policies][2] in the *IAM User Guide*.
|
647
658
|
#
|
648
659
|
#
|
649
660
|
#
|
650
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
661
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_policy-validator.html
|
662
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
651
663
|
#
|
652
664
|
# @option params [required, String] :user_name
|
653
665
|
# The name (friendly name, not ARN) of the IAM user to attach the policy
|
@@ -1367,13 +1379,17 @@ module Aws::IAM
|
|
1367
1379
|
# information about policy versions, see [Versioning for managed
|
1368
1380
|
# policies][1] in the *IAM User Guide*.
|
1369
1381
|
#
|
1382
|
+
# As a best practice, you can validate your IAM policies. To learn more,
|
1383
|
+
# see [Validating IAM policies][2] in the *IAM User Guide*.
|
1384
|
+
#
|
1370
1385
|
# For more information about managed policies in general, see [Managed
|
1371
|
-
# policies and inline policies][
|
1386
|
+
# policies and inline policies][3] in the *IAM User Guide*.
|
1372
1387
|
#
|
1373
1388
|
#
|
1374
1389
|
#
|
1375
1390
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html
|
1376
|
-
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
1391
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_policy-validator.html
|
1392
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html
|
1377
1393
|
#
|
1378
1394
|
# @option params [required, String] :policy_name
|
1379
1395
|
# The friendly name of the policy.
|
@@ -13037,7 +13053,7 @@ module Aws::IAM
|
|
13037
13053
|
params: params,
|
13038
13054
|
config: config)
|
13039
13055
|
context[:gem_name] = 'aws-sdk-iam'
|
13040
|
-
context[:gem_version] = '1.
|
13056
|
+
context[:gem_version] = '1.50.0'
|
13041
13057
|
Seahorse::Client::Request.new(handlers, context)
|
13042
13058
|
end
|
13043
13059
|
|
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.50.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-
|
11
|
+
date: 2021-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|