aws-sdk-core 3.4.0 → 3.5.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/VERSION +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +7 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4185dd31b3ed02d52b7e161be812cd717fc7fa0
|
4
|
+
data.tar.gz: b5c715f7f9f503a7302b7305faa1840a18c3a62e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4391bbd2057e07025070bc79cced64b4327393aa93e8af19abfd91ab7857defe3b481cac907a82e15ca93a9162188a78e58e625f755be45ff3139d276aca0568
|
7
|
+
data.tar.gz: 8e359aa8971ea3488db3a3d8c6da8e4e1f006e33a7fc3b2c0bb662ae56f00bd8f7dc819aada7aca6b8e1300c4bfa35b141cb7958d59d7c6f613bfc2dee497c49
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.5.0
|
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
@@ -375,8 +375,6 @@ module Aws::STS
|
|
375
375
|
#
|
376
376
|
# @example Example: To assume a role
|
377
377
|
#
|
378
|
-
# #
|
379
|
-
#
|
380
378
|
# resp = client.assume_role({
|
381
379
|
# duration_seconds: 3600,
|
382
380
|
# external_id: "123ABC",
|
@@ -835,8 +833,6 @@ module Aws::STS
|
|
835
833
|
#
|
836
834
|
# @example Example: To assume a role as an OpenID Connect-federated user
|
837
835
|
#
|
838
|
-
# #
|
839
|
-
#
|
840
836
|
# resp = client.assume_role_with_web_identity({
|
841
837
|
# duration_seconds: 3600,
|
842
838
|
# provider_id: "www.amazon.com",
|
@@ -947,8 +943,6 @@ module Aws::STS
|
|
947
943
|
#
|
948
944
|
# @example Example: To decode information about an authorization status of a request
|
949
945
|
#
|
950
|
-
# #
|
951
|
-
#
|
952
946
|
# resp = client.decode_authorization_message({
|
953
947
|
# encoded_message: "<encoded-message>",
|
954
948
|
# })
|
@@ -989,7 +983,8 @@ module Aws::STS
|
|
989
983
|
#
|
990
984
|
# @example Example: To get details about a calling IAM user
|
991
985
|
#
|
992
|
-
# # This example shows a request and response made with the credentials for a user named Alice in the AWS account
|
986
|
+
# # This example shows a request and response made with the credentials for a user named Alice in the AWS account
|
987
|
+
# # 123456789012.
|
993
988
|
#
|
994
989
|
# resp = client.get_caller_identity({
|
995
990
|
# })
|
@@ -1003,7 +998,8 @@ module Aws::STS
|
|
1003
998
|
#
|
1004
999
|
# @example Example: To get details about a calling user federated with AssumeRole
|
1005
1000
|
#
|
1006
|
-
# # This example shows a request and response made with temporary credentials created by AssumeRole. The name of the assumed
|
1001
|
+
# # This example shows a request and response made with temporary credentials created by AssumeRole. The name of the assumed
|
1002
|
+
# # role is my-role-name, and the RoleSessionName is set to my-role-session-name.
|
1007
1003
|
#
|
1008
1004
|
# resp = client.get_caller_identity({
|
1009
1005
|
# })
|
@@ -1017,7 +1013,8 @@ module Aws::STS
|
|
1017
1013
|
#
|
1018
1014
|
# @example Example: To get details about a calling user federated with GetFederationToken
|
1019
1015
|
#
|
1020
|
-
# # This example shows a request and response made with temporary credentials created by using GetFederationToken. The Name
|
1016
|
+
# # This example shows a request and response made with temporary credentials created by using GetFederationToken. The Name
|
1017
|
+
# # parameter is set to my-federated-user-name.
|
1021
1018
|
#
|
1022
1019
|
# resp = client.get_caller_identity({
|
1023
1020
|
# })
|
@@ -1209,8 +1206,6 @@ module Aws::STS
|
|
1209
1206
|
#
|
1210
1207
|
# @example Example: To get temporary credentials for a role by using GetFederationToken
|
1211
1208
|
#
|
1212
|
-
# #
|
1213
|
-
#
|
1214
1209
|
# resp = client.get_federation_token({
|
1215
1210
|
# duration_seconds: 3600,
|
1216
1211
|
# name: "Bob",
|
@@ -1359,8 +1354,6 @@ module Aws::STS
|
|
1359
1354
|
#
|
1360
1355
|
# @example Example: To get temporary credentials for an IAM user or an AWS account
|
1361
1356
|
#
|
1362
|
-
# #
|
1363
|
-
#
|
1364
1357
|
# resp = client.get_session_token({
|
1365
1358
|
# duration_seconds: 3600,
|
1366
1359
|
# serial_number: "YourMFASerialNumber",
|
@@ -1414,7 +1407,7 @@ module Aws::STS
|
|
1414
1407
|
params: params,
|
1415
1408
|
config: config)
|
1416
1409
|
context[:gem_name] = 'aws-sdk-core'
|
1417
|
-
context[:gem_version] = '3.
|
1410
|
+
context[:gem_version] = '3.5.0'
|
1418
1411
|
Seahorse::Client::Request.new(handlers, context)
|
1419
1412
|
end
|
1420
1413
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.5.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-09-
|
11
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|