aws-sdk-guardduty 1.98.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +97 -48
- data/lib/aws-sdk-guardduty/client_api.rb +63 -3
- data/lib/aws-sdk-guardduty/endpoints.rb +74 -296
- data/lib/aws-sdk-guardduty/plugins/endpoints.rb +10 -1
- data/lib/aws-sdk-guardduty/types.rb +299 -50
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/types.rbs +48 -0
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -66,6 +66,13 @@ module Aws::GuardDuty
|
|
66
66
|
SENSITIVE: []
|
67
67
|
end
|
68
68
|
|
69
|
+
class AccountStatistics
|
70
|
+
attr_accessor account_id: ::String
|
71
|
+
attr_accessor last_generated_at: ::Time
|
72
|
+
attr_accessor total_findings: ::Integer
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
69
76
|
class Action
|
70
77
|
attr_accessor action_type: ::String
|
71
78
|
attr_accessor aws_api_call_action: Types::AwsApiCallAction
|
@@ -460,6 +467,14 @@ module Aws::GuardDuty
|
|
460
467
|
SENSITIVE: []
|
461
468
|
end
|
462
469
|
|
470
|
+
class DateStatistics
|
471
|
+
attr_accessor date: ::Time
|
472
|
+
attr_accessor last_generated_at: ::Time
|
473
|
+
attr_accessor severity: ::Float
|
474
|
+
attr_accessor total_findings: ::Integer
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
463
478
|
class DeclineInvitationsRequest
|
464
479
|
attr_accessor account_ids: ::Array[::String]
|
465
480
|
SENSITIVE: []
|
@@ -733,6 +748,7 @@ module Aws::GuardDuty
|
|
733
748
|
attr_accessor volumes: ::Array[Types::Volume]
|
734
749
|
attr_accessor containers: ::Array[Types::Container]
|
735
750
|
attr_accessor group: ::String
|
751
|
+
attr_accessor launch_type: ::String
|
736
752
|
SENSITIVE: []
|
737
753
|
end
|
738
754
|
|
@@ -809,6 +825,18 @@ module Aws::GuardDuty
|
|
809
825
|
|
810
826
|
class FindingStatistics
|
811
827
|
attr_accessor count_by_severity: ::Hash[::String, ::Integer]
|
828
|
+
attr_accessor grouped_by_account: ::Array[Types::AccountStatistics]
|
829
|
+
attr_accessor grouped_by_date: ::Array[Types::DateStatistics]
|
830
|
+
attr_accessor grouped_by_finding_type: ::Array[Types::FindingTypeStatistics]
|
831
|
+
attr_accessor grouped_by_resource: ::Array[Types::ResourceStatistics]
|
832
|
+
attr_accessor grouped_by_severity: ::Array[Types::SeverityStatistics]
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
|
836
|
+
class FindingTypeStatistics
|
837
|
+
attr_accessor finding_type: ::String
|
838
|
+
attr_accessor last_generated_at: ::Time
|
839
|
+
attr_accessor total_findings: ::Integer
|
812
840
|
SENSITIVE: []
|
813
841
|
end
|
814
842
|
|
@@ -900,11 +928,15 @@ module Aws::GuardDuty
|
|
900
928
|
attr_accessor detector_id: ::String
|
901
929
|
attr_accessor finding_statistic_types: ::Array[("COUNT_BY_SEVERITY")]
|
902
930
|
attr_accessor finding_criteria: Types::FindingCriteria
|
931
|
+
attr_accessor group_by: ("ACCOUNT" | "DATE" | "FINDING_TYPE" | "RESOURCE" | "SEVERITY")
|
932
|
+
attr_accessor order_by: ("ASC" | "DESC")
|
933
|
+
attr_accessor max_results: ::Integer
|
903
934
|
SENSITIVE: []
|
904
935
|
end
|
905
936
|
|
906
937
|
class GetFindingsStatisticsResponse
|
907
938
|
attr_accessor finding_statistics: Types::FindingStatistics
|
939
|
+
attr_accessor next_token: ::String
|
908
940
|
SENSITIVE: []
|
909
941
|
end
|
910
942
|
|
@@ -1803,6 +1835,15 @@ module Aws::GuardDuty
|
|
1803
1835
|
SENSITIVE: []
|
1804
1836
|
end
|
1805
1837
|
|
1838
|
+
class ResourceStatistics
|
1839
|
+
attr_accessor account_id: ::String
|
1840
|
+
attr_accessor last_generated_at: ::Time
|
1841
|
+
attr_accessor resource_id: ::String
|
1842
|
+
attr_accessor resource_type: ::String
|
1843
|
+
attr_accessor total_findings: ::Integer
|
1844
|
+
SENSITIVE: []
|
1845
|
+
end
|
1846
|
+
|
1806
1847
|
class RuntimeContext
|
1807
1848
|
attr_accessor modifying_process: Types::ProcessDetails
|
1808
1849
|
attr_accessor modified_at: ::Time
|
@@ -1990,6 +2031,13 @@ module Aws::GuardDuty
|
|
1990
2031
|
SENSITIVE: []
|
1991
2032
|
end
|
1992
2033
|
|
2034
|
+
class SeverityStatistics
|
2035
|
+
attr_accessor last_generated_at: ::Time
|
2036
|
+
attr_accessor severity: ::Float
|
2037
|
+
attr_accessor total_findings: ::Integer
|
2038
|
+
SENSITIVE: []
|
2039
|
+
end
|
2040
|
+
|
1993
2041
|
class SortCriteria
|
1994
2042
|
attr_accessor attribute_name: ::String
|
1995
2043
|
attr_accessor order_by: ("ASC" | "DESC")
|
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
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.205.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.
|
32
|
+
version: 3.205.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|