Sha256: c210a3f784b6a4fce41d99429c0694dfe86cc2fa2700c128e4284eab910de086

Contents?: true

Size: 1.05 KB

Versions: 79

Compression:

Stored size: 1.05 KB

Contents

module Fog
  module Compute
    class Cloudstack
      class Real

        # Lists all available service offerings.
        #
        # {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listServiceOfferings.html]
        def list_service_offerings(options={})
          options.merge!(
            'command' => 'listServiceOfferings'
          )

          request(options)
        end

      end # Real

      class Mock

        def list_service_offerings(options={})
          flavors = []
          if service_offering_id = options['id']
            flavor = self.data[:flavors][service_offering_id]
            raise Fog::Compute::Cloudstack::BadRequest unless flavor
            flavors = [flavor]
          else
            flavors = self.data[:flavors].values
          end

          {
            "listserviceofferingsresponse" =>
            {
              "count" => flavors.size,
              "serviceoffering"=> flavors
            }
          }
        end
      end # Mock
    end # Cloudstack
  end # Compute
end # Fog

Version data entries

79 entries across 79 versions & 12 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
gapinc-fog-1.12.1.2.1 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-1.18.0 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-1.17.0 lib/fog/cloudstack/requests/compute/list_service_offerings.rb
fog-1.16.0 lib/fog/cloudstack/requests/compute/list_service_offerings.rb