aws-sdk-guardduty 1.78.0 → 1.79.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed911abbebf94435926713edbff9b3988d532f20b40a37574bc68987f72dfab7
4
- data.tar.gz: 83af089eb78e60cfe96e3ef9f1d31433b014817e930f9c44645db5e1b8a35377
3
+ metadata.gz: 3f6c3be53bdae48921e99e4f321a0f09ad0689a9fac2cb764ce0ccd95173de22
4
+ data.tar.gz: 1227696c6356dd000d92563c4aaa144a3046cc69bbcd67123c7f716d8d184f5c
5
5
  SHA512:
6
- metadata.gz: 7e949b005e19a67da9d4a0701537c7fa2df738e313a9a1b01e27e6357224d48eae5b1bd2da8ea685c429624010981a995ef2e15f25b197642fad87cf7951589b
7
- data.tar.gz: f3ad6f84a149fbd8f409bbf3098835fb8a13a36d178087a103fde88f9344a8fbaf120bd153bcbe9e97d9a0c5c6944d57d459b8a02a28cf0bba53e7b309af65cf
6
+ metadata.gz: 3fbbf62d159a40d5625b493e93fe15be807c35aaa12d8b4eb41632f6f2ec09abf54baaf0496fc9e3a52ebff654d51de56a98184af35247934be3a10b4da721df
7
+ data.tar.gz: 128c7a77344a5a1bf56264cca50aa129e3eb4e691c6d0cfffce8ec3eea080d0efc586f1ee455db96aa6b962e3b1f165c456f51f943e89df05806d72d9d436bcb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2023-09-22)
5
+ ------------------
6
+
7
+ * Feature - Add `EKS_CLUSTER_NAME` to filter and sort key.
8
+
4
9
  1.78.0 (2023-09-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.79.0
@@ -1784,7 +1784,7 @@ module Aws::GuardDuty
1784
1784
  # management account can run this API operation.
1785
1785
  #
1786
1786
  # @option params [required, String] :admin_account_id
1787
- # The Amazon Web Services Account ID for the organization account to be
1787
+ # The Amazon Web Services account ID for the organization account to be
1788
1788
  # enabled as a GuardDuty delegated administrator.
1789
1789
  #
1790
1790
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -1868,7 +1868,7 @@ module Aws::GuardDuty
1868
1868
  # filter_criteria: {
1869
1869
  # filter_criterion: [
1870
1870
  # {
1871
- # criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION, MANAGEMENT_TYPE
1871
+ # criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION, MANAGEMENT_TYPE, EKS_CLUSTER_NAME
1872
1872
  # filter_condition: {
1873
1873
  # equals: ["String"],
1874
1874
  # not_equals: ["String"],
@@ -2959,9 +2959,9 @@ module Aws::GuardDuty
2959
2959
 
2960
2960
  # Invites Amazon Web Services accounts to become members of an
2961
2961
  # organization administered by the Amazon Web Services account that
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].
2962
+ # invokes this API. If you are using Amazon Web Services Organizations
2963
+ # to manage your GuardDuty environment, this step is not needed. For
2964
+ # more information, see [Managing accounts with organizations][1].
2965
2965
  #
2966
2966
  # To invite Amazon Web Services accounts, the first step is to ensure
2967
2967
  # that GuardDuty has been enabled in the potential member accounts. You
@@ -3077,7 +3077,7 @@ module Aws::GuardDuty
3077
3077
  # filter_criteria: {
3078
3078
  # filter_criterion: [
3079
3079
  # {
3080
- # criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION, MANAGEMENT_TYPE
3080
+ # criterion_key: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, RESOURCE_TYPE, COVERAGE_STATUS, ADDON_VERSION, MANAGEMENT_TYPE, EKS_CLUSTER_NAME
3081
3081
  # filter_condition: {
3082
3082
  # equals: ["String"],
3083
3083
  # not_equals: ["String"],
