aws-sdk-guardduty 1.123.0 → 1.124.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: d986c3dfaf6503ff9c936d42c1f98401b169514bc2e48e1ec5fce13cea7c6048
4
- data.tar.gz: 79a6a1c2bec1a7a9de353c6a862251f2d20ea76f905fa28ab4bf89d5b13e57e2
3
+ metadata.gz: 2e88f63b95cd94ba31e6c385f3866793cff6d1adf6f4f3e339bdd460c4ffd586
4
+ data.tar.gz: 00c5eab26a73dd7ca589d1e1c347df5cb0d7f7d11e71b48ef90836c6abd48f61
5
5
  SHA512:
6
- metadata.gz: '002211591759526d925635136db6b6a3ee2a2e5b36c907c6df280c69838fead695ec40d1b011cfcb1ad5b0d9324fc34c4001511f6054e155961b770c7b5c6a05'
7
- data.tar.gz: 3b5ba8039d10a90f08b3075684038cec733d70fbf00c4a37abcd75044b05529336f5e62d833cc871ed8e06a8a7b5d4c21d14fda16723909e71aef3efc3f7416f
6
+ metadata.gz: bcec004592b4d2758a2ec9ce2242489914ca6268c2057ef3739142a9ad134eacaa27967773056a351ea53cd9da5ba426c8d1f18c4b19e823f90b32b85813f29d
7
+ data.tar.gz: c6c83a98c87e63fa6c0eaf590508d061d6ba4e532a3587ddd0850a8ba509646efa1fb33e2daa2f63ee2c072023e9e98260adadc9815003552fa7722e555fc703
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.124.0 (2025-08-07)
5
+ ------------------
6
+
7
+ * Feature - Added support for VPC owner account ID associated with DNS request in the GuardDuty finding.
8
+
4
9
  1.123.0 (2025-08-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.123.0
1
+ 1.124.0
@@ -857,6 +857,8 @@ module Aws::GuardDuty
857
857
  #
858
858
  # * service.action.dnsRequestAction.domainWithSuffix
859
859
  #
860
+ # * service.action.dnsRequestAction.vpcOwnerAccountId
861
+ #
860
862
  # * service.action.networkConnectionAction.blocked
861
863
  #
862
864
  # * service.action.networkConnectionAction.connectionDirection
@@ -2692,6 +2694,7 @@ module Aws::GuardDuty
2692
2694
  # resp.findings[0].service.action.dns_request_action.protocol #=> String
2693
2695
  # resp.findings[0].service.action.dns_request_action.blocked #=> Boolean
2694
2696
  # resp.findings[0].service.action.dns_request_action.domain_with_suffix #=> String
2697
+ # resp.findings[0].service.action.dns_request_action.vpc_owner_account_id #=> String
2695
2698
  # resp.findings[0].service.action.network_connection_action.blocked #=> Boolean
2696
2699
  # resp.findings[0].service.action.network_connection_action.connection_direction #=> String
2697
2700
  # resp.findings[0].service.action.network_connection_action.local_port_details.port #=> Integer
@@ -5612,7 +5615,7 @@ module Aws::GuardDuty
5612
5615
  tracer: tracer
5613
5616
  )
5614
5617
  context[:gem_name] = 'aws-sdk-guardduty'
5615
- context[:gem_version] = '1.123.0'
5618
+ context[:gem_version] = '1.124.0'
5616
5619
  Seahorse::Client::Request.new(handlers, context)
5617
5620
  end
5618
5621
 
@@ -1178,6 +1178,7 @@ module Aws::GuardDuty
1178
1178
  DnsRequestAction.add_member(:protocol, Shapes::ShapeRef.new(shape: String, location_name: "protocol"))
1179
1179
  DnsRequestAction.add_member(:blocked, Shapes::ShapeRef.new(shape: Boolean, location_name: "blocked"))
1180
1180
  DnsRequestAction.add_member(:domain_with_suffix, Shapes::ShapeRef.new(shape: String, location_name: "domainWithSuffix"))
1181
+ DnsRequestAction.add_member(:vpc_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "vpcOwnerAccountId"))
1181
1182
  DnsRequestAction.struct_class = Types::DnsRequestAction
1182
1183
 
1183
1184
  DomainDetails.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "domain"))
@@ -1535,6 +1535,8 @@ module Aws::GuardDuty
1535
1535
  #
1536
1536
  # * service.action.dnsRequestAction.domainWithSuffix
1537
1537
  #
1538
+ # * service.action.dnsRequestAction.vpcOwnerAccountId
1539
+ #
1538
1540
  # * service.action.networkConnectionAction.blocked
1539
1541
  #
1540
1542
  # * service.action.networkConnectionAction.connectionDirection
@@ -3014,13 +3016,19 @@ module Aws::GuardDuty
3014
3016
  # [1]: https://publicsuffix.org/
3015
3017
  # @return [String]
3016
3018
  #
3019
+ # @!attribute [rw] vpc_owner_account_id
3020
+ # The Amazon Web Services account ID that owns the VPC through which
3021
+ # the DNS request was made.
3022
+ # @return [String]
3023
+ #
3017
3024
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DnsRequestAction AWS API Documentation
3018
3025
  #
3019
3026
  class DnsRequestAction < Struct.new(
3020
3027
  :domain,
3021
3028
  :protocol,
3022
3029
  :blocked,
3023
- :domain_with_suffix)
3030
+ :domain_with_suffix,
3031
+ :vpc_owner_account_id)
3024
3032
  SENSITIVE = []
3025
3033
  include Aws::Structure
3026
3034
  end
@@ -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.123.0'
57
+ GEM_VERSION = '1.124.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -737,6 +737,7 @@ module Aws::GuardDuty
737
737
  attr_accessor protocol: ::String
738
738
  attr_accessor blocked: bool
739
739
  attr_accessor domain_with_suffix: ::String
740
+ attr_accessor vpc_owner_account_id: ::String
740
741
  SENSITIVE: []
741
742
  end
742
743
 
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.123.0
4
+ version: 1.124.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services