aws-sdk-iam 1.130.0 → 1.132.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f7bd63424f848b7f1902c99fe44917a26724606a75b59a3cdfde25fe099b2cb
4
- data.tar.gz: d23243576bc6c1081b04d42db67b8119ddbb3d688394747b3ac1399d0c327a4b
3
+ metadata.gz: f029e06c75510525ea6dadbc961c5f139a3795f1cf1c0fcf0cb97397cd44dbc3
4
+ data.tar.gz: 70347a67a7b93c27a648975de70cba8a62ee34935016cccc589f967fe5ed30cf
5
5
  SHA512:
6
- metadata.gz: efd23b5eeca86592bc0318458060fa8dd93c85d8f20a9798479a04c258d789677b8e6550717440fc69a3191b757dcc1630a56eb8465d54b6b1d5b431c26fb425
7
- data.tar.gz: b8d4d7415582962739e935e61d968cd3c000643f6210d023676b4ad0fb04d686a81eabe9b906d1f25c152b120c19e0e3f4f1633f4d5bc17183bffcb7fd99c028
6
+ metadata.gz: 5bdd3b81ee3858209ea9af85d938dd168add21ec71ac440633072c1466ce31c96a488187ee4ebba3d16fbe3e366f924eb6d5822a3a2464fb01b8637f3c2b35ac
7
+ data.tar.gz: 75f1af357602e67f9a32f3fcec9017d2ff08d7070ce013e0917d2c37f35d320efa5b6ccfe20caa8044c9c29d5a5d16c087b0cd61fad57c985f0908cea623a2c0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.132.0 (2025-10-27)
5
+ ------------------
6
+
7
+ * Feature - Fixed missing SummaryMap keys in GetAccountSummary response that were being filtered out during deserialization in AWS Java SDK v2
8
+
9
+ 1.131.0 (2025-10-22)
10
+ ------------------
11
+
12
+ * Feature - Updated OIDC and SAML apis to reject multiple simultaneous requests to change a unique object.
13
+
4
14
  1.130.0 (2025-10-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.130.0
1
+ 1.132.0
@@ -14069,7 +14069,7 @@ module Aws::IAM
14069
14069
  tracer: tracer
14070
14070
  )
14071
14071
  context[:gem_name] = 'aws-sdk-iam'
14072
- context[:gem_version] = '1.130.0'
14072
+ context[:gem_version] = '1.132.0'
14073
14073
  Seahorse::Client::Request.new(handlers, context)
14074
14074
  end
14075
14075
 
@@ -2235,6 +2235,7 @@ module Aws::IAM
2235
2235
  o.http_request_uri = "/"
2236
2236
  o.input = Shapes::ShapeRef.new(shape: AddClientIDToOpenIDConnectProviderRequest)
2237
2237
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2238
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
2238
2239
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
2239
2240
  o.errors << Shapes::ShapeRef.new(shape: NoSuchEntityException)
2240
2241
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
@@ -3811,6 +3812,7 @@ module Aws::IAM
3811
3812
  o.http_request_uri = "/"
3812
3813
  o.input = Shapes::ShapeRef.new(shape: RemoveClientIDFromOpenIDConnectProviderRequest)
3813
3814
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3815
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
3814
3816
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
3815
3817
  o.errors << Shapes::ShapeRef.new(shape: NoSuchEntityException)
3816
3818
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
@@ -4183,6 +4185,7 @@ module Aws::IAM
4183
4185
  o.http_request_uri = "/"
4184
4186
  o.input = Shapes::ShapeRef.new(shape: UpdateOpenIDConnectProviderThumbprintRequest)
4185
4187
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
4188
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4186
4189
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
4187
4190
  o.errors << Shapes::ShapeRef.new(shape: NoSuchEntityException)
4188
4191
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
@@ -4220,6 +4223,7 @@ module Aws::IAM
4220
4223
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
4221
4224
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
4222
4225
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
4226
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4223
4227
  end)
4224
4228
 
