Sha256: ab7fea5a8c288673ede2823ac1242b9564e1761bf1cff822154076a13f0f69f6
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
module Fog module VcloudDirector class Compute class Real extend Fog::Deprecation deprecate :put_vm_disks, :put_disks require 'fog/vcloud_director/generators/compute/disks' # Update all RASD items that specify hard disk and hard disk controller # properties of a VM. # # This operation is asynchronous and returns a task that you can # monitor to track the progress of the request. # # @param [String] id Object identifier of the VM. # @param [Array] disks # * disks is the body of #get_vm_disks # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/PUT-Disks.html # @since vCloud API version 0.9 def put_disks(id, disks=[]) data = Fog::VcloudDirector::Generators::Compute::Disks.new(disks) request( :body => data.generate_xml, :expects => 202, :headers => {'Content-Type' => 'application/vnd.vmware.vcloud.rasdItemsList+xml'}, :method => 'PUT', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/virtualHardwareSection/disks" ) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-vcloud-director-0.3.1 | lib/fog/vcloud_director/requests/compute/put_disks.rb |
fog-vcloud-director-0.3.0 | lib/fog/vcloud_director/requests/compute/put_disks.rb |