aws-sdk-organizations 1.125.0 → 1.127.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-organizations/client.rb +3 -2
- data/lib/aws-sdk-organizations/client_api.rb +1 -0
- data/lib/aws-sdk-organizations/types.rb +16 -1
- data/lib/aws-sdk-organizations.rb +1 -1
- data/sig/types.rbs +1 -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: addc3cc9dc45027270055f6a4d0bf00fd530edd4aa8c310bd8b2714c24d9535b
|
|
4
|
+
data.tar.gz: c898853e74d57d0c755ee0a295e7b439f2f93e70fdbbb15c38d1ab5a50a366f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06d63b5889957994934224c9f9f1adc50ae45017017a6bb2675bc0239c0e45d6c7388e92483323c38612070dfb8ce20aee436d90bd351d8f5a5b9535003d7e3e
|
|
7
|
+
data.tar.gz: fd4347518927273da885c8b0c48dc8fb28378d119f3d69364cb4f128c371e2ea38382c064bc5cc5f9be085ffa3ecff35c8718a12b0f1746c98a543990d07d990
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.127.0 (2025-10-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added Account State field to the ListDelegatedAdministrators API response.
|
|
8
|
+
|
|
9
|
+
1.126.0 (2025-10-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.125.0 (2025-10-17)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.127.0
|
|
@@ -3458,7 +3458,7 @@ module Aws::Organizations
|
|
|
3458
3458
|
# support tags.
|
|
3459
3459
|
#
|
|
3460
3460
|
# * A newly created account has a waiting period before it can be
|
|
3461
|
-
# removed from its organization. You must wait until at least
|
|
3461
|
+
# removed from its organization. You must wait until at least four
|
|
3462
3462
|
# days after the account was created. Invited accounts aren't subject
|
|
3463
3463
|
# to this waiting period.
|
|
3464
3464
|
#
|
|
@@ -4210,6 +4210,7 @@ module Aws::Organizations
|
|
|
4210
4210
|
# resp.delegated_administrators[0].email #=> String
|
|
4211
4211
|
# resp.delegated_administrators[0].name #=> String
|
|
4212
4212
|
# resp.delegated_administrators[0].status #=> String, one of "ACTIVE", "SUSPENDED", "PENDING_CLOSURE"
|
|
4213
|
+
# resp.delegated_administrators[0].state #=> String, one of "PENDING_ACTIVATION", "ACTIVE", "SUSPENDED", "PENDING_CLOSURE", "CLOSED"
|
|
4213
4214
|
# resp.delegated_administrators[0].joined_method #=> String, one of "INVITED", "CREATED"
|
|
4214
4215
|
# resp.delegated_administrators[0].joined_timestamp #=> Time
|
|
4215
4216
|
# resp.delegated_administrators[0].delegation_enabled_date #=> Time
|
|
@@ -6151,7 +6152,7 @@ module Aws::Organizations
|
|
|
6151
6152
|
tracer: tracer
|
|
6152
6153
|
)
|
|
6153
6154
|
context[:gem_name] = 'aws-sdk-organizations'
|
|
6154
|
-
context[:gem_version] = '1.
|
|
6155
|
+
context[:gem_version] = '1.127.0'
|
|
6155
6156
|
Seahorse::Client::Request.new(handlers, context)
|
|
6156
6157
|
end
|
|
6157
6158
|
|
|
@@ -416,6 +416,7 @@ module Aws::Organizations
|
|
|
416
416
|
DelegatedAdministrator.add_member(:email, Shapes::ShapeRef.new(shape: Email, location_name: "Email"))
|
|
417
417
|
DelegatedAdministrator.add_member(:name, Shapes::ShapeRef.new(shape: AccountName, location_name: "Name"))
|
|
418
418
|
DelegatedAdministrator.add_member(:status, Shapes::ShapeRef.new(shape: AccountStatus, location_name: "Status"))
|
|
419
|
+
DelegatedAdministrator.add_member(:state, Shapes::ShapeRef.new(shape: AccountState, location_name: "State"))
|
|
419
420
|
DelegatedAdministrator.add_member(:joined_method, Shapes::ShapeRef.new(shape: AccountJoinedMethod, location_name: "JoinedMethod"))
|
|
420
421
|
DelegatedAdministrator.add_member(:joined_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "JoinedTimestamp"))
|
|
421
422
|
DelegatedAdministrator.add_member(:delegation_enabled_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "DelegationEnabledDate"))
|
|
@@ -643,7 +643,7 @@ module Aws::Organizations
|
|
|
643
643
|
# for this account.
|
|
644
644
|
#
|
|
645
645
|
# * WAIT\_PERIOD\_ACTIVE: After you create an Amazon Web Services
|
|
646
|
-
# account, you must wait until at least
|
|
646
|
+
# account, you must wait until at least four days after the account
|
|
647
647
|
# was created. Invited accounts aren't subject to this waiting
|
|
648
648
|
# period.
|
|
649
649
|
#
|
|
@@ -1373,6 +1373,20 @@ module Aws::Organizations
|
|
|
1373
1373
|
# organization.
|
|
1374
1374
|
# @return [String]
|
|
1375
1375
|
#
|
|
1376
|
+
# @!attribute [rw] state
|
|
1377
|
+
# Each state represents a specific phase in the account lifecycle. Use
|
|
1378
|
+
# this information to manage account access, automate workflows, or
|
|
1379
|
+
# trigger actions based on account state changes.
|
|
1380
|
+
#
|
|
1381
|
+
# For more information about account states and their implications,
|
|
1382
|
+
# see [Monitor the state of your Amazon Web Services accounts ][1] in
|
|
1383
|
+
# the *Organizations User Guide*.
|
|
1384
|
+
#
|
|
1385
|
+
#
|
|
1386
|
+
#
|
|
1387
|
+
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_account_state.html
|
|
1388
|
+
# @return [String]
|
|
1389
|
+
#
|
|
1376
1390
|
# @!attribute [rw] joined_method
|
|
1377
1391
|
# The method by which the delegated administrator's account joined
|
|
1378
1392
|
# the organization.
|
|
@@ -1395,6 +1409,7 @@ module Aws::Organizations
|
|
|
1395
1409
|
:email,
|
|
1396
1410
|
:name,
|
|
1397
1411
|
:status,
|
|
1412
|
+
:state,
|
|
1398
1413
|
:joined_method,
|
|
1399
1414
|
:joined_timestamp,
|
|
1400
1415
|
:delegation_enabled_date)
|
data/sig/types.rbs
CHANGED
|
@@ -221,6 +221,7 @@ module Aws::Organizations
|
|
|
221
221
|
attr_accessor email: ::String
|
|
222
222
|
attr_accessor name: ::String
|
|
223
223
|
attr_accessor status: ("ACTIVE" | "SUSPENDED" | "PENDING_CLOSURE")
|
|
224
|
+
attr_accessor state: ("PENDING_ACTIVATION" | "ACTIVE" | "SUSPENDED" | "PENDING_CLOSURE" | "CLOSED")
|
|
224
225
|
attr_accessor joined_method: ("INVITED" | "CREATED")
|
|
225
226
|
attr_accessor joined_timestamp: ::Time
|
|
226
227
|
attr_accessor delegation_enabled_date: ::Time
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-organizations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.127.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.234.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.234.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|