aws-sdk-guardduty 1.79.0 → 1.81.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: 3f6c3be53bdae48921e99e4f321a0f09ad0689a9fac2cb764ce0ccd95173de22
4
- data.tar.gz: 1227696c6356dd000d92563c4aaa144a3046cc69bbcd67123c7f716d8d184f5c
3
+ metadata.gz: 88a9566fc145c2c5b0872dbe421ff96a7749a245d8009941e83b46fec922bff1
4
+ data.tar.gz: 2f25d9bfc6157dd52f2302276f089c7f4978405b59c34add90d6edceb4ac6c11
5
5
  SHA512:
6
- metadata.gz: 3fbbf62d159a40d5625b493e93fe15be807c35aaa12d8b4eb41632f6f2ec09abf54baaf0496fc9e3a52ebff654d51de56a98184af35247934be3a10b4da721df
7
- data.tar.gz: 128c7a77344a5a1bf56264cca50aa129e3eb4e691c6d0cfffce8ec3eea080d0efc586f1ee455db96aa6b962e3b1f165c456f51f943e89df05806d72d9d436bcb
6
+ metadata.gz: d7bb37471115cf35a48736c5bfb100e472f12fc87343c094fbc1cccc1c9c0a99bc03fb285893d36610af38bd25029023e0d9d2d1f0ba873a63c230b88ca7a2c8
7
+ data.tar.gz: 3a899d477761d3e945d5be8b5c72aa1f97795495a3c130c52509866e271b09e0e4f8123f0294f8c6ded5bd429c401962dd167c5bf313a12d018b8a7e806ffbed
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2023-10-17)
5
+ ------------------
6
+
7
+ * Feature - Add domainWithSuffix finding field to dnsRequestAction
8
+
9
+ 1.80.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.79.0 (2023-09-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
1
+ 1.81.0
@@ -2263,6 +2263,7 @@ module Aws::GuardDuty
2263
2263
  # resp.findings[0].service.action.dns_request_action.domain #=> String
2264
2264
  # resp.findings[0].service.action.dns_request_action.protocol #=> String
2265
2265
  # resp.findings[0].service.action.dns_request_action.blocked #=> Boolean
2266
+ # resp.findings[0].service.action.dns_request_action.domain_with_suffix #=> String
2266
2267
  # resp.findings[0].service.action.network_connection_action.blocked #=> Boolean
2267
2268
  # resp.findings[0].service.action.network_connection_action.connection_direction #=> String
2268
2269
  # resp.findings[0].service.action.network_connection_action.local_port_details.port #=> Integer
@@ -3285,6 +3286,8 @@ module Aws::GuardDuty
3285
3286
  #
3286
3287
  # * service.action.dnsRequestAction.domain
3287
3288
  #
3289
+ # * service.action.dnsRequestAction.domainWithSuffix
3290
+ #
3288
3291
  # * service.action.networkConnectionAction.blocked
3289
3292
  #
3290
3293
  # * service.action.networkConnectionAction.connectionDirection
@@ -4488,7 +4491,7 @@ module Aws::GuardDuty
4488
4491
  params: params,
4489
4492
  config: config)
4490
4493
  context[:gem_name] = 'aws-sdk-guardduty'
4491
- context[:gem_version] = '1.79.0'
4494
+ context[:gem_version] = '1.81.0'
4492
4495
  Seahorse::Client::Request.new(handlers, context)
4493
4496
  end
4494
4497
 
@@ -919,6 +919,7 @@ module Aws::GuardDuty
919
919
  DnsRequestAction.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "domain"))
920
920
  DnsRequestAction.add_member(:protocol, Shapes::ShapeRef.new(shape: String, location_name: "protocol"))
921
921
  DnsRequestAction.add_member(:blocked, Shapes::ShapeRef.new(shape: Boolean, location_name: "blocked"))
922
+ DnsRequestAction.add_member(:domain_with_suffix, Shapes::ShapeRef.new(shape: String, location_name: "domainWithSuffix"))
922
923
  DnsRequestAction.struct_class = Types::DnsRequestAction
923
924
 
924
925
  DomainDetails.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "domain"))
@@ -32,8 +32,8 @@ module Aws::GuardDuty
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://guardduty.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
39
  return Aws::Endpoints::Endpoint.new(url: "https://guardduty-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -2273,12 +2273,18 @@ module Aws::GuardDuty
2273
2273
  # Indicates whether the targeted port is blocked.
2274
2274
  # @return [Boolean]
2275
2275
  #
2276
+ # @!attribute [rw] domain_with_suffix
2277
+ # The second and top level domain involved in the activity that
2278
+ # prompted GuardDuty to generate this finding.
2279
+ # @return [String]
2280
+ #
2276
2281
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DnsRequestAction AWS API Documentation
2277
2282
  #
2278
2283
  class DnsRequestAction < Struct.new(
2279
2284
  :domain,
2280
2285
  :protocol,
2281
- :blocked)
2286
+ :blocked,
2287
+ :domain_with_suffix)
2282
2288
  SENSITIVE = []
2283
2289
  include Aws::Structure
2284
2290
  end
@@ -4171,6 +4177,8 @@ module Aws::GuardDuty
4171
4177
  #
4172
4178
  # * service.action.dnsRequestAction.domain
4173
4179
  #
4180
+ # * service.action.dnsRequestAction.domainWithSuffix
4181
+ #
4174
4182
  # * service.action.networkConnectionAction.blocked
4175
4183
  #
4176
4184
  # * service.action.networkConnectionAction.connectionDirection
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-guardduty/customizations'
52
52
  # @!group service
53
53
  module Aws::GuardDuty
54
54
 
55
- GEM_VERSION = '1.79.0'
55
+ GEM_VERSION = '1.81.0'
56
56
 
57
57
  end
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.79.0
4
+ version: 1.81.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: 2023-09-22 00:00:00.000000000 Z
11
+ date: 2023-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement