Sha256: 5b936efc6cd87525cbb7b4ec06acdb0db3d53d7364ed36e2dd1a364200517ded

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

module Fog
  module Compute
    class Ovirt

      class Template < Fog::Model

        identity :id

        attr_accessor :raw

        attribute :name
        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


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

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

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

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

        def to_s
          name
        end

      end

    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/ovirt/models/compute/template.rb
fog-1.3.1 lib/fog/ovirt/models/compute/template.rb
fog-1.3.0 lib/fog/ovirt/models/compute/template.rb
fog-1.2.0 lib/fog/ovirt/models/compute/template.rb