Sha256: e34966e6c11de48e6bb78ad2b3233b8bf925707a683beb6ca1456b4471b32559

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

module Fog
  module VcloudDirector
    class Compute
      class Real
        # Insert virtual media.
        #
        # 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 [String] media_id Object identifier of the media object.
        # @return [Excon::Response]
        #   * body<~Hash>:
        #
        # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-InsertCdRom.html
        # @since vCloud API version 0.9
        def post_insert_cd_rom(id, media_id)
          body = Nokogiri::XML::Builder.new do
            attrs = {
              :xmlns => 'http://www.vmware.com/vcloud/v1.5'
            }
            MediaInsertOrEjectParams(attrs) {
              Media(:href => "#{end_point}media/#{media_id}")
            }
          end.to_xml

          request(
            :body    => body,
            :expects => 202,
            :headers => {'Content-Type' => 'application/vnd.vmware.vcloud.mediaInsertOrEjectParams+xml'},
            :method  => 'POST',
            :parser  => Fog::ToHashDocument.new,
            :path    => "vApp/#{id}/media/action/insertMedia"
          )
        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/post_insert_cd_rom.rb
fog-vcloud-director-0.3.0 lib/fog/vcloud_director/requests/compute/post_insert_cd_rom.rb