aws-sdk-guardduty 1.102.0 → 1.104.0
Sign up to get free protection for your applications and to get access to all the features.
- 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/client_api.rb +1 -0
- data/lib/aws-sdk-guardduty/types.rb +6 -0
- data/lib/aws-sdk-guardduty.rb +3 -1
- data/sig/types.rbs +1 -0
- 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: d6f8b28646f117f141450193dc2a5d051019dd86d41a345c8077550bf8f397ba
|
4
|
+
data.tar.gz: 04c40d19d99eac2684a965e372199e12cf3da2bb09fe687bd935eb5bb016f627
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0ade150d7e64a9b7e532bda9fb742d3ac391aeba7975dc323fdad7dcfcc5bad05b8a9f7c3c16b77b18cb978bde66ef09f81c8270142d5711b4a00a2ac399521
|
7
|
+
data.tar.gz: afe870acc1678e91751e36287897872e83daf03cefb35d9fda961114d1641c0ae661057faf87a9e517f7c0cc550530af83b011df7850875f7367fcb456996a7a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.104.0 (2024-10-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added a new field for network connection details.
|
8
|
+
|
9
|
+
1.103.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.102.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.104.0
|
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:guardduty)
|
40
|
-
|
41
39
|
module Aws::GuardDuty
|
42
40
|
# An API client for GuardDuty. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -2497,6 +2495,7 @@ module Aws::GuardDuty
|
|
2497
2495
|
# resp.findings[0].service.action.network_connection_action.protocol #=> String
|
2498
2496
|
# resp.findings[0].service.action.network_connection_action.local_ip_details.ip_address_v4 #=> String
|
2499
2497
|
# resp.findings[0].service.action.network_connection_action.local_ip_details.ip_address_v6 #=> String
|
2498
|
+
# resp.findings[0].service.action.network_connection_action.local_network_interface #=> String
|
2500
2499
|
# resp.findings[0].service.action.network_connection_action.remote_ip_details.city.city_name #=> String
|
2501
2500
|
# resp.findings[0].service.action.network_connection_action.remote_ip_details.country.country_code #=> String
|
2502
2501
|
# resp.findings[0].service.action.network_connection_action.remote_ip_details.country.country_name #=> String
|
@@ -5061,7 +5060,7 @@ module Aws::GuardDuty
|
|
5061
5060
|
tracer: tracer
|
5062
5061
|
)
|
5063
5062
|
context[:gem_name] = 'aws-sdk-guardduty'
|
5064
|
-
context[:gem_version] = '1.
|
5063
|
+
context[:gem_version] = '1.104.0'
|
5065
5064
|
Seahorse::Client::Request.new(handlers, context)
|
5066
5065
|
end
|
5067
5066
|
|
@@ -1761,6 +1761,7 @@ module Aws::GuardDuty
|
|
1761
1761
|
NetworkConnectionAction.add_member(:local_port_details, Shapes::ShapeRef.new(shape: LocalPortDetails, location_name: "localPortDetails"))
|
1762
1762
|
NetworkConnectionAction.add_member(:protocol, Shapes::ShapeRef.new(shape: String, location_name: "protocol"))
|
1763
1763
|
NetworkConnectionAction.add_member(:local_ip_details, Shapes::ShapeRef.new(shape: LocalIpDetails, location_name: "localIpDetails"))
|
1764
|
+
NetworkConnectionAction.add_member(:local_network_interface, Shapes::ShapeRef.new(shape: String, location_name: "localNetworkInterface"))
|
1764
1765
|
NetworkConnectionAction.add_member(:remote_ip_details, Shapes::ShapeRef.new(shape: RemoteIpDetails, location_name: "remoteIpDetails"))
|
1765
1766
|
NetworkConnectionAction.add_member(:remote_port_details, Shapes::ShapeRef.new(shape: RemotePortDetails, location_name: "remotePortDetails"))
|
1766
1767
|
NetworkConnectionAction.struct_class = Types::NetworkConnectionAction
|
@@ -5868,6 +5868,11 @@ module Aws::GuardDuty
|
|
5868
5868
|
# The local IP information of the connection.
|
5869
5869
|
# @return [Types::LocalIpDetails]
|
5870
5870
|
#
|
5871
|
+
# @!attribute [rw] local_network_interface
|
5872
|
+
# The EC2 instance's local elastic network interface utilized for the
|
5873
|
+
# connection.
|
5874
|
+
# @return [String]
|
5875
|
+
#
|
5871
5876
|
# @!attribute [rw] remote_ip_details
|
5872
5877
|
# The remote IP information of the connection.
|
5873
5878
|
# @return [Types::RemoteIpDetails]
|
@@ -5884,6 +5889,7 @@ module Aws::GuardDuty
|
|
5884
5889
|
:local_port_details,
|
5885
5890
|
:protocol,
|
5886
5891
|
:local_ip_details,
|
5892
|
+
:local_network_interface,
|
5887
5893
|
:remote_ip_details,
|
5888
5894
|
:remote_port_details)
|
5889
5895
|
SENSITIVE = []
|
data/lib/aws-sdk-guardduty.rb
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:guardduty)
|
15
|
+
|
14
16
|
# This module provides support for Amazon GuardDuty. This module is available in the
|
15
17
|
# `aws-sdk-guardduty` gem.
|
16
18
|
#
|
@@ -52,7 +54,7 @@ module Aws::GuardDuty
|
|
52
54
|
autoload :EndpointProvider, 'aws-sdk-guardduty/endpoint_provider'
|
53
55
|
autoload :Endpoints, 'aws-sdk-guardduty/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.104.0'
|
56
58
|
|
57
59
|
end
|
58
60
|
|
data/sig/types.rbs
CHANGED
@@ -1542,6 +1542,7 @@ module Aws::GuardDuty
|
|
1542
1542
|
attr_accessor local_port_details: Types::LocalPortDetails
|
1543
1543
|
attr_accessor protocol: ::String
|
1544
1544
|
attr_accessor local_ip_details: Types::LocalIpDetails
|
1545
|
+
attr_accessor local_network_interface: ::String
|
1545
1546
|
attr_accessor remote_ip_details: Types::RemoteIpDetails
|
1546
1547
|
attr_accessor remote_port_details: Types::RemotePortDetails
|
1547
1548
|
SENSITIVE: []
|
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.104.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: 2024-
|
11
|
+
date: 2024-10-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|