File: helper.rb

package info (click to toggle)
ruby-fog-aws 3.33.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,180 kB
  • sloc: ruby: 75,405; javascript: 14; makefile: 9; sh: 4
file content (27 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (5)
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