aws-sdk-guardduty 1.124.0 → 1.125.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 +580 -2
- data/lib/aws-sdk-guardduty/client_api.rb +249 -0
- data/lib/aws-sdk-guardduty/types.rb +588 -1
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/client.rbs +146 -0
- data/sig/types.rbs +142 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -265,6 +265,23 @@ module Aws
|
|
265
265
|
) -> _CreateSampleFindingsResponseSuccess
|
266
266
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSampleFindingsResponseSuccess
|
267
267
|
|
268
|
+
interface _CreateThreatEntitySetResponseSuccess
|
269
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateThreatEntitySetResponse]
|
270
|
+
def threat_entity_set_id: () -> ::String
|
271
|
+
end
|
272
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#create_threat_entity_set-instance_method
|
273
|
+
def create_threat_entity_set: (
|
274
|
+
detector_id: ::String,
|
275
|
+
name: ::String,
|
276
|
+
format: ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE"),
|
277
|
+
location: ::String,
|
278
|
+
?expected_bucket_owner: ::String,
|
279
|
+
activate: bool,
|
280
|
+
?client_token: ::String,
|
281
|
+
?tags: Hash[::String, ::String]
|
282
|
+
) -> _CreateThreatEntitySetResponseSuccess
|
283
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateThreatEntitySetResponseSuccess
|
284
|
+
|
268
285
|
interface _CreateThreatIntelSetResponseSuccess
|
269
286
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateThreatIntelSetResponse]
|
270
287
|
def threat_intel_set_id: () -> ::String
|
@@ -282,6 +299,23 @@ module Aws
|
|
282
299
|
) -> _CreateThreatIntelSetResponseSuccess
|
283
300
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateThreatIntelSetResponseSuccess
|
284
301
|
|
302
|
+
interface _CreateTrustedEntitySetResponseSuccess
|
303
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrustedEntitySetResponse]
|
304
|
+
def trusted_entity_set_id: () -> ::String
|
305
|
+
end
|
306
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#create_trusted_entity_set-instance_method
|
307
|
+
def create_trusted_entity_set: (
|
308
|
+
detector_id: ::String,
|
309
|
+
name: ::String,
|
310
|
+
format: ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE"),
|
311
|
+
location: ::String,
|
312
|
+
?expected_bucket_owner: ::String,
|
313
|
+
activate: bool,
|
314
|
+
?client_token: ::String,
|
315
|
+
?tags: Hash[::String, ::String]
|
316
|
+
) -> _CreateTrustedEntitySetResponseSuccess
|
317
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrustedEntitySetResponseSuccess
|
318
|
+
|
285
319
|
interface _DeclineInvitationsResponseSuccess
|
286
320
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeclineInvitationsResponse]
|
287
321
|
def unprocessed_accounts: () -> ::Array[Types::UnprocessedAccount]
|
@@ -358,6 +392,16 @@ module Aws
|
|
358
392
|
) -> _DeletePublishingDestinationResponseSuccess
|
359
393
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePublishingDestinationResponseSuccess
|
360
394
|
|
395
|
+
interface _DeleteThreatEntitySetResponseSuccess
|
396
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteThreatEntitySetResponse]
|
397
|
+
end
|
398
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#delete_threat_entity_set-instance_method
|
399
|
+
def delete_threat_entity_set: (
|
400
|
+
detector_id: ::String,
|
401
|
+
threat_entity_set_id: ::String
|
402
|
+
) -> _DeleteThreatEntitySetResponseSuccess
|
403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteThreatEntitySetResponseSuccess
|
404
|
+
|
361
405
|
interface _DeleteThreatIntelSetResponseSuccess
|
362
406
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteThreatIntelSetResponse]
|
363
407
|
end
|
@@ -368,6 +412,16 @@ module Aws
|
|
368
412
|
) -> _DeleteThreatIntelSetResponseSuccess
|
369
413
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteThreatIntelSetResponseSuccess
|
370
414
|
|
415
|
+
interface _DeleteTrustedEntitySetResponseSuccess
|
416
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTrustedEntitySetResponse]
|
417
|
+
end
|
418
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#delete_trusted_entity_set-instance_method
|
419
|
+
def delete_trusted_entity_set: (
|
420
|
+
detector_id: ::String,
|
421
|
+
trusted_entity_set_id: ::String
|
422
|
+
) -> _DeleteTrustedEntitySetResponseSuccess
|
423
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTrustedEntitySetResponseSuccess
|
424
|
+
|
371
425
|
interface _DescribeMalwareScansResponseSuccess
|
372
426
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMalwareScansResponse]
|
373
427
|
def scans: () -> ::Array[Types::Scan]
|
@@ -694,6 +748,25 @@ module Aws
|
|
694
748
|
) -> _GetRemainingFreeTrialDaysResponseSuccess
|
695
749
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRemainingFreeTrialDaysResponseSuccess
|
696
750
|
|
751
|
+
interface _GetThreatEntitySetResponseSuccess
|
752
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetThreatEntitySetResponse]
|
753
|
+
def name: () -> ::String
|
754
|
+
def format: () -> ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE")
|
755
|
+
def location: () -> ::String
|
756
|
+
def expected_bucket_owner: () -> ::String
|
757
|
+
def status: () -> ("INACTIVE" | "ACTIVATING" | "ACTIVE" | "DEACTIVATING" | "ERROR" | "DELETE_PENDING" | "DELETED")
|
758
|
+
def tags: () -> ::Hash[::String, ::String]
|
759
|
+
def created_at: () -> ::Time
|
760
|
+
def updated_at: () -> ::Time
|
761
|
+
def error_details: () -> ::String
|
762
|
+
end
|
763
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#get_threat_entity_set-instance_method
|
764
|
+
def get_threat_entity_set: (
|
765
|
+
detector_id: ::String,
|
766
|
+
threat_entity_set_id: ::String
|
767
|
+
) -> _GetThreatEntitySetResponseSuccess
|
768
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetThreatEntitySetResponseSuccess
|
769
|
+
|
697
770
|
interface _GetThreatIntelSetResponseSuccess
|
698
771
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetThreatIntelSetResponse]
|
699
772
|
def name: () -> ::String
|
@@ -710,6 +783,25 @@ module Aws
|
|
710
783
|
) -> _GetThreatIntelSetResponseSuccess
|
711
784
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetThreatIntelSetResponseSuccess
|
712
785
|
|
786
|
+
interface _GetTrustedEntitySetResponseSuccess
|
787
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTrustedEntitySetResponse]
|
788
|
+
def name: () -> ::String
|
789
|
+
def format: () -> ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE")
|
790
|
+
def location: () -> ::String
|
791
|
+
def expected_bucket_owner: () -> ::String
|
792
|
+
def status: () -> ("INACTIVE" | "ACTIVATING" | "ACTIVE" | "DEACTIVATING" | "ERROR" | "DELETE_PENDING" | "DELETED")
|
793
|
+
def tags: () -> ::Hash[::String, ::String]
|
794
|
+
def created_at: () -> ::Time
|
795
|
+
def updated_at: () -> ::Time
|
796
|
+
def error_details: () -> ::String
|
797
|
+
end
|
798
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#get_trusted_entity_set-instance_method
|
799
|
+
def get_trusted_entity_set: (
|
800
|
+
detector_id: ::String,
|
801
|
+
trusted_entity_set_id: ::String
|
802
|
+
) -> _GetTrustedEntitySetResponseSuccess
|
803
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrustedEntitySetResponseSuccess
|
804
|
+
|
713
805
|
interface _GetUsageStatisticsResponseSuccess
|
714
806
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetUsageStatisticsResponse]
|
715
807
|
def usage_statistics: () -> Types::UsageStatistics
|
@@ -915,6 +1007,19 @@ module Aws
|
|
915
1007
|
) -> _ListTagsForResourceResponseSuccess
|
916
1008
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
917
1009
|
|
1010
|
+
interface _ListThreatEntitySetsResponseSuccess
|
1011
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListThreatEntitySetsResponse]
|
1012
|
+
def threat_entity_set_ids: () -> ::Array[::String]
|
1013
|
+
def next_token: () -> ::String
|
1014
|
+
end
|
1015
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#list_threat_entity_sets-instance_method
|
1016
|
+
def list_threat_entity_sets: (
|
1017
|
+
detector_id: ::String,
|
1018
|
+
?max_results: ::Integer,
|
1019
|
+
?next_token: ::String
|
1020
|
+
) -> _ListThreatEntitySetsResponseSuccess
|
1021
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListThreatEntitySetsResponseSuccess
|
1022
|
+
|
918
1023
|
interface _ListThreatIntelSetsResponseSuccess
|
919
1024
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListThreatIntelSetsResponse]
|
920
1025
|
def threat_intel_set_ids: () -> ::Array[::String]
|
@@ -928,6 +1033,19 @@ module Aws
|
|
928
1033
|
) -> _ListThreatIntelSetsResponseSuccess
|
929
1034
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListThreatIntelSetsResponseSuccess
|
930
1035
|
|
1036
|
+
interface _ListTrustedEntitySetsResponseSuccess
|
1037
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrustedEntitySetsResponse]
|
1038
|
+
def trusted_entity_set_ids: () -> ::Array[::String]
|
1039
|
+
def next_token: () -> ::String
|
1040
|
+
end
|
1041
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#list_trusted_entity_sets-instance_method
|
1042
|
+
def list_trusted_entity_sets: (
|
1043
|
+
detector_id: ::String,
|
1044
|
+
?max_results: ::Integer,
|
1045
|
+
?next_token: ::String
|
1046
|
+
) -> _ListTrustedEntitySetsResponseSuccess
|
1047
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrustedEntitySetsResponseSuccess
|
1048
|
+
|
931
1049
|
interface _StartMalwareScanResponseSuccess
|
932
1050
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartMalwareScanResponse]
|
933
1051
|
def scan_id: () -> ::String
|
@@ -1221,6 +1339,20 @@ module Aws
|
|
1221
1339
|
) -> _UpdatePublishingDestinationResponseSuccess
|
1222
1340
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePublishingDestinationResponseSuccess
|
1223
1341
|
|
1342
|
+
interface _UpdateThreatEntitySetResponseSuccess
|
1343
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateThreatEntitySetResponse]
|
1344
|
+
end
|
1345
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#update_threat_entity_set-instance_method
|
1346
|
+
def update_threat_entity_set: (
|
1347
|
+
detector_id: ::String,
|
1348
|
+
threat_entity_set_id: ::String,
|
1349
|
+
?name: ::String,
|
1350
|
+
?location: ::String,
|
1351
|
+
?expected_bucket_owner: ::String,
|
1352
|
+
?activate: bool
|
1353
|
+
) -> _UpdateThreatEntitySetResponseSuccess
|
1354
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateThreatEntitySetResponseSuccess
|
1355
|
+
|
1224
1356
|
interface _UpdateThreatIntelSetResponseSuccess
|
1225
1357
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateThreatIntelSetResponse]
|
1226
1358
|
end
|
@@ -1234,6 +1366,20 @@ module Aws
|
|
1234
1366
|
?expected_bucket_owner: ::String
|
1235
1367
|
) -> _UpdateThreatIntelSetResponseSuccess
|
1236
1368
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateThreatIntelSetResponseSuccess
|
1369
|
+
|
1370
|
+
interface _UpdateTrustedEntitySetResponseSuccess
|
1371
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTrustedEntitySetResponse]
|
1372
|
+
end
|
1373
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#update_trusted_entity_set-instance_method
|
1374
|
+
def update_trusted_entity_set: (
|
1375
|
+
detector_id: ::String,
|
1376
|
+
trusted_entity_set_id: ::String,
|
1377
|
+
?name: ::String,
|
1378
|
+
?location: ::String,
|
1379
|
+
?expected_bucket_owner: ::String,
|
1380
|
+
?activate: bool
|
1381
|
+
) -> _UpdateTrustedEntitySetResponseSuccess
|
1382
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTrustedEntitySetResponseSuccess
|
1237
1383
|
end
|
1238
1384
|
end
|
1239
1385
|
end
|
data/sig/types.rbs
CHANGED
@@ -455,6 +455,23 @@ module Aws::GuardDuty
|
|
455
455
|
class CreateSampleFindingsResponse < Aws::EmptyStructure
|
456
456
|
end
|
457
457
|
|
458
|
+
class CreateThreatEntitySetRequest
|
459
|
+
attr_accessor detector_id: ::String
|
460
|
+
attr_accessor name: ::String
|
461
|
+
attr_accessor format: ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE")
|
462
|
+
attr_accessor location: ::String
|
463
|
+
attr_accessor expected_bucket_owner: ::String
|
464
|
+
attr_accessor activate: bool
|
465
|
+
attr_accessor client_token: ::String
|
466
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class CreateThreatEntitySetResponse
|
471
|
+
attr_accessor threat_entity_set_id: ::String
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
458
475
|
class CreateThreatIntelSetRequest
|
459
476
|
attr_accessor detector_id: ::String
|
460
477
|
attr_accessor name: ::String
|
@@ -472,6 +489,23 @@ module Aws::GuardDuty
|
|
472
489
|
SENSITIVE: []
|
473
490
|
end
|
474
491
|
|
492
|
+
class CreateTrustedEntitySetRequest
|
493
|
+
attr_accessor detector_id: ::String
|
494
|
+
attr_accessor name: ::String
|
495
|
+
attr_accessor format: ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE")
|
496
|
+
attr_accessor location: ::String
|
497
|
+
attr_accessor expected_bucket_owner: ::String
|
498
|
+
attr_accessor activate: bool
|
499
|
+
attr_accessor client_token: ::String
|
500
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class CreateTrustedEntitySetResponse
|
505
|
+
attr_accessor trusted_entity_set_id: ::String
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
475
509
|
class DNSLogsConfigurationResult
|
476
510
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
477
511
|
SENSITIVE: []
|
@@ -594,6 +628,15 @@ module Aws::GuardDuty
|
|
594
628
|
class DeletePublishingDestinationResponse < Aws::EmptyStructure
|
595
629
|
end
|
596
630
|
|
631
|
+
class DeleteThreatEntitySetRequest
|
632
|
+
attr_accessor detector_id: ::String
|
633
|
+
attr_accessor threat_entity_set_id: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class DeleteThreatEntitySetResponse < Aws::EmptyStructure
|
638
|
+
end
|
639
|
+
|
597
640
|
class DeleteThreatIntelSetRequest
|
598
641
|
attr_accessor detector_id: ::String
|
599
642
|
attr_accessor threat_intel_set_id: ::String
|
@@ -603,6 +646,15 @@ module Aws::GuardDuty
|
|
603
646
|
class DeleteThreatIntelSetResponse < Aws::EmptyStructure
|
604
647
|
end
|
605
648
|
|
649
|
+
class DeleteTrustedEntitySetRequest
|
650
|
+
attr_accessor detector_id: ::String
|
651
|
+
attr_accessor trusted_entity_set_id: ::String
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class DeleteTrustedEntitySetResponse < Aws::EmptyStructure
|
656
|
+
end
|
657
|
+
|
606
658
|
class DescribeMalwareScansRequest
|
607
659
|
attr_accessor detector_id: ::String
|
608
660
|
attr_accessor next_token: ::String
|
@@ -1120,6 +1172,25 @@ module Aws::GuardDuty
|
|
1120
1172
|
SENSITIVE: []
|
1121
1173
|
end
|
1122
1174
|
|
1175
|
+
class GetThreatEntitySetRequest
|
1176
|
+
attr_accessor detector_id: ::String
|
1177
|
+
attr_accessor threat_entity_set_id: ::String
|
1178
|
+
SENSITIVE: []
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
class GetThreatEntitySetResponse
|
1182
|
+
attr_accessor name: ::String
|
1183
|
+
attr_accessor format: ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE")
|
1184
|
+
attr_accessor location: ::String
|
1185
|
+
attr_accessor expected_bucket_owner: ::String
|
1186
|
+
attr_accessor status: ("INACTIVE" | "ACTIVATING" | "ACTIVE" | "DEACTIVATING" | "ERROR" | "DELETE_PENDING" | "DELETED")
|
1187
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1188
|
+
attr_accessor created_at: ::Time
|
1189
|
+
attr_accessor updated_at: ::Time
|
1190
|
+
attr_accessor error_details: ::String
|
1191
|
+
SENSITIVE: []
|
1192
|
+
end
|
1193
|
+
|
1123
1194
|
class GetThreatIntelSetRequest
|
1124
1195
|
attr_accessor detector_id: ::String
|
1125
1196
|
attr_accessor threat_intel_set_id: ::String
|
@@ -1136,6 +1207,25 @@ module Aws::GuardDuty
|
|
1136
1207
|
SENSITIVE: []
|
1137
1208
|
end
|
1138
1209
|
|
1210
|
+
class GetTrustedEntitySetRequest
|
1211
|
+
attr_accessor detector_id: ::String
|
1212
|
+
attr_accessor trusted_entity_set_id: ::String
|
1213
|
+
SENSITIVE: []
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
class GetTrustedEntitySetResponse
|
1217
|
+
attr_accessor name: ::String
|
1218
|
+
attr_accessor format: ("TXT" | "STIX" | "OTX_CSV" | "ALIEN_VAULT" | "PROOF_POINT" | "FIRE_EYE")
|
1219
|
+
attr_accessor location: ::String
|
1220
|
+
attr_accessor expected_bucket_owner: ::String
|
1221
|
+
attr_accessor status: ("INACTIVE" | "ACTIVATING" | "ACTIVE" | "DEACTIVATING" | "ERROR" | "DELETE_PENDING" | "DELETED")
|
1222
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1223
|
+
attr_accessor created_at: ::Time
|
1224
|
+
attr_accessor updated_at: ::Time
|
1225
|
+
attr_accessor error_details: ::String
|
1226
|
+
SENSITIVE: []
|
1227
|
+
end
|
1228
|
+
|
1139
1229
|
class GetUsageStatisticsRequest
|
1140
1230
|
attr_accessor detector_id: ::String
|
1141
1231
|
attr_accessor usage_statistic_type: ("SUM_BY_ACCOUNT" | "SUM_BY_DATA_SOURCE" | "SUM_BY_RESOURCE" | "TOP_RESOURCES" | "SUM_BY_FEATURES" | "TOP_ACCOUNTS_BY_FEATURE")
|
@@ -1499,6 +1589,19 @@ module Aws::GuardDuty
|
|
1499
1589
|
SENSITIVE: []
|
1500
1590
|
end
|
1501
1591
|
|
1592
|
+
class ListThreatEntitySetsRequest
|
1593
|
+
attr_accessor detector_id: ::String
|
1594
|
+
attr_accessor max_results: ::Integer
|
1595
|
+
attr_accessor next_token: ::String
|
1596
|
+
SENSITIVE: []
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
class ListThreatEntitySetsResponse
|
1600
|
+
attr_accessor threat_entity_set_ids: ::Array[::String]
|
1601
|
+
attr_accessor next_token: ::String
|
1602
|
+
SENSITIVE: []
|
1603
|
+
end
|
1604
|
+
|
1502
1605
|
class ListThreatIntelSetsRequest
|
1503
1606
|
attr_accessor detector_id: ::String
|
1504
1607
|
attr_accessor max_results: ::Integer
|
@@ -1512,6 +1615,19 @@ module Aws::GuardDuty
|
|
1512
1615
|
SENSITIVE: []
|
1513
1616
|
end
|
1514
1617
|
|
1618
|
+
class ListTrustedEntitySetsRequest
|
1619
|
+
attr_accessor detector_id: ::String
|
1620
|
+
attr_accessor max_results: ::Integer
|
1621
|
+
attr_accessor next_token: ::String
|
1622
|
+
SENSITIVE: []
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
class ListTrustedEntitySetsResponse
|
1626
|
+
attr_accessor trusted_entity_set_ids: ::Array[::String]
|
1627
|
+
attr_accessor next_token: ::String
|
1628
|
+
SENSITIVE: []
|
1629
|
+
end
|
1630
|
+
|
1515
1631
|
class LocalIpDetails
|
1516
1632
|
attr_accessor ip_address_v4: ::String
|
1517
1633
|
attr_accessor ip_address_v6: ::String
|
@@ -2495,6 +2611,19 @@ module Aws::GuardDuty
|
|
2495
2611
|
SENSITIVE: []
|
2496
2612
|
end
|
2497
2613
|
|
2614
|
+
class UpdateThreatEntitySetRequest
|
2615
|
+
attr_accessor detector_id: ::String
|
2616
|
+
attr_accessor threat_entity_set_id: ::String
|
2617
|
+
attr_accessor name: ::String
|
2618
|
+
attr_accessor location: ::String
|
2619
|
+
attr_accessor expected_bucket_owner: ::String
|
2620
|
+
attr_accessor activate: bool
|
2621
|
+
SENSITIVE: []
|
2622
|
+
end
|
2623
|
+
|
2624
|
+
class UpdateThreatEntitySetResponse < Aws::EmptyStructure
|
2625
|
+
end
|
2626
|
+
|
2498
2627
|
class UpdateThreatIntelSetRequest
|
2499
2628
|
attr_accessor detector_id: ::String
|
2500
2629
|
attr_accessor threat_intel_set_id: ::String
|
@@ -2508,6 +2637,19 @@ module Aws::GuardDuty
|
|
2508
2637
|
class UpdateThreatIntelSetResponse < Aws::EmptyStructure
|
2509
2638
|
end
|
2510
2639
|
|
2640
|
+
class UpdateTrustedEntitySetRequest
|
2641
|
+
attr_accessor detector_id: ::String
|
2642
|
+
attr_accessor trusted_entity_set_id: ::String
|
2643
|
+
attr_accessor name: ::String
|
2644
|
+
attr_accessor location: ::String
|
2645
|
+
attr_accessor expected_bucket_owner: ::String
|
2646
|
+
attr_accessor activate: bool
|
2647
|
+
SENSITIVE: []
|
2648
|
+
end
|
2649
|
+
|
2650
|
+
class UpdateTrustedEntitySetResponse < Aws::EmptyStructure
|
2651
|
+
end
|
2652
|
+
|
2511
2653
|
class UsageAccountResult
|
2512
2654
|
attr_accessor account_id: ::String
|
2513
2655
|
attr_accessor total: Types::Total
|