@@ -3086,7 +3086,7 @@ module Aws::GuardDuty
3086
3086
  # ],
3087
3087
  # },
3088
3088
  # sort_criteria: {
3089
- # attribute_name: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, COVERAGE_STATUS, ISSUE, ADDON_VERSION, UPDATED_AT
3089
+ # attribute_name: "ACCOUNT_ID", # accepts ACCOUNT_ID, CLUSTER_NAME, COVERAGE_STATUS, ISSUE, ADDON_VERSION, UPDATED_AT, EKS_CLUSTER_NAME
3090
3090
  # order_by: "ASC", # accepts ASC, DESC
3091
3091
  # },
3092
3092
  # })
@@ -3552,7 +3552,7 @@ module Aws::GuardDuty
3552
3552
  req.send_request(options)
3553
3553
  end
3554
3554
 
3555
- # Lists the accounts configured as GuardDuty delegated administrators.
3555
+ # Lists the accounts designated as GuardDuty delegated administrators.
3556
3556
  # Only the organization's management account can run this API
3557
3557
  # operation.
3558
3558
  #
@@ -4312,12 +4312,12 @@ module Aws::GuardDuty
4312
4312
  # The ID of the detector that configures the delegated administrator.
4313
4313
  #
4314
4314
  # @option params [Boolean] :auto_enable
4315
- # Indicates whether to automatically enable member accounts in the
4316
- # organization.
4315
+ # Represents whether or not to automatically enable member accounts in
4316
+ # the organization.
4317
4317
  #
4318
4318
  # Even though this is still supported, we recommend using
4319
4319
  # `AutoEnableOrganizationMembers` to achieve the similar results. You
4320
- # must provide the value for either `autoEnableOrganizationMembers` or
4320
+ # must provide a value for either `autoEnableOrganizationMembers` or
4321
4321
  # `autoEnable`.
4322
4322
  #
4323
4323
  # @option params [Types::OrganizationDataSourceConfigurations] :data_sources
@@ -4488,7 +4488,7 @@ module Aws::GuardDuty
4488
4488
  params: params,
4489
4489
  config: config)
4490
4490
  context[:gem_name] = 'aws-sdk-guardduty'
4491
- context[:gem_version] = '1.78.0'
4491
+ context[:gem_version] = '1.79.0'
4492
4492
  Seahorse::Client::Request.new(handlers, context)
4493
4493
  end
4494
4494
 
@@ -781,6 +781,11 @@ module Aws::GuardDuty
781
781
  #
782
782
  # @!attribute [rw] criterion_key
783
783
  # An enum value representing possible filter fields.
784
+ #
785
+ # <note markdown="1"> Replace the enum value `CLUSTER_NAME` with `EKS_CLUSTER_NAME`.
786
+ # `CLUSTER_NAME` has been deprecated.
787
+ #
788
+ # </note>
784
789
  # @return [String]
785
790
  #
786
791
  # @!attribute [rw] filter_condition
@@ -868,6 +873,11 @@ module Aws::GuardDuty
868
873
  #
869
874
  # @!attribute [rw] attribute_name
870
875
  # Represents the field name used to sort the coverage details.
876
+ #
877
+ # <note markdown="1"> Replace the enum value `CLUSTER_NAME` with `EKS_CLUSTER_NAME`.
878
+ # `CLUSTER_NAME` has been deprecated.
879
+ #
880
+ # </note>
871
881
  # @return [String]
872
882
  #
873
883
  # @!attribute [rw] order_by
@@ -2519,7 +2529,7 @@ module Aws::GuardDuty
2519
2529
  end
2520
2530
 
2521
2531
  # @!attribute [rw] admin_account_id
2522
- # The Amazon Web Services Account ID for the organization account to
2532
+ # The Amazon Web Services account ID for the organization account to
2523
2533
  # be enabled as a GuardDuty delegated administrator.
