Sha256: 9e124b72891552c25339b9f4f05087292dcd67e20e532535151e1173e2bb3979
Contents?: true
Size: 704 Bytes
Versions: 43
Compression:
Stored size: 704 Bytes
Contents
# -*- coding: utf-8 -*- module Fog module Vcloud class Compute class Real def configure_vm_name_description(edit_href, name, description) body = <<EOF <?xml version="1.0" encoding="UTF-8"?> <VApp xmlns="http://www.vmware.com/vcloud/v1" name="#{name}" type="application/vnd.vmware.vcloud.vApp+xml"> <Description>#{description}</Description> </VApp> EOF request( :body => body, :expects => 202, :headers => {'Content-Type' => "application/vnd.vmware.vcloud.vApp+xml"}, :method => 'PUT', :uri => edit_href, :parse => true ) end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems