aws-sdk-guardduty 1.72.0 → 1.73.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 +6 -4
- data/lib/aws-sdk-guardduty/client_api.rb +4 -0
- data/lib/aws-sdk-guardduty/types.rb +7 -1
- data/lib/aws-sdk-guardduty.rb +1 -1
- 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: a4602e10689b2f94e03e34f6902f3a736b7ce25d86ccc73fca184ee16e1a66db
|
4
|
+
data.tar.gz: 921dd95c2dad9954e2224120f922057279cd9686acb93212acd346ca8d066aa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aff5e97e96450a736b483afe2335c472d4043d85644579c93d328026beadc650dd30876c3e6f784b563b74c8bc31a4b48be40bf2790e8b2ee99973898ccf4b39
|
7
|
+
data.tar.gz: 848c5df221bc129219757ccceee34105d3127b4bf3ab8b02563598436e6ee0234ea47e4111685b514574c4d241c62852d2d3a15903250640001228f9fd5841a0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.73.0
|
@@ -2028,6 +2028,8 @@ module Aws::GuardDuty
|
|
2028
2028
|
# resp.findings[0].resource.kubernetes_details.kubernetes_user_details.uid #=> String
|
2029
2029
|
# resp.findings[0].resource.kubernetes_details.kubernetes_user_details.groups #=> Array
|
2030
2030
|
# resp.findings[0].resource.kubernetes_details.kubernetes_user_details.groups[0] #=> String
|
2031
|
+
# resp.findings[0].resource.kubernetes_details.kubernetes_user_details.session_name #=> Array
|
2032
|
+
# resp.findings[0].resource.kubernetes_details.kubernetes_user_details.session_name[0] #=> String
|
2031
2033
|
# resp.findings[0].resource.kubernetes_details.kubernetes_workload_details.name #=> String
|
2032
2034
|
# resp.findings[0].resource.kubernetes_details.kubernetes_workload_details.type #=> String
|
2033
2035
|
# resp.findings[0].resource.kubernetes_details.kubernetes_workload_details.uid #=> String
|
@@ -3538,9 +3540,9 @@ module Aws::GuardDuty
|
|
3538
3540
|
end
|
3539
3541
|
|
3540
3542
|
# Lists tags for a resource. Tagging is currently supported for
|
3541
|
-
# detectors, finding filters, IP sets,
|
3542
|
-
# limit of 50 tags per resource. When invoked, this
|
3543
|
-
# all assigned tags for a given resource.
|
3543
|
+
# detectors, finding filters, IP sets, threat intel sets, publishing
|
3544
|
+
# destination, with a limit of 50 tags per resource. When invoked, this
|
3545
|
+
# operation returns all assigned tags for a given resource.
|
3544
3546
|
#
|
3545
3547
|
# @option params [required, String] :resource_arn
|
3546
3548
|
# The Amazon Resource Name (ARN) for the given GuardDuty resource.
|
@@ -4372,7 +4374,7 @@ module Aws::GuardDuty
|
|
4372
4374
|
params: params,
|
4373
4375
|
config: config)
|
4374
4376
|
context[:gem_name] = 'aws-sdk-guardduty'
|
4375
|
-
context[:gem_version] = '1.
|
4377
|
+
context[:gem_version] = '1.73.0'
|
4376
4378
|
Seahorse::Client::Request.new(handlers, context)
|
4377
4379
|
end
|
4378
4380
|
|
@@ -382,6 +382,7 @@ module Aws::GuardDuty
|
|
382
382
|
SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
|
383
383
|
Service = Shapes::StructureShape.new(name: 'Service')
|
384
384
|
ServiceAdditionalInfo = Shapes::StructureShape.new(name: 'ServiceAdditionalInfo')
|
385
|
+
SessionNameList = Shapes::ListShape.new(name: 'SessionNameList')
|
385
386
|
SortCriteria = Shapes::StructureShape.new(name: 'SortCriteria')
|
386
387
|
SourceIps = Shapes::ListShape.new(name: 'SourceIps')
|
387
388
|
Sources = Shapes::ListShape.new(name: 'Sources')
|
@@ -1260,6 +1261,7 @@ module Aws::GuardDuty
|
|
1260
1261
|
KubernetesUserDetails.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "username"))
|
1261
1262
|
KubernetesUserDetails.add_member(:uid, Shapes::ShapeRef.new(shape: String, location_name: "uid"))
|
1262
1263
|
KubernetesUserDetails.add_member(:groups, Shapes::ShapeRef.new(shape: Groups, location_name: "groups"))
|
1264
|
+
KubernetesUserDetails.add_member(:session_name, Shapes::ShapeRef.new(shape: SessionNameList, location_name: "sessionName"))
|
1263
1265
|
KubernetesUserDetails.struct_class = Types::KubernetesUserDetails
|
1264
1266
|
|
1265
1267
|
KubernetesWorkloadDetails.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
@@ -1822,6 +1824,8 @@ module Aws::GuardDuty
|
|
1822
1824
|
ServiceAdditionalInfo.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "type"))
|
1823
1825
|
ServiceAdditionalInfo.struct_class = Types::ServiceAdditionalInfo
|
1824
1826
|
|
1827
|
+
SessionNameList.member = Shapes::ShapeRef.new(shape: String)
|
1828
|
+
|
1825
1829
|
SortCriteria.add_member(:attribute_name, Shapes::ShapeRef.new(shape: String, location_name: "attributeName"))
|
1826
1830
|
SortCriteria.add_member(:order_by, Shapes::ShapeRef.new(shape: OrderBy, location_name: "orderBy"))
|
1827
1831
|
SortCriteria.struct_class = Types::SortCriteria
|
@@ -3672,12 +3672,18 @@ module Aws::GuardDuty
|
|
3672
3672
|
# The groups that include the user who called the Kubernetes API.
|
3673
3673
|
# @return [Array<String>]
|
3674
3674
|
#
|
3675
|
+
# @!attribute [rw] session_name
|
3676
|
+
# Entity that assumes the IAM role when Kubernetes RBAC permissions
|
3677
|
+
# are assigned to that role.
|
3678
|
+
# @return [Array<String>]
|
3679
|
+
#
|
3675
3680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/KubernetesUserDetails AWS API Documentation
|
3676
3681
|
#
|
3677
3682
|
class KubernetesUserDetails < Struct.new(
|
3678
3683
|
:username,
|
3679
3684
|
:uid,
|
3680
|
-
:groups
|
3685
|
+
:groups,
|
3686
|
+
:session_name)
|
3681
3687
|
SENSITIVE = []
|
3682
3688
|
include Aws::Structure
|
3683
3689
|
end
|
data/lib/aws-sdk-guardduty.rb
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.73.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-06-
|
11
|
+
date: 2023-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|