aws-sdk-securityhub 1.112.0 → 1.114.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-securityhub/client.rb +108 -85
- data/lib/aws-sdk-securityhub/client_api.rb +1 -1
- data/lib/aws-sdk-securityhub/types.rb +74 -61
- data/lib/aws-sdk-securityhub.rb +1 -1
- data/sig/client.rbs +89 -88
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +1 -1
- metadata +6 -6
@@ -312,6 +312,15 @@ module Aws::SecurityHub
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :stub_responses (false)
|
316
325
|
# Causes the client to return stubbed responses. By default
|
317
326
|
# fake responses are generated and returned. You can specify
|
@@ -872,15 +881,15 @@ module Aws::SecurityHub
|
|
872
881
|
# resp.rules[0].criteria.confidence #=> Array
|
873
882
|
# resp.rules[0].criteria.confidence[0].gte #=> Float
|
874
883
|
# resp.rules[0].criteria.confidence[0].lte #=> Float
|
884
|
+
# resp.rules[0].criteria.confidence[0].eq #=> Float
|
875
885
|
# resp.rules[0].criteria.confidence[0].gt #=> Float
|
876
886
|
# resp.rules[0].criteria.confidence[0].lt #=> Float
|
877
|
-
# resp.rules[0].criteria.confidence[0].eq #=> Float
|
878
887
|
# resp.rules[0].criteria.criticality #=> Array
|
879
888
|
# resp.rules[0].criteria.criticality[0].gte #=> Float
|
880
889
|
# resp.rules[0].criteria.criticality[0].lte #=> Float
|
890
|
+
# resp.rules[0].criteria.criticality[0].eq #=> Float
|
881
891
|
# resp.rules[0].criteria.criticality[0].gt #=> Float
|
882
892
|
# resp.rules[0].criteria.criticality[0].lt #=> Float
|
883
|
-
# resp.rules[0].criteria.criticality[0].eq #=> Float
|
884
893
|
# resp.rules[0].criteria.title #=> Array
|
885
894
|
# resp.rules[0].criteria.title[0].value #=> String
|
886
895
|
# resp.rules[0].criteria.title[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS", "CONTAINS", "NOT_CONTAINS"
|
@@ -1580,18 +1589,18 @@ module Aws::SecurityHub
|
|
1580
1589
|
# {
|
1581
1590
|
# gte: 1.0,
|
1582
1591
|
# lte: 1.0,
|
1592
|
+
# eq: 1.0,
|
1583
1593
|
# gt: 1.0,
|
1584
1594
|
# lt: 1.0,
|
1585
|
-
# eq: 1.0,
|
1586
1595
|
# },
|
1587
1596
|
# ],
|
1588
1597
|
# criticality: [
|
1589
1598
|
# {
|
1590
1599
|
# gte: 1.0,
|
1591
1600
|
# lte: 1.0,
|
1601
|
+
# eq: 1.0,
|
1592
1602
|
# gt: 1.0,
|
1593
1603
|
# lt: 1.0,
|
1594
|
-
# eq: 1.0,
|
1595
1604
|
# },
|
1596
1605
|
# ],
|
1597
1606
|
# title: [
|
@@ -2391,18 +2400,18 @@ module Aws::SecurityHub
|
|
2391
2400
|
# {
|
2392
2401
|
# gte: 1.0,
|
2393
2402
|
# lte: 1.0,
|
2403
|
+
# eq: 1.0,
|
2394
2404
|
# gt: 1.0,
|
2395
2405
|
# lt: 1.0,
|
2396
|
-
# eq: 1.0,
|
2397
2406
|
# },
|
2398
2407
|
# ],
|
2399
2408
|
# criticality: [
|
2400
2409
|
# {
|
2401
2410
|
# gte: 1.0,
|
2402
2411
|
# lte: 1.0,
|
2412
|
+
# eq: 1.0,
|
2403
2413
|
# gt: 1.0,
|
2404
2414
|
# lt: 1.0,
|
2405
|
-
# eq: 1.0,
|
2406
2415
|
# },
|
2407
2416
|
# ],
|
2408
2417
|
# title: [
|
@@ -2838,21 +2847,24 @@ module Aws::SecurityHub
|
|
2838
2847
|
#
|
2839
2848
|
# The options are as follows:
|
2840
2849
|
#
|
2841
|
-
# * `ALL_REGIONS` -
|
2842
|
-
#
|
2843
|
-
#
|
2844
|
-
#
|
2850
|
+
# * `ALL_REGIONS` - Aggregates findings from all of the Regions where
|
2851
|
+
# Security Hub is enabled. When you choose this option, Security Hub
|
2852
|
+
# also automatically aggregates findings from new Regions as Security
|
2853
|
+
# Hub supports them and you opt into them.
|
2845
2854
|
#
|
2846
|
-
# * `ALL_REGIONS_EXCEPT_SPECIFIED` -
|
2847
|
-
#
|
2848
|
-
#
|
2849
|
-
#
|
2850
|
-
#
|
2855
|
+
# * `ALL_REGIONS_EXCEPT_SPECIFIED` - Aggregates findings from all of the
|
2856
|
+
# Regions where Security Hub is enabled, except for the Regions listed
|
2857
|
+
# in the `Regions` parameter. When you choose this option, Security
|
2858
|
+
# Hub also automatically aggregates findings from new Regions as
|
2859
|
+
# Security Hub supports them and you opt into them.
|
2851
2860
|
#
|
2852
|
-
# * `SPECIFIED_REGIONS` -
|
2853
|
-
#
|
2861
|
+
# * `SPECIFIED_REGIONS` - Aggregates findings only from the Regions
|
2862
|
+
# listed in the `Regions` parameter. Security Hub does not
|
2854
2863
|
# automatically aggregate findings from new Regions.
|
2855
2864
|
#
|
2865
|
+
# * `NO_REGIONS` - Aggregates no data because no Regions are selected as
|
2866
|
+
# linked Regions.
|
2867
|
+
#
|
2856
2868
|
# @option params [Array<String>] :regions
|
2857
2869
|
# If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this is
|
2858
2870
|
# a space-separated list of Regions that do not aggregate findings to
|
@@ -2862,6 +2874,9 @@ module Aws::SecurityHub
|
|
2862
2874
|
# space-separated list of Regions that do aggregate findings to the
|
2863
2875
|
# aggregation Region.
|
2864
2876
|
#
|
2877
|
+
# An `InvalidInputException` error results if you populate this field
|
2878
|
+
# while `RegionLinkingMode` is `NO_REGIONS`.
|
2879
|
+
#
|
2865
2880
|
# @return [Types::CreateFindingAggregatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2866
2881
|
#
|
2867
2882
|
# * {Types::CreateFindingAggregatorResponse#finding_aggregator_arn #finding_aggregator_arn} => String
|
@@ -3057,18 +3072,18 @@ module Aws::SecurityHub
|
|
3057
3072
|
# {
|
3058
3073
|
# gte: 1.0,
|
3059
3074
|
# lte: 1.0,
|
3075
|
+
# eq: 1.0,
|
3060
3076
|
# gt: 1.0,
|
3061
3077
|
# lt: 1.0,
|
3062
|
-
# eq: 1.0,
|
3063
3078
|
# },
|
3064
3079
|
# ],
|
3065
3080
|
# severity_normalized: [
|
3066
3081
|
# {
|
3067
3082
|
# gte: 1.0,
|
3068
3083
|
# lte: 1.0,
|
3084
|
+
# eq: 1.0,
|
3069
3085
|
# gt: 1.0,
|
3070
3086
|
# lt: 1.0,
|
3071
|
-
# eq: 1.0,
|
3072
3087
|
# },
|
3073
3088
|
# ],
|
3074
3089
|
# severity_label: [
|
@@ -3081,18 +3096,18 @@ module Aws::SecurityHub
|
|
3081
3096
|
# {
|
3082
3097
|
# gte: 1.0,
|
3083
3098
|
# lte: 1.0,
|
3099
|
+
# eq: 1.0,
|
3084
3100
|
# gt: 1.0,
|
3085
3101
|
# lt: 1.0,
|
3086
|
-
# eq: 1.0,
|
3087
3102
|
# },
|
3088
3103
|
# ],
|
3089
3104
|
# criticality: [
|
3090
3105
|
# {
|
3091
3106
|
# gte: 1.0,
|
3092
3107
|
# lte: 1.0,
|
3108
|
+
# eq: 1.0,
|
3093
3109
|
# gt: 1.0,
|
3094
3110
|
# lt: 1.0,
|
3095
|
-
# eq: 1.0,
|
3096
3111
|
# },
|
3097
3112
|
# ],
|
3098
3113
|
# title: [
|
@@ -3195,9 +3210,9 @@ module Aws::SecurityHub
|
|
3195
3210
|
# {
|
3196
3211
|
# gte: 1.0,
|
3197
3212
|
# lte: 1.0,
|
3213
|
+
# eq: 1.0,
|
3198
3214
|
# gt: 1.0,
|
3199
3215
|
# lt: 1.0,
|
3200
|
-
# eq: 1.0,
|
3201
3216
|
# },
|
3202
3217
|
# ],
|
3203
3218
|
# network_source_domain: [
|
@@ -3226,9 +3241,9 @@ module Aws::SecurityHub
|
|
3226
3241
|
# {
|
3227
3242
|
# gte: 1.0,
|
3228
3243
|
# lte: 1.0,
|
3244
|
+
# eq: 1.0,
|
3229
3245
|
# gt: 1.0,
|
3230
3246
|
# lt: 1.0,
|
3231
|
-
# eq: 1.0,
|
3232
3247
|
# },
|
3233
3248
|
# ],
|
3234
3249
|
# network_destination_domain: [
|
@@ -3253,18 +3268,18 @@ module Aws::SecurityHub
|
|
3253
3268
|
# {
|
3254
3269
|
# gte: 1.0,
|
3255
3270
|
# lte: 1.0,
|
3271
|
+
# eq: 1.0,
|
3256
3272
|
# gt: 1.0,
|
3257
3273
|
# lt: 1.0,
|
3258
|
-
# eq: 1.0,
|
3259
3274
|
# },
|
3260
3275
|
# ],
|
3261
3276
|
# process_parent_pid: [
|
3262
3277
|
# {
|
3263
3278
|
# gte: 1.0,
|
3264
3279
|
# lte: 1.0,
|
3280
|
+
# eq: 1.0,
|
3265
3281
|
# gt: 1.0,
|
3266
3282
|
# lt: 1.0,
|
3267
|
-
# eq: 1.0,
|
3268
3283
|
# },
|
3269
3284
|
# ],
|
3270
3285
|
# process_launched_at: [
|
@@ -3568,18 +3583,18 @@ module Aws::SecurityHub
|
|
3568
3583
|
# {
|
3569
3584
|
# gte: 1.0,
|
3570
3585
|
# lte: 1.0,
|
3586
|
+
# eq: 1.0,
|
3571
3587
|
# gt: 1.0,
|
3572
3588
|
# lt: 1.0,
|
3573
|
-
# eq: 1.0,
|
3574
3589
|
# },
|
3575
3590
|
# ],
|
3576
3591
|
# finding_provider_fields_criticality: [
|
3577
3592
|
# {
|
3578
3593
|
# gte: 1.0,
|
3579
3594
|
# lte: 1.0,
|
3595
|
+
# eq: 1.0,
|
3580
3596
|
# gt: 1.0,
|
3581
3597
|
# lt: 1.0,
|
3582
|
-
# eq: 1.0,
|
3583
3598
|
# },
|
3584
3599
|
# ],
|
3585
3600
|
# finding_provider_fields_related_findings_id: [
|
@@ -5742,18 +5757,18 @@ module Aws::SecurityHub
|
|
5742
5757
|
# {
|
5743
5758
|
# gte: 1.0,
|
5744
5759
|
# lte: 1.0,
|
5760
|
+
# eq: 1.0,
|
5745
5761
|
# gt: 1.0,
|
5746
5762
|
# lt: 1.0,
|
5747
|
-
# eq: 1.0,
|
5748
5763
|
# },
|
5749
5764
|
# ],
|
5750
5765
|
# severity_normalized: [
|
5751
5766
|
# {
|
5752
5767
|
# gte: 1.0,
|
5753
5768
|
# lte: 1.0,
|
5769
|
+
# eq: 1.0,
|
5754
5770
|
# gt: 1.0,
|
5755
5771
|
# lt: 1.0,
|
5756
|
-
# eq: 1.0,
|
5757
5772
|
# },
|
5758
5773
|
# ],
|
5759
5774
|
# severity_label: [
|
@@ -5766,18 +5781,18 @@ module Aws::SecurityHub
|
|
5766
5781
|
# {
|
5767
5782
|
# gte: 1.0,
|
5768
5783
|
# lte: 1.0,
|
5784
|
+
# eq: 1.0,
|
5769
5785
|
# gt: 1.0,
|
5770
5786
|
# lt: 1.0,
|
5771
|
-
# eq: 1.0,
|
5772
5787
|
# },
|
5773
5788
|
# ],
|
5774
5789
|
# criticality: [
|
5775
5790
|
# {
|
5776
5791
|
# gte: 1.0,
|
5777
5792
|
# lte: 1.0,
|
5793
|
+
# eq: 1.0,
|
5778
5794
|
# gt: 1.0,
|
5779
5795
|
# lt: 1.0,
|
5780
|
-
# eq: 1.0,
|
5781
5796
|
# },
|
5782
5797
|
# ],
|
5783
5798
|
# title: [
|
@@ -5880,9 +5895,9 @@ module Aws::SecurityHub
|
|
5880
5895
|
# {
|
5881
5896
|
# gte: 1.0,
|
5882
5897
|
# lte: 1.0,
|
5898
|
+
# eq: 1.0,
|
5883
5899
|
# gt: 1.0,
|
5884
5900
|
# lt: 1.0,
|
5885
|
-
# eq: 1.0,
|
5886
5901
|
# },
|
5887
5902
|
# ],
|
5888
5903
|
# network_source_domain: [
|
@@ -5911,9 +5926,9 @@ module Aws::SecurityHub
|
|
5911
5926
|
# {
|
5912
5927
|
# gte: 1.0,
|
5913
5928
|
# lte: 1.0,
|
5929
|
+
# eq: 1.0,
|
5914
5930
|
# gt: 1.0,
|
5915
5931
|
# lt: 1.0,
|
5916
|
-
# eq: 1.0,
|
5917
5932
|
# },
|
5918
5933
|
# ],
|
5919
5934
|
# network_destination_domain: [
|
@@ -5938,18 +5953,18 @@ module Aws::SecurityHub
|
|
5938
5953
|
# {
|
5939
5954
|
# gte: 1.0,
|
5940
5955
|
# lte: 1.0,
|
5956
|
+
# eq: 1.0,
|
5941
5957
|
# gt: 1.0,
|
5942
5958
|
# lt: 1.0,
|
5943
|
-
# eq: 1.0,
|
5944
5959
|
# },
|
5945
5960
|
# ],
|
5946
5961
|
# process_parent_pid: [
|
5947
5962
|
# {
|
5948
5963
|
# gte: 1.0,
|
5949
5964
|
# lte: 1.0,
|
5965
|
+
# eq: 1.0,
|
5950
5966
|
# gt: 1.0,
|
5951
5967
|
# lt: 1.0,
|
5952
|
-
# eq: 1.0,
|
5953
5968
|
# },
|
5954
5969
|
# ],
|
5955
5970
|
# process_launched_at: [
|
@@ -6253,18 +6268,18 @@ module Aws::SecurityHub
|
|
6253
6268
|
# {
|
6254
6269
|
# gte: 1.0,
|
6255
6270
|
# lte: 1.0,
|
6271
|
+
# eq: 1.0,
|
6256
6272
|
# gt: 1.0,
|
6257
6273
|
# lt: 1.0,
|
6258
|
-
# eq: 1.0,
|
6259
6274
|
# },
|
6260
6275
|
# ],
|
6261
6276
|
# finding_provider_fields_criticality: [
|
6262
6277
|
# {
|
6263
6278
|
# gte: 1.0,
|
6264
6279
|
# lte: 1.0,
|
6280
|
+
# eq: 1.0,
|
6265
6281
|
# gt: 1.0,
|
6266
6282
|
# lt: 1.0,
|
6267
|
-
# eq: 1.0,
|
6268
6283
|
# },
|
6269
6284
|
# ],
|
6270
6285
|
# finding_provider_fields_related_findings_id: [
|
@@ -6551,30 +6566,30 @@ module Aws::SecurityHub
|
|
6551
6566
|
# resp.insights[0].filters.severity_product #=> Array
|
6552
6567
|
# resp.insights[0].filters.severity_product[0].gte #=> Float
|
6553
6568
|
# resp.insights[0].filters.severity_product[0].lte #=> Float
|
6569
|
+
# resp.insights[0].filters.severity_product[0].eq #=> Float
|
6554
6570
|
# resp.insights[0].filters.severity_product[0].gt #=> Float
|
6555
6571
|
# resp.insights[0].filters.severity_product[0].lt #=> Float
|
6556
|
-
# resp.insights[0].filters.severity_product[0].eq #=> Float
|
6557
6572
|
# resp.insights[0].filters.severity_normalized #=> Array
|
6558
6573
|
# resp.insights[0].filters.severity_normalized[0].gte #=> Float
|
6559
6574
|
# resp.insights[0].filters.severity_normalized[0].lte #=> Float
|
6575
|
+
# resp.insights[0].filters.severity_normalized[0].eq #=> Float
|
6560
6576
|
# resp.insights[0].filters.severity_normalized[0].gt #=> Float
|
6561
6577
|
# resp.insights[0].filters.severity_normalized[0].lt #=> Float
|
6562
|
-
# resp.insights[0].filters.severity_normalized[0].eq #=> Float
|
6563
6578
|
# resp.insights[0].filters.severity_label #=> Array
|
6564
6579
|
# resp.insights[0].filters.severity_label[0].value #=> String
|
6565
6580
|
# resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS", "CONTAINS", "NOT_CONTAINS"
|
6566
6581
|
# resp.insights[0].filters.confidence #=> Array
|
6567
6582
|
# resp.insights[0].filters.confidence[0].gte #=> Float
|
6568
6583
|
# resp.insights[0].filters.confidence[0].lte #=> Float
|
6584
|
+
# resp.insights[0].filters.confidence[0].eq #=> Float
|
6569
6585
|
# resp.insights[0].filters.confidence[0].gt #=> Float
|
6570
6586
|
# resp.insights[0].filters.confidence[0].lt #=> Float
|
6571
|
-
# resp.insights[0].filters.confidence[0].eq #=> Float
|
6572
6587
|
# resp.insights[0].filters.criticality #=> Array
|
6573
6588
|
# resp.insights[0].filters.criticality[0].gte #=> Float
|
6574
6589
|
# resp.insights[0].filters.criticality[0].lte #=> Float
|
6590
|
+
# resp.insights[0].filters.criticality[0].eq #=> Float
|
6575
6591
|
# resp.insights[0].filters.criticality[0].gt #=> Float
|
6576
6592
|
# resp.insights[0].filters.criticality[0].lt #=> Float
|
6577
|
-
# resp.insights[0].filters.criticality[0].eq #=> Float
|
6578
6593
|
# resp.insights[0].filters.title #=> Array
|
6579
6594
|
# resp.insights[0].filters.title[0].value #=> String
|
6580
6595
|
# resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS", "CONTAINS", "NOT_CONTAINS"
|
@@ -6626,9 +6641,9 @@ module Aws::SecurityHub
|
|
6626
6641
|
# resp.insights[0].filters.network_source_port #=> Array
|
6627
6642
|
# resp.insights[0].filters.network_source_port[0].gte #=> Float
|
6628
6643
|
# resp.insights[0].filters.network_source_port[0].lte #=> Float
|
6644
|
+
# resp.insights[0].filters.network_source_port[0].eq #=> Float
|
6629
6645
|
# resp.insights[0].filters.network_source_port[0].gt #=> Float
|
6630
6646
|
# resp.insights[0].filters.network_source_port[0].lt #=> Float
|
6631
|
-
# resp.insights[0].filters.network_source_port[0].eq #=> Float
|
6632
6647
|
# resp.insights[0].filters.network_source_domain #=> Array
|
6633
6648
|
# resp.insights[0].filters.network_source_domain[0].value #=> String
|
6634
6649
|
# resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS", "CONTAINS", "NOT_CONTAINS"
|
@@ -6642,9 +6657,9 @@ module Aws::SecurityHub
|
|
6642
6657
|
# resp.insights[0].filters.network_destination_port #=> Array
|
6643
6658
|
# resp.insights[0].filters.network_destination_port[0].gte #=> Float
|
6644
6659
|
# resp.insights[0].filters.network_destination_port[0].lte #=> Float
|
6660
|
+
# resp.insights[0].filters.network_destination_port[0].eq #=> Float
|
6645
6661
|
# resp.insights[0].filters.network_destination_port[0].gt #=> Float
|
6646
6662
|
# resp.insights[0].filters.network_destination_port[0].lt #=> Float
|
6647
|
-
# resp.insights[0].filters.network_destination_port[0].eq #=> Float
|
6648
6663
|
# resp.insights[0].filters.network_destination_domain #=> Array
|
6649
6664
|
# resp.insights[0].filters.network_destination_domain[0].value #=> String
|
6650
6665
|
# resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS", "CONTAINS", "NOT_CONTAINS"
|
@@ -6657,15 +6672,15 @@ module Aws::SecurityHub
|
|
6657
6672
|
# resp.insights[0].filters.process_pid #=> Array
|
6658
6673
|
# resp.insights[0].filters.process_pid[0].gte #=> Float
|
6659
6674
|
# resp.insights[0].filters.process_pid[0].lte #=> Float
|
6675
|
+
# resp.insights[0].filters.process_pid[0].eq #=> Float
|
6660
6676
|
# resp.insights[0].filters.process_pid[0].gt #=> Float
|
6661
6677
|
# resp.insights[0].filters.process_pid[0].lt #=> Float
|
6662
|
-
# resp.insights[0].filters.process_pid[0].eq #=> Float
|
6663
6678
|
# resp.insights[0].filters.process_parent_pid #=> Array
|
6664
6679
|
# resp.insights[0].filters.process_parent_pid[0].gte #=> Float
|
6665
6680
|
# resp.insights[0].filters.process_parent_pid[0].lte #=> Float
|
6681
|
+
# resp.insights[0].filters.process_parent_pid[0].eq #=> Float
|
6666
6682
|
# resp.insights[0].filters.process_parent_pid[0].gt #=> Float
|
6667
6683
|
# resp.insights[0].filters.process_parent_pid[0].lt #=> Float
|
6668
|
-
# resp.insights[0].filters.process_parent_pid[0].eq #=> Float
|
6669
6684
|
# resp.insights[0].filters.process_launched_at #=> Array
|
6670
6685
|
# resp.insights[0].filters.process_launched_at[0].start #=> String
|
6671
6686
|
# resp.insights[0].filters.process_launched_at[0].end #=> String
|
@@ -6817,15 +6832,15 @@ module Aws::SecurityHub
|
|
6817
6832
|
# resp.insights[0].filters.finding_provider_fields_confidence #=> Array
|
6818
6833
|
# resp.insights[0].filters.finding_provider_fields_confidence[0].gte #=> Float
|
6819
6834
|
# resp.insights[0].filters.finding_provider_fields_confidence[0].lte #=> Float
|
6835
|
+
# resp.insights[0].filters.finding_provider_fields_confidence[0].eq #=> Float
|
6820
6836
|
# resp.insights[0].filters.finding_provider_fields_confidence[0].gt #=> Float
|
6821
6837
|
# resp.insights[0].filters.finding_provider_fields_confidence[0].lt #=> Float
|
6822
|
-
# resp.insights[0].filters.finding_provider_fields_confidence[0].eq #=> Float
|
6823
6838
|
# resp.insights[0].filters.finding_provider_fields_criticality #=> Array
|
6824
6839
|
# resp.insights[0].filters.finding_provider_fields_criticality[0].gte #=> Float
|
6825
6840
|
# resp.insights[0].filters.finding_provider_fields_criticality[0].lte #=> Float
|
6841
|
+
# resp.insights[0].filters.finding_provider_fields_criticality[0].eq #=> Float
|
6826
6842
|
# resp.insights[0].filters.finding_provider_fields_criticality[0].gt #=> Float
|
6827
6843
|
# resp.insights[0].filters.finding_provider_fields_criticality[0].lt #=> Float
|
6828
|
-
# resp.insights[0].filters.finding_provider_fields_criticality[0].eq #=> Float
|
6829
6844
|
# resp.insights[0].filters.finding_provider_fields_related_findings_id #=> Array
|
6830
6845
|
# resp.insights[0].filters.finding_provider_fields_related_findings_id[0].value #=> String
|
6831
6846
|
# resp.insights[0].filters.finding_provider_fields_related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS", "CONTAINS", "NOT_CONTAINS"
|
@@ -8579,21 +8594,24 @@ module Aws::SecurityHub
|
|
8579
8594
|
#
|
8580
8595
|
# The options are as follows:
|
8581
8596
|
#
|
8582
|
-
# * `ALL_REGIONS` -
|
8583
|
-
#
|
8584
|
-
#
|
8585
|
-
#
|
8597
|
+
# * `ALL_REGIONS` - Aggregates findings from all of the Regions where
|
8598
|
+
# Security Hub is enabled. When you choose this option, Security Hub
|
8599
|
+
# also automatically aggregates findings from new Regions as Security
|
8600
|
+
# Hub supports them and you opt into them.
|
8586
8601
|
#
|
8587
|
-
# * `ALL_REGIONS_EXCEPT_SPECIFIED` -
|
8588
|
-
#
|
8589
|
-
#
|
8590
|
-
#
|
8591
|
-
#
|
8602
|
+
# * `ALL_REGIONS_EXCEPT_SPECIFIED` - Aggregates findings from all of the
|
8603
|
+
# Regions where Security Hub is enabled, except for the Regions listed
|
8604
|
+
# in the `Regions` parameter. When you choose this option, Security
|
8605
|
+
# Hub also automatically aggregates findings from new Regions as
|
8606
|
+
# Security Hub supports them and you opt into them.
|
8592
8607
|
#
|
8593
|
-
# * `SPECIFIED_REGIONS` -
|
8594
|
-
#
|
8608
|
+
# * `SPECIFIED_REGIONS` - Aggregates findings only from the Regions
|
8609
|
+
# listed in the `Regions` parameter. Security Hub does not
|
8595
8610
|
# automatically aggregate findings from new Regions.
|
8596
8611
|
#
|
8612
|
+
# * `NO_REGIONS` - Aggregates no data because no Regions are selected as
|
8613
|
+
# linked Regions.
|
8614
|
+
#
|
8597
8615
|
# @option params [Array<String>] :regions
|
8598
8616
|
# If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this is
|
8599
8617
|
# a space-separated list of Regions that do not aggregate findings to
|
@@ -8603,6 +8621,9 @@ module Aws::SecurityHub
|
|
8603
8621
|
# space-separated list of Regions that do aggregate findings to the
|
8604
8622
|
# aggregation Region.
|
8605
8623
|
#
|
8624
|
+
# An `InvalidInputException` error results if you populate this field
|
8625
|
+
# while `RegionLinkingMode` is `NO_REGIONS`.
|
8626
|
+
#
|
8606
8627
|
# @return [Types::UpdateFindingAggregatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8607
8628
|
#
|
8608
8629
|
# * {Types::UpdateFindingAggregatorResponse#finding_aggregator_arn #finding_aggregator_arn} => String
|
@@ -8665,13 +8686,15 @@ module Aws::SecurityHub
|
|
8665
8686
|
# `UpdateFindings` is a deprecated operation. Instead of
|
8666
8687
|
# `UpdateFindings`, use the `BatchUpdateFindings` operation.
|
8667
8688
|
#
|
8668
|
-
#
|
8669
|
-
# findings that the filter attributes
|
8670
|
-
# can view the finding also
|
8689
|
+
# The `UpdateFindings` operation updates the `Note` and `RecordState` of
|
8690
|
+
# the Security Hub aggregated findings that the filter attributes
|
8691
|
+
# specify. Any member account that can view the finding can also see the
|
8692
|
+
# update to the finding.
|
8671
8693
|
#
|
8672
|
-
# Finding updates made with `UpdateFindings`
|
8673
|
-
#
|
8674
|
-
# `BatchImportFindings` operation.
|
8694
|
+
# Finding updates made with `UpdateFindings` aren't persisted if the
|
8695
|
+
# same finding is later updated by the finding provider through the
|
8696
|
+
# `BatchImportFindings` operation. In addition, Security Hub doesn't
|
8697
|
+
# record updates made with `UpdateFindings` in the finding history.
|
8675
8698
|
#
|
8676
8699
|
# @option params [required, Types::AwsSecurityFindingFilters] :filters
|
8677
8700
|
# A collection of attributes that specify which findings you want to
|
@@ -8769,18 +8792,18 @@ module Aws::SecurityHub
|
|
8769
8792
|
# {
|
8770
8793
|
# gte: 1.0,
|
8771
8794
|
# lte: 1.0,
|
8795
|
+
# eq: 1.0,
|
8772
8796
|
# gt: 1.0,
|
8773
8797
|
# lt: 1.0,
|
8774
|
-
# eq: 1.0,
|
8775
8798
|
# },
|
8776
8799
|
# ],
|
8777
8800
|
# severity_normalized: [
|
8778
8801
|
# {
|
8779
8802
|
# gte: 1.0,
|
8780
8803
|
# lte: 1.0,
|
8804
|
+
# eq: 1.0,
|
8781
8805
|
# gt: 1.0,
|
8782
8806
|
# lt: 1.0,
|
8783
|
-
# eq: 1.0,
|
8784
8807
|
# },
|
8785
8808
|
# ],
|
8786
8809
|
# severity_label: [
|
@@ -8793,18 +8816,18 @@ module Aws::SecurityHub
|
|
8793
8816
|
# {
|
8794
8817
|
# gte: 1.0,
|
8795
8818
|
# lte: 1.0,
|
8819
|
+
# eq: 1.0,
|
8796
8820
|
# gt: 1.0,
|
8797
8821
|
# lt: 1.0,
|
8798
|
-
# eq: 1.0,
|
8799
8822
|
# },
|
8800
8823
|
# ],
|
8801
8824
|
# criticality: [
|
8802
8825
|
# {
|
8803
8826
|
# gte: 1.0,
|
8804
8827
|
# lte: 1.0,
|
8828
|
+
# eq: 1.0,
|
8805
8829
|
# gt: 1.0,
|
8806
8830
|
# lt: 1.0,
|
8807
|
-
# eq: 1.0,
|
8808
8831
|
# },
|
8809
8832
|
# ],
|
8810
8833
|
# title: [
|
@@ -8907,9 +8930,9 @@ module Aws::SecurityHub
|
|
8907
8930
|
# {
|
8908
8931
|
# gte: 1.0,
|
8909
8932
|
# lte: 1.0,
|
8933
|
+
# eq: 1.0,
|
8910
8934
|
# gt: 1.0,
|
8911
8935
|
# lt: 1.0,
|
8912
|
-
# eq: 1.0,
|
8913
8936
|
# },
|
8914
8937
|
# ],
|
8915
8938
|
# network_source_domain: [
|
@@ -8938,9 +8961,9 @@ module Aws::SecurityHub
|
|
8938
8961
|
# {
|
8939
8962
|
# gte: 1.0,
|
8940
8963
|
# lte: 1.0,
|
8964
|
+
# eq: 1.0,
|
8941
8965
|
# gt: 1.0,
|
8942
8966
|
# lt: 1.0,
|
8943
|
-
# eq: 1.0,
|
8944
8967
|
# },
|
8945
8968
|
# ],
|
8946
8969
|
# network_destination_domain: [
|
@@ -8965,18 +8988,18 @@ module Aws::SecurityHub
|
|
8965
8988
|
# {
|
8966
8989
|
# gte: 1.0,
|
8967
8990
|
# lte: 1.0,
|
8991
|
+
# eq: 1.0,
|
8968
8992
|
# gt: 1.0,
|
8969
8993
|
# lt: 1.0,
|
8970
|
-
# eq: 1.0,
|
8971
8994
|
# },
|
8972
8995
|
# ],
|
8973
8996
|
# process_parent_pid: [
|
8974
8997
|
# {
|
8975
8998
|
# gte: 1.0,
|
8976
8999
|
# lte: 1.0,
|
9000
|
+
# eq: 1.0,
|
8977
9001
|
# gt: 1.0,
|
8978
9002
|
# lt: 1.0,
|
8979
|
-
# eq: 1.0,
|
8980
9003
|
# },
|
8981
9004
|
# ],
|
8982
9005
|
# process_launched_at: [
|
@@ -9280,18 +9303,18 @@ module Aws::SecurityHub
|
|
9280
9303
|
# {
|
9281
9304
|
# gte: 1.0,
|
9282
9305
|
# lte: 1.0,
|
9306
|
+
# eq: 1.0,
|
9283
9307
|
# gt: 1.0,
|
9284
9308
|
# lt: 1.0,
|
9285
|
-
# eq: 1.0,
|
9286
9309
|
# },
|
9287
9310
|
# ],
|
9288
9311
|
# finding_provider_fields_criticality: [
|
9289
9312
|
# {
|
9290
9313
|
# gte: 1.0,
|
9291
9314
|
# lte: 1.0,
|
9315
|
+
# eq: 1.0,
|
9292
9316
|
# gt: 1.0,
|
9293
9317
|
# lt: 1.0,
|
9294
|
-
# eq: 1.0,
|
9295
9318
|
# },
|
9296
9319
|
# ],
|
9297
9320
|
# finding_provider_fields_related_findings_id: [
|
@@ -9527,18 +9550,18 @@ module Aws::SecurityHub
|
|
9527
9550
|
# {
|
9528
9551
|
# gte: 1.0,
|
9529
9552
|
# lte: 1.0,
|
9553
|
+
# eq: 1.0,
|
9530
9554
|
# gt: 1.0,
|
9531
9555
|
# lt: 1.0,
|
9532
|
-
# eq: 1.0,
|
9533
9556
|
# },
|
9534
9557
|
# ],
|
9535
9558
|
# severity_normalized: [
|
9536
9559
|
# {
|
9537
9560
|
# gte: 1.0,
|
9538
9561
|
# lte: 1.0,
|
9562
|
+
# eq: 1.0,
|
9539
9563
|
# gt: 1.0,
|
9540
9564
|
# lt: 1.0,
|
9541
|
-
# eq: 1.0,
|
9542
9565
|
# },
|
9543
9566
|
# ],
|
9544
9567
|
# severity_label: [
|
@@ -9551,18 +9574,18 @@ module Aws::SecurityHub
|
|
9551
9574
|
# {
|
9552
9575
|
# gte: 1.0,
|
9553
9576
|
# lte: 1.0,
|
9577
|
+
# eq: 1.0,
|
9554
9578
|
# gt: 1.0,
|
9555
9579
|
# lt: 1.0,
|
9556
|
-
# eq: 1.0,
|
9557
9580
|
# },
|
9558
9581
|
# ],
|
9559
9582
|
# criticality: [
|
9560
9583
|
# {
|
9561
9584
|
# gte: 1.0,
|
9562
9585
|
# lte: 1.0,
|
9586
|
+
# eq: 1.0,
|
9563
9587
|
# gt: 1.0,
|
9564
9588
|
# lt: 1.0,
|
9565
|
-
# eq: 1.0,
|
9566
9589
|
# },
|
9567
9590
|
# ],
|
9568
9591
|
# title: [
|
@@ -9665,9 +9688,9 @@ module Aws::SecurityHub
|
|
9665
9688
|
# {
|
9666
9689
|
# gte: 1.0,
|
9667
9690
|
# lte: 1.0,
|
9691
|
+
# eq: 1.0,
|
9668
9692
|
# gt: 1.0,
|
9669
9693
|
# lt: 1.0,
|
9670
|
-
# eq: 1.0,
|
9671
9694
|
# },
|
9672
9695
|
# ],
|
9673
9696
|
# network_source_domain: [
|
@@ -9696,9 +9719,9 @@ module Aws::SecurityHub
|
|
9696
9719
|
# {
|
9697
9720
|
# gte: 1.0,
|
9698
9721
|
# lte: 1.0,
|
9722
|
+
# eq: 1.0,
|
9699
9723
|
# gt: 1.0,
|
9700
9724
|
# lt: 1.0,
|
9701
|
-
# eq: 1.0,
|
9702
9725
|
# },
|
9703
9726
|
# ],
|
9704
9727
|
# network_destination_domain: [
|
@@ -9723,18 +9746,18 @@ module Aws::SecurityHub
|
|
9723
9746
|
# {
|
9724
9747
|
# gte: 1.0,
|
9725
9748
|
# lte: 1.0,
|
9749
|
+
# eq: 1.0,
|
9726
9750
|
# gt: 1.0,
|
9727
9751
|
# lt: 1.0,
|
9728
|
-
# eq: 1.0,
|
9729
9752
|
# },
|
9730
9753
|
# ],
|
9731
9754
|
# process_parent_pid: [
|
9732
9755
|
# {
|
9733
9756
|
# gte: 1.0,
|
9734
9757
|
# lte: 1.0,
|
9758
|
+
# eq: 1.0,
|
9735
9759
|
# gt: 1.0,
|
9736
9760
|
# lt: 1.0,
|
9737
|
-
# eq: 1.0,
|
9738
9761
|
# },
|
9739
9762
|
# ],
|
9740
9763
|
# process_launched_at: [
|
@@ -10038,18 +10061,18 @@ module Aws::SecurityHub
|
|
10038
10061
|
# {
|
10039
10062
|
# gte: 1.0,
|
10040
10063
|
# lte: 1.0,
|
10064
|
+
# eq: 1.0,
|
10041
10065
|
# gt: 1.0,
|
10042
10066
|
# lt: 1.0,
|
10043
|
-
# eq: 1.0,
|
10044
10067
|
# },
|
10045
10068
|
# ],
|
10046
10069
|
# finding_provider_fields_criticality: [
|
10047
10070
|
# {
|
10048
10071
|
# gte: 1.0,
|
10049
10072
|
# lte: 1.0,
|
10073
|
+
# eq: 1.0,
|
10050
10074
|
# gt: 1.0,
|
10051
10075
|
# lt: 1.0,
|
10052
|
-
# eq: 1.0,
|
10053
10076
|
# },
|
10054
10077
|
# ],
|
10055
10078
|
# finding_provider_fields_related_findings_id: [
|
@@ -10410,7 +10433,7 @@ module Aws::SecurityHub
|
|
10410
10433
|
params: params,
|
10411
10434
|
config: config)
|
10412
10435
|
context[:gem_name] = 'aws-sdk-securityhub'
|
10413
|
-
context[:gem_version] = '1.
|
10436
|
+
context[:gem_version] = '1.114.0'
|
10414
10437
|
Seahorse::Client::Request.new(handlers, context)
|
10415
10438
|
end
|
10416
10439
|
|