aws-sdk-ssoadmin 1.72.0 → 1.74.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 +6 -8
- data/lib/aws-sdk-ssoadmin.rb +1 -1
- data/sig/client.rbs +8 -26
- data/sig/params.rbs +24 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe663b903ef5f1ddd43d5c07a215a7043a1a5f8ab76e6d2b725d8a61e6ad2c4a
|
|
4
|
+
data.tar.gz: 56658fb659cd17d76ba3163eb92382e08b075f3ddcefdbdca718f8d5e14ed807
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f557f790c49d9ec5f3f8e8b98c4903452afd3e6aee10311277c6f4dd0640aabe66b9b5cc8a4865283330caf8b65697f07c509a7e8699c67ff3b09eb6f08804a
|
|
7
|
+
data.tar.gz: 9303d187bad6150bc6b1192272a2de86aeb325c2f3c931318c504fac44cba0c353bdcea2cbf4372433ee243004fde915eddd91bef4a74928f461f2f82b266b3c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.74.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
8
|
+
|
|
9
|
+
1.73.0 (2026-05-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.72.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.74.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
|
|
@@ -4318,7 +4316,7 @@ module Aws::SSOAdmin
|
|
|
4318
4316
|
tracer: tracer
|
|
4319
4317
|
)
|
|
4320
4318
|
context[:gem_name] = 'aws-sdk-ssoadmin'
|
|
4321
|
-
context[:gem_version] = '1.
|
|
4319
|
+
context[:gem_version] = '1.74.0'
|
|
4322
4320
|
Seahorse::Client::Request.new(handlers, context)
|
|
4323
4321
|
end
|
|
4324
4322
|
|
data/lib/aws-sdk-ssoadmin.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -153,7 +153,7 @@ module Aws
|
|
|
153
153
|
{
|
|
154
154
|
key: ::String,
|
|
155
155
|
value: ::String
|
|
156
|
-
}
|
|
156
|
+
}
|
|
157
157
|
],
|
|
158
158
|
?status: ("ENABLED" | "DISABLED"),
|
|
159
159
|
?client_token: ::String
|
|
@@ -183,7 +183,7 @@ module Aws
|
|
|
183
183
|
{
|
|
184
184
|
key: ::String,
|
|
185
185
|
value: ::String
|
|
186
|
-
}
|
|
186
|
+
}
|
|
187
187
|
]
|
|
188
188
|
) -> _CreateInstanceResponseSuccess
|
|
189
189
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceResponseSuccess
|
|
@@ -194,16 +194,7 @@ module Aws
|
|
|
194
194
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSOAdmin/Client.html#create_instance_access_control_attribute_configuration-instance_method
|
|
195
195
|
def create_instance_access_control_attribute_configuration: (
|
|
196
196
|
instance_arn: ::String,
|
|
197
|
-
instance_access_control_attribute_configuration:
|
|
198
|
-
access_control_attributes: Array[
|
|
199
|
-
{
|
|
200
|
-
key: ::String,
|
|
201
|
-
value: {
|
|
202
|
-
source: Array[::String]
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
]
|
|
206
|
-
}
|
|
197
|
+
instance_access_control_attribute_configuration: Params::instance_access_control_attribute_configuration
|
|
207
198
|
) -> _CreateInstanceAccessControlAttributeConfigurationResponseSuccess
|
|
208
199
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInstanceAccessControlAttributeConfigurationResponseSuccess
|
|
209
200
|
|
|
@@ -222,7 +213,7 @@ module Aws
|
|
|
222
213
|
{
|
|
223
214
|
key: ::String,
|
|
224
215
|
value: ::String
|
|
225
|
-
}
|
|
216
|
+
}
|
|
226
217
|
]
|
|
227
218
|
) -> _CreatePermissionSetResponseSuccess
|
|
228
219
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePermissionSetResponseSuccess
|
|
@@ -249,7 +240,7 @@ module Aws
|
|
|
249
240
|
{
|
|
250
241
|
key: ::String,
|
|
251
242
|
value: ::String
|
|
252
|
-
}
|
|
243
|
+
}
|
|
253
244
|
]
|
|
254
245
|
) -> _CreateTrustedTokenIssuerResponseSuccess
|
|
255
246
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrustedTokenIssuerResponseSuccess
|
|
@@ -972,7 +963,7 @@ module Aws
|
|
|
972
963
|
{
|
|
973
964
|
trusted_token_issuer_arn: ::String?,
|
|
974
965
|
authorized_audiences: Array[::String]?
|
|
975
|
-
}
|
|
966
|
+
}
|
|
976
967
|
]?
|
|
977
968
|
}?,
|
|
978
969
|
refresh_token: {
|
|
@@ -1043,7 +1034,7 @@ module Aws
|
|
|
1043
1034
|
{
|
|
1044
1035
|
key: ::String,
|
|
1045
1036
|
value: ::String
|
|
1046
|
-
}
|
|
1037
|
+
}
|
|
1047
1038
|
]
|
|
1048
1039
|
) -> _TagResourceResponseSuccess
|
|
1049
1040
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
|
@@ -1097,16 +1088,7 @@ module Aws
|
|
|
1097
1088
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSOAdmin/Client.html#update_instance_access_control_attribute_configuration-instance_method
|
|
1098
1089
|
def update_instance_access_control_attribute_configuration: (
|
|
1099
1090
|
instance_arn: ::String,
|
|
1100
|
-
instance_access_control_attribute_configuration:
|
|
1101
|
-
access_control_attributes: Array[
|
|
1102
|
-
{
|
|
1103
|
-
key: ::String,
|
|
1104
|
-
value: {
|
|
1105
|
-
source: Array[::String]
|
|
1106
|
-
}
|
|
1107
|
-
},
|
|
1108
|
-
]
|
|
1109
|
-
}
|
|
1091
|
+
instance_access_control_attribute_configuration: Params::instance_access_control_attribute_configuration
|
|
1110
1092
|
) -> _UpdateInstanceAccessControlAttributeConfigurationResponseSuccess
|
|
1111
1093
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInstanceAccessControlAttributeConfigurationResponseSuccess
|
|
1112
1094
|
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module SSOAdmin
|
|
10
|
+
module Params
|
|
11
|
+
type instance_access_control_attribute_configuration = {
|
|
12
|
+
access_control_attributes: Array[
|
|
13
|
+
{
|
|
14
|
+
key: ::String,
|
|
15
|
+
value: {
|
|
16
|
+
source: Array[::String]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
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.74.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
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- lib/aws-sdk-ssoadmin/waiters.rb
|
|
69
69
|
- sig/client.rbs
|
|
70
70
|
- sig/errors.rbs
|
|
71
|
+
- sig/params.rbs
|
|
71
72
|
- sig/resource.rbs
|
|
72
73
|
- sig/types.rbs
|
|
73
74
|
- sig/waiters.rbs
|