aws-sdk-core 3.61.2 → 3.62.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: 5b9110dd02f9cc2fe8ea975428266271b549ad2f
4
- data.tar.gz: 936ac5535ef09d9446e4a65fc774e23442dd7797
3
+ metadata.gz: 2b811af0a0b6f98eff0ac41814b2bf3fa42a01f2
4
+ data.tar.gz: e0048beaf3b680698a72a26f25fa36d8e6ff67d8
5
5
  SHA512:
6
- metadata.gz: 0a152b83b7641207e93c4b7a44394544fb312d47487e18d99b80ee540061918c586acfd93a7a2c217b5660d7e872990a2b5836f70507601162436cdf0e8f629a
7
- data.tar.gz: 2130323f6e869090057341d5967f545718d3883dd876904f6f9b2a1639d98e0047936637952f49f467de89a8b145a162cfe067f42b9b208d457d7fa937897443
6
+ metadata.gz: f2a3dfce2817aff05eb3e3e4204cde255458a8ea15ea349b7329779e22341e12162f00b5f46dc3c9273a7a7ab755cfd82b367899de5d79a517b1d2d15672f5f1
7
+ data.tar.gz: 23e4d29427d6b99f40ed78f874761056ed8855ee79d629798d17e163b7bd0f602bab422103171c5774c55465f360f67e31510a5ed9fc4a05fbce2c18fc94f72f
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.61.2
1
+ 3.62.0
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.61.2'
43
+ GEM_VERSION = '3.62.0'
44
44
 
45
45
  end
@@ -1284,14 +1284,14 @@ module Aws::STS
1284
1284
  #
1285
1285
  # This operation does not indicate the state of the access key. The key
1286
1286
  # might be active, inactive, or deleted. Active keys might not have
1287
- # permissions to perform an operation. Providing a deleted keys might
1288
- # return an error that the key doesn't exist.
1287
+ # permissions to perform an operation. Providing a deleted access key
1288
+ # might return an error that the key doesn't exist.
1289
1289
  #
1290
1290
  #
1291
1291
  #
1292
1292
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html
1293
- # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_getting-report
1294
- # [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/cloudtrail-integration
1293
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_getting-report.html
1294
+ # [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/cloudtrail-integration.html
1295
1295
  #
1296
1296
  # @option params [required, String] :access_key_id
1297
1297
  # The identifier of an access key.
@@ -1323,8 +1323,22 @@ module Aws::STS
1323
1323
  req.send_request(options)
1324
1324
  end
1325
1325
 
1326
- # Returns details about the IAM identity whose credentials are used to
1327
- # call the API.
1326
+ # Returns details about the IAM user or role whose credentials are used
1327
+ # to call the operation.
1328
+ #
1329
+ # <note markdown="1"> No permissions are required to perform this operation. If an
1330
+ # administrator adds a policy to your IAM user or role that explicitly
1331
+ # denies access to the `sts:GetCallerIdentity` action, you can still
1332
+ # perform this operation. Permissions are not required because the same
1333
+ # information is returned when an IAM user or role is denied access. To
1334
+ # view an example response, see [I Am Not Authorized to Perform:
1335
+ # iam:DeleteVirtualMFADevice][1].
1336
+ #
1337
+ # </note>
1338
+ #
1339
+ #
1340
+ #
1341
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/troubleshoot_general.html#troubleshoot_general_access-denied-delete-mfa
1328
1342
  #
1329
1343
  # @return [Types::GetCallerIdentityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1330
1344
  #
@@ -1538,8 +1552,7 @@ module Aws::STS
1538
1552
  # both inline and managed session policies shouldn't exceed 2048
1539
1553
  # characters. You can provide up to 10 managed policy ARNs. For more
1540
1554
  # information about ARNs, see [Amazon Resource Names (ARNs) and AWS
1541
- # Service Namespaces](general/latest/gr/aws-arns-and-namespaces.html) in
1542
- # the AWS General Reference.
1555
+ # Service Namespaces][2] in the AWS General Reference.
1543
1556
  #
1544
1557
  # This parameter is optional. However, if you do not pass any session
1545
1558
  # policies, then the resulting federated user session has no
@@ -1568,6 +1581,7 @@ module Aws::STS
1568
1581
  #
1569
1582
  #
1570
1583
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
1584
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1571
1585
  #
1572
1586
  # @option params [Integer] :duration_seconds
1573
1587
  # The duration, in seconds, that the session should last. Acceptable
@@ -1794,7 +1808,7 @@ module Aws::STS
1794
1808
  params: params,
1795
1809
  config: config)
1796
1810
  context[:gem_name] = 'aws-sdk-core'
1797
- context[:gem_version] = '3.61.2'
1811
+ context[:gem_version] = '3.62.0'
1798
1812
  Seahorse::Client::Request.new(handlers, context)
1799
1813
  end
1800
1814
 
@@ -1004,9 +1004,7 @@ module Aws::STS
1004
1004
  # use for both inline and managed session policies shouldn't exceed
1005
1005
  # 2048 characters. You can provide up to 10 managed policy ARNs. For
1006
1006
  # more information about ARNs, see [Amazon Resource Names (ARNs) and
1007
- # AWS Service
1008
- # Namespaces](general/latest/gr/aws-arns-and-namespaces.html) in the
1009
- # AWS General Reference.
1007
+ # AWS Service Namespaces][2] in the AWS General Reference.
1010
1008
  #
1011
1009
  # This parameter is optional. However, if you do not pass any session
1012
1010
  # policies, then the resulting federated user session has no
@@ -1035,6 +1033,7 @@ module Aws::STS
1035
1033
  #
1036
1034
  #
1037
1035
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session
1036
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1038
1037
  # @return [Array<Types::PolicyDescriptorType>]
1039
1038
  #
1040
1039
  # @!attribute [rw] duration_seconds
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.61.2
4
+ version: 3.62.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: 2019-07-29 00:00:00.000000000 Z
11
+ date: 2019-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath