aws-sdk-guardduty 1.150.0 → 1.152.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +15 -11
- data/lib/aws-sdk-guardduty/client_api.rb +12 -0
- data/lib/aws-sdk-guardduty/types.rb +59 -2
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/types.rbs +17 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d502c850ab12f48dc216cf03843b4abe72bb3b669c17d28143fd17fc541360ab
|
|
4
|
+
data.tar.gz: 0d4e8b59300ba19ff626e9181cacc80414dc7cc324e1a5000f71096892db5d2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29e5f596e7279a277678b29755217884a14939f2689f5e0867e8844120c8ae6196dbbd45acae87e72fe9a025793d536a8d0b4eb8c5baa8d6e0cea848f171d74b
|
|
7
|
+
data.tar.gz: 01be69ae980d58697d77aeed318c8a4c9992ac716d2afe6263e3eb4f4e3fd3e0d1c1cdb163566c3573c27d3efd277742c1b220b2d9c3b61bc74ce41a8356ac06
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.152.0 (2026-05-26)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add malware scan support for Continuous Backups, also known as Point-In-Time Recovery Points (PITR).
|
|
8
|
+
|
|
9
|
+
1.151.0 (2026-05-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
13
|
+
|
|
4
14
|
1.150.0 (2026-05-19)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.152.0
|
|
@@ -199,7 +199,7 @@ module Aws::GuardDuty
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::GuardDuty
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -4791,13 +4789,13 @@ module Aws::GuardDuty
|
|
|
4791
4789
|
# resp.detector_id #=> String
|
|
4792
4790
|
# resp.admin_detector_id #=> String
|
|
4793
4791
|
# resp.resource_arn #=> String
|
|
4794
|
-
# resp.resource_type #=> String, one of "EBS_RECOVERY_POINT", "EBS_SNAPSHOT", "EBS_VOLUME", "EC2_AMI", "EC2_INSTANCE", "EC2_RECOVERY_POINT", "S3_RECOVERY_POINT", "S3_BUCKET"
|
|
4792
|
+
# resp.resource_type #=> String, one of "EBS_RECOVERY_POINT", "EBS_SNAPSHOT", "EBS_VOLUME", "EC2_AMI", "EC2_INSTANCE", "EC2_RECOVERY_POINT", "S3_RECOVERY_POINT", "S3_BUCKET", "S3_POINT_IN_TIME_RECOVERY"
|
|
4795
4793
|
# resp.scanned_resources_count #=> Integer
|
|
4796
4794
|
# resp.skipped_resources_count #=> Integer
|
|
4797
4795
|
# resp.failed_resources_count #=> Integer
|
|
4798
4796
|
# resp.scanned_resources #=> Array
|
|
4799
4797
|
# resp.scanned_resources[0].scanned_resource_arn #=> String
|
|
4800
|
-
# resp.scanned_resources[0].scanned_resource_type #=> String, one of "EBS_RECOVERY_POINT", "EBS_SNAPSHOT", "EBS_VOLUME", "EC2_AMI", "EC2_INSTANCE", "EC2_RECOVERY_POINT", "S3_RECOVERY_POINT", "S3_BUCKET"
|
|
4798
|
+
# resp.scanned_resources[0].scanned_resource_type #=> String, one of "EBS_RECOVERY_POINT", "EBS_SNAPSHOT", "EBS_VOLUME", "EC2_AMI", "EC2_INSTANCE", "EC2_RECOVERY_POINT", "S3_RECOVERY_POINT", "S3_BUCKET", "S3_POINT_IN_TIME_RECOVERY"
|
|
4801
4799
|
# resp.scanned_resources[0].scanned_resource_status #=> String, one of "RUNNING", "COMPLETED", "COMPLETED_WITH_ISSUES", "FAILED", "SKIPPED"
|
|
4802
4800
|
# resp.scanned_resources[0].scan_status_reason #=> String, one of "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "SNAPSHOT_SIZE_LIMIT_EXCEEDED", "RESOURCE_UNAVAILABLE", "INCONSISTENT_SOURCE", "INCREMENTAL_NO_DIFFERENCE", "NO_EBS_VOLUMES_FOUND", "UNSUPPORTED_PRODUCT_CODE_TYPE", "AMI_SNAPSHOT_LIMIT_EXCEEDED", "UNRELATED_RESOURCES", "BASE_RESOURCE_NOT_SCANNED", "BASE_CREATED_AFTER_TARGET", "UNSUPPORTED_FOR_INCREMENTAL", "UNSUPPORTED_AMI", "UNSUPPORTED_SNAPSHOT", "UNSUPPORTED_COMPOSITE_RECOVERY_POINT", "ALL_FILES_SKIPPED_OR_FAILED"
|
|
4803
4801
|
# resp.scanned_resources[0].resource_details.ebs_volume.volume_arn #=> String
|
|
@@ -4814,6 +4812,8 @@ module Aws::GuardDuty
|
|
|
4814
4812
|
# resp.scan_configuration.trigger_details.trigger_type #=> String, one of "BACKUP", "GUARDDUTY"
|
|
4815
4813
|
# resp.scan_configuration.incremental_scan_details.baseline_resource_arn #=> String
|
|
4816
4814
|
# resp.scan_configuration.recovery_point.backup_vault_name #=> String
|
|
4815
|
+
# resp.scan_configuration.recovery_point.continuous_scan_details.start_time #=> Time
|
|
4816
|
+
# resp.scan_configuration.recovery_point.continuous_scan_details.end_time #=> Time
|
|
4817
4817
|
# resp.scan_category #=> String, one of "FULL_SCAN", "INCREMENTAL_SCAN"
|
|
4818
4818
|
# resp.scan_status #=> String, one of "RUNNING", "COMPLETED", "COMPLETED_WITH_ISSUES", "FAILED", "SKIPPED"
|
|
4819
4819
|
# resp.scan_status_reason #=> String, one of "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "SNAPSHOT_SIZE_LIMIT_EXCEEDED", "RESOURCE_UNAVAILABLE", "INCONSISTENT_SOURCE", "INCREMENTAL_NO_DIFFERENCE", "NO_EBS_VOLUMES_FOUND", "UNSUPPORTED_PRODUCT_CODE_TYPE", "AMI_SNAPSHOT_LIMIT_EXCEEDED", "UNRELATED_RESOURCES", "BASE_RESOURCE_NOT_SCANNED", "BASE_CREATED_AFTER_TARGET", "UNSUPPORTED_FOR_INCREMENTAL", "UNSUPPORTED_AMI", "UNSUPPORTED_SNAPSHOT", "UNSUPPORTED_COMPOSITE_RECOVERY_POINT", "ALL_FILES_SKIPPED_OR_FAILED"
|
|
@@ -6111,7 +6111,7 @@ module Aws::GuardDuty
|
|
|
6111
6111
|
#
|
|
6112
6112
|
# resp.scans #=> Array
|
|
6113
6113
|
# resp.scans[0].resource_arn #=> String
|
|
6114
|
-
# resp.scans[0].resource_type #=> String, one of "EBS_RECOVERY_POINT", "EBS_SNAPSHOT", "EBS_VOLUME", "EC2_AMI", "EC2_INSTANCE", "EC2_RECOVERY_POINT", "S3_RECOVERY_POINT", "S3_BUCKET"
|
|
6114
|
+
# resp.scans[0].resource_type #=> String, one of "EBS_RECOVERY_POINT", "EBS_SNAPSHOT", "EBS_VOLUME", "EC2_AMI", "EC2_INSTANCE", "EC2_RECOVERY_POINT", "S3_RECOVERY_POINT", "S3_BUCKET", "S3_POINT_IN_TIME_RECOVERY"
|
|
6115
6115
|
# resp.scans[0].scan_id #=> String
|
|
6116
6116
|
# resp.scans[0].scan_status #=> String, one of "RUNNING", "COMPLETED", "COMPLETED_WITH_ISSUES", "FAILED", "SKIPPED"
|
|
6117
6117
|
# resp.scans[0].scan_result_status #=> String, one of "NO_THREATS_FOUND", "THREATS_FOUND"
|
|
@@ -6593,6 +6593,10 @@ module Aws::GuardDuty
|
|
|
6593
6593
|
# },
|
|
6594
6594
|
# recovery_point: {
|
|
6595
6595
|
# backup_vault_name: "String", # required
|
|
6596
|
+
# continuous_scan_details: {
|
|
6597
|
+
# start_time: Time.now,
|
|
6598
|
+
# end_time: Time.now, # required
|
|
6599
|
+
# },
|
|
6596
6600
|
# },
|
|
6597
6601
|
# },
|
|
6598
6602
|
# })
|
|
@@ -8964,7 +8968,7 @@ module Aws::GuardDuty
|
|
|
8964
8968
|
tracer: tracer
|
|
8965
8969
|
)
|
|
8966
8970
|
context[:gem_name] = 'aws-sdk-guardduty'
|
|
8967
|
-
context[:gem_version] = '1.
|
|
8971
|
+
context[:gem_version] = '1.152.0'
|
|
8968
8972
|
Seahorse::Client::Request.new(handlers, context)
|
|
8969
8973
|
end
|
|
8970
8974
|
|
|
@@ -78,6 +78,7 @@ module Aws::GuardDuty
|
|
|
78
78
|
ContainerUid = Shapes::StringShape.new(name: 'ContainerUid')
|
|
79
79
|
ContainerUids = Shapes::ListShape.new(name: 'ContainerUids')
|
|
80
80
|
Containers = Shapes::ListShape.new(name: 'Containers')
|
|
81
|
+
ContinuousScanDetails = Shapes::StructureShape.new(name: 'ContinuousScanDetails')
|
|
81
82
|
CountByCoverageStatus = Shapes::MapShape.new(name: 'CountByCoverageStatus')
|
|
82
83
|
CountByResourceType = Shapes::MapShape.new(name: 'CountByResourceType')
|
|
83
84
|
CountBySeverity = Shapes::MapShape.new(name: 'CountBySeverity')
|
|
@@ -540,6 +541,7 @@ module Aws::GuardDuty
|
|
|
540
541
|
ScanCondition = Shapes::StructureShape.new(name: 'ScanCondition')
|
|
541
542
|
ScanConditionPair = Shapes::StructureShape.new(name: 'ScanConditionPair')
|
|
542
543
|
ScanConfiguration = Shapes::StructureShape.new(name: 'ScanConfiguration')
|
|
544
|
+
ScanConfigurationContinuousScanDetails = Shapes::StructureShape.new(name: 'ScanConfigurationContinuousScanDetails')
|
|
543
545
|
ScanConfigurationRecoveryPoint = Shapes::StructureShape.new(name: 'ScanConfigurationRecoveryPoint')
|
|
544
546
|
ScanCriterion = Shapes::MapShape.new(name: 'ScanCriterion')
|
|
545
547
|
ScanCriterionKey = Shapes::StringShape.new(name: 'ScanCriterionKey')
|
|
@@ -912,6 +914,10 @@ module Aws::GuardDuty
|
|
|
912
914
|
|
|
913
915
|
Containers.member = Shapes::ShapeRef.new(shape: Container)
|
|
914
916
|
|
|
917
|
+
ContinuousScanDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
|
|
918
|
+
ContinuousScanDetails.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
|
|
919
|
+
ContinuousScanDetails.struct_class = Types::ContinuousScanDetails
|
|
920
|
+
|
|
915
921
|
CountByCoverageStatus.key = Shapes::ShapeRef.new(shape: CoverageStatus)
|
|
916
922
|
CountByCoverageStatus.value = Shapes::ShapeRef.new(shape: Long)
|
|
917
923
|
|
|
@@ -2443,6 +2449,7 @@ module Aws::GuardDuty
|
|
|
2443
2449
|
RdsLoginAttemptAction.struct_class = Types::RdsLoginAttemptAction
|
|
2444
2450
|
|
|
2445
2451
|
RecoveryPoint.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "backupVaultName"))
|
|
2452
|
+
RecoveryPoint.add_member(:continuous_scan_details, Shapes::ShapeRef.new(shape: ContinuousScanDetails, location_name: "continuousScanDetails"))
|
|
2446
2453
|
RecoveryPoint.struct_class = Types::RecoveryPoint
|
|
2447
2454
|
|
|
2448
2455
|
RecoveryPointDetails.add_member(:recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "recoveryPointArn"))
|
|
@@ -2645,7 +2652,12 @@ module Aws::GuardDuty
|
|
|
2645
2652
|
ScanConfiguration.add_member(:recovery_point, Shapes::ShapeRef.new(shape: ScanConfigurationRecoveryPoint, location_name: "recoveryPoint"))
|
|
2646
2653
|
ScanConfiguration.struct_class = Types::ScanConfiguration
|
|
2647
2654
|
|
|
2655
|
+
ScanConfigurationContinuousScanDetails.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "startTime"))
|
|
2656
|
+
ScanConfigurationContinuousScanDetails.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "endTime"))
|
|
2657
|
+
ScanConfigurationContinuousScanDetails.struct_class = Types::ScanConfigurationContinuousScanDetails
|
|
2658
|
+
|
|
2648
2659
|
ScanConfigurationRecoveryPoint.add_member(:backup_vault_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "backupVaultName"))
|
|
2660
|
+
ScanConfigurationRecoveryPoint.add_member(:continuous_scan_details, Shapes::ShapeRef.new(shape: ScanConfigurationContinuousScanDetails, location_name: "continuousScanDetails"))
|
|
2649
2661
|
ScanConfigurationRecoveryPoint.struct_class = Types::ScanConfigurationRecoveryPoint
|
|
2650
2662
|
|
|
2651
2663
|
ScanCriterion.key = Shapes::ShapeRef.new(shape: ScanCriterionKey)
|
|
@@ -1082,6 +1082,28 @@ module Aws::GuardDuty
|
|
|
1082
1082
|
include Aws::Structure
|
|
1083
1083
|
end
|
|
1084
1084
|
|
|
1085
|
+
# Contains information about the time range within the continuous backup
|
|
1086
|
+
# in Amazon Web Services Backup to scan for a point-in-time recovery
|
|
1087
|
+
# resource.
|
|
1088
|
+
#
|
|
1089
|
+
# @!attribute [rw] start_time
|
|
1090
|
+
# The timestamp representing the start of the time range to scan.
|
|
1091
|
+
# Reserved for internal use.
|
|
1092
|
+
# @return [Time]
|
|
1093
|
+
#
|
|
1094
|
+
# @!attribute [rw] end_time
|
|
1095
|
+
# The timestamp representing the end of the time range to scan.
|
|
1096
|
+
# @return [Time]
|
|
1097
|
+
#
|
|
1098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ContinuousScanDetails AWS API Documentation
|
|
1099
|
+
#
|
|
1100
|
+
class ContinuousScanDetails < Struct.new(
|
|
1101
|
+
:start_time,
|
|
1102
|
+
:end_time)
|
|
1103
|
+
SENSITIVE = []
|
|
1104
|
+
include Aws::Structure
|
|
1105
|
+
end
|
|
1106
|
+
|
|
1085
1107
|
# Contains information about the country where the remote IP address is
|
|
1086
1108
|
# located.
|
|
1087
1109
|
#
|
|
@@ -10044,10 +10066,16 @@ module Aws::GuardDuty
|
|
|
10044
10066
|
# name of the recovery point to be scanned.
|
|
10045
10067
|
# @return [String]
|
|
10046
10068
|
#
|
|
10069
|
+
# @!attribute [rw] continuous_scan_details
|
|
10070
|
+
# Contains information about the time range within the continuous
|
|
10071
|
+
# backup in Amazon Web Services Backup to scan.
|
|
10072
|
+
# @return [Types::ContinuousScanDetails]
|
|
10073
|
+
#
|
|
10047
10074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/RecoveryPoint AWS API Documentation
|
|
10048
10075
|
#
|
|
10049
10076
|
class RecoveryPoint < Struct.new(
|
|
10050
|
-
:backup_vault_name
|
|
10077
|
+
:backup_vault_name,
|
|
10078
|
+
:continuous_scan_details)
|
|
10051
10079
|
SENSITIVE = []
|
|
10052
10080
|
include Aws::Structure
|
|
10053
10081
|
end
|
|
@@ -11091,6 +11119,29 @@ module Aws::GuardDuty
|
|
|
11091
11119
|
include Aws::Structure
|
|
11092
11120
|
end
|
|
11093
11121
|
|
|
11122
|
+
# Contains information about the time range within the continuous backup
|
|
11123
|
+
# in Amazon Web Services Backup that was scanned for a point-in-time
|
|
11124
|
+
# recovery resource.
|
|
11125
|
+
#
|
|
11126
|
+
# @!attribute [rw] start_time
|
|
11127
|
+
# The timestamp representing the start of the time range that was
|
|
11128
|
+
# scanned.
|
|
11129
|
+
# @return [Time]
|
|
11130
|
+
#
|
|
11131
|
+
# @!attribute [rw] end_time
|
|
11132
|
+
# The timestamp representing the end of the time range that was
|
|
11133
|
+
# scanned.
|
|
11134
|
+
# @return [Time]
|
|
11135
|
+
#
|
|
11136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ScanConfigurationContinuousScanDetails AWS API Documentation
|
|
11137
|
+
#
|
|
11138
|
+
class ScanConfigurationContinuousScanDetails < Struct.new(
|
|
11139
|
+
:start_time,
|
|
11140
|
+
:end_time)
|
|
11141
|
+
SENSITIVE = []
|
|
11142
|
+
include Aws::Structure
|
|
11143
|
+
end
|
|
11144
|
+
|
|
11094
11145
|
# Contains information about the recovery point configuration used in
|
|
11095
11146
|
# the scan.
|
|
11096
11147
|
#
|
|
@@ -11099,10 +11150,16 @@ module Aws::GuardDuty
|
|
|
11099
11150
|
# recovery point for the scanned.
|
|
11100
11151
|
# @return [String]
|
|
11101
11152
|
#
|
|
11153
|
+
# @!attribute [rw] continuous_scan_details
|
|
11154
|
+
# The time range within the continuous backup in Amazon Web Services
|
|
11155
|
+
# Backup that was scanned for a point-in-time recovery resource.
|
|
11156
|
+
# @return [Types::ScanConfigurationContinuousScanDetails]
|
|
11157
|
+
#
|
|
11102
11158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ScanConfigurationRecoveryPoint AWS API Documentation
|
|
11103
11159
|
#
|
|
11104
11160
|
class ScanConfigurationRecoveryPoint < Struct.new(
|
|
11105
|
-
:backup_vault_name
|
|
11161
|
+
:backup_vault_name,
|
|
11162
|
+
:continuous_scan_details)
|
|
11106
11163
|
SENSITIVE = []
|
|
11107
11164
|
include Aws::Structure
|
|
11108
11165
|
end
|
data/lib/aws-sdk-guardduty.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -628,7 +628,7 @@ module Aws
|
|
|
628
628
|
def detector_id: () -> ::String
|
|
629
629
|
def admin_detector_id: () -> ::String
|
|
630
630
|
def resource_arn: () -> ::String
|
|
631
|
-
def resource_type: () -> ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET")
|
|
631
|
+
def resource_type: () -> ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET" | "S3_POINT_IN_TIME_RECOVERY")
|
|
632
632
|
def scanned_resources_count: () -> ::Integer
|
|
633
633
|
def skipped_resources_count: () -> ::Integer
|
|
634
634
|
def failed_resources_count: () -> ::Integer
|
|
@@ -1041,7 +1041,11 @@ module Aws
|
|
|
1041
1041
|
baseline_resource_arn: ::String
|
|
1042
1042
|
}?,
|
|
1043
1043
|
recovery_point: {
|
|
1044
|
-
backup_vault_name: ::String
|
|
1044
|
+
backup_vault_name: ::String,
|
|
1045
|
+
continuous_scan_details: {
|
|
1046
|
+
start_time: ::Time?,
|
|
1047
|
+
end_time: ::Time
|
|
1048
|
+
}?
|
|
1045
1049
|
}?
|
|
1046
1050
|
}
|
|
1047
1051
|
) -> _StartMalwareScanResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -286,6 +286,12 @@ module Aws::GuardDuty
|
|
|
286
286
|
SENSITIVE: []
|
|
287
287
|
end
|
|
288
288
|
|
|
289
|
+
class ContinuousScanDetails
|
|
290
|
+
attr_accessor start_time: ::Time
|
|
291
|
+
attr_accessor end_time: ::Time
|
|
292
|
+
SENSITIVE: []
|
|
293
|
+
end
|
|
294
|
+
|
|
289
295
|
class Country
|
|
290
296
|
attr_accessor country_code: ::String
|
|
291
297
|
attr_accessor country_name: ::String
|
|
@@ -1185,7 +1191,7 @@ module Aws::GuardDuty
|
|
|
1185
1191
|
attr_accessor detector_id: ::String
|
|
1186
1192
|
attr_accessor admin_detector_id: ::String
|
|
1187
1193
|
attr_accessor resource_arn: ::String
|
|
1188
|
-
attr_accessor resource_type: ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET")
|
|
1194
|
+
attr_accessor resource_type: ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET" | "S3_POINT_IN_TIME_RECOVERY")
|
|
1189
1195
|
attr_accessor scanned_resources_count: ::Integer
|
|
1190
1196
|
attr_accessor skipped_resources_count: ::Integer
|
|
1191
1197
|
attr_accessor failed_resources_count: ::Integer
|
|
@@ -1839,7 +1845,7 @@ module Aws::GuardDuty
|
|
|
1839
1845
|
|
|
1840
1846
|
class MalwareScan
|
|
1841
1847
|
attr_accessor resource_arn: ::String
|
|
1842
|
-
attr_accessor resource_type: ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET")
|
|
1848
|
+
attr_accessor resource_type: ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET" | "S3_POINT_IN_TIME_RECOVERY")
|
|
1843
1849
|
attr_accessor scan_id: ::String
|
|
1844
1850
|
attr_accessor scan_status: ("RUNNING" | "COMPLETED" | "COMPLETED_WITH_ISSUES" | "FAILED" | "SKIPPED")
|
|
1845
1851
|
attr_accessor scan_result_status: ("NO_THREATS_FOUND" | "THREATS_FOUND")
|
|
@@ -2211,6 +2217,7 @@ module Aws::GuardDuty
|
|
|
2211
2217
|
|
|
2212
2218
|
class RecoveryPoint
|
|
2213
2219
|
attr_accessor backup_vault_name: ::String
|
|
2220
|
+
attr_accessor continuous_scan_details: Types::ContinuousScanDetails
|
|
2214
2221
|
SENSITIVE: []
|
|
2215
2222
|
end
|
|
2216
2223
|
|
|
@@ -2448,8 +2455,15 @@ module Aws::GuardDuty
|
|
|
2448
2455
|
SENSITIVE: []
|
|
2449
2456
|
end
|
|
2450
2457
|
|
|
2458
|
+
class ScanConfigurationContinuousScanDetails
|
|
2459
|
+
attr_accessor start_time: ::Time
|
|
2460
|
+
attr_accessor end_time: ::Time
|
|
2461
|
+
SENSITIVE: []
|
|
2462
|
+
end
|
|
2463
|
+
|
|
2451
2464
|
class ScanConfigurationRecoveryPoint
|
|
2452
2465
|
attr_accessor backup_vault_name: ::String
|
|
2466
|
+
attr_accessor continuous_scan_details: Types::ScanConfigurationContinuousScanDetails
|
|
2453
2467
|
SENSITIVE: []
|
|
2454
2468
|
end
|
|
2455
2469
|
|
|
@@ -2516,7 +2530,7 @@ module Aws::GuardDuty
|
|
|
2516
2530
|
|
|
2517
2531
|
class ScannedResource
|
|
2518
2532
|
attr_accessor scanned_resource_arn: ::String
|
|
2519
|
-
attr_accessor scanned_resource_type: ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET")
|
|
2533
|
+
attr_accessor scanned_resource_type: ("EBS_RECOVERY_POINT" | "EBS_SNAPSHOT" | "EBS_VOLUME" | "EC2_AMI" | "EC2_INSTANCE" | "EC2_RECOVERY_POINT" | "S3_RECOVERY_POINT" | "S3_BUCKET" | "S3_POINT_IN_TIME_RECOVERY")
|
|
2520
2534
|
attr_accessor scanned_resource_status: ("RUNNING" | "COMPLETED" | "COMPLETED_WITH_ISSUES" | "FAILED" | "SKIPPED")
|
|
2521
2535
|
attr_accessor scan_status_reason: ("ACCESS_DENIED" | "RESOURCE_NOT_FOUND" | "SNAPSHOT_SIZE_LIMIT_EXCEEDED" | "RESOURCE_UNAVAILABLE" | "INCONSISTENT_SOURCE" | "INCREMENTAL_NO_DIFFERENCE" | "NO_EBS_VOLUMES_FOUND" | "UNSUPPORTED_PRODUCT_CODE_TYPE" | "AMI_SNAPSHOT_LIMIT_EXCEEDED" | "UNRELATED_RESOURCES" | "BASE_RESOURCE_NOT_SCANNED" | "BASE_CREATED_AFTER_TARGET" | "UNSUPPORTED_FOR_INCREMENTAL" | "UNSUPPORTED_AMI" | "UNSUPPORTED_SNAPSHOT" | "UNSUPPORTED_COMPOSITE_RECOVERY_POINT" | "ALL_FILES_SKIPPED_OR_FAILED")
|
|
2522
2536
|
attr_accessor resource_details: Types::ScannedResourceDetails
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.152.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|