aws-sdk-guardduty 1.77.0 → 1.78.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +45 -27
- data/lib/aws-sdk-guardduty/client_api.rb +2 -0
- data/lib/aws-sdk-guardduty/types.rb +99 -28
- data/lib/aws-sdk-guardduty.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed911abbebf94435926713edbff9b3988d532f20b40a37574bc68987f72dfab7
|
4
|
+
data.tar.gz: 83af089eb78e60cfe96e3ef9f1d31433b014817e930f9c44645db5e1b8a35377
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e949b005e19a67da9d4a0701537c7fa2df738e313a9a1b01e27e6357224d48eae5b1bd2da8ea685c429624010981a995ef2e15f25b197642fad87cf7951589b
|
7
|
+
data.tar.gz: f3ad6f84a149fbd8f409bbf3098835fb8a13a36d178087a103fde88f9344a8fbaf120bd153bcbe9e97d9a0c5c6944d57d459b8a02a28cf0bba53e7b309af65cf
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.78.0
|
@@ -1617,8 +1617,9 @@ module Aws::GuardDuty
|
|
1617
1617
|
req.send_request(options)
|
1618
1618
|
end
|
1619
1619
|
|
1620
|
-
#
|
1621
|
-
#
|
1620
|
+
# Removes the existing GuardDuty delegated administrator of the
|
1621
|
+
# organization. Only the organization's management account can run this
|
1622
|
+
# API operation.
|
1622
1623
|
#
|
1623
1624
|
# @option params [required, String] :admin_account_id
|
1624
1625
|
# The Amazon Web Services Account ID for the organizations account to be
|
@@ -1735,8 +1736,8 @@ module Aws::GuardDuty
|
|
1735
1736
|
#
|
1736
1737
|
# With `autoEnableOrganizationMembers` configuration for your
|
1737
1738
|
# organization set to `ALL`, you'll receive an error if you attempt to
|
1738
|
-
# disassociate a member account before removing them from your
|
1739
|
-
#
|
1739
|
+
# disassociate a member account before removing them from your
|
1740
|
+
# organization.
|
1740
1741
|
#
|
1741
1742
|
#
|
1742
1743
|
#
|
@@ -1778,8 +1779,9 @@ module Aws::GuardDuty
|
|
1778
1779
|
req.send_request(options)
|
1779
1780
|
end
|
1780
1781
|
|
1781
|
-
#
|
1782
|
-
# GuardDuty delegated administrator.
|
1782
|
+
# Designates an Amazon Web Services account within the organization as
|
1783
|
+
# your GuardDuty delegated administrator. Only the organization's
|
1784
|
+
# management account can run this API operation.
|
1783
1785
|
#
|
1784
1786
|
# @option params [required, String] :admin_account_id
|
1785
1787
|
# The Amazon Web Services Account ID for the organization account to be
|
@@ -1802,8 +1804,13 @@ module Aws::GuardDuty
|
|
1802
1804
|
req.send_request(options)
|
1803
1805
|
end
|
1804
1806
|
|
1805
|
-
# Provides the details
|
1806
|
-
#
|
1807
|
+
# Provides the details of the GuardDuty administrator account associated
|
1808
|
+
# with the current GuardDuty member account.
|
1809
|
+
#
|
1810
|
+
# <note markdown="1"> If the organization's management account or a delegated administrator
|
1811
|
+
# runs this API, it will return success (`HTTP 200`) but no content.
|
1812
|
+
#
|
1813
|
+
# </note>
|
1807
1814
|
#
|
1808
1815
|
# @option params [required, String] :detector_id
|
1809
1816
|
# The unique ID of the detector of the GuardDuty member account.
|
@@ -1861,7 +1868,7 @@ module Aws::GuardDuty
|
|
1861
1868
|
# filter_criteria: {
|
1862
1869
|
# filter_criterion: [
|
1863
1870
|
# {
|
1864
|
-
# criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION
|
1871
|
+
# criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION, MANAGEMENT_TYPE
|
1865
1872
|
# filter_condition: {
|
1866
1873
|
# equals: ["String"],
|
1867
1874
|
# not_equals: ["String"],
|
@@ -2952,10 +2959,9 @@ module Aws::GuardDuty
|
|
2952
2959
|
|
2953
2960
|
# Invites Amazon Web Services accounts to become members of an
|
2954
2961
|
# organization administered by the Amazon Web Services account that
|
2955
|
-
# invokes this API. If you are using
|
2956
|
-
#
|
2957
|
-
#
|
2958
|
-
# Organizations][1].
|
2962
|
+
# invokes this API. If you are using organizations to manager your
|
2963
|
+
# GuardDuty environment, this step is not needed. For more information,
|
2964
|
+
# see [Managing accounts with organizations][1].
|
2959
2965
|
#
|
2960
2966
|
# To invite Amazon Web Services accounts, the first step is to ensure
|
2961
2967
|
# that GuardDuty has been enabled in the potential member accounts. You
|
@@ -3071,7 +3077,7 @@ module Aws::GuardDuty
|
|
3071
3077
|
# filter_criteria: {
|
3072
3078
|
# filter_criterion: [
|
3073
3079
|
# {
|
3074
|
-
# criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION
|
3080
|
+
# criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION, MANAGEMENT_TYPE
|
3075
3081
|
# filter_condition: {
|
3076
3082
|
# equals: ["String"],
|
3077
3083
|
# not_equals: ["String"],
|
@@ -3096,6 +3102,7 @@ module Aws::GuardDuty
|
|
3096
3102
|
# resp.resources[0].resource_details.eks_cluster_details.compatible_nodes #=> Integer
|
3097
3103
|
# resp.resources[0].resource_details.eks_cluster_details.addon_details.addon_version #=> String
|
3098
3104
|
# resp.resources[0].resource_details.eks_cluster_details.addon_details.addon_status #=> String
|
3105
|
+
# resp.resources[0].resource_details.eks_cluster_details.management_type #=> String, one of "AUTO_MANAGED", "MANUAL"
|
3099
3106
|
# resp.resources[0].resource_details.resource_type #=> String, one of "EKS"
|
3100
3107
|
# resp.resources[0].coverage_status #=> String, one of "HEALTHY", "UNHEALTHY"
|
3101
3108
|
# resp.resources[0].issue #=> String
|
@@ -3546,6 +3553,8 @@ module Aws::GuardDuty
|
|
3546
3553
|
end
|
3547
3554
|
|
3548
3555
|
# Lists the accounts configured as GuardDuty delegated administrators.
|
3556
|
+
# Only the organization's management account can run this API
|
3557
|
+
# operation.
|
3549
3558
|
#
|
3550
3559
|
# @option params [Integer] :max_results
|
3551
3560
|
# The maximum number of results to return in the response.
|
@@ -3637,8 +3646,8 @@ module Aws::GuardDuty
|
|
3637
3646
|
|
3638
3647
|
# Lists tags for a resource. Tagging is currently supported for
|
3639
3648
|
# detectors, finding filters, IP sets, threat intel sets, and publishing
|
3640
|
-
# destination, with a limit of 50 tags per
|
3641
|
-
#
|
3649
|
+
# destination, with a limit of 50 tags per resource. When invoked, this
|
3650
|
+
# operation returns all assigned tags for a given resource.
|
3642
3651
|
#
|
3643
3652
|
# @option params [required, String] :resource_arn
|
3644
3653
|
# The Amazon Resource Name (ARN) for the given GuardDuty resource.
|
@@ -4287,8 +4296,8 @@ module Aws::GuardDuty
|
|
4287
4296
|
end
|
4288
4297
|
|
4289
4298
|
# Configures the delegated administrator account with the provided
|
4290
|
-
# values. You must provide
|
4291
|
-
# `autoEnableOrganizationMembers` or `autoEnable
|
4299
|
+
# values. You must provide a value for either
|
4300
|
+
# `autoEnableOrganizationMembers` or `autoEnable`, but not both.
|
4292
4301
|
#
|
4293
4302
|
# There might be regional differences because some data sources might
|
4294
4303
|
# not be available in all the Amazon Web Services Regions where
|
@@ -4307,7 +4316,9 @@ module Aws::GuardDuty
|
|
4307
4316
|
# organization.
|
4308
4317
|
#
|
4309
4318
|
# Even though this is still supported, we recommend using
|
4310
|
-
# `AutoEnableOrganizationMembers` to achieve the similar results.
|
4319
|
+
# `AutoEnableOrganizationMembers` to achieve the similar results. You
|
4320
|
+
# must provide the value for either `autoEnableOrganizationMembers` or
|
4321
|
+
# `autoEnable`.
|
4311
4322
|
#
|
4312
4323
|
# @option params [Types::OrganizationDataSourceConfigurations] :data_sources
|
4313
4324
|
# Describes which data sources will be updated.
|
@@ -4317,19 +4328,26 @@ module Aws::GuardDuty
|
|
4317
4328
|
#
|
4318
4329
|
# @option params [String] :auto_enable_organization_members
|
4319
4330
|
# Indicates the auto-enablement configuration of GuardDuty for the
|
4320
|
-
# member accounts in the organization.
|
4331
|
+
# member accounts in the organization. You must provide a value for
|
4332
|
+
# either `autoEnableOrganizationMembers` or `autoEnable`.
|
4333
|
+
#
|
4334
|
+
# Use one of the following configuration values for
|
4335
|
+
# `autoEnableOrganizationMembers`:
|
4321
4336
|
#
|
4322
4337
|
# * `NEW`: Indicates that when a new account joins the organization,
|
4323
4338
|
# they will have GuardDuty enabled automatically.
|
4324
4339
|
#
|
4325
|
-
# * `ALL`: Indicates that all accounts in the
|
4326
|
-
#
|
4327
|
-
#
|
4328
|
-
#
|
4340
|
+
# * `ALL`: Indicates that all accounts in the organization have
|
4341
|
+
# GuardDuty enabled automatically. This includes `NEW` accounts that
|
4342
|
+
# join the organization and accounts that may have been suspended or
|
4343
|
+
# removed from the organization in GuardDuty.
|
4344
|
+
#
|
4345
|
+
# It may take up to 24 hours to update the configuration for all the
|
4346
|
+
# member accounts.
|
4329
4347
|
#
|
4330
4348
|
# * `NONE`: Indicates that GuardDuty will not be automatically enabled
|
4331
|
-
# for any
|
4332
|
-
# each account
|
4349
|
+
# for any account in the organization. The administrator must manage
|
4350
|
+
# GuardDuty for each account in the organization individually.
|
4333
4351
|
#
|
4334
4352
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4335
4353
|
#
|
@@ -4470,7 +4488,7 @@ module Aws::GuardDuty
|
|
4470
4488
|
params: params,
|
4471
4489
|
config: config)
|
4472
4490
|
context[:gem_name] = 'aws-sdk-guardduty'
|
4473
|
-
context[:gem_version] = '1.
|
4491
|
+
context[:gem_version] = '1.78.0'
|
4474
4492
|
Seahorse::Client::Request.new(handlers, context)
|
4475
4493
|
end
|
4476
4494
|
|
@@ -279,6 +279,7 @@ module Aws::GuardDuty
|
|
279
279
|
MalwareProtectionConfiguration = Shapes::StructureShape.new(name: 'MalwareProtectionConfiguration')
|
280
280
|
MalwareProtectionConfigurationResult = Shapes::StructureShape.new(name: 'MalwareProtectionConfigurationResult')
|
281
281
|
MalwareProtectionDataSourceFreeTrial = Shapes::StructureShape.new(name: 'MalwareProtectionDataSourceFreeTrial')
|
282
|
+
ManagementType = Shapes::StringShape.new(name: 'ManagementType')
|
282
283
|
MapEquals = Shapes::ListShape.new(name: 'MapEquals')
|
283
284
|
Master = Shapes::StructureShape.new(name: 'Master')
|
284
285
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
@@ -621,6 +622,7 @@ module Aws::GuardDuty
|
|
621
622
|
CoverageEksClusterDetails.add_member(:covered_nodes, Shapes::ShapeRef.new(shape: Long, location_name: "coveredNodes"))
|
622
623
|
CoverageEksClusterDetails.add_member(:compatible_nodes, Shapes::ShapeRef.new(shape: Long, location_name: "compatibleNodes"))
|
623
624
|
CoverageEksClusterDetails.add_member(:addon_details, Shapes::ShapeRef.new(shape: AddonDetails, location_name: "addonDetails"))
|
625
|
+
CoverageEksClusterDetails.add_member(:management_type, Shapes::ShapeRef.new(shape: ManagementType, location_name: "managementType"))
|
624
626
|
CoverageEksClusterDetails.struct_class = Types::CoverageEksClusterDetails
|
625
627
|
|
626
628
|
CoverageFilterCondition.add_member(:equals, Shapes::ShapeRef.new(shape: Equals, location_name: "equals"))
|
@@ -716,13 +716,25 @@ module Aws::GuardDuty
|
|
716
716
|
# Information about the installed EKS add-on.
|
717
717
|
# @return [Types::AddonDetails]
|
718
718
|
#
|
719
|
+
# @!attribute [rw] management_type
|
720
|
+
# Indicates how the Amazon EKS add-on GuardDuty agent is managed for
|
721
|
+
# this EKS cluster.
|
722
|
+
#
|
723
|
+
# `AUTO_MANAGED` indicates GuardDuty deploys and manages updates for
|
724
|
+
# this resource.
|
725
|
+
#
|
726
|
+
# `MANUAL` indicates that you are responsible to deploy, update, and
|
727
|
+
# manage the Amazon EKS add-on GuardDuty agent for this resource.
|
728
|
+
# @return [String]
|
729
|
+
#
|
719
730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/CoverageEksClusterDetails AWS API Documentation
|
720
731
|
#
|
721
732
|
class CoverageEksClusterDetails < Struct.new(
|
722
733
|
:cluster_name,
|
723
734
|
:covered_nodes,
|
724
735
|
:compatible_nodes,
|
725
|
-
:addon_details
|
736
|
+
:addon_details,
|
737
|
+
:management_type)
|
726
738
|
SENSITIVE = []
|
727
739
|
include Aws::Structure
|
728
740
|
end
|
@@ -1928,14 +1940,14 @@ module Aws::GuardDuty
|
|
1928
1940
|
# * `NEW`: Indicates that when a new account joins the organization,
|
1929
1941
|
# they will have GuardDuty enabled automatically.
|
1930
1942
|
#
|
1931
|
-
# * `ALL`: Indicates that all accounts in the
|
1932
|
-
#
|
1933
|
-
#
|
1934
|
-
#
|
1943
|
+
# * `ALL`: Indicates that all accounts in the organization have
|
1944
|
+
# GuardDuty enabled automatically. This includes `NEW` accounts that
|
1945
|
+
# join the organization and accounts that may have been suspended or
|
1946
|
+
# removed from the organization in GuardDuty.
|
1935
1947
|
#
|
1936
1948
|
# * `NONE`: Indicates that GuardDuty will not be automatically enabled
|
1937
|
-
# for any
|
1938
|
-
# for each account
|
1949
|
+
# for any account in the organization. The administrator must manage
|
1950
|
+
# GuardDuty for each account in the organization individually.
|
1939
1951
|
# @return [String]
|
1940
1952
|
#
|
1941
1953
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DescribeOrganizationConfigurationResponse AWS API Documentation
|
@@ -5005,7 +5017,24 @@ module Aws::GuardDuty
|
|
5005
5017
|
#
|
5006
5018
|
# @!attribute [rw] auto_enable
|
5007
5019
|
# The status of the additional configuration that will be configured
|
5008
|
-
# for the organization.
|
5020
|
+
# for the organization. Use one of the following values to configure
|
5021
|
+
# the feature status for the entire organization:
|
5022
|
+
#
|
5023
|
+
# * `NEW`: Indicates that when a new account joins the organization,
|
5024
|
+
# they will have the additional configuration enabled automatically.
|
5025
|
+
#
|
5026
|
+
# * `ALL`: Indicates that all accounts in the organization have the
|
5027
|
+
# additional configuration enabled automatically. This includes
|
5028
|
+
# `NEW` accounts that join the organization and accounts that may
|
5029
|
+
# have been suspended or removed from the organization in GuardDuty.
|
5030
|
+
#
|
5031
|
+
# It may take up to 24 hours to update the configuration for all the
|
5032
|
+
# member accounts.
|
5033
|
+
#
|
5034
|
+
# * `NONE`: Indicates that the additional configuration will not be
|
5035
|
+
# automatically enabled for any account in the organization. The
|
5036
|
+
# administrator must manage the additional configuration for each
|
5037
|
+
# account individually.
|
5009
5038
|
# @return [String]
|
5010
5039
|
#
|
5011
5040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/OrganizationAdditionalConfiguration AWS API Documentation
|
@@ -5026,14 +5055,25 @@ module Aws::GuardDuty
|
|
5026
5055
|
# @return [String]
|
5027
5056
|
#
|
5028
5057
|
# @!attribute [rw] auto_enable
|
5029
|
-
# Describes
|
5030
|
-
# configured for the member accounts within the organization.
|
5058
|
+
# Describes the status of the additional configuration that is
|
5059
|
+
# configured for the member accounts within the organization. One of
|
5060
|
+
# the following values is the status for the entire organization:
|
5031
5061
|
#
|
5032
|
-
#
|
5033
|
-
#
|
5062
|
+
# * `NEW`: Indicates that when a new account joins the organization,
|
5063
|
+
# they will have the additional configuration enabled automatically.
|
5034
5064
|
#
|
5035
|
-
#
|
5036
|
-
#
|
5065
|
+
# * `ALL`: Indicates that all accounts in the organization have the
|
5066
|
+
# additional configuration enabled automatically. This includes
|
5067
|
+
# `NEW` accounts that join the organization and accounts that may
|
5068
|
+
# have been suspended or removed from the organization in GuardDuty.
|
5069
|
+
#
|
5070
|
+
# It may take up to 24 hours to update the configuration for all the
|
5071
|
+
# member accounts.
|
5072
|
+
#
|
5073
|
+
# * `NONE`: Indicates that the additional configuration will not be
|
5074
|
+
# automatically enabled for any account in the organization. The
|
5075
|
+
# administrator must manage the additional configuration for each
|
5076
|
+
# account individually.
|
5037
5077
|
# @return [String]
|
5038
5078
|
#
|
5039
5079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/OrganizationAdditionalConfigurationResult AWS API Documentation
|
@@ -5140,7 +5180,23 @@ module Aws::GuardDuty
|
|
5140
5180
|
#
|
5141
5181
|
# @!attribute [rw] auto_enable
|
5142
5182
|
# The status of the feature that will be configured for the
|
5143
|
-
# organization.
|
5183
|
+
# organization. Use one of the following values to configure the
|
5184
|
+
# feature status for the entire organization:
|
5185
|
+
#
|
5186
|
+
# * `NEW`: Indicates that when a new account joins the organization,
|
5187
|
+
# they will have the feature enabled automatically.
|
5188
|
+
#
|
5189
|
+
# * `ALL`: Indicates that all accounts in the organization have the
|
5190
|
+
# feature enabled automatically. This includes `NEW` accounts that
|
5191
|
+
# join the organization and accounts that may have been suspended or
|
5192
|
+
# removed from the organization in GuardDuty.
|
5193
|
+
#
|
5194
|
+
# It may take up to 24 hours to update the configuration for all the
|
5195
|
+
# member accounts.
|
5196
|
+
#
|
5197
|
+
# * `NONE`: Indicates that the feature will not be automatically
|
5198
|
+
# enabled for any account in the organization. The administrator
|
5199
|
+
# must manage the feature for each account individually.
|
5144
5200
|
# @return [String]
|
5145
5201
|
#
|
5146
5202
|
# @!attribute [rw] additional_configuration
|
@@ -5166,14 +5222,20 @@ module Aws::GuardDuty
|
|
5166
5222
|
# @return [String]
|
5167
5223
|
#
|
5168
5224
|
# @!attribute [rw] auto_enable
|
5169
|
-
# Describes
|
5225
|
+
# Describes the status of the feature that is configured for the
|
5170
5226
|
# member accounts within the organization.
|
5171
5227
|
#
|
5172
|
-
#
|
5173
|
-
#
|
5228
|
+
# * `NEW`: Indicates that when a new account joins the organization,
|
5229
|
+
# they will have the feature enabled automatically.
|
5230
|
+
#
|
5231
|
+
# * `ALL`: Indicates that all accounts in the organization have the
|
5232
|
+
# feature enabled automatically. This includes `NEW` accounts that
|
5233
|
+
# join the organization and accounts that may have been suspended or
|
5234
|
+
# removed from the organization in GuardDuty.
|
5174
5235
|
#
|
5175
|
-
#
|
5176
|
-
#
|
5236
|
+
# * `NONE`: Indicates that the feature will not be automatically
|
5237
|
+
# enabled for any account in the organization. In this case, each
|
5238
|
+
# account will be managed individually by the administrator.
|
5177
5239
|
# @return [String]
|
5178
5240
|
#
|
5179
5241
|
# @!attribute [rw] additional_configuration
|
@@ -7079,7 +7141,9 @@ module Aws::GuardDuty
|
|
7079
7141
|
# organization.
|
7080
7142
|
#
|
7081
7143
|
# Even though this is still supported, we recommend using
|
7082
|
-
# `AutoEnableOrganizationMembers` to achieve the similar results.
|
7144
|
+
# `AutoEnableOrganizationMembers` to achieve the similar results. You
|
7145
|
+
# must provide the value for either `autoEnableOrganizationMembers` or
|
7146
|
+
# `autoEnable`.
|
7083
7147
|
# @return [Boolean]
|
7084
7148
|
#
|
7085
7149
|
# @!attribute [rw] data_sources
|
@@ -7092,19 +7156,26 @@ module Aws::GuardDuty
|
|
7092
7156
|
#
|
7093
7157
|
# @!attribute [rw] auto_enable_organization_members
|
7094
7158
|
# Indicates the auto-enablement configuration of GuardDuty for the
|
7095
|
-
# member accounts in the organization.
|
7159
|
+
# member accounts in the organization. You must provide a value for
|
7160
|
+
# either `autoEnableOrganizationMembers` or `autoEnable`.
|
7161
|
+
#
|
7162
|
+
# Use one of the following configuration values for
|
7163
|
+
# `autoEnableOrganizationMembers`:
|
7096
7164
|
#
|
7097
7165
|
# * `NEW`: Indicates that when a new account joins the organization,
|
7098
7166
|
# they will have GuardDuty enabled automatically.
|
7099
7167
|
#
|
7100
|
-
# * `ALL`: Indicates that all accounts in the
|
7101
|
-
#
|
7102
|
-
#
|
7103
|
-
#
|
7168
|
+
# * `ALL`: Indicates that all accounts in the organization have
|
7169
|
+
# GuardDuty enabled automatically. This includes `NEW` accounts that
|
7170
|
+
# join the organization and accounts that may have been suspended or
|
7171
|
+
# removed from the organization in GuardDuty.
|
7172
|
+
#
|
7173
|
+
# It may take up to 24 hours to update the configuration for all the
|
7174
|
+
# member accounts.
|
7104
7175
|
#
|
7105
7176
|
# * `NONE`: Indicates that GuardDuty will not be automatically enabled
|
7106
|
-
# for any
|
7107
|
-
# for each account
|
7177
|
+
# for any account in the organization. The administrator must manage
|
7178
|
+
# GuardDuty for each account in the organization individually.
|
7108
7179
|
# @return [String]
|
7109
7180
|
#
|
7110
7181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateOrganizationConfigurationRequest AWS API Documentation
|
data/lib/aws-sdk-guardduty.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-guardduty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.78.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|