4225
4229
  api.add_operation(:update_ssh_public_key, Seahorse::Model::Operation.new.tap do |o|
@@ -13,22 +13,22 @@ module Aws::IAM
13
13
  # @!attribute use_dual_stack
14
14
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
15
15
  #
16
- # @return [Boolean]
16
+ # @return [boolean]
17
17
  #
18
18
  # @!attribute use_fips
19
19
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute endpoint
24
24
  # Override the endpoint used to send this request
25
25
  #
26
- # @return [String]
26
+ # @return [string]
27
27
  #
28
28
  # @!attribute region
29
29
  # The AWS region used to dispatch the request.
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :use_dual_stack,
data/lib/aws-sdk-iam.rb CHANGED
@@ -76,7 +76,7 @@ module Aws::IAM
76
76
  autoload :UserPolicy, 'aws-sdk-iam/user_policy'
77
77
  autoload :VirtualMfaDevice, 'aws-sdk-iam/virtual_mfa_device'
78
78
 
79
- GEM_VERSION = '1.130.0'
79
+ GEM_VERSION = '1.132.0'
80
80
 
81
81
  end
82
82
 
@@ -13,7 +13,7 @@ module Aws
13
13
  def initialize: (Hash[Symbol, untyped] args) -> void
14
14
 
15
15
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/AccountSummary.html#summary_map-instance_method
16
- def summary_map: () -> ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountPasswordPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion"), ::Integer]
16
+ def summary_map: () -> ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountPasswordPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion" | "AssumeRolePolicySizeQuota" | "InstanceProfiles" | "InstanceProfilesQuota" | "Providers" | "RolePolicySizeQuota" | "Roles" | "RolesQuota"), ::Integer]
17
17
 
18
18
  def client: () -> Client
19
19
 
data/sig/client.rbs CHANGED
@@ -627,7 +627,7 @@ module Aws
627
627
 
628
628
  interface _GetAccountSummaryResponseSuccess
629
629
  include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountSummaryResponse]
630
- def summary_map: () -> ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountPasswordPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion"), ::Integer]
630
+ def summary_map: () -> ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountPasswordPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion" | "AssumeRolePolicySizeQuota" | "InstanceProfiles" | "InstanceProfilesQuota" | "Providers" | "RolePolicySizeQuota" | "Roles" | "RolesQuota"), ::Integer]
631
631
  end
632
632
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IAM/Client.html#get_account_summary-instance_method
633
633
  def get_account_summary: () -> _GetAccountSummaryResponseSuccess
data/sig/types.rbs CHANGED
@@ -617,7 +617,7 @@ module Aws::IAM
617
617
  end
618
618
 
619
619
  class GetAccountSummaryResponse
620
- attr_accessor summary_map: ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountPasswordPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion"), ::Integer]
620
+ attr_accessor summary_map: ::Hash[("Users" | "UsersQuota" | "Groups" | "GroupsQuota" | "ServerCertificates" | "ServerCertificatesQuota" | "UserPolicySizeQuota" | "GroupPolicySizeQuota" | "GroupsPerUserQuota" | "SigningCertificatesPerUserQuota" | "AccessKeysPerUserQuota" | "MFADevices" | "MFADevicesInUse" | "AccountMFAEnabled" | "AccountAccessKeysPresent" | "AccountPasswordPresent" | "AccountSigningCertificatesPresent" | "AttachedPoliciesPerGroupQuota" | "AttachedPoliciesPerRoleQuota" | "AttachedPoliciesPerUserQuota" | "Policies" | "PoliciesQuota" | "PolicySizeQuota" | "PolicyVersionsInUse" | "PolicyVersionsInUseQuota" | "VersionsPerPolicyQuota" | "GlobalEndpointTokenVersion" | "AssumeRolePolicySizeQuota" | "InstanceProfiles" | "InstanceProfilesQuota" | "Providers" | "RolePolicySizeQuota" | "Roles" | "RolesQuota"), ::Integer]
621
621
  SENSITIVE: []
622
622
  end
623
623
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iam
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.130.0
4
+ version: 1.132.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services