Sha256: d2fb708d2abb006784cb30392ca7efa3cfbebf77dbe029656529115191ce860f

Contents?: true

Size: 1.14 KB

Versions: 57

Compression:

Stored size: 1.14 KB

Contents

require 'fog/core/model'

module Fog
  module Orchestration
    class OpenStack
      class Stack < Fog::Model
        identity :id

        attribute :stack_name
        attribute :stack_status
        attribute :stack_status_reason
        attribute :creation_time
        attribute :updated_time
        attribute :id

        attribute :template_url
        attribute :template
        attribute :parameters
        attribute :timeout_in_minutes

        def initialize(attributes)
          # Old 'connection' is renamed as service and should be used instead
          prepare_service_value(attributes)
          super
        end

        def save
          requires :stack_name
          identity ? update : create
        end

        def create
          requires :stack_name
          service.create_stack(stack_name, self.attributes)
          self
        end

        def update
          requires :stack_name
          service.update_stack(stack_name, self.attributes)
          self
        end

        def destroy
          requires :id
          service.delete_stack(self.stack_name, self.id)
          true
        end
      end
    end
  end
end

Version data entries

57 entries across 57 versions & 5 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/openstack/models/orchestration/stack.rb
fog-1.27.0 lib/fog/openstack/models/orchestration/stack.rb
fog-1.26.0 lib/fog/openstack/models/orchestration/stack.rb
fog-1.25.0 lib/fog/openstack/models/orchestration/stack.rb
nsidc-fog-1.24.1 lib/fog/openstack/models/orchestration/stack.rb
fog-1.24.0 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.11 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.10 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.9 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.8 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.7 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.6 lib/fog/openstack/models/orchestration/stack.rb
fog-1.23.0 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.4 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.3 lib/fog/openstack/models/orchestration/stack.rb
ns-fog-1.22.2 lib/fog/openstack/models/orchestration/stack.rb
fog-1.22.1 lib/fog/openstack/models/orchestration/stack.rb
fog-1.22.0 lib/fog/openstack/models/orchestration/stack.rb
fog-1.21.0 lib/fog/openstack/models/orchestration/stack.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/models/orchestration/stack.rb