aws-sdk-organizations 1.129.0 → 1.131.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 +103 -22
- data/lib/aws-sdk-organizations/types.rb +90 -0
- data/lib/aws-sdk-organizations.rb +1 -1
- data/sig/client.rbs +10 -10
- data/sig/types.rbs +13 -13
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed193bcebe570643ac77ca9d57a87b7fdd715f3b6e6a102592b91d51863d62d6
|
|
4
|
+
data.tar.gz: 60042096326bddb95060e917f00c571ae1aff7e6b0b4e77c1f5983747895c720
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ca37a58018d1092e19a25518abb10ff5b7e844389021dca60ca991a434bbc65008ea64b49293df827db61162f7fe3c3c263c52850e430460c25831e1db2beb8
|
|
7
|
+
data.tar.gz: 3a290199a07505299dfdc6857af7f86d1b892d0f3a042689691217d90cc64ef1ed20a2b14a4ea7f337f6cf84edf74308b8dca775212e6039e15a02bc4d71f25d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.131.0 (2025-12-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add support for policy operations on the NETWORK SECURITY DIRECTOR POLICY policy type.
|
|
8
|
+
|
|
9
|
+
1.130.0 (2025-11-25)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type.
|
|
13
|
+
|
|
4
14
|
1.129.0 (2025-11-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.131.0
|
|
@@ -638,6 +638,12 @@ module Aws::Organizations
|
|
|
638
638
|
#
|
|
639
639
|
# * [INSPECTOR\_POLICY][10]
|
|
640
640
|
#
|
|
641
|
+
# * [BEDROCK\_POLICY][11]
|
|
642
|
+
#
|
|
643
|
+
# * [S3\_POLICY][12]
|
|
644
|
+
#
|
|
645
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
646
|
+
#
|
|
641
647
|
# You can only call this operation from the management account or a
|
|
642
648
|
# member account that is a delegated administrator.
|
|
643
649
|
#
|
|
@@ -653,6 +659,9 @@ module Aws::Organizations
|
|
|
653
659
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
654
660
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
655
661
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
662
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
663
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
664
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
656
665
|
#
|
|
657
666
|
# @option params [required, String] :policy_id
|
|
658
667
|
# ID for the policy that you want to attach to the target. You can get
|
|
@@ -1554,7 +1563,7 @@ module Aws::Organizations
|
|
|
1554
1563
|
# resp.organization.master_account_id #=> String
|
|
1555
1564
|
# resp.organization.master_account_email #=> String
|
|
1556
1565
|
# resp.organization.available_policy_types #=> Array
|
|
1557
|
-
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
1566
|
+
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
1558
1567
|
# resp.organization.available_policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
1559
1568
|
#
|
|
1560
1569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/CreateOrganization AWS API Documentation
|
|
@@ -1741,6 +1750,12 @@ module Aws::Organizations
|
|
|
1741
1750
|
#
|
|
1742
1751
|
# * [INSPECTOR\_POLICY][10]
|
|
1743
1752
|
#
|
|
1753
|
+
# * [BEDROCK\_POLICY][11]
|
|
1754
|
+
#
|
|
1755
|
+
# * [S3\_POLICY][12]
|
|
1756
|
+
#
|
|
1757
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
1758
|
+
#
|
|
1744
1759
|
#
|
|
1745
1760
|
#
|
|
1746
1761
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -1753,6 +1768,9 @@ module Aws::Organizations
|
|
|
1753
1768
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1754
1769
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1755
1770
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1771
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1772
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
1773
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
1756
1774
|
#
|
|
1757
1775
|
# @option params [Array<Types::Tag>] :tags
|
|
1758
1776
|
# A list of tags that you want to attach to the newly created policy.
|
|
@@ -1809,7 +1827,7 @@ module Aws::Organizations
|
|
|
1809
1827
|
# content: "PolicyContent", # required
|
|
1810
1828
|
# description: "PolicyDescription", # required
|
|
1811
1829
|
# name: "PolicyName", # required
|
|
1812
|
-
# type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
1830
|
+
# type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
1813
1831
|
# tags: [
|
|
1814
1832
|
# {
|
|
1815
1833
|
# key: "TagKey", # required
|
|
@@ -1824,7 +1842,7 @@ module Aws::Organizations
|
|
|
1824
1842
|
# resp.policy.policy_summary.arn #=> String
|
|
1825
1843
|
# resp.policy.policy_summary.name #=> String
|
|
1826
1844
|
# resp.policy.policy_summary.description #=> String
|
|
1827
|
-
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
1845
|
+
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
1828
1846
|
# resp.policy.policy_summary.aws_managed #=> Boolean
|
|
1829
1847
|
# resp.policy.content #=> String
|
|
1830
1848
|
#
|
|
@@ -2296,6 +2314,12 @@ module Aws::Organizations
|
|
|
2296
2314
|
#
|
|
2297
2315
|
# * [INSPECTOR\_POLICY][8]
|
|
2298
2316
|
#
|
|
2317
|
+
# * [BEDROCK\_POLICY][9]
|
|
2318
|
+
#
|
|
2319
|
+
# * [S3\_POLICY][10]
|
|
2320
|
+
#
|
|
2321
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
2322
|
+
#
|
|
2299
2323
|
#
|
|
2300
2324
|
#
|
|
2301
2325
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -2306,6 +2330,9 @@ module Aws::Organizations
|
|
|
2306
2330
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
2307
2331
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
2308
2332
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
2333
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
2334
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
2335
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
2309
2336
|
#
|
|
2310
2337
|
# @option params [String] :target_id
|
|
2311
2338
|
# When you're signed in as the management account, specify the ID of
|
|
@@ -2319,7 +2346,7 @@ module Aws::Organizations
|
|
|
2319
2346
|
# @example Request syntax with placeholder values
|
|
2320
2347
|
#
|
|
2321
2348
|
# resp = client.describe_effective_policy({
|
|
2322
|
-
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
2349
|
+
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
2323
2350
|
# target_id: "PolicyTargetId",
|
|
2324
2351
|
# })
|
|
2325
2352
|
#
|
|
@@ -2328,7 +2355,7 @@ module Aws::Organizations
|
|
|
2328
2355
|
# resp.effective_policy.policy_content #=> String
|
|
2329
2356
|
# resp.effective_policy.last_updated_timestamp #=> Time
|
|
2330
2357
|
# resp.effective_policy.target_id #=> String
|
|
2331
|
-
# resp.effective_policy.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
2358
|
+
# resp.effective_policy.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
2332
2359
|
#
|
|
2333
2360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeEffectivePolicy AWS API Documentation
|
|
2334
2361
|
#
|
|
@@ -2495,7 +2522,7 @@ module Aws::Organizations
|
|
|
2495
2522
|
# resp.organization.master_account_id #=> String
|
|
2496
2523
|
# resp.organization.master_account_email #=> String
|
|
2497
2524
|
# resp.organization.available_policy_types #=> Array
|
|
2498
|
-
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
2525
|
+
# resp.organization.available_policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
2499
2526
|
# resp.organization.available_policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
2500
2527
|
#
|
|
2501
2528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DescribeOrganization AWS API Documentation
|
|
@@ -2625,7 +2652,7 @@ module Aws::Organizations
|
|
|
2625
2652
|
# resp.policy.policy_summary.arn #=> String
|
|
2626
2653
|
# resp.policy.policy_summary.name #=> String
|
|
2627
2654
|
# resp.policy.policy_summary.description #=> String
|
|
2628
|
-
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
2655
|
+
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
2629
2656
|
# resp.policy.policy_summary.aws_managed #=> Boolean
|
|
2630
2657
|
# resp.policy.content #=> String
|
|
2631
2658
|
#
|
|
@@ -2971,6 +2998,12 @@ module Aws::Organizations
|
|
|
2971
2998
|
#
|
|
2972
2999
|
# * [INSPECTOR\_POLICY][10]
|
|
2973
3000
|
#
|
|
3001
|
+
# * [BEDROCK\_POLICY][11]
|
|
3002
|
+
#
|
|
3003
|
+
# * [S3\_POLICY][12]
|
|
3004
|
+
#
|
|
3005
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
3006
|
+
#
|
|
2974
3007
|
#
|
|
2975
3008
|
#
|
|
2976
3009
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -2983,6 +3016,9 @@ module Aws::Organizations
|
|
|
2983
3016
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
2984
3017
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
2985
3018
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3019
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3020
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
3021
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
2986
3022
|
#
|
|
2987
3023
|
# @return [Types::DisablePolicyTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2988
3024
|
#
|
|
@@ -3014,7 +3050,7 @@ module Aws::Organizations
|
|
|
3014
3050
|
#
|
|
3015
3051
|
# resp = client.disable_policy_type({
|
|
3016
3052
|
# root_id: "RootId", # required
|
|
3017
|
-
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
3053
|
+
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
3018
3054
|
# })
|
|
3019
3055
|
#
|
|
3020
3056
|
# @example Response structure
|
|
@@ -3023,7 +3059,7 @@ module Aws::Organizations
|
|
|
3023
3059
|
# resp.root.arn #=> String
|
|
3024
3060
|
# resp.root.name #=> String
|
|
3025
3061
|
# resp.root.policy_types #=> Array
|
|
3026
|
-
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
3062
|
+
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
3027
3063
|
# resp.root.policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
3028
3064
|
#
|
|
3029
3065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyType AWS API Documentation
|
|
@@ -3240,6 +3276,12 @@ module Aws::Organizations
|
|
|
3240
3276
|
#
|
|
3241
3277
|
# * [INSPECTOR\_POLICY][10]
|
|
3242
3278
|
#
|
|
3279
|
+
# * [BEDROCK\_POLICY][11]
|
|
3280
|
+
#
|
|
3281
|
+
# * [S3\_POLICY][12]
|
|
3282
|
+
#
|
|
3283
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
3284
|
+
#
|
|
3243
3285
|
#
|
|
3244
3286
|
#
|
|
3245
3287
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -3252,6 +3294,9 @@ module Aws::Organizations
|
|
|
3252
3294
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3253
3295
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3254
3296
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3297
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3298
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
3299
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
3255
3300
|
#
|
|
3256
3301
|
# @return [Types::EnablePolicyTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3257
3302
|
#
|
|
@@ -3287,7 +3332,7 @@ module Aws::Organizations
|
|
|
3287
3332
|
#
|
|
3288
3333
|
# resp = client.enable_policy_type({
|
|
3289
3334
|
# root_id: "RootId", # required
|
|
3290
|
-
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
3335
|
+
# policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
3291
3336
|
# })
|
|
3292
3337
|
#
|
|
3293
3338
|
# @example Response structure
|
|
@@ -3296,7 +3341,7 @@ module Aws::Organizations
|
|
|
3296
3341
|
# resp.root.arn #=> String
|
|
3297
3342
|
# resp.root.name #=> String
|
|
3298
3343
|
# resp.root.policy_types #=> Array
|
|
3299
|
-
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
3344
|
+
# resp.root.policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
3300
3345
|
# resp.root.policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
3301
3346
|
#
|
|
3302
3347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyType AWS API Documentation
|
|
@@ -4047,6 +4092,12 @@ module Aws::Organizations
|
|
|
4047
4092
|
#
|
|
4048
4093
|
# * [INSPECTOR\_POLICY][8]
|
|
4049
4094
|
#
|
|
4095
|
+
# * [BEDROCK\_POLICY][9]
|
|
4096
|
+
#
|
|
4097
|
+
# * [S3\_POLICY][10]
|
|
4098
|
+
#
|
|
4099
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
4100
|
+
#
|
|
4050
4101
|
#
|
|
4051
4102
|
#
|
|
4052
4103
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -4057,6 +4108,9 @@ module Aws::Organizations
|
|
|
4057
4108
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
4058
4109
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
4059
4110
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4111
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4112
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
4113
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
4060
4114
|
#
|
|
4061
4115
|
# @option params [String] :next_token
|
|
4062
4116
|
# The parameter for receiving additional results if you receive a
|
|
@@ -4117,7 +4171,7 @@ module Aws::Organizations
|
|
|
4117
4171
|
# @example Request syntax with placeholder values
|
|
4118
4172
|
#
|
|
4119
4173
|
# resp = client.list_accounts_with_invalid_effective_policy({
|
|
4120
|
-
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
4174
|
+
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
4121
4175
|
# next_token: "NextToken",
|
|
4122
4176
|
# max_results: 1,
|
|
4123
4177
|
# })
|
|
@@ -4133,7 +4187,7 @@ module Aws::Organizations
|
|
|
4133
4187
|
# resp.accounts[0].state #=> String, one of "PENDING_ACTIVATION", "ACTIVE", "SUSPENDED", "PENDING_CLOSURE", "CLOSED"
|
|
4134
4188
|
# resp.accounts[0].joined_method #=> String, one of "INVITED", "CREATED"
|
|
4135
4189
|
# resp.accounts[0].joined_timestamp #=> Time
|
|
4136
|
-
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
4190
|
+
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
4137
4191
|
# resp.next_token #=> String
|
|
4138
4192
|
#
|
|
4139
4193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/ListAccountsWithInvalidEffectivePolicy AWS API Documentation
|
|
@@ -4521,6 +4575,12 @@ module Aws::Organizations
|
|
|
4521
4575
|
#
|
|
4522
4576
|
# * [INSPECTOR\_POLICY][8]
|
|
4523
4577
|
#
|
|
4578
|
+
# * [BEDROCK\_POLICY][9]
|
|
4579
|
+
#
|
|
4580
|
+
# * [S3\_POLICY][10]
|
|
4581
|
+
#
|
|
4582
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
4583
|
+
#
|
|
4524
4584
|
#
|
|
4525
4585
|
#
|
|
4526
4586
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -4531,6 +4591,9 @@ module Aws::Organizations
|
|
|
4531
4591
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
4532
4592
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
4533
4593
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4594
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4595
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
4596
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
4534
4597
|
#
|
|
4535
4598
|
# @option params [String] :next_token
|
|
4536
4599
|
# The parameter for receiving additional results if you receive a
|
|
@@ -4597,7 +4660,7 @@ module Aws::Organizations
|
|
|
4597
4660
|
#
|
|
4598
4661
|
# resp = client.list_effective_policy_validation_errors({
|
|
4599
4662
|
# account_id: "AccountId", # required
|
|
4600
|
-
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
4663
|
+
# policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
4601
4664
|
# next_token: "NextToken",
|
|
4602
4665
|
# max_results: 1,
|
|
4603
4666
|
# })
|
|
@@ -4605,7 +4668,7 @@ module Aws::Organizations
|
|
|
4605
4668
|
# @example Response structure
|
|
4606
4669
|
#
|
|
4607
4670
|
# resp.account_id #=> String
|
|
4608
|
-
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
4671
|
+
# resp.policy_type #=> String, one of "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
4609
4672
|
# resp.path #=> String
|
|
4610
4673
|
# resp.evaluation_timestamp #=> Time
|
|
4611
4674
|
# resp.next_token #=> String
|
|
@@ -5377,6 +5440,12 @@ module Aws::Organizations
|
|
|
5377
5440
|
#
|
|
5378
5441
|
# * [INSPECTOR\_POLICY][10]
|
|
5379
5442
|
#
|
|
5443
|
+
# * [BEDROCK\_POLICY][11]
|
|
5444
|
+
#
|
|
5445
|
+
# * [S3\_POLICY][12]
|
|
5446
|
+
#
|
|
5447
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
5448
|
+
#
|
|
5380
5449
|
#
|
|
5381
5450
|
#
|
|
5382
5451
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -5389,6 +5458,9 @@ module Aws::Organizations
|
|
|
5389
5458
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
5390
5459
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
5391
5460
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
5461
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
5462
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
5463
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
5392
5464
|
#
|
|
5393
5465
|
# @option params [String] :next_token
|
|
5394
5466
|
# The parameter for receiving additional results if you receive a
|
|
@@ -5451,7 +5523,7 @@ module Aws::Organizations
|
|
|
5451
5523
|
# @example Request syntax with placeholder values
|
|
5452
5524
|
#
|
|
5453
5525
|
# resp = client.list_policies({
|
|
5454
|
-
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
5526
|
+
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
5455
5527
|
# next_token: "NextToken",
|
|
5456
5528
|
# max_results: 1,
|
|
5457
5529
|
# })
|
|
@@ -5463,7 +5535,7 @@ module Aws::Organizations
|
|
|
5463
5535
|
# resp.policies[0].arn #=> String
|
|
5464
5536
|
# resp.policies[0].name #=> String
|
|
5465
5537
|
# resp.policies[0].description #=> String
|
|
5466
|
-
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
5538
|
+
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
5467
5539
|
# resp.policies[0].aws_managed #=> Boolean
|
|
5468
5540
|
# resp.next_token #=> String
|
|
5469
5541
|
#
|
|
@@ -5537,6 +5609,12 @@ module Aws::Organizations
|
|
|
5537
5609
|
#
|
|
5538
5610
|
# * [INSPECTOR\_POLICY][10]
|
|
5539
5611
|
#
|
|
5612
|
+
# * [BEDROCK\_POLICY][11]
|
|
5613
|
+
#
|
|
5614
|
+
# * [S3\_POLICY][12]
|
|
5615
|
+
#
|
|
5616
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
5617
|
+
#
|
|
5540
5618
|
#
|
|
5541
5619
|
#
|
|
5542
5620
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -5549,6 +5627,9 @@ module Aws::Organizations
|
|
|
5549
5627
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
5550
5628
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
5551
5629
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
5630
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
5631
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
5632
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
5552
5633
|
#
|
|
5553
5634
|
# @option params [String] :next_token
|
|
5554
5635
|
# The parameter for receiving additional results if you receive a
|
|
@@ -5599,7 +5680,7 @@ module Aws::Organizations
|
|
|
5599
5680
|
#
|
|
5600
5681
|
# resp = client.list_policies_for_target({
|
|
5601
5682
|
# target_id: "PolicyTargetId", # required
|
|
5602
|
-
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
5683
|
+
# filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, RESOURCE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, SECURITYHUB_POLICY, INSPECTOR_POLICY, UPGRADE_ROLLOUT_POLICY, BEDROCK_POLICY, S3_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY
|
|
5603
5684
|
# next_token: "NextToken",
|
|
5604
5685
|
# max_results: 1,
|
|
5605
5686
|
# })
|
|
@@ -5611,7 +5692,7 @@ module Aws::Organizations
|
|
|
5611
5692
|
# resp.policies[0].arn #=> String
|
|
5612
5693
|
# resp.policies[0].name #=> String
|
|
5613
5694
|
# resp.policies[0].description #=> String
|
|
5614
|
-
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
5695
|
+
# resp.policies[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
5615
5696
|
# resp.policies[0].aws_managed #=> Boolean
|
|
5616
5697
|
# resp.next_token #=> String
|
|
5617
5698
|
#
|
|
@@ -5705,7 +5786,7 @@ module Aws::Organizations
|
|
|
5705
5786
|
# resp.roots[0].arn #=> String
|
|
5706
5787
|
# resp.roots[0].name #=> String
|
|
5707
5788
|
# resp.roots[0].policy_types #=> Array
|
|
5708
|
-
# resp.roots[0].policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
5789
|
+
# resp.roots[0].policy_types[0].type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
5709
5790
|
# resp.roots[0].policy_types[0].status #=> String, one of "ENABLED", "PENDING_ENABLE", "PENDING_DISABLE"
|
|
5710
5791
|
# resp.next_token #=> String
|
|
5711
5792
|
#
|
|
@@ -6536,7 +6617,7 @@ module Aws::Organizations
|
|
|
6536
6617
|
# resp.policy.policy_summary.arn #=> String
|
|
6537
6618
|
# resp.policy.policy_summary.name #=> String
|
|
6538
6619
|
# resp.policy.policy_summary.description #=> String
|
|
6539
|
-
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY"
|
|
6620
|
+
# resp.policy.policy_summary.type #=> String, one of "SERVICE_CONTROL_POLICY", "RESOURCE_CONTROL_POLICY", "TAG_POLICY", "BACKUP_POLICY", "AISERVICES_OPT_OUT_POLICY", "CHATBOT_POLICY", "DECLARATIVE_POLICY_EC2", "SECURITYHUB_POLICY", "INSPECTOR_POLICY", "UPGRADE_ROLLOUT_POLICY", "BEDROCK_POLICY", "S3_POLICY", "NETWORK_SECURITY_DIRECTOR_POLICY"
|
|
6540
6621
|
# resp.policy.policy_summary.aws_managed #=> Boolean
|
|
6541
6622
|
# resp.policy.content #=> String
|
|
6542
6623
|
#
|
|
@@ -6643,7 +6724,7 @@ module Aws::Organizations
|
|
|
6643
6724
|
tracer: tracer
|
|
6644
6725
|
)
|
|
6645
6726
|
context[:gem_name] = 'aws-sdk-organizations'
|
|
6646
|
-
context[:gem_version] = '1.
|
|
6727
|
+
context[:gem_version] = '1.131.0'
|
|
6647
6728
|
Seahorse::Client::Request.new(handlers, context)
|
|
6648
6729
|
end
|
|
6649
6730
|
|
|
@@ -1288,6 +1288,12 @@ module Aws::Organizations
|
|
|
1288
1288
|
#
|
|
1289
1289
|
# * [INSPECTOR\_POLICY][10]
|
|
1290
1290
|
#
|
|
1291
|
+
# * [BEDROCK\_POLICY][11]
|
|
1292
|
+
#
|
|
1293
|
+
# * [S3\_POLICY][12]
|
|
1294
|
+
#
|
|
1295
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
1296
|
+
#
|
|
1291
1297
|
#
|
|
1292
1298
|
#
|
|
1293
1299
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -1300,6 +1306,9 @@ module Aws::Organizations
|
|
|
1300
1306
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1301
1307
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1302
1308
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1309
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1310
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
1311
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
1303
1312
|
# @return [String]
|
|
1304
1313
|
#
|
|
1305
1314
|
# @!attribute [rw] tags
|
|
@@ -1634,6 +1643,12 @@ module Aws::Organizations
|
|
|
1634
1643
|
#
|
|
1635
1644
|
# * [INSPECTOR\_POLICY][8]
|
|
1636
1645
|
#
|
|
1646
|
+
# * [BEDROCK\_POLICY][9]
|
|
1647
|
+
#
|
|
1648
|
+
# * [S3\_POLICY][10]
|
|
1649
|
+
#
|
|
1650
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
1651
|
+
#
|
|
1637
1652
|
#
|
|
1638
1653
|
#
|
|
1639
1654
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -1644,6 +1659,9 @@ module Aws::Organizations
|
|
|
1644
1659
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1645
1660
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1646
1661
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1662
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1663
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
1664
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
1647
1665
|
# @return [String]
|
|
1648
1666
|
#
|
|
1649
1667
|
# @!attribute [rw] target_id
|
|
@@ -1938,6 +1956,12 @@ module Aws::Organizations
|
|
|
1938
1956
|
#
|
|
1939
1957
|
# * [INSPECTOR\_POLICY][10]
|
|
1940
1958
|
#
|
|
1959
|
+
# * [BEDROCK\_POLICY][11]
|
|
1960
|
+
#
|
|
1961
|
+
# * [S3\_POLICY][12]
|
|
1962
|
+
#
|
|
1963
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
1964
|
+
#
|
|
1941
1965
|
#
|
|
1942
1966
|
#
|
|
1943
1967
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -1950,6 +1974,9 @@ module Aws::Organizations
|
|
|
1950
1974
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
1951
1975
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
1952
1976
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
1977
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
1978
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
1979
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
1953
1980
|
# @return [String]
|
|
1954
1981
|
#
|
|
1955
1982
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/DisablePolicyTypeRequest AWS API Documentation
|
|
@@ -2205,6 +2232,12 @@ module Aws::Organizations
|
|
|
2205
2232
|
#
|
|
2206
2233
|
# * [INSPECTOR\_POLICY][10]
|
|
2207
2234
|
#
|
|
2235
|
+
# * [BEDROCK\_POLICY][11]
|
|
2236
|
+
#
|
|
2237
|
+
# * [S3\_POLICY][12]
|
|
2238
|
+
#
|
|
2239
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
2240
|
+
#
|
|
2208
2241
|
#
|
|
2209
2242
|
#
|
|
2210
2243
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -2217,6 +2250,9 @@ module Aws::Organizations
|
|
|
2217
2250
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
2218
2251
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
2219
2252
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
2253
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
2254
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
2255
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
2220
2256
|
# @return [String]
|
|
2221
2257
|
#
|
|
2222
2258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/organizations-2016-11-28/EnablePolicyTypeRequest AWS API Documentation
|
|
@@ -3094,6 +3130,12 @@ module Aws::Organizations
|
|
|
3094
3130
|
#
|
|
3095
3131
|
# * [INSPECTOR\_POLICY][8]
|
|
3096
3132
|
#
|
|
3133
|
+
# * [BEDROCK\_POLICY][9]
|
|
3134
|
+
#
|
|
3135
|
+
# * [S3\_POLICY][10]
|
|
3136
|
+
#
|
|
3137
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
3138
|
+
#
|
|
3097
3139
|
#
|
|
3098
3140
|
#
|
|
3099
3141
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3104,6 +3146,9 @@ module Aws::Organizations
|
|
|
3104
3146
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3105
3147
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3106
3148
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3149
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3150
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
3151
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
3107
3152
|
# @return [String]
|
|
3108
3153
|
#
|
|
3109
3154
|
# @!attribute [rw] next_token
|
|
@@ -3155,6 +3200,12 @@ module Aws::Organizations
|
|
|
3155
3200
|
#
|
|
3156
3201
|
# * [INSPECTOR\_POLICY][8]
|
|
3157
3202
|
#
|
|
3203
|
+
# * [BEDROCK\_POLICY][9]
|
|
3204
|
+
#
|
|
3205
|
+
# * [S3\_POLICY][10]
|
|
3206
|
+
#
|
|
3207
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
3208
|
+
#
|
|
3158
3209
|
#
|
|
3159
3210
|
#
|
|
3160
3211
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3165,6 +3216,9 @@ module Aws::Organizations
|
|
|
3165
3216
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3166
3217
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3167
3218
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3219
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3220
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
3221
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
3168
3222
|
# @return [String]
|
|
3169
3223
|
#
|
|
3170
3224
|
# @!attribute [rw] next_token
|
|
@@ -3442,6 +3496,12 @@ module Aws::Organizations
|
|
|
3442
3496
|
#
|
|
3443
3497
|
# * [INSPECTOR\_POLICY][8]
|
|
3444
3498
|
#
|
|
3499
|
+
# * [BEDROCK\_POLICY][9]
|
|
3500
|
+
#
|
|
3501
|
+
# * [S3\_POLICY][10]
|
|
3502
|
+
#
|
|
3503
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
3504
|
+
#
|
|
3445
3505
|
#
|
|
3446
3506
|
#
|
|
3447
3507
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3452,6 +3512,9 @@ module Aws::Organizations
|
|
|
3452
3512
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3453
3513
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3454
3514
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3515
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3516
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
3517
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
3455
3518
|
# @return [String]
|
|
3456
3519
|
#
|
|
3457
3520
|
# @!attribute [rw] next_token
|
|
@@ -3503,6 +3566,12 @@ module Aws::Organizations
|
|
|
3503
3566
|
#
|
|
3504
3567
|
# * [INSPECTOR\_POLICY][8]
|
|
3505
3568
|
#
|
|
3569
|
+
# * [BEDROCK\_POLICY][9]
|
|
3570
|
+
#
|
|
3571
|
+
# * [S3\_POLICY][10]
|
|
3572
|
+
#
|
|
3573
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][11]
|
|
3574
|
+
#
|
|
3506
3575
|
#
|
|
3507
3576
|
#
|
|
3508
3577
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_declarative.html
|
|
@@ -3513,6 +3582,9 @@ module Aws::Organizations
|
|
|
3513
3582
|
# [6]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3514
3583
|
# [7]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3515
3584
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
3585
|
+
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
3586
|
+
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
3587
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
3516
3588
|
# @return [String]
|
|
3517
3589
|
#
|
|
3518
3590
|
# @!attribute [rw] path
|
|
@@ -3939,6 +4011,12 @@ module Aws::Organizations
|
|
|
3939
4011
|
#
|
|
3940
4012
|
# * [INSPECTOR\_POLICY][10]
|
|
3941
4013
|
#
|
|
4014
|
+
# * [BEDROCK\_POLICY][11]
|
|
4015
|
+
#
|
|
4016
|
+
# * [S3\_POLICY][12]
|
|
4017
|
+
#
|
|
4018
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
4019
|
+
#
|
|
3942
4020
|
#
|
|
3943
4021
|
#
|
|
3944
4022
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -3951,6 +4029,9 @@ module Aws::Organizations
|
|
|
3951
4029
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
3952
4030
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
3953
4031
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4032
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4033
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
4034
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
3954
4035
|
# @return [String]
|
|
3955
4036
|
#
|
|
3956
4037
|
# @!attribute [rw] next_token
|
|
@@ -4024,6 +4105,12 @@ module Aws::Organizations
|
|
|
4024
4105
|
#
|
|
4025
4106
|
# * [INSPECTOR\_POLICY][10]
|
|
4026
4107
|
#
|
|
4108
|
+
# * [BEDROCK\_POLICY][11]
|
|
4109
|
+
#
|
|
4110
|
+
# * [S3\_POLICY][12]
|
|
4111
|
+
#
|
|
4112
|
+
# * [NETWORK\_SECURITY\_DIRECTOR\_POLICY][13]
|
|
4113
|
+
#
|
|
4027
4114
|
#
|
|
4028
4115
|
#
|
|
4029
4116
|
# [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scp.html
|
|
@@ -4036,6 +4123,9 @@ module Aws::Organizations
|
|
|
4036
4123
|
# [8]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_security_hub.html
|
|
4037
4124
|
# [9]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_upgrade_rollout.html
|
|
4038
4125
|
# [10]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_inspector.html
|
|
4126
|
+
# [11]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_bedrock.html
|
|
4127
|
+
# [12]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_s3.html
|
|
4128
|
+
# [13]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_network_security_director.html
|
|
4039
4129
|
# @return [String]
|
|
4040
4130
|
#
|
|
4041
4131
|
# @!attribute [rw] next_token
|
data/sig/client.rbs
CHANGED
|
@@ -186,7 +186,7 @@ module Aws
|
|
|
186
186
|
content: ::String,
|
|
187
187
|
description: ::String,
|
|
188
188
|
name: ::String,
|
|
189
|
-
type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
189
|
+
type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY"),
|
|
190
190
|
?tags: Array[
|
|
191
191
|
{
|
|
192
192
|
key: ::String,
|
|
@@ -259,7 +259,7 @@ module Aws
|
|
|
259
259
|
end
|
|
260
260
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#describe_effective_policy-instance_method
|
|
261
261
|
def describe_effective_policy: (
|
|
262
|
-
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
262
|
+
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY"),
|
|
263
263
|
?target_id: ::String
|
|
264
264
|
) -> _DescribeEffectivePolicyResponseSuccess
|
|
265
265
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEffectivePolicyResponseSuccess
|
|
@@ -340,7 +340,7 @@ module Aws
|
|
|
340
340
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#disable_policy_type-instance_method
|
|
341
341
|
def disable_policy_type: (
|
|
342
342
|
root_id: ::String,
|
|
343
|
-
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
343
|
+
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
344
344
|
) -> _DisablePolicyTypeResponseSuccess
|
|
345
345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisablePolicyTypeResponseSuccess
|
|
346
346
|
|
|
@@ -366,7 +366,7 @@ module Aws
|
|
|
366
366
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#enable_policy_type-instance_method
|
|
367
367
|
def enable_policy_type: (
|
|
368
368
|
root_id: ::String,
|
|
369
|
-
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
369
|
+
policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
370
370
|
) -> _EnablePolicyTypeResponseSuccess
|
|
371
371
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnablePolicyTypeResponseSuccess
|
|
372
372
|
|
|
@@ -457,12 +457,12 @@ module Aws
|
|
|
457
457
|
interface _ListAccountsWithInvalidEffectivePolicyResponseSuccess
|
|
458
458
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountsWithInvalidEffectivePolicyResponse]
|
|
459
459
|
def accounts: () -> ::Array[Types::Account]
|
|
460
|
-
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
460
|
+
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
461
461
|
def next_token: () -> ::String
|
|
462
462
|
end
|
|
463
463
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_accounts_with_invalid_effective_policy-instance_method
|
|
464
464
|
def list_accounts_with_invalid_effective_policy: (
|
|
465
|
-
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
465
|
+
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY"),
|
|
466
466
|
?next_token: ::String,
|
|
467
467
|
?max_results: ::Integer
|
|
468
468
|
) -> _ListAccountsWithInvalidEffectivePolicyResponseSuccess
|
|
@@ -524,7 +524,7 @@ module Aws
|
|
|
524
524
|
interface _ListEffectivePolicyValidationErrorsResponseSuccess
|
|
525
525
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListEffectivePolicyValidationErrorsResponse]
|
|
526
526
|
def account_id: () -> ::String
|
|
527
|
-
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
527
|
+
def policy_type: () -> ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
528
528
|
def path: () -> ::String
|
|
529
529
|
def evaluation_timestamp: () -> ::Time
|
|
530
530
|
def next_token: () -> ::String
|
|
@@ -533,7 +533,7 @@ module Aws
|
|
|
533
533
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_effective_policy_validation_errors-instance_method
|
|
534
534
|
def list_effective_policy_validation_errors: (
|
|
535
535
|
account_id: ::String,
|
|
536
|
-
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
536
|
+
policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY"),
|
|
537
537
|
?next_token: ::String,
|
|
538
538
|
?max_results: ::Integer
|
|
539
539
|
) -> _ListEffectivePolicyValidationErrorsResponseSuccess
|
|
@@ -631,7 +631,7 @@ module Aws
|
|
|
631
631
|
end
|
|
632
632
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_policies-instance_method
|
|
633
633
|
def list_policies: (
|
|
634
|
-
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
634
|
+
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY"),
|
|
635
635
|
?next_token: ::String,
|
|
636
636
|
?max_results: ::Integer
|
|
637
637
|
) -> _ListPoliciesResponseSuccess
|
|
@@ -645,7 +645,7 @@ module Aws
|
|
|
645
645
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Organizations/Client.html#list_policies_for_target-instance_method
|
|
646
646
|
def list_policies_for_target: (
|
|
647
647
|
target_id: ::String,
|
|
648
|
-
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY"),
|
|
648
|
+
filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY"),
|
|
649
649
|
?next_token: ::String,
|
|
650
650
|
?max_results: ::Integer
|
|
651
651
|
) -> _ListPoliciesForTargetResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -195,7 +195,7 @@ module Aws::Organizations
|
|
|
195
195
|
attr_accessor content: ::String
|
|
196
196
|
attr_accessor description: ::String
|
|
197
197
|
attr_accessor name: ::String
|
|
198
|
-
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
198
|
+
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
199
199
|
attr_accessor tags: ::Array[Types::Tag]
|
|
200
200
|
SENSITIVE: []
|
|
201
201
|
end
|
|
@@ -271,7 +271,7 @@ module Aws::Organizations
|
|
|
271
271
|
end
|
|
272
272
|
|
|
273
273
|
class DescribeEffectivePolicyRequest
|
|
274
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
274
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
275
275
|
attr_accessor target_id: ::String
|
|
276
276
|
SENSITIVE: []
|
|
277
277
|
end
|
|
@@ -349,7 +349,7 @@ module Aws::Organizations
|
|
|
349
349
|
|
|
350
350
|
class DisablePolicyTypeRequest
|
|
351
351
|
attr_accessor root_id: ::String
|
|
352
|
-
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
352
|
+
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
353
353
|
SENSITIVE: []
|
|
354
354
|
end
|
|
355
355
|
|
|
@@ -387,7 +387,7 @@ module Aws::Organizations
|
|
|
387
387
|
attr_accessor policy_content: ::String
|
|
388
388
|
attr_accessor last_updated_timestamp: ::Time
|
|
389
389
|
attr_accessor target_id: ::String
|
|
390
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
390
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
391
391
|
SENSITIVE: []
|
|
392
392
|
end
|
|
393
393
|
|
|
@@ -419,7 +419,7 @@ module Aws::Organizations
|
|
|
419
419
|
|
|
420
420
|
class EnablePolicyTypeRequest
|
|
421
421
|
attr_accessor root_id: ::String
|
|
422
|
-
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
422
|
+
attr_accessor policy_type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
423
423
|
SENSITIVE: []
|
|
424
424
|
end
|
|
425
425
|
|
|
@@ -567,7 +567,7 @@ module Aws::Organizations
|
|
|
567
567
|
end
|
|
568
568
|
|
|
569
569
|
class ListAccountsWithInvalidEffectivePolicyRequest
|
|
570
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
570
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
571
571
|
attr_accessor next_token: ::String
|
|
572
572
|
attr_accessor max_results: ::Integer
|
|
573
573
|
SENSITIVE: []
|
|
@@ -575,7 +575,7 @@ module Aws::Organizations
|
|
|
575
575
|
|
|
576
576
|
class ListAccountsWithInvalidEffectivePolicyResponse
|
|
577
577
|
attr_accessor accounts: ::Array[Types::Account]
|
|
578
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
578
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
579
579
|
attr_accessor next_token: ::String
|
|
580
580
|
SENSITIVE: []
|
|
581
581
|
end
|
|
@@ -635,7 +635,7 @@ module Aws::Organizations
|
|
|
635
635
|
|
|
636
636
|
class ListEffectivePolicyValidationErrorsRequest
|
|
637
637
|
attr_accessor account_id: ::String
|
|
638
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
638
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
639
639
|
attr_accessor next_token: ::String
|
|
640
640
|
attr_accessor max_results: ::Integer
|
|
641
641
|
SENSITIVE: []
|
|
@@ -643,7 +643,7 @@ module Aws::Organizations
|
|
|
643
643
|
|
|
644
644
|
class ListEffectivePolicyValidationErrorsResponse
|
|
645
645
|
attr_accessor account_id: ::String
|
|
646
|
-
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
646
|
+
attr_accessor policy_type: ("TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
647
647
|
attr_accessor path: ::String
|
|
648
648
|
attr_accessor evaluation_timestamp: ::Time
|
|
649
649
|
attr_accessor next_token: ::String
|
|
@@ -732,7 +732,7 @@ module Aws::Organizations
|
|
|
732
732
|
|
|
733
733
|
class ListPoliciesForTargetRequest
|
|
734
734
|
attr_accessor target_id: ::String
|
|
735
|
-
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
735
|
+
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
736
736
|
attr_accessor next_token: ::String
|
|
737
737
|
attr_accessor max_results: ::Integer
|
|
738
738
|
SENSITIVE: []
|
|
@@ -745,7 +745,7 @@ module Aws::Organizations
|
|
|
745
745
|
end
|
|
746
746
|
|
|
747
747
|
class ListPoliciesRequest
|
|
748
|
-
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
748
|
+
attr_accessor filter: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
749
749
|
attr_accessor next_token: ::String
|
|
750
750
|
attr_accessor max_results: ::Integer
|
|
751
751
|
SENSITIVE: []
|
|
@@ -886,7 +886,7 @@ module Aws::Organizations
|
|
|
886
886
|
attr_accessor arn: ::String
|
|
887
887
|
attr_accessor name: ::String
|
|
888
888
|
attr_accessor description: ::String
|
|
889
|
-
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
889
|
+
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
890
890
|
attr_accessor aws_managed: bool
|
|
891
891
|
SENSITIVE: []
|
|
892
892
|
end
|
|
@@ -915,7 +915,7 @@ module Aws::Organizations
|
|
|
915
915
|
end
|
|
916
916
|
|
|
917
917
|
class PolicyTypeSummary
|
|
918
|
-
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY")
|
|
918
|
+
attr_accessor type: ("SERVICE_CONTROL_POLICY" | "RESOURCE_CONTROL_POLICY" | "TAG_POLICY" | "BACKUP_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "INSPECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY" | "BEDROCK_POLICY" | "S3_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY")
|
|
919
919
|
attr_accessor status: ("ENABLED" | "PENDING_ENABLE" | "PENDING_DISABLE")
|
|
920
920
|
SENSITIVE: []
|
|
921
921
|
end
|