aws-sdk-iam 1.0.0 → 1.1.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/client.rb +15 -8
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9be89b272296c33ca1269a3af79394b16f413391
|
4
|
+
data.tar.gz: f339523ab93a11a4e7ad9ef216e30485de7fde38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a07d6d4a12634dfb14b4ce6a47a698ce0d9ac1e6009f07713a30145bc5f3ac95f9d6d44ef70d7116aba2e92e612bda2f23b7d43dc8d782430a7d8234ea6c035
|
7
|
+
data.tar.gz: f2059ff0bdf3d91a3ad958513833a9e136a6f58ed740d57467e619e6cc2b891431080375f990878d6da86c044d51db8d48b7dd7036999ec5c4ea000466f9f75f
|
data/lib/aws-sdk-iam.rb
CHANGED
data/lib/aws-sdk-iam/client.rb
CHANGED
@@ -166,7 +166,8 @@ module Aws::IAM
|
|
166
166
|
#
|
167
167
|
# @example Example: To add a client ID (audience) to an Open-ID Connect (OIDC) provider
|
168
168
|
#
|
169
|
-
# # The following add-client-id-to-open-id-connect-provider command adds the client ID my-application-ID to the OIDC
|
169
|
+
# # The following add-client-id-to-open-id-connect-provider command adds the client ID my-application-ID to the OIDC
|
170
|
+
# # provider named server.example.com:
|
170
171
|
#
|
171
172
|
# resp = client.add_client_id_to_open_id_connect_provider({
|
172
173
|
# client_id: "my-application-ID",
|
@@ -836,7 +837,8 @@ module Aws::IAM
|
|
836
837
|
#
|
837
838
|
# @example Example: To create an instance profile
|
838
839
|
#
|
839
|
-
# # The following command creates an instance profile named Webserver that is ready to have a role attached and then be
|
840
|
+
# # The following command creates an instance profile named Webserver that is ready to have a role attached and then be
|
841
|
+
# # associated with an EC2 instance.
|
840
842
|
#
|
841
843
|
# resp = client.create_instance_profile({
|
842
844
|
# instance_profile_name: "Webserver",
|
@@ -936,7 +938,8 @@ module Aws::IAM
|
|
936
938
|
#
|
937
939
|
# @example Example: To create an instance profile
|
938
940
|
#
|
939
|
-
# # The following command changes IAM user Bob's password and sets the flag that required Bob to change the password the
|
941
|
+
# # The following command changes IAM user Bob's password and sets the flag that required Bob to change the password the
|
942
|
+
# # next time he signs in.
|
940
943
|
#
|
941
944
|
# resp = client.create_login_profile({
|
942
945
|
# password: "h]6EszR}vJ*m",
|
@@ -1062,7 +1065,8 @@ module Aws::IAM
|
|
1062
1065
|
#
|
1063
1066
|
# @example Example: To create an instance profile
|
1064
1067
|
#
|
1065
|
-
# # The following example defines a new OIDC provider in IAM with a client ID of my-application-id and pointing at the
|
1068
|
+
# # The following example defines a new OIDC provider in IAM with a client ID of my-application-id and pointing at the
|
1069
|
+
# # server with a URL of https://server.example.com.
|
1066
1070
|
#
|
1067
1071
|
# resp = client.create_open_id_connect_provider({
|
1068
1072
|
# client_id_list: [
|
@@ -1366,7 +1370,8 @@ module Aws::IAM
|
|
1366
1370
|
#
|
1367
1371
|
# @example Example: To create an IAM role
|
1368
1372
|
#
|
1369
|
-
# # The following command creates a role named Test-Role and attaches a trust policy to it that is provided as a URL-encoded
|
1373
|
+
# # The following command creates a role named Test-Role and attaches a trust policy to it that is provided as a URL-encoded
|
1374
|
+
# # JSON string.
|
1370
1375
|
#
|
1371
1376
|
# resp = client.create_role({
|
1372
1377
|
# assume_role_policy_document: "<URL-encoded-JSON>",
|
@@ -7869,7 +7874,8 @@ module Aws::IAM
|
|
7869
7874
|
#
|
7870
7875
|
# @example Example: To activate or deactivate an access key for an IAM user
|
7871
7876
|
#
|
7872
|
-
# # The following command deactivates the specified access key (access key ID and secret access key) for the IAM user named
|
7877
|
+
# # The following command deactivates the specified access key (access key ID and secret access key) for the IAM user named
|
7878
|
+
# # Bob.
|
7873
7879
|
#
|
7874
7880
|
# resp = client.update_access_key({
|
7875
7881
|
# access_key_id: "AKIAIOSFODNN7EXAMPLE",
|
@@ -7976,7 +7982,8 @@ module Aws::IAM
|
|
7976
7982
|
#
|
7977
7983
|
# @example Example: To set or change the current account password policy
|
7978
7984
|
#
|
7979
|
-
# # The following command sets the password policy to require a minimum length of eight characters and to require one or
|
7985
|
+
# # The following command sets the password policy to require a minimum length of eight characters and to require one or
|
7986
|
+
# # more numbers in the password:
|
7980
7987
|
#
|
7981
7988
|
# resp = client.update_account_password_policy({
|
7982
7989
|
# minimum_password_length: 8,
|
@@ -9103,7 +9110,7 @@ module Aws::IAM
|
|
9103
9110
|
params: params,
|
9104
9111
|
config: config)
|
9105
9112
|
context[:gem_name] = 'aws-sdk-iam'
|
9106
|
-
context[:gem_version] = '1.
|
9113
|
+
context[:gem_version] = '1.1.0'
|
9107
9114
|
Seahorse::Client::Request.new(handlers, context)
|
9108
9115
|
end
|
9109
9116
|
|
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.1.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: 2017-
|
11
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -79,7 +79,9 @@ files:
|
|
79
79
|
homepage: http://github.com/aws/aws-sdk-ruby
|
80
80
|
licenses:
|
81
81
|
- Apache-2.0
|
82
|
-
metadata:
|
82
|
+
metadata:
|
83
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-iam
|
84
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-iam/CHANGELOG.md
|
83
85
|
post_install_message:
|
84
86
|
rdoc_options: []
|
85
87
|
require_paths:
|