Sha256: b69a0eb5a663fec58f68ebb66f8287cf72d4e6c3ef4a24a8d55aabd8d50d37c4

Contents?: true

Size: 1.44 KB

Versions: 11

Compression:

Stored size: 1.44 KB

Contents

module Fog
  module Compute
    class Vsphere
      class Real
        def list_templates(options = { })
          options[:folder] ||= options['folder']
          if options[:folder] then
            list_all_templates_in_folder(options[:folder], options[:datacenter])
          else
            list_all_templates(options)
          end
        end

        private

        def list_all_templates_in_folder(path, datacenter_name)
          folder = get_raw_vmfolder(path, datacenter_name)

          vms = folder.children.grep(RbVmomi::VIM::VirtualMachine)
          # remove all virtual machines that are not template
          vms.delete_if { |v| v.config.nil? or not v.config.template }

          vms.map(&method(:convert_vm_mob_ref_to_attr_hash))
        end

        def list_all_templates(options = {})
          datacenters = find_datacenters(options[:datacenter])

          vms = datacenters.map do |dc|
            connection.serviceContent.viewManager.CreateContainerView({
              :container  => dc.vmFolder,
              :type       =>  ["VirtualMachine"],
              :recursive  => true
            }).view
          end.flatten
          # remove all virtual machines that are not templates
          vms.delete_if { |v| v.config.nil? or not v.config.template }

          vms.map(&method(:convert_vm_mob_ref_to_attr_hash))
        end
      end
      class Mock
        def list_templates(filters = { })
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fog-vsphere-2.0.0 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.13.1 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.13.0 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.12.0 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.11.3 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.11.2 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.11.1 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.11.0 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.10.0 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.9.2 lib/fog/vsphere/requests/compute/list_templates.rb
fog-vsphere-1.9.1 lib/fog/vsphere/requests/compute/list_templates.rb