aws-sdk-guardduty 1.26.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-guardduty.rb +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 +8 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 727707c4bc5622e15f7cc801f167d2d81f43375f
|
4
|
+
data.tar.gz: c24b66b01eb6d4826c7f624dbabdbb9eb3f956ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f855f83f4d47f24e295c7e11fccd9fc81bf54a3caac7376d01aa1c057e891d456f33ca249063e2ebd8b872d3f1248edf3912f1267c1340a4685ee8f92c5849dc
|
7
|
+
data.tar.gz: ede2b9fff460a068b2a271d89799557d247017750b712b38d48223e8276451e8d71b757ec313003eaf83e009dbe4ba25adcb7745439e49bdee1696e18a233db3
|
data/lib/aws-sdk-guardduty.rb
CHANGED
@@ -1192,6 +1192,7 @@ module Aws::GuardDuty
|
|
1192
1192
|
# resp.findings[0].resource.instance_details.instance_id #=> String
|
1193
1193
|
# resp.findings[0].resource.instance_details.instance_state #=> String
|
1194
1194
|
# resp.findings[0].resource.instance_details.instance_type #=> String
|
1195
|
+
# resp.findings[0].resource.instance_details.outpost_arn #=> String
|
1195
1196
|
# resp.findings[0].resource.instance_details.launch_time #=> String
|
1196
1197
|
# resp.findings[0].resource.instance_details.network_interfaces #=> Array
|
1197
1198
|
# resp.findings[0].resource.instance_details.network_interfaces[0].ipv_6_addresses #=> Array
|
@@ -1702,6 +1703,8 @@ module Aws::GuardDuty
|
|
1702
1703
|
#
|
1703
1704
|
# * resource.instanceDetails.instanceId
|
1704
1705
|
#
|
1706
|
+
# * resource.instanceDetails.outpostArn
|
1707
|
+
#
|
1705
1708
|
# * resource.instanceDetails.networkInterfaces.ipv6Addresses
|
1706
1709
|
#
|
1707
1710
|
# * resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress
|
@@ -2549,7 +2552,7 @@ module Aws::GuardDuty
|
|
2549
2552
|
params: params,
|
2550
2553
|
config: config)
|
2551
2554
|
context[:gem_name] = 'aws-sdk-guardduty'
|
2552
|
-
context[:gem_version] = '1.
|
2555
|
+
context[:gem_version] = '1.27.0'
|
2553
2556
|
Seahorse::Client::Request.new(handlers, context)
|
2554
2557
|
end
|
2555
2558
|
|
@@ -581,6 +581,7 @@ module Aws::GuardDuty
|
|
581
581
|
InstanceDetails.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
582
582
|
InstanceDetails.add_member(:instance_state, Shapes::ShapeRef.new(shape: String, location_name: "instanceState"))
|
583
583
|
InstanceDetails.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "instanceType"))
|
584
|
+
InstanceDetails.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "outpostArn"))
|
584
585
|
InstanceDetails.add_member(:launch_time, Shapes::ShapeRef.new(shape: String, location_name: "launchTime"))
|
585
586
|
InstanceDetails.add_member(:network_interfaces, Shapes::ShapeRef.new(shape: NetworkInterfaces, location_name: "networkInterfaces"))
|
586
587
|
InstanceDetails.add_member(:platform, Shapes::ShapeRef.new(shape: String, location_name: "platform"))
|
@@ -1844,6 +1844,11 @@ module Aws::GuardDuty
|
|
1844
1844
|
# The type of the EC2 instance.
|
1845
1845
|
# @return [String]
|
1846
1846
|
#
|
1847
|
+
# @!attribute [rw] outpost_arn
|
1848
|
+
# The Amazon Resource Name (ARN) of the AWS Outpost. Only applicable
|
1849
|
+
# to AWS Outposts instances.
|
1850
|
+
# @return [String]
|
1851
|
+
#
|
1847
1852
|
# @!attribute [rw] launch_time
|
1848
1853
|
# The launch time of the EC2 instance.
|
1849
1854
|
# @return [String]
|
@@ -1874,6 +1879,7 @@ module Aws::GuardDuty
|
|
1874
1879
|
:instance_id,
|
1875
1880
|
:instance_state,
|
1876
1881
|
:instance_type,
|
1882
|
+
:outpost_arn,
|
1877
1883
|
:launch_time,
|
1878
1884
|
:network_interfaces,
|
1879
1885
|
:platform,
|
@@ -2147,6 +2153,8 @@ module Aws::GuardDuty
|
|
2147
2153
|
#
|
2148
2154
|
# * resource.instanceDetails.instanceId
|
2149
2155
|
#
|
2156
|
+
# * resource.instanceDetails.outpostArn
|
2157
|
+
#
|
2150
2158
|
# * resource.instanceDetails.networkInterfaces.ipv6Addresses
|
2151
2159
|
#
|
2152
2160
|
# * resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-guardduty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|