2524
2534
  # @return [String]
2525
2535
  #
@@ -2601,6 +2611,11 @@ module Aws::GuardDuty
2601
2611
  # @!attribute [rw] criterion_key
2602
2612
  # An enum value representing possible scan properties to match with
2603
2613
  # given scan entries.
2614
+ #
2615
+ # <note markdown="1"> Replace the enum value `CLUSTER_NAME` with `EKS_CLUSTER_NAME`.
2616
+ # `CLUSTER_NAME` has been deprecated.
2617
+ #
2618
+ # </note>
2604
2619
  # @return [String]
2605
2620
  #
2606
2621
  # @!attribute [rw] filter_condition
@@ -2616,8 +2631,8 @@ module Aws::GuardDuty
2616
2631
  include Aws::Structure
2617
2632
  end
2618
2633
 
2619
- # Contains information about the finding, which is generated when
2620
- # abnormal or suspicious activity is detected.
2634
+ # Contains information about the finding that is generated when abnormal
2635
+ # or suspicious activity is detected.
2621
2636
  #
2622
2637
  # @!attribute [rw] account_id
2623
2638
  # The ID of the account in which the finding was generated.
@@ -5179,9 +5194,9 @@ module Aws::GuardDuty
5179
5194
  # @return [String]
5180
5195
  #
5181
5196
  # @!attribute [rw] auto_enable
5182
- # The status of the feature that will be configured for the
5183
- # organization. Use one of the following values to configure the
5184
- # feature status for the entire organization:
5197
+ # Describes the status of the feature that is configured for the
5198
+ # member accounts within the organization. One of the following values
5199
+ # is the status for the entire organization:
5185
5200
  #
5186
5201
  # * `NEW`: Indicates that when a new account joins the organization,
5187
5202
  # they will have the feature enabled automatically.
@@ -6217,16 +6232,16 @@ module Aws::GuardDuty
6217
6232
  include Aws::Structure
6218
6233
  end
6219
6234
 
6220
- # Represents key, value pair to be matched against given resource
6235
+ # Represents the `key:value` pair to be matched against given resource
6221
6236
  # property.
6222
6237
  #
6223
6238
  # @!attribute [rw] key
6224
- # Represents *key* **** in the map condition.
6239
+ # Represents the **key** in the map condition.
6225
6240
  # @return [String]
6226
6241
  #
6227
6242
  # @!attribute [rw] value
6228
- # Represents optional *value* **** in the map condition. If not
6229
- # specified, only *key* **** will be matched.
6243
+ # Represents optional **value** in the map condition. If not
6244
+ # specified, only the **key** will be matched.
6230
6245
  # @return [String]
6231
6246
  #
6232
6247
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ScanConditionPair AWS API Documentation
@@ -7137,12 +7152,12 @@ module Aws::GuardDuty
7137
7152
  # @return [String]
7138
7153
  #
7139
7154
  # @!attribute [rw] auto_enable
7140
- # Indicates whether to automatically enable member accounts in the
7141
- # organization.
7155
+ # Represents whether or not to automatically enable member accounts in
7156
+ # the organization.
7142
7157
  #
7143
7158
  # Even though this is still supported, we recommend using
7144
7159
  # `AutoEnableOrganizationMembers` to achieve the similar results. You
7145
- # must provide the value for either `autoEnableOrganizationMembers` or
7160
+ # must provide a value for either `autoEnableOrganizationMembers` or
7146
7161
  # `autoEnable`.
7147
7162
  # @return [Boolean]
7148
7163
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-guardduty/customizations'
52
52
  # @!group service
53
53
  module Aws::GuardDuty
54
54
 
55
- GEM_VERSION = '1.78.0'
55
+ GEM_VERSION = '1.79.0'
56
56
 
57
57
  end
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.78.0
4
+ version: 1.79.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-09-13 00:00:00.000000000 Z
11
+ date: 2023-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core