aws-sdk-ssoadmin 1.74.0 → 1.75.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: fe663b903ef5f1ddd43d5c07a215a7043a1a5f8ab76e6d2b725d8a61e6ad2c4a
4
- data.tar.gz: 56658fb659cd17d76ba3163eb92382e08b075f3ddcefdbdca718f8d5e14ed807
3
+ metadata.gz: 93e7e60ac9f08494f2efa426c17bdeed7de348a4664dfbe803b950bcabec7a02
4
+ data.tar.gz: 5394ff686260289ebb30d71b8d1a4dea569f701dbb50a9307b533ed3454b7fba
5
5
  SHA512:
6
- metadata.gz: 1f557f790c49d9ec5f3f8e8b98c4903452afd3e6aee10311277c6f4dd0640aabe66b9b5cc8a4865283330caf8b65697f07c509a7e8699c67ff3b09eb6f08804a
7
- data.tar.gz: 9303d187bad6150bc6b1192272a2de86aeb325c2f3c931318c504fac44cba0c353bdcea2cbf4372433ee243004fde915eddd91bef4a74928f461f2f82b266b3c
6
+ metadata.gz: 5b2c43ff4a5a8aa9d38361cee0c1058cf20e8a1fc9418d3f8b93e42ee4c331450a0c17bfa4f5c3ce304f5d4ddeeee9521acfcb883dfe9cb06f028c8fd1697f33
7
+ data.tar.gz: cca5ab784a948cfd4ffbcf940f1bddc12b37ba1b9e166f5976ee0dde2357a574740e81301341251ab64399bd7426d41be8650d7be381eb73bdbb5d8ff75bbe8f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2026-06-30)
5
+ ------------------
6
+
7
+ * Feature - AWS IAM Identity Center now returns PrimaryRegion and Regions in the ListInstances response, providing information about replicated instances.
8
+
4
9
  1.74.0 (2026-05-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.75.0
@@ -3176,6 +3176,12 @@ module Aws::SSOAdmin
3176
3176
  # resp.instances[0].created_date #=> Time
3177
3177
  # resp.instances[0].status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "DELETE_IN_PROGRESS", "ACTIVE"
3178
3178
  # resp.instances[0].status_reason #=> String
3179
+ # resp.instances[0].primary_region #=> String
3180
+ # resp.instances[0].regions #=> Array
3181
+ # resp.instances[0].regions[0].region_name #=> String
3182
+ # resp.instances[0].regions[0].status #=> String, one of "ACTIVE", "ADDING", "REMOVING"
3183
+ # resp.instances[0].regions[0].added_date #=> Time
3184
+ # resp.instances[0].regions[0].is_primary_region #=> Boolean
3179
3185
  # resp.next_token #=> String
3180
3186
  #
3181
3187
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/ListInstances AWS API Documentation
@@ -4316,7 +4322,7 @@ module Aws::SSOAdmin
4316
4322
  tracer: tracer
4317
4323
  )
4318
4324
  context[:gem_name] = 'aws-sdk-ssoadmin'
4319
- context[:gem_version] = '1.74.0'
4325
+ context[:gem_version] = '1.75.0'
4320
4326
  Seahorse::Client::Request.new(handlers, context)
4321
4327
  end
4322
4328
 
@@ -825,6 +825,8 @@ module Aws::SSOAdmin
825
825
  InstanceMetadata.add_member(:created_date, Shapes::ShapeRef.new(shape: Date, location_name: "CreatedDate"))
826
826
  InstanceMetadata.add_member(:status, Shapes::ShapeRef.new(shape: InstanceStatus, location_name: "Status"))
827
827
  InstanceMetadata.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
828
+ InstanceMetadata.add_member(:primary_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "PrimaryRegion"))
829
+ InstanceMetadata.add_member(:regions, Shapes::ShapeRef.new(shape: RegionMetadataList, location_name: "Regions"))
828
830
  InstanceMetadata.struct_class = Types::InstanceMetadata
829
831
 
830
832
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: InternalFailureMessage, location_name: "Message"))
@@ -2390,6 +2390,16 @@ module Aws::SSOAdmin
2390
2390
  # insufficient permissions.
2391
2391
  # @return [String]
2392
2392
  #
2393
+ # @!attribute [rw] primary_region
2394
+ # The primary Region where the IAM Identity Center instance was
2395
+ # originally enabled. The primary Region cannot be removed.
2396
+ # @return [String]
2397
+ #
2398
+ # @!attribute [rw] regions
2399
+ # The list of Regions enabled in the IAM Identity Center instance,
2400
+ # including Regions with ACTIVE, ADDING, or REMOVING status.
2401
+ # @return [Array<Types::RegionMetadata>]
2402
+ #
2393
2403
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/InstanceMetadata AWS API Documentation
2394
2404
  #
2395
2405
  class InstanceMetadata < Struct.new(
@@ -2399,7 +2409,9 @@ module Aws::SSOAdmin
2399
2409
  :name,
2400
2410
  :created_date,
2401
2411
  :status,
2402
- :status_reason)
2412
+ :status_reason,
2413
+ :primary_region,
2414
+ :regions)
2403
2415
  SENSITIVE = []
2404
2416
  include Aws::Structure
2405
2417
  end
@@ -55,7 +55,7 @@ module Aws::SSOAdmin
55
55
  autoload :EndpointProvider, 'aws-sdk-ssoadmin/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ssoadmin/endpoints'
57
57
 
58
- GEM_VERSION = '1.74.0'
58
+ GEM_VERSION = '1.75.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -679,6 +679,8 @@ module Aws::SSOAdmin
679
679
  attr_accessor created_date: ::Time
680
680
  attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "ACTIVE")
681
681
  attr_accessor status_reason: ::String
682
+ attr_accessor primary_region: ::String
683
+ attr_accessor regions: ::Array[Types::RegionMetadata]
682
684
  SENSITIVE: []
683
685
  end
684
686
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssoadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.74.0
4
+ version: 1.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services