aws-sdk-guardduty 1.129.0 → 1.130.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: a417ede7e113a5f3c1a0f0f67fd92542181529d5b3c8b8d56fc39867de889078
4
- data.tar.gz: aa1f67b506e519d5fb94de2941b5d5fd9e911b5581ff32072d12c128eccbd6e9
3
+ metadata.gz: b06fcbb80e1dd42826e662685f1b189a653f605bff32d61e9b85b17a29c975fa
4
+ data.tar.gz: 0f3280839fe5cfb368ff683754f618e07617d5035a0e58f46696cc0f0ec87076
5
5
  SHA512:
6
- metadata.gz: 03517da208d4e7c21eb3d45633ee257e7e9ee69ceb9bc52b5491081d7cbdd896c6508ba3bc8a98a50130542afccaceb561c7e88f8357866e29a706317f96727c
7
- data.tar.gz: ab9f2ad72d598aa49a5dfc140dba57d2cd27c70856a05b4e869875159712234c374ec5a1cd5915ace7f51e3b39a4ae2a864bfb9931e6255e27bfa79bd74a2b38
6
+ metadata.gz: d5a358051b1b22cf856f1eead7af178c51916e5b2e919c29a12dd68a9d78fb0dc179d90f7ecbbba61536360ba6a13188d933be257e3a4a5786662bbcf5cd04e8
7
+ data.tar.gz: eacd54b373769ea145ec040927554285aa9b393dec71998b677980781b903e9fe34ade0213e707709e2a30d6798979da6490b0bd7c48f9da378201f7e41b401c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.130.0 (2025-10-15)
5
+ ------------------
6
+
7
+ * Feature - Added default pagination value for ListMalwareProtectionPlans API and updated UpdateFindingsFeedback API
8
+
4
9
  1.129.0 (2025-10-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.130.0
@@ -4744,7 +4744,7 @@ module Aws::GuardDuty
4744
4744
  # this parameter to null on your first call to the list action. For
4745
4745
  # subsequent calls to the action, fill nextToken in the request with the
4746
4746
  # value of `NextToken` from the previous response to continue listing
4747
- # data.
4747
+ # data. The default page size is 100 plans.
4748
4748
  #
4749
4749
  # @return [Types::ListMalwareProtectionPlansResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4750
4750
  #
@@ -5581,7 +5581,7 @@ module Aws::GuardDuty
5581
5581
  # detector_id: "DetectorId", # required
5582
5582
  # finding_ids: ["FindingId"], # required
5583
5583
  # feedback: "USEFUL", # required, accepts USEFUL, NOT_USEFUL
5584
- # comments: "String",
5584
+ # comments: "SensitiveString",
5585
5585
  # })
5586
5586
  #
5587
5587
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateFindingsFeedback AWS API Documentation
@@ -6209,7 +6209,7 @@ module Aws::GuardDuty
6209
6209
  tracer: tracer
6210
6210
  )
6211
6211
  context[:gem_name] = 'aws-sdk-guardduty'
6212
- context[:gem_version] = '1.129.0'
6212
+ context[:gem_version] = '1.130.0'
6213
6213
  Seahorse::Client::Request.new(handlers, context)
6214
6214
  end
6215
6215
 
@@ -2672,7 +2672,7 @@ module Aws::GuardDuty
2672
2672
  UpdateFindingsFeedbackRequest.add_member(:detector_id, Shapes::ShapeRef.new(shape: DetectorId, required: true, location: "uri", location_name: "detectorId"))
2673
2673
  UpdateFindingsFeedbackRequest.add_member(:finding_ids, Shapes::ShapeRef.new(shape: FindingIds, required: true, location_name: "findingIds"))
2674
2674
  UpdateFindingsFeedbackRequest.add_member(:feedback, Shapes::ShapeRef.new(shape: Feedback, required: true, location_name: "feedback"))
2675
- UpdateFindingsFeedbackRequest.add_member(:comments, Shapes::ShapeRef.new(shape: String, location_name: "comments"))
2675
+ UpdateFindingsFeedbackRequest.add_member(:comments, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "comments"))
2676
2676
  UpdateFindingsFeedbackRequest.struct_class = Types::UpdateFindingsFeedbackRequest
2677
2677
 
2678
2678
  UpdateFindingsFeedbackResponse.struct_class = Types::UpdateFindingsFeedbackResponse
@@ -13,22 +13,22 @@ module Aws::GuardDuty
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -6233,7 +6233,7 @@ module Aws::GuardDuty
6233
6233
  # this parameter to null on your first call to the list action. For
6234
6234
  # subsequent calls to the action, fill nextToken in the request with
6235
6235
  # the value of `NextToken` from the previous response to continue
6236
- # listing data.
6236
+ # listing data. The default page size is 100 plans.
6237
6237
  # @return [String]
6238
6238
  #
6239
6239
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ListMalwareProtectionPlansRequest AWS API Documentation
@@ -10203,7 +10203,7 @@ module Aws::GuardDuty
10203
10203
  :finding_ids,
10204
10204
  :feedback,
10205
10205
  :comments)
10206
- SENSITIVE = []
10206
+ SENSITIVE = [:comments]
10207
10207
  include Aws::Structure
10208
10208
  end
10209
10209
 
@@ -54,7 +54,7 @@ module Aws::GuardDuty
54
54
  autoload :EndpointProvider, 'aws-sdk-guardduty/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-guardduty/endpoints'
56
56
 
57
- GEM_VERSION = '1.129.0'
57
+ GEM_VERSION = '1.130.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -2529,7 +2529,7 @@ module Aws::GuardDuty
2529
2529
  attr_accessor finding_ids: ::Array[::String]
2530
2530
  attr_accessor feedback: ("USEFUL" | "NOT_USEFUL")
2531
2531
  attr_accessor comments: ::String
2532
- SENSITIVE: []
2532
+ SENSITIVE: [:comments]
2533
2533
  end
2534
2534
 
2535
2535
  class UpdateFindingsFeedbackResponse < Aws::EmptyStructure
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-guardduty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.129.0
4
+ version: 1.130.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services