aws-sdk-iam 1.147.0 → 1.148.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam/client.rb +44 -15
- data/lib/aws-sdk-iam/types.rb +10 -3
- data/lib/aws-sdk-iam.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2fd93dd59ae46e9199ed393fe62c4ac34fc50e0b7a749547f74fcbf7311da8f
|
|
4
|
+
data.tar.gz: 61de87b928207ac6adc1d31324885beaa7d998ddb2ca8aa855673d129c69a2a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 272309e85f8640056301f9d3b26b7998e358cf8286bdd1c8ac8bcf48abcee1537cec277e6453d349950f8efdd147b54dba2246cc3835de6429caaf3d48d551ad
|
|
7
|
+
data.tar.gz: 99d6d424a4b0d0e829c5d380d3cafa582ce7ced6909c833d4e14fe3d25dda2ec1a2d75a8854bfbf49b88165a48e0c6e4742e8830a0190a996ec8d391fa70adf9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.148.0
|
data/lib/aws-sdk-iam/client.rb
CHANGED
|
@@ -2479,21 +2479,30 @@ module Aws::IAM
|
|
|
2479
2479
|
# You can have a maximum of two sets of service-specific credentials for
|
|
2480
2480
|
# each supported service per user.
|
|
2481
2481
|
#
|
|
2482
|
-
# You can create service-specific credentials for Amazon Bedrock, Amazon
|
|
2483
|
-
# CloudWatch Logs, CodeCommit and Amazon Keyspaces (for Apache
|
|
2484
|
-
# Cassandra).
|
|
2485
|
-
#
|
|
2486
2482
|
# You can reset the password to a new service-generated value by calling
|
|
2487
2483
|
# [ResetServiceSpecificCredential][1].
|
|
2488
2484
|
#
|
|
2489
|
-
# For more information about service-specific credentials
|
|
2490
|
-
#
|
|
2491
|
-
#
|
|
2485
|
+
# For more information about using service-specific credentials to
|
|
2486
|
+
# authenticate to an Amazon Web Services service, refer to the following
|
|
2487
|
+
# docs:
|
|
2488
|
+
#
|
|
2489
|
+
# * For service-specific credentials with CodeCommit, refer to [IAM
|
|
2490
|
+
# credentials for CodeCommit: Git credentials, SSH keys, and Amazon
|
|
2491
|
+
# Web Services access keys][2] in the *IAM User Guide*.
|
|
2492
|
+
#
|
|
2493
|
+
# * For service-specific credentials with Amazon Keyspaces (for Apache
|
|
2494
|
+
# Cassandra), refer to [Use IAM with Amazon Keyspaces (for Apache
|
|
2495
|
+
# Cassandra)][3] in the *IAM User Guide*.
|
|
2496
|
+
#
|
|
2497
|
+
# * For services that support long-term API keys, refer to [API keys for
|
|
2498
|
+
# Amazon Web Services services][4] in the *IAM User Guide*.
|
|
2492
2499
|
#
|
|
2493
2500
|
#
|
|
2494
2501
|
#
|
|
2495
2502
|
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_ResetServiceSpecificCredential.html
|
|
2496
|
-
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
|
2503
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_ssh-keys.html
|
|
2504
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_keyspaces.html
|
|
2505
|
+
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_api_keys_for_aws_services.html
|
|
2497
2506
|
#
|
|
2498
2507
|
# @option params [required, String] :user_name
|
|
2499
2508
|
# The name of the IAM user that is to be associated with the
|
|
@@ -2517,9 +2526,16 @@ module Aws::IAM
|
|
|
2517
2526
|
#
|
|
2518
2527
|
# @option params [Integer] :credential_age_days
|
|
2519
2528
|
# The number of days until the service specific credential expires. This
|
|
2520
|
-
# field is only valid for
|
|
2521
|
-
# be a positive integer. When not specified, the credential will
|
|
2522
|
-
# expire.
|
|
2529
|
+
# field is only valid for services that support long-term API keys and
|
|
2530
|
+
# must be a positive integer. When not specified, the credential will
|
|
2531
|
+
# not expire.
|
|
2532
|
+
#
|
|
2533
|
+
# To see which services support long-term API keys, refer to [API keys
|
|
2534
|
+
# for Amazon Web Services services][1] in the *IAM User Guide*.
|
|
2535
|
+
#
|
|
2536
|
+
#
|
|
2537
|
+
#
|
|
2538
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_api_keys_for_aws_services.html
|
|
2523
2539
|
#
|
|
2524
2540
|
# @return [Types::CreateServiceSpecificCredentialResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2525
2541
|
#
|
|
@@ -9868,12 +9884,25 @@ module Aws::IAM
|
|
|
9868
9884
|
# empty list. The service-specific credentials returned by this
|
|
9869
9885
|
# operation are used only for authenticating the IAM user to a specific
|
|
9870
9886
|
# service. For more information about using service-specific credentials
|
|
9871
|
-
# to authenticate to an Amazon Web Services service,
|
|
9872
|
-
#
|
|
9887
|
+
# to authenticate to an Amazon Web Services service, refer to the
|
|
9888
|
+
# following docs:
|
|
9889
|
+
#
|
|
9890
|
+
# * For service-specific credentials with CodeCommit, refer to [IAM
|
|
9891
|
+
# credentials for CodeCommit: Git credentials, SSH keys, and Amazon
|
|
9892
|
+
# Web Services access keys][1] in the *IAM User Guide*.
|
|
9893
|
+
#
|
|
9894
|
+
# * For service-specific credentials with Amazon Keyspaces (for Apache
|
|
9895
|
+
# Cassandra), refer to [Use IAM with Amazon Keyspaces (for Apache
|
|
9896
|
+
# Cassandra)][2] in the *IAM User Guide*.
|
|
9897
|
+
#
|
|
9898
|
+
# * For services that support long-term API keys, refer to [API keys for
|
|
9899
|
+
# Amazon Web Services services][3] in the *IAM User Guide*.
|
|
9873
9900
|
#
|
|
9874
9901
|
#
|
|
9875
9902
|
#
|
|
9876
|
-
# [1]: https://docs.aws.amazon.com/
|
|
9903
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_ssh-keys.html
|
|
9904
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_keyspaces.html
|
|
9905
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_api_keys_for_aws_services.html
|
|
9877
9906
|
#
|
|
9878
9907
|
# @option params [String] :user_name
|
|
9879
9908
|
# The name of the user whose service-specific credentials you want
|
|
@@ -14697,7 +14726,7 @@ module Aws::IAM
|
|
|
14697
14726
|
tracer: tracer
|
|
14698
14727
|
)
|
|
14699
14728
|
context[:gem_name] = 'aws-sdk-iam'
|
|
14700
|
-
context[:gem_version] = '1.
|
|
14729
|
+
context[:gem_version] = '1.148.0'
|
|
14701
14730
|
Seahorse::Client::Request.new(handlers, context)
|
|
14702
14731
|
end
|
|
14703
14732
|
|
data/lib/aws-sdk-iam/types.rb
CHANGED
|
@@ -1764,9 +1764,16 @@ module Aws::IAM
|
|
|
1764
1764
|
#
|
|
1765
1765
|
# @!attribute [rw] credential_age_days
|
|
1766
1766
|
# The number of days until the service specific credential expires.
|
|
1767
|
-
# This field is only valid for
|
|
1768
|
-
# and must be a positive integer. When not specified, the
|
|
1769
|
-
# will not expire.
|
|
1767
|
+
# This field is only valid for services that support long-term API
|
|
1768
|
+
# keys and must be a positive integer. When not specified, the
|
|
1769
|
+
# credential will not expire.
|
|
1770
|
+
#
|
|
1771
|
+
# To see which services support long-term API keys, refer to [API keys
|
|
1772
|
+
# for Amazon Web Services services][1] in the *IAM User Guide*.
|
|
1773
|
+
#
|
|
1774
|
+
#
|
|
1775
|
+
#
|
|
1776
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_api_keys_for_aws_services.html
|
|
1770
1777
|
# @return [Integer]
|
|
1771
1778
|
#
|
|
1772
1779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateServiceSpecificCredentialRequest AWS API Documentation
|
data/lib/aws-sdk-iam.rb
CHANGED