aws-sdk-guardduty 1.99.0 → 1.100.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: b364ffa4061f3b3f36e8a29d3292638d748c813dadde24b1cf1c431cfe1e8bcb
4
- data.tar.gz: f0a7cea0712c84f167b1009f65acff1fae0778f2168ed7d54cfaf9a4e31c3c9a
3
+ metadata.gz: a079b2e7d8db834862ade6a2ff677d4d0d590bd1c974e618c4386fa62d01c065
4
+ data.tar.gz: 978c64937385ed271a98f61aef6a894265464f139283d5d3a0c5e6a88cf8e5ec
5
5
  SHA512:
6
- metadata.gz: 62b83b807dc6129149b88f27537223dc9efc74fc798fe5cf72e01c11653a2e727a098f6912f73036682f103408c4949d0e255dcbaba76cdd2c6e4c70365d079c
7
- data.tar.gz: ff359f42b811c4fc6634f4f5414cceef79b765c3e2589ea52a3e3ac3a32791d25da9bfcbaba270f5b61667726ae635ac35a673b366155bb9ef4b08bca6ff8166
6
+ metadata.gz: 997d91975f7da7f7905729d6ccdb11f0a8734065d938ada325a2efb99b0cc647da41515a779759f7d074f8e1d87ba508d3ab25df2151d0df3755a3b68dae23e5
7
+ data.tar.gz: bcefc02c311f10dfdc49adbc7f39282e67fc52da92854493a808182326f1a0edab7d1340a9f2345206e5c95ec1177dae9db04065d345dbaa3087631176b89fb0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.100.0 (2024-09-18)
5
+ ------------------
6
+
7
+ * Feature - Add `launchType` and `sourceIPs` fields to GuardDuty findings.
8
+
4
9
  1.99.0 (2024-09-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.99.0
1
+ 1.100.0
@@ -2417,6 +2417,7 @@ module Aws::GuardDuty
2417
2417
  # resp.findings[0].resource.ecs_cluster_details.task_details.containers[0].security_context.privileged #=> Boolean
2418
2418
  # resp.findings[0].resource.ecs_cluster_details.task_details.containers[0].security_context.allow_privilege_escalation #=> Boolean
2419
2419
  # resp.findings[0].resource.ecs_cluster_details.task_details.group #=> String
2420
+ # resp.findings[0].resource.ecs_cluster_details.task_details.launch_type #=> String
2420
2421
  # resp.findings[0].resource.container_details.container_runtime #=> String
2421
2422
  # resp.findings[0].resource.container_details.id #=> String
2422
2423
  # resp.findings[0].resource.container_details.name #=> String
@@ -5054,7 +5055,7 @@ module Aws::GuardDuty
5054
5055
  tracer: tracer
5055
5056
  )
5056
5057
  context[:gem_name] = 'aws-sdk-guardduty'
5057
- context[:gem_version] = '1.99.0'
5058
+ context[:gem_version] = '1.100.0'
5058
5059
  Seahorse::Client::Request.new(handlers, context)
5059
5060
  end
5060
5061
 
@@ -1122,6 +1122,7 @@ module Aws::GuardDuty
1122
1122
  EcsTaskDetails.add_member(:volumes, Shapes::ShapeRef.new(shape: Volumes, location_name: "volumes"))
1123
1123
  EcsTaskDetails.add_member(:containers, Shapes::ShapeRef.new(shape: Containers, location_name: "containers"))
1124
1124
  EcsTaskDetails.add_member(:group, Shapes::ShapeRef.new(shape: String, location_name: "group"))
1125
+ EcsTaskDetails.add_member(:launch_type, Shapes::ShapeRef.new(shape: String, location_name: "launchType"))
1125
1126
  EcsTaskDetails.struct_class = Types::EcsTaskDetails
1126
1127
 
1127
1128
  EksClusterDetails.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
@@ -1451,7 +1452,7 @@ module Aws::GuardDuty
1451
1452
 
1452
1453
  KubernetesApiCallAction.add_member(:request_uri, Shapes::ShapeRef.new(shape: String, location_name: "requestUri"))
1453
1454
  KubernetesApiCallAction.add_member(:verb, Shapes::ShapeRef.new(shape: String, location_name: "verb"))
1454
- KubernetesApiCallAction.add_member(:source_ips, Shapes::ShapeRef.new(shape: SourceIps, location_name: "sourceIps"))
1455
+ KubernetesApiCallAction.add_member(:source_ips, Shapes::ShapeRef.new(shape: SourceIps, location_name: "sourceIPs"))
1455
1456
  KubernetesApiCallAction.add_member(:user_agent, Shapes::ShapeRef.new(shape: String, location_name: "userAgent"))
1456
1457
  KubernetesApiCallAction.add_member(:remote_ip_details, Shapes::ShapeRef.new(shape: RemoteIpDetails, location_name: "remoteIpDetails"))
1457
1458
  KubernetesApiCallAction.add_member(:status_code, Shapes::ShapeRef.new(shape: Integer, location_name: "statusCode"))
@@ -2907,6 +2907,11 @@ module Aws::GuardDuty
2907
2907
  # The name of the task group that's associated with the task.
2908
2908
  # @return [String]
2909
2909
  #
2910
+ # @!attribute [rw] launch_type
2911
+ # A capacity on which the task is running. For example, `Fargate` and
2912
+ # `EC2`.
2913
+ # @return [String]
2914
+ #
2910
2915
  # @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/EcsTaskDetails AWS API Documentation
2911
2916
  #
2912
2917
  class EcsTaskDetails < Struct.new(
@@ -2919,7 +2924,8 @@ module Aws::GuardDuty
2919
2924
  :tags,
2920
2925
  :volumes,
2921
2926
  :containers,
2922
- :group)
2927
+ :group,
2928
+ :launch_type)
2923
2929
  SENSITIVE = []
2924
2930
  include Aws::Structure
2925
2931
  end
@@ -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.99.0'
55
+ GEM_VERSION = '1.100.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -748,6 +748,7 @@ module Aws::GuardDuty
748
748
  attr_accessor volumes: ::Array[Types::Volume]
749
749
  attr_accessor containers: ::Array[Types::Container]
750
750
  attr_accessor group: ::String
751
+ attr_accessor launch_type: ::String
751
752
  SENSITIVE: []
752
753
  end
753
754
 
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.99.0
4
+ version: 1.100.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-11 00:00:00.000000000 Z
11
+ date: 2024-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core