Sha256: 02144a201c92e6f9748667c5854df96b0b65c007c13ce0ceeb4fc77acd697eb9

Contents?: true

Size: 1.37 KB

Versions: 17

Compression:

Stored size: 1.37 KB

Contents

module Fog
  module Compute
    class Ovirt
      class Template < Fog::Model
        identity :id

        attr_accessor :raw

        attribute :name
        attribute :comment
        attribute :description
        attribute :profile
        attribute :display
        attribute :storage,       :aliases => 'disk_size'
        attribute :creation_time
        attribute :os
        attribute :status
        attribute :cores,         :aliases => 'cpus'
        attribute :memory
        attribute :cluster
        attribute :interfaces
        attribute :volumes
        attribute :version

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

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

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

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

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

        def to_s
          name
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 3 rubygems

Version Path
fog-ovirt-0.1.3 lib/fog/ovirt/models/compute/template.rb
fog-ovirt-0.1.2 lib/fog/ovirt/models/compute/template.rb
fog-ovirt-0.1.1 lib/fog/ovirt/models/compute/template.rb
fog-ovirt-0.1.0 lib/fog/ovirt/models/compute/template.rb
fog-ovirt-0.0.1 lib/fog/ovirt/models/compute/template.rb
fog-1.41.0 lib/fog/ovirt/models/compute/template.rb
fog-1.40.0 lib/fog/ovirt/models/compute/template.rb
fog-1.39.0 lib/fog/ovirt/models/compute/template.rb
fog-1.38.0 lib/fog/ovirt/models/compute/template.rb
fog-1.37.0 lib/fog/ovirt/models/compute/template.rb
fog-1.36.0 lib/fog/ovirt/models/compute/template.rb
fog-1.35.0 lib/fog/ovirt/models/compute/template.rb
fog-2.0.0.pre.0 lib/fog/ovirt/models/compute/template.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/ovirt/models/compute/template.rb
fog-1.34.0 lib/fog/ovirt/models/compute/template.rb
fog-1.33.0 lib/fog/ovirt/models/compute/template.rb
fog-1.32.0 lib/fog/ovirt/models/compute/template.rb