aws-sdk-guardduty 1.98.0 → 1.99.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +96 -48
- data/lib/aws-sdk-guardduty/client_api.rb +61 -2
- 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 +292 -49
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/types.rbs +47 -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: []
|
@@ -809,6 +824,18 @@ module Aws::GuardDuty
|
|
809
824
|
|
810
825
|
class FindingStatistics
|
811
826
|
attr_accessor count_by_severity: ::Hash[::String, ::Integer]
|
827
|
+
attr_accessor grouped_by_account: ::Array[Types::AccountStatistics]
|
828
|
+
attr_accessor grouped_by_date: ::Array[Types::DateStatistics]
|
829
|
+
attr_accessor grouped_by_finding_type: ::Array[Types::FindingTypeStatistics]
|
830
|
+
attr_accessor grouped_by_resource: ::Array[Types::ResourceStatistics]
|
831
|
+
attr_accessor grouped_by_severity: ::Array[Types::SeverityStatistics]
|
832
|
+
SENSITIVE: []
|
833
|
+
end
|
834
|
+
|
835
|
+
class FindingTypeStatistics
|
836
|
+
attr_accessor finding_type: ::String
|
837
|
+
attr_accessor last_generated_at: ::Time
|
838
|
+
attr_accessor total_findings: ::Integer
|
812
839
|
SENSITIVE: []
|
813
840
|
end
|
814
841
|
|
@@ -900,11 +927,15 @@ module Aws::GuardDuty
|
|
900
927
|
attr_accessor detector_id: ::String
|
901
928
|
attr_accessor finding_statistic_types: ::Array[("COUNT_BY_SEVERITY")]
|
902
929
|
attr_accessor finding_criteria: Types::FindingCriteria
|
930
|
+
attr_accessor group_by: ("ACCOUNT" | "DATE" | "FINDING_TYPE" | "RESOURCE" | "SEVERITY")
|
931
|
+
attr_accessor order_by: ("ASC" | "DESC")
|
932
|
+
attr_accessor max_results: ::Integer
|
903
933
|
SENSITIVE: []
|
904
934
|
end
|
905
935
|
|
906
936
|
class GetFindingsStatisticsResponse
|
907
937
|
attr_accessor finding_statistics: Types::FindingStatistics
|
938
|
+
attr_accessor next_token: ::String
|
908
939
|
SENSITIVE: []
|
909
940
|
end
|
910
941
|
|
@@ -1803,6 +1834,15 @@ module Aws::GuardDuty
|
|
1803
1834
|
SENSITIVE: []
|
1804
1835
|
end
|
1805
1836
|
|
1837
|
+
class ResourceStatistics
|
1838
|
+
attr_accessor account_id: ::String
|
1839
|
+
attr_accessor last_generated_at: ::Time
|
1840
|
+
attr_accessor resource_id: ::String
|
1841
|
+
attr_accessor resource_type: ::String
|
1842
|
+
attr_accessor total_findings: ::Integer
|
1843
|
+
SENSITIVE: []
|
1844
|
+
end
|
1845
|
+
|
1806
1846
|
class RuntimeContext
|
1807
1847
|
attr_accessor modifying_process: Types::ProcessDetails
|
1808
1848
|
attr_accessor modified_at: ::Time
|
@@ -1990,6 +2030,13 @@ module Aws::GuardDuty
|
|
1990
2030
|
SENSITIVE: []
|
1991
2031
|
end
|
1992
2032
|
|
2033
|
+
class SeverityStatistics
|
2034
|
+
attr_accessor last_generated_at: ::Time
|
2035
|
+
attr_accessor severity: ::Float
|
2036
|
+
attr_accessor total_findings: ::Integer
|
2037
|
+
SENSITIVE: []
|
2038
|
+
end
|
2039
|
+
|
1993
2040
|
class SortCriteria
|
1994
2041
|
attr_accessor attribute_name: ::String
|
1995
2042
|
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.99.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-11 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
|