mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
relevant changes to tests for creation Date and enhanced networking support
This commit is contained in:
parent
6ba71aa17a
commit
e371425531
2 changed files with 4 additions and 2 deletions
|
@ -36,7 +36,7 @@ module Fog
|
|||
# * 'rootDeviceName'<~String> - Root device name, e.g. /dev/sda1
|
||||
# * 'rootDeviceType'<~String> - Root device type, ebs or instance-store
|
||||
# * 'virtualizationType'<~String> - Type of virtualization
|
||||
# * 'creationDate'<~Date> - Date the image was created
|
||||
# * 'creationDate'time<~Datetime> - Date and time the image was created
|
||||
# * 'enaSupport'<~Boolean> - whether or not the image supports enhanced networking
|
||||
#
|
||||
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeImages.html]
|
||||
|
|
|
@ -21,7 +21,9 @@ Shindo.tests('Fog::Compute[:aws] | image requests', ['aws']) do
|
|||
'rootDeviceType' => String,
|
||||
'stateReason' => {},
|
||||
'tagSet' => {},
|
||||
'virtualizationType' => String
|
||||
'virtualizationType' => String,
|
||||
'creationDate' => Fog::Nullable::Time,
|
||||
'enaSupport' => Fog::Nullable::Boolean
|
||||
}],
|
||||
'requestId' => String,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue