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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +3 -3
- data/lib/aws-sdk-guardduty/client_api.rb +1 -1
- data/lib/aws-sdk-guardduty/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-guardduty/types.rb +2 -2
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/types.rbs +1 -1
- 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: b06fcbb80e1dd42826e662685f1b189a653f605bff32d61e9b85b17a29c975fa
|
4
|
+
data.tar.gz: 0f3280839fe5cfb368ff683754f618e07617d5035a0e58f46696cc0f0ec87076
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5a358051b1b22cf856f1eead7af178c51916e5b2e919c29a12dd68a9d78fb0dc179d90f7ecbbba61536360ba6a13188d933be257e3a4a5786662bbcf5cd04e8
|
7
|
+
data.tar.gz: eacd54b373769ea145ec040927554285aa9b393dec71998b677980781b903e9fe34ade0213e707709e2a30d6798979da6490b0bd7c48f9da378201f7e41b401c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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: "
|
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.
|
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:
|
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 [
|
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 [
|
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 [
|
26
|
+
# @return [boolean]
|
27
27
|
#
|
28
28
|
# @!attribute endpoint
|
29
29
|
# Override the endpoint used to send this request
|
30
30
|
#
|
31
|
-
# @return [
|
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
|
|
data/lib/aws-sdk-guardduty.rb
CHANGED
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
|