lib/fog/vcloud_director/generators/compute/vapp.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Generators
    module Compute
      module VcloudDirector
        # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/types/VAppType.html
        class Vapp
          attr_reader :name, :options

          def initialize(name, options={})
            @name = name
            @options = options
          end

          def generate_xml
            attrs = @attrs
            Nokogiri::XML::Builder.new do
              VApp('xmlns' => 'http://www.vmware.com/vcloud/v1.5',
                   'name' => name
                  ) {
                Description options[:Description] if options.key?(:Description)
              }
            end.to_xml
          end
        end
      end
    end
  end
end