Sha256: fca5a2734f63dabce06e1d95ddeb72a3db643596bf60326379d3c969829a1958

Contents?: true

Size: 464 Bytes

Versions: 1

Compression:

Stored size: 464 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Updates a disk offering.
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/updateDiskOffering.html]
        def update_disk_offering(id, options={})
          options.merge!(
            'command' => 'updateDiskOffering', 
            'id' => id  
          )
          request(options)
        end
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-1.23.0 lib/fog/cloudstack/requests/compute/update_disk_offering.rb