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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +2 -1
- data/lib/aws-sdk-guardduty/client_api.rb +2 -1
- data/lib/aws-sdk-guardduty/types.rb +7 -1
- data/lib/aws-sdk-guardduty.rb +1 -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: a079b2e7d8db834862ade6a2ff677d4d0d590bd1c974e618c4386fa62d01c065
|
4
|
+
data.tar.gz: 978c64937385ed271a98f61aef6a894265464f139283d5d3a0c5e6a88cf8e5ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 997d91975f7da7f7905729d6ccdb11f0a8734065d938ada325a2efb99b0cc647da41515a779759f7d074f8e1d87ba508d3ab25df2151d0df3755a3b68dae23e5
|
7
|
+
data.tar.gz: bcefc02c311f10dfdc49adbc7f39282e67fc52da92854493a808182326f1a0edab7d1340a9f2345206e5c95ec1177dae9db04065d345dbaa3087631176b89fb0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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: "
|
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
|
data/lib/aws-sdk-guardduty.rb
CHANGED
data/sig/types.rbs
CHANGED
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.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
|
+
date: 2024-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|