Sha256: c74db1b1dbfb755f3d2105732831b42d411c196e65509ba93d3864ad150511f4

Contents?: true

Size: 755 Bytes

Versions: 11

Compression:

Stored size: 755 Bytes

Contents

module Fog
  module Compute
    class Cloudstack
      class Real
        # Lists all available disk offerings.
        #
        # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listDiskOfferings.html]
        def list_disk_offerings(options={})
          options.merge!(
            'command' => 'listDiskOfferings'
          )

          request(options)
        end
      end

      class Mock
        # TODO: add id, name filters and paging params
        def list_disk_offerings(options={})
          disk_offerings = self.data[:disk_offerings]
          { "listdiskofferingsresponse" => { "count"=> disk_offerings.count, "diskoffering"=> disk_offerings.values } }
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.11 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.10 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.9 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.8 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.7 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.6 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.4 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.3 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
ns-fog-1.22.2 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb
fog-1.22.1 lib/fog/cloudstack/requests/compute/list_disk_offerings.rb