aws-sdk-guardduty 1.138.0 → 1.139.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 +3 -3
- data/lib/aws-sdk-guardduty/client_api.rb +1 -1
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/client.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e9e98ecd84bc0933240bf2ba798fd3ed032650485d99e1c1fc20778e42daa02
|
|
4
|
+
data.tar.gz: 507a863d78d7adefb997018b717330616bcd0579a763fef68c8a077fe3e6848d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fea66d9dd342ec4ec829eee54bfd70748a4f528fc56d6849484005d8be975e2194d4042d7fe17906b299d9e7cdff4b3826d943db298a14c9754550b814119426
|
|
7
|
+
data.tar.gz: 897c40817d9c30e559dcc84aa6e0db27dd1db46b9a5dc386b690f63db7cf20729aa76d2322d5065d4e0deac387350eadf45ca83184670d1062632b68c70bc634
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.139.0
|
|
@@ -3996,7 +3996,7 @@ module Aws::GuardDuty
|
|
|
3996
3996
|
#
|
|
3997
3997
|
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
|
3998
3998
|
#
|
|
3999
|
-
# @option params [Array<String>] :account_ids
|
|
3999
|
+
# @option params [required, Array<String>] :account_ids
|
|
4000
4000
|
# A list of account identifiers of the GuardDuty member account.
|
|
4001
4001
|
#
|
|
4002
4002
|
# @return [Types::GetRemainingFreeTrialDaysResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
@@ -4008,7 +4008,7 @@ module Aws::GuardDuty
|
|
|
4008
4008
|
#
|
|
4009
4009
|
# resp = client.get_remaining_free_trial_days({
|
|
4010
4010
|
# detector_id: "DetectorId", # required
|
|
4011
|
-
# account_ids: ["AccountId"],
|
|
4011
|
+
# account_ids: ["AccountId"], # required
|
|
4012
4012
|
# })
|
|
4013
4013
|
#
|
|
4014
4014
|
# @example Response structure
|
|
@@ -6517,7 +6517,7 @@ module Aws::GuardDuty
|
|
|
6517
6517
|
tracer: tracer
|
|
6518
6518
|
)
|
|
6519
6519
|
context[:gem_name] = 'aws-sdk-guardduty'
|
|
6520
|
-
context[:gem_version] = '1.
|
|
6520
|
+
context[:gem_version] = '1.139.0'
|
|
6521
6521
|
Seahorse::Client::Request.new(handlers, context)
|
|
6522
6522
|
end
|
|
6523
6523
|
|
|
@@ -1673,7 +1673,7 @@ module Aws::GuardDuty
|
|
|
1673
1673
|
GetOrganizationStatisticsResponse.struct_class = Types::GetOrganizationStatisticsResponse
|
|
1674
1674
|
|
|
1675
1675
|
GetRemainingFreeTrialDaysRequest.add_member(:detector_id, Shapes::ShapeRef.new(shape: DetectorId, required: true, location: "uri", location_name: "detectorId"))
|
|
1676
|
-
GetRemainingFreeTrialDaysRequest.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIds, location_name: "accountIds"))
|
|
1676
|
+
GetRemainingFreeTrialDaysRequest.add_member(:account_ids, Shapes::ShapeRef.new(shape: AccountIds, required: true, location_name: "accountIds"))
|
|
1677
1677
|
GetRemainingFreeTrialDaysRequest.struct_class = Types::GetRemainingFreeTrialDaysRequest
|
|
1678
1678
|
|
|
1679
1679
|
GetRemainingFreeTrialDaysResponse.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountFreeTrialInfos, location_name: "accounts"))
|
data/lib/aws-sdk-guardduty.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -776,7 +776,7 @@ module Aws
|
|
|
776
776
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GuardDuty/Client.html#get_remaining_free_trial_days-instance_method
|
|
777
777
|
def get_remaining_free_trial_days: (
|
|
778
778
|
detector_id: ::String,
|
|
779
|
-
|
|
779
|
+
account_ids: Array[::String]
|
|
780
780
|
) -> _GetRemainingFreeTrialDaysResponseSuccess
|
|
781
781
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRemainingFreeTrialDaysResponseSuccess
|
|
782
782
|
|