aws-sdk-guardduty 1.147.0 → 1.148.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 +1 -1
- data/lib/aws-sdk-guardduty/types.rb +7 -3
- data/lib/aws-sdk-guardduty.rb +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: c050f7595285865572851ec2a94976465f91ee2e1607a31c787e15ffba8dc1b8
|
|
4
|
+
data.tar.gz: 1e4c45d7ed4c84b020fbf22e78688da8683b68fe77230a0fdfbc03df3ba85bbc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06b20a8d8bf4f94e0ff13f811f9afa04ca21450fd56efc545e86fa0c4faaac267d458d13aaedf4efb763262850b1e29096048c02d80030673740e28d8b057e35
|
|
7
|
+
data.tar.gz: 37bbf4e9884937ebd4a15ece19e8b739925f3ddb6a564da64f1ef4df82fc7c29f5f8e0cf60aecce1dcb14bac758cedd6ff0bcea6898db81eab4db939952580b0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.148.0
|
|
@@ -167,10 +167,12 @@ module Aws::GuardDuty
|
|
|
167
167
|
include Aws::Structure
|
|
168
168
|
end
|
|
169
169
|
|
|
170
|
-
# Contains information about the account
|
|
170
|
+
# Contains information about the Amazon Web Services account within
|
|
171
|
+
# which the activity took place.
|
|
171
172
|
#
|
|
172
173
|
# @!attribute [rw] uid
|
|
173
|
-
#
|
|
174
|
+
# The Amazon Web Services account ID within which the activity took
|
|
175
|
+
# place. This may differ from the account that owns the user identity.
|
|
174
176
|
# @return [String]
|
|
175
177
|
#
|
|
176
178
|
# @!attribute [rw] name
|
|
@@ -14444,7 +14446,9 @@ module Aws::GuardDuty
|
|
|
14444
14446
|
# @return [String]
|
|
14445
14447
|
#
|
|
14446
14448
|
# @!attribute [rw] account
|
|
14447
|
-
# Contains information about the Amazon Web Services account
|
|
14449
|
+
# Contains information about the Amazon Web Services account within
|
|
14450
|
+
# which the activity took place. This is not necessarily the account
|
|
14451
|
+
# that owns the user identity.
|
|
14448
14452
|
# @return [Types::Account]
|
|
14449
14453
|
#
|
|
14450
14454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/User AWS API Documentation
|
data/lib/aws-sdk-guardduty.rb
CHANGED