aws-sdk-ssoadmin 1.73.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssoadmin/client.rb +12 -8
- data/lib/aws-sdk-ssoadmin/client_api.rb +2 -0
- data/lib/aws-sdk-ssoadmin/types.rb +13 -1
- data/lib/aws-sdk-ssoadmin.rb +1 -1
- data/sig/types.rbs +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93e7e60ac9f08494f2efa426c17bdeed7de348a4664dfbe803b950bcabec7a02
|
|
4
|
+
data.tar.gz: 5394ff686260289ebb30d71b8d1a4dea569f701dbb50a9307b533ed3454b7fba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b2c43ff4a5a8aa9d38361cee0c1058cf20e8a1fc9418d3f8b93e42ee4c331450a0c17bfa4f5c3ce304f5d4ddeeee9521acfcb883dfe9cb06f028c8fd1697f33
|
|
7
|
+
data.tar.gz: cca5ab784a948cfd4ffbcf940f1bddc12b37ba1b9e166f5976ee0dde2357a574740e81301341251ab64399bd7426d41be8650d7be381eb73bdbb5d8ff75bbe8f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.74.0 (2026-05-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
13
|
+
|
|
4
14
|
1.73.0 (2026-05-19)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -199,7 +199,7 @@ module Aws::SSOAdmin
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::SSOAdmin
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -3178,6 +3176,12 @@ module Aws::SSOAdmin
|
|
|
3178
3176
|
# resp.instances[0].created_date #=> Time
|
|
3179
3177
|
# resp.instances[0].status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "DELETE_IN_PROGRESS", "ACTIVE"
|
|
3180
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
|
|
3181
3185
|
# resp.next_token #=> String
|
|
3182
3186
|
#
|
|
3183
3187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/ListInstances AWS API Documentation
|
|
@@ -4318,7 +4322,7 @@ module Aws::SSOAdmin
|
|
|
4318
4322
|
tracer: tracer
|
|
4319
4323
|
)
|
|
4320
4324
|
context[:gem_name] = 'aws-sdk-ssoadmin'
|
|
4321
|
-
context[:gem_version] = '1.
|
|
4325
|
+
context[:gem_version] = '1.75.0'
|
|
4322
4326
|
Seahorse::Client::Request.new(handlers, context)
|
|
4323
4327
|
end
|
|
4324
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
|
data/lib/aws-sdk-ssoadmin.rb
CHANGED
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.
|
|
4
|
+
version: 1.75.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|