Class: Fog::Compute::Ovirt::Template

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/ovirt/models/compute/template.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#rawObject

Returns the value of attribute raw.



7
8
9
# File 'lib/fog/ovirt/models/compute/template.rb', line 7

def raw
  @raw
end

Instance Method Details

#destroy(options = {}) ⇒ Object



42
43
44
# File 'lib/fog/ovirt/models/compute/template.rb', line 42

def destroy(options = {})
  service.client.destroy_template(id)
end

#interfacesObject



24
25
26
27
28
29
# File 'lib/fog/ovirt/models/compute/template.rb', line 24

def interfaces
  attributes[:interfaces] ||= id.nil? ? [] : Fog::Compute::Ovirt::Interfaces.new(
      :service => service,
      :vm => self
  )
end

#ready?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/fog/ovirt/models/compute/template.rb', line 38

def ready?
  !(status =~ /down/i)
end

#saveObject

Raises:

  • (Fog::Errors::Error)


46
47
48
49
# File 'lib/fog/ovirt/models/compute/template.rb', line 46

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
  service.client.create_template(attributes)
end

#to_sObject



51
52
53
# File 'lib/fog/ovirt/models/compute/template.rb', line 51

def to_s
  name
end

#volumesObject



31
32
33
34
35
36
# File 'lib/fog/ovirt/models/compute/template.rb', line 31

def volumes
  attributes[:volumes] ||= id.nil? ? [] : Fog::Compute::Ovirt::Volumes.new(
      :service => service,
      :vm => self
  )
end