Class: Fog::Compute::Ovirt::Template
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::Ovirt::Template
- Defined in:
- lib/fog/ovirt/models/compute/template.rb
Instance Attribute Summary collapse
-
#raw ⇒ Object
Returns the value of attribute raw.
Instance Method Summary collapse
- #destroy(options = {}) ⇒ Object
- #interfaces ⇒ Object
- #ready? ⇒ Boolean
- #save ⇒ Object
- #to_s ⇒ Object
- #volumes ⇒ Object
Instance Attribute Details
#raw ⇒ Object
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
41 42 43 |
# File 'lib/fog/ovirt/models/compute/template.rb', line 41 def destroy( = {}) service.client.destroy_template(id) end |
#interfaces ⇒ Object
23 24 25 26 27 28 |
# File 'lib/fog/ovirt/models/compute/template.rb', line 23 def interfaces attributes[:interfaces] ||= id.nil? ? [] : Fog::Compute::Ovirt::Interfaces.new( :service => service, :vm => self ) end |
#ready? ⇒ Boolean
37 38 39 |
# File 'lib/fog/ovirt/models/compute/template.rb', line 37 def ready? !(status =~ /down/i) end |
#save ⇒ Object
45 46 47 48 |
# File 'lib/fog/ovirt/models/compute/template.rb', line 45 def save raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted? service.client.create_template(attributes) end |
#to_s ⇒ Object
50 51 52 |
# File 'lib/fog/ovirt/models/compute/template.rb', line 50 def to_s name end |