2015-01-02 12:34:40 -05:00
|
|
|
class AWS
|
2014-12-30 17:25:09 -05:00
|
|
|
module Compute
|
|
|
|
module Formats
|
|
|
|
BASIC = {
|
2017-07-06 11:33:53 -04:00
|
|
|
'requestId' => String
|
2014-12-30 17:25:09 -05:00
|
|
|
}
|
2017-07-06 11:33:53 -04:00
|
|
|
|
|
|
|
DESCRIBE_IMAGES = BASIC.merge({
|
|
|
|
"imagesSet" => [{
|
|
|
|
"imageId" => String,
|
|
|
|
"imageLocation" => String,
|
|
|
|
"imageState" => String,
|
|
|
|
"imageOwnerId" => String,
|
|
|
|
"creationDate" => Fog::Nullable::String,
|
|
|
|
"isPublic" => Fog::Nullable::Boolean,
|
|
|
|
"architecture" => String,
|
|
|
|
"imageType" => String,
|
|
|
|
"imageOwnerAlias" => String,
|
|
|
|
"rootDeviceType" => String,
|
|
|
|
"blockDeviceMapping" => Array,
|
|
|
|
"virtualizationType" => String,
|
|
|
|
"hypervisor" => String
|
|
|
|
}]
|
|
|
|
})
|
2014-12-30 17:25:09 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|