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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b7f36ed1371f2a4470579ad48202d86e89c7c2a
4
- data.tar.gz: 7e49d7997c50bfe0468205a6b41dad5d51fc36af
3
+ metadata.gz: 9be89b272296c33ca1269a3af79394b16f413391
4
+ data.tar.gz: f339523ab93a11a4e7ad9ef216e30485de7fde38
5
5
  SHA512:
6
- metadata.gz: 09ccb76ed89675f82605ecf59acb7f815279c8f90d13fd6afeb66234607d8d0620d31854c440f90b723f0ef95cdeb233ae121b8e964f21a978dd674d9311c482
7
- data.tar.gz: b94700683fab7dd99de3821b940ad83817dda1f279d19b70c39cbc00f09f1b073174a09aacefeed987433f7f48579c1720c6ec274974ccf8df3e1f6401da1c12
6
+ metadata.gz: 7a07d6d4a12634dfb14b4ce6a47a698ce0d9ac1e6009f07713a30145bc5f3ac95f9d6d44ef70d7116aba2e92e612bda2f23b7d43dc8d782430a7d8234ea6c035
7
+ data.tar.gz: f2059ff0bdf3d91a3ad958513833a9e136a6f58ed740d57467e619e6cc2b891431080375f990878d6da86c044d51db8d48b7dd7036999ec5c4ea000466f9f75f
@@ -64,6 +64,6 @@ require_relative 'aws-sdk-iam/customizations'
64
64
  # @service
65
65
  module Aws::IAM
66
66
 
67
- GEM_VERSION = '1.0.0'
67
+ GEM_VERSION = '1.1.0'
68
68
 
69
69
  end
@@ -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 provider named server.example.com:
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 associated with an EC2 instance.
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 next time he signs in.
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 server with a URL of https://server.example.com.
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 JSON string.
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 Bob.
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 more numbers in the password:
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.0.0'
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.0.0
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-08-29 00:00:00.000000000 Z
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: