aws-sdk-guardduty 1.123.0 → 1.124.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 +4 -1
- data/lib/aws-sdk-guardduty/client_api.rb +1 -0
- data/lib/aws-sdk-guardduty/types.rb +9 -1
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/types.rbs +1 -0
- 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: 2e88f63b95cd94ba31e6c385f3866793cff6d1adf6f4f3e339bdd460c4ffd586
|
4
|
+
data.tar.gz: 00c5eab26a73dd7ca589d1e1c347df5cb0d7f7d11e71b48ef90836c6abd48f61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcec004592b4d2758a2ec9ce2242489914ca6268c2057ef3739142a9ad134eacaa27967773056a351ea53cd9da5ba426c8d1f18c4b19e823f90b32b85813f29d
|
7
|
+
data.tar.gz: c6c83a98c87e63fa6c0eaf590508d061d6ba4e532a3587ddd0850a8ba509646efa1fb33e2daa2f63ee2c072023e9e98260adadc9815003552fa7722e555fc703
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.124.0
|
@@ -857,6 +857,8 @@ module Aws::GuardDuty
|
|
857
857
|
#
|
858
858
|
# * service.action.dnsRequestAction.domainWithSuffix
|
859
859
|
#
|
860
|
+
# * service.action.dnsRequestAction.vpcOwnerAccountId
|
861
|
+
#
|
860
862
|
# * service.action.networkConnectionAction.blocked
|
861
863
|
#
|
862
864
|
# * service.action.networkConnectionAction.connectionDirection
|
@@ -2692,6 +2694,7 @@ module Aws::GuardDuty
|
|
2692
2694
|
# resp.findings[0].service.action.dns_request_action.protocol #=> String
|
2693
2695
|
# resp.findings[0].service.action.dns_request_action.blocked #=> Boolean
|
2694
2696
|
# resp.findings[0].service.action.dns_request_action.domain_with_suffix #=> String
|
2697
|
+
# resp.findings[0].service.action.dns_request_action.vpc_owner_account_id #=> String
|
2695
2698
|
# resp.findings[0].service.action.network_connection_action.blocked #=> Boolean
|
2696
2699
|
# resp.findings[0].service.action.network_connection_action.connection_direction #=> String
|
2697
2700
|
# resp.findings[0].service.action.network_connection_action.local_port_details.port #=> Integer
|
@@ -5612,7 +5615,7 @@ module Aws::GuardDuty
|
|
5612
5615
|
tracer: tracer
|
5613
5616
|
)
|
5614
5617
|
context[:gem_name] = 'aws-sdk-guardduty'
|
5615
|
-
context[:gem_version] = '1.
|
5618
|
+
context[:gem_version] = '1.124.0'
|
5616
5619
|
Seahorse::Client::Request.new(handlers, context)
|
5617
5620
|
end
|
5618
5621
|
|
@@ -1178,6 +1178,7 @@ module Aws::GuardDuty
|
|
1178
1178
|
DnsRequestAction.add_member(:protocol, Shapes::ShapeRef.new(shape: String, location_name: "protocol"))
|
1179
1179
|
DnsRequestAction.add_member(:blocked, Shapes::ShapeRef.new(shape: Boolean, location_name: "blocked"))
|
1180
1180
|
DnsRequestAction.add_member(:domain_with_suffix, Shapes::ShapeRef.new(shape: String, location_name: "domainWithSuffix"))
|
1181
|
+
DnsRequestAction.add_member(:vpc_owner_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "vpcOwnerAccountId"))
|
1181
1182
|
DnsRequestAction.struct_class = Types::DnsRequestAction
|
1182
1183
|
|
1183
1184
|
DomainDetails.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "domain"))
|
@@ -1535,6 +1535,8 @@ module Aws::GuardDuty
|
|
1535
1535
|
#
|
1536
1536
|
# * service.action.dnsRequestAction.domainWithSuffix
|
1537
1537
|
#
|
1538
|
+
# * service.action.dnsRequestAction.vpcOwnerAccountId
|
1539
|
+
#
|
1538
1540
|
# * service.action.networkConnectionAction.blocked
|
1539
1541
|
#
|
1540
1542
|
# * service.action.networkConnectionAction.connectionDirection
|
@@ -3014,13 +3016,19 @@ module Aws::GuardDuty
|
|
3014
3016
|
# [1]: https://publicsuffix.org/
|
3015
3017
|
# @return [String]
|
3016
3018
|
#
|
3019
|
+
# @!attribute [rw] vpc_owner_account_id
|
3020
|
+
# The Amazon Web Services account ID that owns the VPC through which
|
3021
|
+
# the DNS request was made.
|
3022
|
+
# @return [String]
|
3023
|
+
#
|
3017
3024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/DnsRequestAction AWS API Documentation
|
3018
3025
|
#
|
3019
3026
|
class DnsRequestAction < Struct.new(
|
3020
3027
|
:domain,
|
3021
3028
|
:protocol,
|
3022
3029
|
:blocked,
|
3023
|
-
:domain_with_suffix
|
3030
|
+
:domain_with_suffix,
|
3031
|
+
:vpc_owner_account_id)
|
3024
3032
|
SENSITIVE = []
|
3025
3033
|
include Aws::Structure
|
3026
3034
|
end
|
data/lib/aws-sdk-guardduty.rb
CHANGED
data/sig/types.rbs
CHANGED