1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
class AWS
module Compute
module Formats
BASIC = {
'requestId' => String
}
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
}]
})
end
end
end
|