aws-sdk-guardduty 1.103.0 → 1.104.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c222231f39e47ebade6f969150997833fa5f64479826a5468f867adada98db18
4
- data.tar.gz: 69a36c8df41949ee236809431ab1d5cb3cd8a96f920967cb4a85f4e07337c060
3
+ metadata.gz: d6f8b28646f117f141450193dc2a5d051019dd86d41a345c8077550bf8f397ba
4
+ data.tar.gz: 04c40d19d99eac2684a965e372199e12cf3da2bb09fe687bd935eb5bb016f627
5
5
  SHA512:
6
- metadata.gz: c17c3dbe9c532f98fbc7c80bf17d5844d5050bf1781ebda3d8c77d9bdbe458bcbcd7ffdd4eecb85cb4ce5f0f31c73e770fd35bc6307e0e0db079de02f1c02289
7
- data.tar.gz: f698fb2c2c5771cfb5c7dd70df7c3bee5feddf1ad2dce9ffeca77dd988d1e60f81cac275bc3eb6092329d77d22668a0f8e147a77facf3593c9926ca490ae67dd
6
+ metadata.gz: a0ade150d7e64a9b7e532bda9fb742d3ac391aeba7975dc323fdad7dcfcc5bad05b8a9f7c3c16b77b18cb978bde66ef09f81c8270142d5711b4a00a2ac399521
7
+ data.tar.gz: afe870acc1678e91751e36287897872e83daf03cefb35d9fda961114d1641c0ae661057faf87a9e517f7c0cc550530af83b011df7850875f7367fcb456996a7a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.103.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.103.0
1
+ 1.104.0
@@ -2495,6 +2495,7 @@ module Aws::GuardDuty
2495
2495
  # resp.findings[0].service.action.network_connection_action.protocol #=> String
2496
2496
  # resp.findings[0].service.action.network_connection_action.local_ip_details.ip_address_v4 #=> String
2497
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
2498
2499
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.city.city_name #=> String
2499
2500
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.country.country_code #=> String
2500
2501
  # resp.findings[0].service.action.network_connection_action.remote_ip_details.country.country_name #=> String
@@ -5059,7 +5060,7 @@ module Aws::GuardDuty
5059
5060
  tracer: tracer
5060
5061
  )
5061
5062
  context[:gem_name] = 'aws-sdk-guardduty'
5062
- context[:gem_version] = '1.103.0'
5063
+ context[:gem_version] = '1.104.0'
5063
5064
  Seahorse::Client::Request.new(handlers, context)
5064
5065
  end
5065
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 = []
@@ -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.103.0'
57
+ GEM_VERSION = '1.104.0'
58
58
 
59
59
  end
60
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.103.0
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-09-24 00:00:00.000000000 Z
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