aws-sdk-guardduty 1.114.0 → 1.116.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-guardduty/client.rb +2 -3
- data/lib/aws-sdk-guardduty/types.rb +3 -1
- data/lib/aws-sdk-guardduty.rb +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: b081dd2f2e39a4120b07f3d1d2d26200fbb6efe8fe38169daa0f5b70af3bc215
|
4
|
+
data.tar.gz: 9fb64fb02ed361673879dd4b5f1e347185a40ab94459ea1fb7529c570c252a37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43b92f3af1a3298c4b48f78911a60ecaf8775e689cb8e41b57080d5c4e64823e7f62ed3d82d88fac9f7a06e115c855722eb371726bc4e28bb594d2c9db7569b3
|
7
|
+
data.tar.gz: 4e1c9223d83cf836f3ee3da28a0ca8e3a833482cd3486c879c010c8c1f2245e1d592e85beb87ef0820f704ac29d7b16062732eef9982772b295c10a5015f6912
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.116.0 (2025-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.115.0 (2025-05-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updated description of a data structure.
|
13
|
+
|
4
14
|
1.114.0 (2025-05-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.116.0
|
@@ -200,8 +200,7 @@ module Aws::GuardDuty
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -5557,7 +5556,7 @@ module Aws::GuardDuty
|
|
5557
5556
|
tracer: tracer
|
5558
5557
|
)
|
5559
5558
|
context[:gem_name] = 'aws-sdk-guardduty'
|
5560
|
-
context[:gem_version] = '1.
|
5559
|
+
context[:gem_version] = '1.116.0'
|
5561
5560
|
Seahorse::Client::Request.new(handlers, context)
|
5562
5561
|
end
|
5563
5562
|
|
@@ -3646,7 +3646,9 @@ module Aws::GuardDuty
|
|
3646
3646
|
include Aws::Structure
|
3647
3647
|
end
|
3648
3648
|
|
3649
|
-
# Contains information about the location of the remote IP address.
|
3649
|
+
# Contains information about the location of the remote IP address. By
|
3650
|
+
# default, GuardDuty returns `Geolocation` with `Lat` and `Lon` as
|
3651
|
+
# `0.0`.
|
3650
3652
|
#
|
3651
3653
|
# @!attribute [rw] lat
|
3652
3654
|
# The latitude information of the remote IP address.
|
data/lib/aws-sdk-guardduty.rb
CHANGED