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

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

Instance Attribute Summary collapse

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Attribute Details

#rawObject

Returns the value of attribute raw.



9
10
11
# File 'lib/fog/ovirt/models/compute/template.rb', line 9

def raw
  @raw
end

Instance Method Details

#destroy(options = {}) ⇒ Object



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

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

#interfacesObject



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

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

#ready?Boolean

Returns:

  • (Boolean)


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

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

#saveObject

Raises:



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

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



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

def to_s
  name
end

#volumesObject



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

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