aws-sdk-guardduty 1.124.0 → 1.126.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 +576 -2
- data/lib/aws-sdk-guardduty/client_api.rb +249 -0
- data/lib/aws-sdk-guardduty/types.rb +584 -1
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/client.rbs +146 -0
- data/sig/types.rbs +142 -0
- metadata +1 -1
@@ -1970,7 +1970,83 @@ module Aws::GuardDuty
|
|
1970
1970
|
|
1971
1971
|
# @!attribute [rw] detector_id
|
1972
1972
|
# The unique ID of the detector of the GuardDuty account for which you
|
1973
|
-
# want to create a
|
1973
|
+
# want to create a threat entity set.
|
1974
|
+
#
|
1975
|
+
# To find the `detectorId` in the current Region, see the Settings
|
1976
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
1977
|
+
#
|
1978
|
+
#
|
1979
|
+
#
|
1980
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
1981
|
+
# @return [String]
|
1982
|
+
#
|
1983
|
+
# @!attribute [rw] name
|
1984
|
+
# A user-friendly name to identify the threat entity set.
|
1985
|
+
#
|
1986
|
+
# The name of your list can include lowercase letters, uppercase
|
1987
|
+
# letters, numbers, dash (-), and underscore (\_).
|
1988
|
+
# @return [String]
|
1989
|
+
#
|
1990
|
+
# @!attribute [rw] format
|
1991
|
+
# The format of the file that contains the threat entity set.
|
1992
|
+
# @return [String]
|
1993
|
+
#
|
1994
|
+
# @!attribute [rw] location
|
1995
|
+
# The URI of the file that contains the threat entity set.
|
1996
|
+
# @return [String]
|
1997
|
+
#
|
1998
|
+
# @!attribute [rw] expected_bucket_owner
|
1999
|
+
# The Amazon Web Services account ID that owns the Amazon S3 bucket
|
2000
|
+
# specified in the **location** parameter.
|
2001
|
+
# @return [String]
|
2002
|
+
#
|
2003
|
+
# @!attribute [rw] activate
|
2004
|
+
# A boolean value that indicates whether GuardDuty should start using
|
2005
|
+
# the uploaded threat entity set to generate findings.
|
2006
|
+
# @return [Boolean]
|
2007
|
+
#
|
2008
|
+
# @!attribute [rw] client_token
|
2009
|
+
# The idempotency token for the create request.
|
2010
|
+
#
|
2011
|
+
# **A suitable default value is auto-generated.** You should normally
|
2012
|
+
# not need to pass this option.
|
2013
|
+
# @return [String]
|
2014
|
+
#
|
2015
|
+
# @!attribute [rw] tags
|
2016
|
+
# The tags to be added to a new threat entity set resource.
|
2017
|
+
# @return [Hash<String,String>]
|
2018
|
+
#
|
2019
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/CreateThreatEntitySetRequest AWS API Documentation
|
2020
|
+
#
|
2021
|
+
class CreateThreatEntitySetRequest < Struct.new(
|
2022
|
+
:detector_id,
|
2023
|
+
:name,
|
2024
|
+
:format,
|
2025
|
+
:location,
|
2026
|
+
:expected_bucket_owner,
|
2027
|
+
:activate,
|
2028
|
+
:client_token,
|
2029
|
+
:tags)
|
2030
|
+
SENSITIVE = []
|
2031
|
+
include Aws::Structure
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
# @!attribute [rw] threat_entity_set_id
|
2035
|
+
# The ID returned by GuardDuty after creation of the threat entity set
|
2036
|
+
# resource.
|
2037
|
+
# @return [String]
|
2038
|
+
#
|
2039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/CreateThreatEntitySetResponse AWS API Documentation
|
2040
|
+
#
|
2041
|
+
class CreateThreatEntitySetResponse < Struct.new(
|
2042
|
+
:threat_entity_set_id)
|
2043
|
+
SENSITIVE = []
|
2044
|
+
include Aws::Structure
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
# @!attribute [rw] detector_id
|
2048
|
+
# The unique ID of the detector of the GuardDuty account for which you
|
2049
|
+
# want to create a `threatIntelSet`.
|
1974
2050
|
#
|
1975
2051
|
# To find the `detectorId` in the current Region, see the Settings
|
1976
2052
|
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
@@ -2042,6 +2118,82 @@ module Aws::GuardDuty
|
|
2042
2118
|
include Aws::Structure
|
2043
2119
|
end
|
2044
2120
|
|
2121
|
+
# @!attribute [rw] detector_id
|
2122
|
+
# The unique ID of the detector of the GuardDuty account for which you
|
2123
|
+
# want to create a trusted entity set.
|
2124
|
+
#
|
2125
|
+
# To find the `detectorId` in the current Region, see the Settings
|
2126
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
2127
|
+
#
|
2128
|
+
#
|
2129
|
+
#
|
2130
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
2131
|
+
# @return [String]
|
2132
|
+
#
|
2133
|
+
# @!attribute [rw] name
|
2134
|
+
# A user-friendly name to identify the trusted entity set.
|
2135
|
+
#
|
2136
|
+
# The name of your list can include lowercase letters, uppercase
|
2137
|
+
# letters, numbers, dash (-), and underscore (\_).
|
2138
|
+
# @return [String]
|
2139
|
+
#
|
2140
|
+
# @!attribute [rw] format
|
2141
|
+
# The format of the file that contains the trusted entity set.
|
2142
|
+
# @return [String]
|
2143
|
+
#
|
2144
|
+
# @!attribute [rw] location
|
2145
|
+
# The URI of the file that contains the trusted entity set.
|
2146
|
+
# @return [String]
|
2147
|
+
#
|
2148
|
+
# @!attribute [rw] expected_bucket_owner
|
2149
|
+
# The Amazon Web Services account ID that owns the Amazon S3 bucket
|
2150
|
+
# specified in the **location** parameter.
|
2151
|
+
# @return [String]
|
2152
|
+
#
|
2153
|
+
# @!attribute [rw] activate
|
2154
|
+
# A boolean value that indicates whether GuardDuty is to start using
|
2155
|
+
# the uploaded trusted entity set.
|
2156
|
+
# @return [Boolean]
|
2157
|
+
#
|
2158
|
+
# @!attribute [rw] client_token
|
2159
|
+
# The idempotency token for the create request.
|
2160
|
+
#
|
2161
|
+
# **A suitable default value is auto-generated.** You should normally
|
2162
|
+
# not need to pass this option.
|
2163
|
+
# @return [String]
|
2164
|
+
#
|
2165
|
+
# @!attribute [rw] tags
|
2166
|
+
# The tags to be added to a new trusted entity set resource.
|
2167
|
+
# @return [Hash<String,String>]
|
2168
|
+
#
|
2169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/CreateTrustedEntitySetRequest AWS API Documentation
|
2170
|
+
#
|
2171
|
+
class CreateTrustedEntitySetRequest < Struct.new(
|
2172
|
+
:detector_id,
|
2173
|
+
:name,
|
2174
|
+
:format,
|
2175
|
+
:location,
|
2176
|
+
:expected_bucket_owner,
|
2177
|
+
:activate,
|
2178
|
+
:client_token,
|
2179
|
+
:tags)
|
2180
|
+
SENSITIVE = []
|
2181
|
+
include Aws::Structure
|
2182
|
+
end
|
2183
|
+
|
2184
|
+
# @!attribute [rw] trusted_entity_set_id
|
2185
|
+
# The ID returned by GuardDuty after creation of the trusted entity
|
2186
|
+
# set resource.
|
2187
|
+
# @return [String]
|
2188
|
+
#
|
2189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/CreateTrustedEntitySetResponse AWS API Documentation
|
2190
|
+
#
|
2191
|
+
class CreateTrustedEntitySetResponse < Struct.new(
|
2192
|
+
:trusted_entity_set_id)
|
2193
|
+
SENSITIVE = []
|
2194
|
+
include Aws::Structure
|
2195
|
+
end
|
2196
|
+
|
2045
2197
|
# Contains information on the status of DNS logs as a data source.
|
2046
2198
|
#
|
2047
2199
|
# @!attribute [rw] status
|
@@ -2456,6 +2608,36 @@ module Aws::GuardDuty
|
|
2456
2608
|
#
|
2457
2609
|
class DeletePublishingDestinationResponse < Aws::EmptyStructure; end
|
2458
2610
|
|
2611
|
+
# @!attribute [rw] detector_id
|
2612
|
+
# The unique ID of the detector associated with the threat entity set
|
2613
|
+
# resource.
|
2614
|
+
#
|
2615
|
+
# To find the `detectorId` in the current Region, see the Settings
|
2616
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
2617
|
+
#
|
2618
|
+
#
|
2619
|
+
#
|
2620
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
2621
|
+
# @return [String]
|
2622
|
+
#
|
2623
|
+
# @!attribute [rw] threat_entity_set_id
|
2624
|
+
# The unique ID that helps GuardDuty identify which threat entity set
|
2625
|
+
# needs to be deleted.
|
2626
|
+
# @return [String]
|
2627
|
+
#
|
2628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DeleteThreatEntitySetRequest AWS API Documentation
|
2629
|
+
#
|
2630
|
+
class DeleteThreatEntitySetRequest < Struct.new(
|
2631
|
+
:detector_id,
|
2632
|
+
:threat_entity_set_id)
|
2633
|
+
SENSITIVE = []
|
2634
|
+
include Aws::Structure
|
2635
|
+
end
|
2636
|
+
|
2637
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DeleteThreatEntitySetResponse AWS API Documentation
|
2638
|
+
#
|
2639
|
+
class DeleteThreatEntitySetResponse < Aws::EmptyStructure; end
|
2640
|
+
|
2459
2641
|
# @!attribute [rw] detector_id
|
2460
2642
|
# The unique ID of the detector that is associated with the
|
2461
2643
|
# threatIntelSet.
|
@@ -2485,6 +2667,36 @@ module Aws::GuardDuty
|
|
2485
2667
|
#
|
2486
2668
|
class DeleteThreatIntelSetResponse < Aws::EmptyStructure; end
|
2487
2669
|
|
2670
|
+
# @!attribute [rw] detector_id
|
2671
|
+
# The unique ID of the detector associated with the trusted entity set
|
2672
|
+
# resource.
|
2673
|
+
#
|
2674
|
+
# To find the `detectorId` in the current Region, see the Settings
|
2675
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
2676
|
+
#
|
2677
|
+
#
|
2678
|
+
#
|
2679
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
2680
|
+
# @return [String]
|
2681
|
+
#
|
2682
|
+
# @!attribute [rw] trusted_entity_set_id
|
2683
|
+
# The unique ID that helps GuardDuty identify which trusted entity set
|
2684
|
+
# needs to be deleted.
|
2685
|
+
# @return [String]
|
2686
|
+
#
|
2687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DeleteTrustedEntitySetRequest AWS API Documentation
|
2688
|
+
#
|
2689
|
+
class DeleteTrustedEntitySetRequest < Struct.new(
|
2690
|
+
:detector_id,
|
2691
|
+
:trusted_entity_set_id)
|
2692
|
+
SENSITIVE = []
|
2693
|
+
include Aws::Structure
|
2694
|
+
end
|
2695
|
+
|
2696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DeleteTrustedEntitySetResponse AWS API Documentation
|
2697
|
+
#
|
2698
|
+
class DeleteTrustedEntitySetResponse < Aws::EmptyStructure; end
|
2699
|
+
|
2488
2700
|
# @!attribute [rw] detector_id
|
2489
2701
|
# The unique ID of the detector that the request is associated with.
|
2490
2702
|
#
|
@@ -4481,6 +4693,85 @@ module Aws::GuardDuty
|
|
4481
4693
|
include Aws::Structure
|
4482
4694
|
end
|
4483
4695
|
|
4696
|
+
# @!attribute [rw] detector_id
|
4697
|
+
# The unique ID of the detector associated with the threat entity set
|
4698
|
+
# resource.
|
4699
|
+
#
|
4700
|
+
# To find the `detectorId` in the current Region, see the Settings
|
4701
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
4702
|
+
#
|
4703
|
+
#
|
4704
|
+
#
|
4705
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
4706
|
+
# @return [String]
|
4707
|
+
#
|
4708
|
+
# @!attribute [rw] threat_entity_set_id
|
4709
|
+
# The unique ID that helps GuardDuty identify the threat entity set.
|
4710
|
+
# @return [String]
|
4711
|
+
#
|
4712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/GetThreatEntitySetRequest AWS API Documentation
|
4713
|
+
#
|
4714
|
+
class GetThreatEntitySetRequest < Struct.new(
|
4715
|
+
:detector_id,
|
4716
|
+
:threat_entity_set_id)
|
4717
|
+
SENSITIVE = []
|
4718
|
+
include Aws::Structure
|
4719
|
+
end
|
4720
|
+
|
4721
|
+
# @!attribute [rw] name
|
4722
|
+
# The name of the threat entity set associated with the specified
|
4723
|
+
# `threatEntitySetId`.
|
4724
|
+
# @return [String]
|
4725
|
+
#
|
4726
|
+
# @!attribute [rw] format
|
4727
|
+
# The format of the file that contains the threat entity set.
|
4728
|
+
# @return [String]
|
4729
|
+
#
|
4730
|
+
# @!attribute [rw] location
|
4731
|
+
# The URI of the file that contains the threat entity set.
|
4732
|
+
# @return [String]
|
4733
|
+
#
|
4734
|
+
# @!attribute [rw] expected_bucket_owner
|
4735
|
+
# The Amazon Web Services account ID that owns the Amazon S3 bucket
|
4736
|
+
# specified in the **location** parameter.
|
4737
|
+
# @return [String]
|
4738
|
+
#
|
4739
|
+
# @!attribute [rw] status
|
4740
|
+
# The status of the associated threat entity set.
|
4741
|
+
# @return [String]
|
4742
|
+
#
|
4743
|
+
# @!attribute [rw] tags
|
4744
|
+
# The tags associated with the threat entity set resource.
|
4745
|
+
# @return [Hash<String,String>]
|
4746
|
+
#
|
4747
|
+
# @!attribute [rw] created_at
|
4748
|
+
# The timestamp when the associated threat entity set was created.
|
4749
|
+
# @return [Time]
|
4750
|
+
#
|
4751
|
+
# @!attribute [rw] updated_at
|
4752
|
+
# The timestamp when the associated threat entity set was updated.
|
4753
|
+
# @return [Time]
|
4754
|
+
#
|
4755
|
+
# @!attribute [rw] error_details
|
4756
|
+
# The error details when the status is shown as `ERROR`.
|
4757
|
+
# @return [String]
|
4758
|
+
#
|
4759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/GetThreatEntitySetResponse AWS API Documentation
|
4760
|
+
#
|
4761
|
+
class GetThreatEntitySetResponse < Struct.new(
|
4762
|
+
:name,
|
4763
|
+
:format,
|
4764
|
+
:location,
|
4765
|
+
:expected_bucket_owner,
|
4766
|
+
:status,
|
4767
|
+
:tags,
|
4768
|
+
:created_at,
|
4769
|
+
:updated_at,
|
4770
|
+
:error_details)
|
4771
|
+
SENSITIVE = []
|
4772
|
+
include Aws::Structure
|
4773
|
+
end
|
4774
|
+
|
4484
4775
|
# @!attribute [rw] detector_id
|
4485
4776
|
# The unique ID of the detector that is associated with the
|
4486
4777
|
# threatIntelSet.
|
@@ -4548,6 +4839,78 @@ module Aws::GuardDuty
|
|
4548
4839
|
include Aws::Structure
|
4549
4840
|
end
|
4550
4841
|
|
4842
|
+
# @!attribute [rw] detector_id
|
4843
|
+
# The unique ID of the GuardDuty detector associated with this trusted
|
4844
|
+
# entity set.
|
4845
|
+
# @return [String]
|
4846
|
+
#
|
4847
|
+
# @!attribute [rw] trusted_entity_set_id
|
4848
|
+
# The unique ID that helps GuardDuty identify the trusted entity set.
|
4849
|
+
# @return [String]
|
4850
|
+
#
|
4851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/GetTrustedEntitySetRequest AWS API Documentation
|
4852
|
+
#
|
4853
|
+
class GetTrustedEntitySetRequest < Struct.new(
|
4854
|
+
:detector_id,
|
4855
|
+
:trusted_entity_set_id)
|
4856
|
+
SENSITIVE = []
|
4857
|
+
include Aws::Structure
|
4858
|
+
end
|
4859
|
+
|
4860
|
+
# @!attribute [rw] name
|
4861
|
+
# The name of the threat entity set associated with the specified
|
4862
|
+
# `trustedEntitySetId`.
|
4863
|
+
# @return [String]
|
4864
|
+
#
|
4865
|
+
# @!attribute [rw] format
|
4866
|
+
# The format of the file that contains the trusted entity set.
|
4867
|
+
# @return [String]
|
4868
|
+
#
|
4869
|
+
# @!attribute [rw] location
|
4870
|
+
# The URI of the file that contains the trusted entity set.
|
4871
|
+
# @return [String]
|
4872
|
+
#
|
4873
|
+
# @!attribute [rw] expected_bucket_owner
|
4874
|
+
# The Amazon Web Services account ID that owns the Amazon S3 bucket
|
4875
|
+
# specified in the **location** parameter.
|
4876
|
+
# @return [String]
|
4877
|
+
#
|
4878
|
+
# @!attribute [rw] status
|
4879
|
+
# The status of the associated trusted entity set.
|
4880
|
+
# @return [String]
|
4881
|
+
#
|
4882
|
+
# @!attribute [rw] tags
|
4883
|
+
# The tags associated with trusted entity set resource.
|
4884
|
+
# @return [Hash<String,String>]
|
4885
|
+
#
|
4886
|
+
# @!attribute [rw] created_at
|
4887
|
+
# The timestamp when the associated trusted entity set was created.
|
4888
|
+
# @return [Time]
|
4889
|
+
#
|
4890
|
+
# @!attribute [rw] updated_at
|
4891
|
+
# The timestamp when the associated trusted entity set was updated.
|
4892
|
+
# @return [Time]
|
4893
|
+
#
|
4894
|
+
# @!attribute [rw] error_details
|
4895
|
+
# The error details when the status is shown as `ERROR`.
|
4896
|
+
# @return [String]
|
4897
|
+
#
|
4898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/GetTrustedEntitySetResponse AWS API Documentation
|
4899
|
+
#
|
4900
|
+
class GetTrustedEntitySetResponse < Struct.new(
|
4901
|
+
:name,
|
4902
|
+
:format,
|
4903
|
+
:location,
|
4904
|
+
:expected_bucket_owner,
|
4905
|
+
:status,
|
4906
|
+
:tags,
|
4907
|
+
:created_at,
|
4908
|
+
:updated_at,
|
4909
|
+
:error_details)
|
4910
|
+
SENSITIVE = []
|
4911
|
+
include Aws::Structure
|
4912
|
+
end
|
4913
|
+
|
4551
4914
|
# @!attribute [rw] detector_id
|
4552
4915
|
# The ID of the detector that specifies the GuardDuty service whose
|
4553
4916
|
# usage statistics you want to retrieve.
|
@@ -6074,6 +6437,59 @@ module Aws::GuardDuty
|
|
6074
6437
|
include Aws::Structure
|
6075
6438
|
end
|
6076
6439
|
|
6440
|
+
# @!attribute [rw] detector_id
|
6441
|
+
# The unique ID of the GuardDuty detector that is associated with this
|
6442
|
+
# threat entity set.
|
6443
|
+
#
|
6444
|
+
# To find the `detectorId` in the current Region, see the Settings
|
6445
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
6446
|
+
#
|
6447
|
+
#
|
6448
|
+
#
|
6449
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
6450
|
+
# @return [String]
|
6451
|
+
#
|
6452
|
+
# @!attribute [rw] max_results
|
6453
|
+
# You can use this parameter to indicate the maximum number of items
|
6454
|
+
# you want in the response. The default value is 50.
|
6455
|
+
# @return [Integer]
|
6456
|
+
#
|
6457
|
+
# @!attribute [rw] next_token
|
6458
|
+
# You can use this parameter when paginating results. Set the value of
|
6459
|
+
# this parameter to null on your first call to the list action. For
|
6460
|
+
# subsequent calls to the action, fill nextToken in the request with
|
6461
|
+
# the value of NextToken from the previous response to continue
|
6462
|
+
# listing data.
|
6463
|
+
# @return [String]
|
6464
|
+
#
|
6465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ListThreatEntitySetsRequest AWS API Documentation
|
6466
|
+
#
|
6467
|
+
class ListThreatEntitySetsRequest < Struct.new(
|
6468
|
+
:detector_id,
|
6469
|
+
:max_results,
|
6470
|
+
:next_token)
|
6471
|
+
SENSITIVE = []
|
6472
|
+
include Aws::Structure
|
6473
|
+
end
|
6474
|
+
|
6475
|
+
# @!attribute [rw] threat_entity_set_ids
|
6476
|
+
# The IDs of the threat entity set resources.
|
6477
|
+
# @return [Array<String>]
|
6478
|
+
#
|
6479
|
+
# @!attribute [rw] next_token
|
6480
|
+
# The pagination parameter to be used on the next list operation to
|
6481
|
+
# retrieve more items.
|
6482
|
+
# @return [String]
|
6483
|
+
#
|
6484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ListThreatEntitySetsResponse AWS API Documentation
|
6485
|
+
#
|
6486
|
+
class ListThreatEntitySetsResponse < Struct.new(
|
6487
|
+
:threat_entity_set_ids,
|
6488
|
+
:next_token)
|
6489
|
+
SENSITIVE = []
|
6490
|
+
include Aws::Structure
|
6491
|
+
end
|
6492
|
+
|
6077
6493
|
# @!attribute [rw] detector_id
|
6078
6494
|
# The unique ID of the detector that is associated with the
|
6079
6495
|
# threatIntelSet.
|
@@ -6128,6 +6544,59 @@ module Aws::GuardDuty
|
|
6128
6544
|
include Aws::Structure
|
6129
6545
|
end
|
6130
6546
|
|
6547
|
+
# @!attribute [rw] detector_id
|
6548
|
+
# The unique ID of the GuardDuty detector that is associated with this
|
6549
|
+
# threat entity set.
|
6550
|
+
#
|
6551
|
+
# To find the `detectorId` in the current Region, see the Settings
|
6552
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
6553
|
+
#
|
6554
|
+
#
|
6555
|
+
#
|
6556
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
6557
|
+
# @return [String]
|
6558
|
+
#
|
6559
|
+
# @!attribute [rw] max_results
|
6560
|
+
# You can use this parameter to indicate the maximum number of items
|
6561
|
+
# you want in the response. The default value is 50.
|
6562
|
+
# @return [Integer]
|
6563
|
+
#
|
6564
|
+
# @!attribute [rw] next_token
|
6565
|
+
# You can use this parameter when paginating results. Set the value of
|
6566
|
+
# this parameter to null on your first call to the list action. For
|
6567
|
+
# subsequent calls to the action, fill nextToken in the request with
|
6568
|
+
# the value of NextToken from the previous response to continue
|
6569
|
+
# listing data.
|
6570
|
+
# @return [String]
|
6571
|
+
#
|
6572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ListTrustedEntitySetsRequest AWS API Documentation
|
6573
|
+
#
|
6574
|
+
class ListTrustedEntitySetsRequest < Struct.new(
|
6575
|
+
:detector_id,
|
6576
|
+
:max_results,
|
6577
|
+
:next_token)
|
6578
|
+
SENSITIVE = []
|
6579
|
+
include Aws::Structure
|
6580
|
+
end
|
6581
|
+
|
6582
|
+
# @!attribute [rw] trusted_entity_set_ids
|
6583
|
+
# The IDs of the trusted entity set resources.
|
6584
|
+
# @return [Array<String>]
|
6585
|
+
#
|
6586
|
+
# @!attribute [rw] next_token
|
6587
|
+
# The pagination parameter to be used on the next list operation to
|
6588
|
+
# retrieve more items.
|
6589
|
+
# @return [String]
|
6590
|
+
#
|
6591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ListTrustedEntitySetsResponse AWS API Documentation
|
6592
|
+
#
|
6593
|
+
class ListTrustedEntitySetsResponse < Struct.new(
|
6594
|
+
:trusted_entity_set_ids,
|
6595
|
+
:next_token)
|
6596
|
+
SENSITIVE = []
|
6597
|
+
include Aws::Structure
|
6598
|
+
end
|
6599
|
+
|
6131
6600
|
# Contains information about the local IP address of the connection.
|
6132
6601
|
#
|
6133
6602
|
# @!attribute [rw] ip_address_v4
|
@@ -10033,6 +10502,63 @@ module Aws::GuardDuty
|
|
10033
10502
|
include Aws::Structure
|
10034
10503
|
end
|
10035
10504
|
|
10505
|
+
# @!attribute [rw] detector_id
|
10506
|
+
# The unique ID of the GuardDuty detector associated with the threat
|
10507
|
+
# entity set that you want to update.
|
10508
|
+
#
|
10509
|
+
# To find the `detectorId` in the current Region, see the Settings
|
10510
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
10511
|
+
#
|
10512
|
+
#
|
10513
|
+
#
|
10514
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
10515
|
+
# @return [String]
|
10516
|
+
#
|
10517
|
+
# @!attribute [rw] threat_entity_set_id
|
10518
|
+
# The ID returned by GuardDuty after updating the threat entity set
|
10519
|
+
# resource.
|
10520
|
+
# @return [String]
|
10521
|
+
#
|
10522
|
+
# @!attribute [rw] name
|
10523
|
+
# A user-friendly name to identify the trusted entity set.
|
10524
|
+
#
|
10525
|
+
# The name of your list can include lowercase letters, uppercase
|
10526
|
+
# letters, numbers, dash (-), and underscore (\_).
|
10527
|
+
# @return [String]
|
10528
|
+
#
|
10529
|
+
# @!attribute [rw] location
|
10530
|
+
# The URI of the file that contains the trusted entity set.
|
10531
|
+
# @return [String]
|
10532
|
+
#
|
10533
|
+
# @!attribute [rw] expected_bucket_owner
|
10534
|
+
# The Amazon Web Services account ID that owns the Amazon S3 bucket
|
10535
|
+
# specified in the **location** parameter.
|
10536
|
+
# @return [String]
|
10537
|
+
#
|
10538
|
+
# @!attribute [rw] activate
|
10539
|
+
# A boolean value that indicates whether GuardDuty is to start using
|
10540
|
+
# this updated threat entity set. After you update an entity set, you
|
10541
|
+
# will need to activate it again. It might take up to 15 minutes for
|
10542
|
+
# the updated entity set to be effective.
|
10543
|
+
# @return [Boolean]
|
10544
|
+
#
|
10545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateThreatEntitySetRequest AWS API Documentation
|
10546
|
+
#
|
10547
|
+
class UpdateThreatEntitySetRequest < Struct.new(
|
10548
|
+
:detector_id,
|
10549
|
+
:threat_entity_set_id,
|
10550
|
+
:name,
|
10551
|
+
:location,
|
10552
|
+
:expected_bucket_owner,
|
10553
|
+
:activate)
|
10554
|
+
SENSITIVE = []
|
10555
|
+
include Aws::Structure
|
10556
|
+
end
|
10557
|
+
|
10558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateThreatEntitySetResponse AWS API Documentation
|
10559
|
+
#
|
10560
|
+
class UpdateThreatEntitySetResponse < Aws::EmptyStructure; end
|
10561
|
+
|
10036
10562
|
# @!attribute [rw] detector_id
|
10037
10563
|
# The detectorID that specifies the GuardDuty service whose
|
10038
10564
|
# ThreatIntelSet you want to update.
|
@@ -10086,6 +10612,63 @@ module Aws::GuardDuty
|
|
10086
10612
|
#
|
10087
10613
|
class UpdateThreatIntelSetResponse < Aws::EmptyStructure; end
|
10088
10614
|
|
10615
|
+
# @!attribute [rw] detector_id
|
10616
|
+
# The unique ID of the GuardDuty detector associated with the threat
|
10617
|
+
# entity set that you want to update.
|
10618
|
+
#
|
10619
|
+
# To find the `detectorId` in the current Region, see the Settings
|
10620
|
+
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
10621
|
+
#
|
10622
|
+
#
|
10623
|
+
#
|
10624
|
+
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
10625
|
+
# @return [String]
|
10626
|
+
#
|
10627
|
+
# @!attribute [rw] trusted_entity_set_id
|
10628
|
+
# The ID returned by GuardDuty after updating the trusted entity set
|
10629
|
+
# resource.
|
10630
|
+
# @return [String]
|
10631
|
+
#
|
10632
|
+
# @!attribute [rw] name
|
10633
|
+
# A user-friendly name to identify the trusted entity set.
|
10634
|
+
#
|
10635
|
+
# The name of your list can include lowercase letters, uppercase
|
10636
|
+
# letters, numbers, dash (-), and underscore (\_).
|
10637
|
+
# @return [String]
|
10638
|
+
#
|
10639
|
+
# @!attribute [rw] location
|
10640
|
+
# The URI of the file that contains the trusted entity set.
|
10641
|
+
# @return [String]
|
10642
|
+
#
|
10643
|
+
# @!attribute [rw] expected_bucket_owner
|
10644
|
+
# The Amazon Web Services account ID that owns the Amazon S3 bucket
|
10645
|
+
# specified in the **location** parameter.
|
10646
|
+
# @return [String]
|
10647
|
+
#
|
10648
|
+
# @!attribute [rw] activate
|
10649
|
+
# A boolean value that indicates whether GuardDuty is to start using
|
10650
|
+
# this updated trusted entity set. After you update an entity set, you
|
10651
|
+
# will need to activate it again. It might take up to 15 minutes for
|
10652
|
+
# the updated entity set to be effective.
|
10653
|
+
# @return [Boolean]
|
10654
|
+
#
|
10655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateTrustedEntitySetRequest AWS API Documentation
|
10656
|
+
#
|
10657
|
+
class UpdateTrustedEntitySetRequest < Struct.new(
|
10658
|
+
:detector_id,
|
10659
|
+
:trusted_entity_set_id,
|
10660
|
+
:name,
|
10661
|
+
:location,
|
10662
|
+
:expected_bucket_owner,
|
10663
|
+
:activate)
|
10664
|
+
SENSITIVE = []
|
10665
|
+
include Aws::Structure
|
10666
|
+
end
|
10667
|
+
|
10668
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/UpdateTrustedEntitySetResponse AWS API Documentation
|
10669
|
+
#
|
10670
|
+
class UpdateTrustedEntitySetResponse < Aws::EmptyStructure; end
|
10671
|
+
|
10089
10672
|
# Contains information on the total of usage based on account IDs.
|
10090
10673
|
#
|
10091
10674
|
# @!attribute [rw] account_id
|