aws-sdk-organizations 1.140.0 → 1.142.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 +57 -8
- data/lib/aws-sdk-organizations/types.rb +5 -2
- data/lib/aws-sdk-organizations.rb +1 -1
- 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: 3784eee0b50553e38c399f7d1cca6ff6c921ff2af32c9ed57bafd01a6593187e
|
|
4
|
+
data.tar.gz: df5594f3f10a8b3d40455d9a85c47e960d2ee85d3ee776ca4ef8fae97c470816
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38029f3f352629455494185c0c7b421e76c2b34360db66d0e64f0f6bf266ea390ed06867b6aca6cb6dfc3d98314bc26715f8d9d641dc591806c93fd794aea65d
|
|
7
|
+
data.tar.gz: 17ba966d1198ecd8bfd98a21293deb7246d01d2edd446a9de93b226de214fe3bc1153cecb28a17c30e7ee6244a708496c4d2b0a4c6288fe773db7b4d3a51c24a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.142.0 (2026-05-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Organizations now emits CloudTrail events (AccountJoinedOrganization, AccountDepartedOrganization) to the management account for membership changes, including join and departure method and timestamp.
|
|
8
|
+
|
|
9
|
+
1.141.0 (2026-05-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.140.0 (2026-05-19)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.142.0
|
|
@@ -199,7 +199,7 @@ module Aws::Organizations
|
|
|
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::Organizations
|
|
|
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
|
|
@@ -506,6 +504,17 @@ module Aws::Organizations
|
|
|
506
504
|
# For more information, see [Responding to invitations][3] and [Enabling
|
|
507
505
|
# all features][1] in the *Organizations User Guide*.
|
|
508
506
|
#
|
|
507
|
+
# When a handshake is accepted, Organizations logs membership events in
|
|
508
|
+
# CloudTrail, available only in the management account's event history.
|
|
509
|
+
# If the account was standalone and joined a new organization, an
|
|
510
|
+
# `AccountJoinedOrganization` event is logged with
|
|
511
|
+
# `joinedMethod:Invited` and `joinedTime` fields. If the account
|
|
512
|
+
# departed one organization and joined another, both an
|
|
513
|
+
# `AccountDepartedOrganization` event with `departedMethod:Left` and
|
|
514
|
+
# `departedTime` and an `AccountJoinedOrganization` event with
|
|
515
|
+
# `joinedMethod:Invited` and `joinedTime` are logged in their respective
|
|
516
|
+
# management accounts.
|
|
517
|
+
#
|
|
509
518
|
#
|
|
510
519
|
#
|
|
511
520
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/manage-begin-all-features-standard-migration.html#manage-approve-all-features-invite
|
|
@@ -898,6 +907,12 @@ module Aws::Organizations
|
|
|
898
907
|
#
|
|
899
908
|
# </note>
|
|
900
909
|
#
|
|
910
|
+
# After the permanent termination of the account after the 90-day
|
|
911
|
+
# waiting period, Organizations logs a membership event in CloudTrail.
|
|
912
|
+
# The event is an `AccountDepartedOrganization` event with
|
|
913
|
+
# `departedMethod:Cleaned` and `departedTime`. This event is available
|
|
914
|
+
# only in the management account's event history.
|
|
915
|
+
#
|
|
901
916
|
#
|
|
902
917
|
#
|
|
903
918
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html
|
|
@@ -945,6 +960,12 @@ module Aws::Organizations
|
|
|
945
960
|
# information on using CloudTrail with Organizations, see [Logging and
|
|
946
961
|
# monitoring in Organizations][1] in the *Organizations User Guide*.
|
|
947
962
|
#
|
|
963
|
+
# Additionally, the `AccountJoinedOrganization` event is logged in
|
|
964
|
+
# CloudTrail and is available only in the management account's event
|
|
965
|
+
# history. This event includes `joinedMethod:Created` and `joinedTime`
|
|
966
|
+
# fields to provide context on how and when the account joined the
|
|
967
|
+
# organization.
|
|
968
|
+
#
|
|
948
969
|
# The user who calls the API to create an account must have the
|
|
949
970
|
# `organizations:CreateAccount` permission. If you enabled all features
|
|
950
971
|
# in the organization, Organizations creates the required service-linked
|
|
@@ -1232,6 +1253,12 @@ module Aws::Organizations
|
|
|
1232
1253
|
# information on using CloudTrail with Organizations, see [Logging and
|
|
1233
1254
|
# monitoring in Organizations][5] in the *Organizations User Guide*.
|
|
1234
1255
|
#
|
|
1256
|
+
# Additionally, the `AccountJoinedOrganization` event is logged in
|
|
1257
|
+
# CloudTrail and is available only in the management account's event
|
|
1258
|
+
# history only for the linked commercial account. This event includes
|
|
1259
|
+
# `joinedMethod:Created` and `joinedTime` fields to provide context on
|
|
1260
|
+
# how and when the account joined the organization.
|
|
1261
|
+
#
|
|
1235
1262
|
#
|
|
1236
1263
|
#
|
|
1237
1264
|
# When you call the `CreateGovCloudAccount` action, you create two
|
|
@@ -1474,6 +1501,11 @@ module Aws::Organizations
|
|
|
1474
1501
|
# `CONSOLIDATED_BILLING`, no policy types are enabled by default and you
|
|
1475
1502
|
# can't use organization policies.
|
|
1476
1503
|
#
|
|
1504
|
+
# The `AccountJoinedOrganization` event is logged in CloudTrail and is
|
|
1505
|
+
# available only in the management account's event history. This event
|
|
1506
|
+
# includes `joinedMethod:Invited` and `joinedTime` fields to provide
|
|
1507
|
+
# context on how and when the account joined the organization.
|
|
1508
|
+
#
|
|
1477
1509
|
#
|
|
1478
1510
|
#
|
|
1479
1511
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#account
|
|
@@ -1979,6 +2011,11 @@ module Aws::Organizations
|
|
|
1979
2011
|
# credentials from the management account. The organization must be
|
|
1980
2012
|
# empty of member accounts.
|
|
1981
2013
|
#
|
|
2014
|
+
# When an organization is deleted, Organizations logs a membership event
|
|
2015
|
+
# in CloudTrail. The event is an `AccountDepartedOrganization` event
|
|
2016
|
+
# with `departedMethod:Left` and `departedTime`. This event is available
|
|
2017
|
+
# only in the management account's event history.
|
|
2018
|
+
#
|
|
1982
2019
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1983
2020
|
#
|
|
1984
2021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DeleteOrganization AWS API Documentation
|
|
@@ -3724,6 +3761,12 @@ module Aws::Organizations
|
|
|
3724
3761
|
#
|
|
3725
3762
|
# You can only call from operation from a member account.
|
|
3726
3763
|
#
|
|
3764
|
+
# When an account leaves an organization, Organizations logs a
|
|
3765
|
+
# membership event in CloudTrail. The event is an
|
|
3766
|
+
# `AccountDepartedOrganization` event with `departedMethod:Left` and
|
|
3767
|
+
# `departedTime`. This event is available only in the management
|
|
3768
|
+
# account's event history.
|
|
3769
|
+
#
|
|
3727
3770
|
# * The management account in an organization with all features enabled
|
|
3728
3771
|
# can set service control policies (SCPs) that can restrict what
|
|
3729
3772
|
# administrators of member accounts can do. This includes preventing
|
|
@@ -6192,6 +6235,12 @@ module Aws::Organizations
|
|
|
6192
6235
|
# You can only call this operation from the management account. Member
|
|
6193
6236
|
# accounts can remove themselves with LeaveOrganization instead.
|
|
6194
6237
|
#
|
|
6238
|
+
# When an account is removed from an organization, Organizations logs a
|
|
6239
|
+
# membership event in CloudTrail. The event is an
|
|
6240
|
+
# `AccountDepartedOrganization` event with `departedMethod:Removed` and
|
|
6241
|
+
# `departedTime`. This event is available only in the management
|
|
6242
|
+
# account's event history.
|
|
6243
|
+
#
|
|
6195
6244
|
# * You can remove an account from your organization only if the account
|
|
6196
6245
|
# is configured with the information required to operate as a
|
|
6197
6246
|
# standalone account. When you create an account in an organization
|
|
@@ -6744,7 +6793,7 @@ module Aws::Organizations
|
|
|
6744
6793
|
tracer: tracer
|
|
6745
6794
|
)
|
|
6746
6795
|
context[:gem_name] = 'aws-sdk-organizations'
|
|
6747
|
-
context[:gem_version] = '1.
|
|
6796
|
+
context[:gem_version] = '1.142.0'
|
|
6748
6797
|
Seahorse::Client::Request.new(handlers, context)
|
|
6749
6798
|
end
|
|
6750
6799
|
|
|
@@ -2669,8 +2669,11 @@ module Aws::Organizations
|
|
|
2669
2669
|
# The end date must be the end of the last day of the month
|
|
2670
2670
|
# (23.59.59.999).
|
|
2671
2671
|
#
|
|
2672
|
-
# * END\_DATE\_TOO\_EARLY: You provided an invalid end date.
|
|
2673
|
-
#
|
|
2672
|
+
# * END\_DATE\_TOO\_EARLY: You provided an invalid end date. The end
|
|
2673
|
+
# date is too early.
|
|
2674
|
+
#
|
|
2675
|
+
# * END\_DATE\_TOO\_LATE: You provided an invalid end date. The end date
|
|
2676
|
+
# is too late.
|
|
2674
2677
|
#
|
|
2675
2678
|
# * IMMUTABLE\_POLICY: You specified a policy that is managed by Amazon
|
|
2676
2679
|
# Web Services and can't be modified.
|
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.142.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
|