Sha256: 99662fae4251a14a5c055cfbf5cae8c8272eff98248bbd40a2432dd3e0e38c9f

Contents?: true

Size: 1.05 KB

Versions: 21

Compression:

Stored size: 1.05 KB

Contents

require 'fog/openstack/models/collection'
require 'fog/openstack/orchestration/models/resource'

module Fog
  module OpenStack
    class Orchestration
      class Resources < Fog::OpenStack::Collection
        model Fog::OpenStack::Orchestration::Resource

        def types
          service.list_resource_types.body['resource_types'].sort
        end

        def all(options = {}, deprecated_options = {})
          data = service.list_resources(options, deprecated_options)
          load_response(data, 'resources')
        end

        def get(resource_name, stack = nil)
          stack = first.stack if stack.nil?
          data  = service.show_resource_data(stack.stack_name, stack.id, resource_name).body['resource']
          new(data)
        rescue Fog::OpenStack::Compute::NotFound
          nil
        end

        def metadata(stack_name, stack_id, resource_name)
          service.show_resource_metadata(stack_name, stack_id, resource_name).body['resource']
        rescue Fog::OpenStack::Compute::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 3 rubygems

Version Path
fog-openstack-1.1.4 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.1.3 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.1.2 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-fork-99 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.1.0 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.1.0.pre lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-apibank-1.0.102 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.11 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-apibank-1.0.101 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.10 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.9 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.8 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.7 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.6 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.5 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.4 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.3 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.2 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.1 lib/fog/openstack/orchestration/models/resources.rb
fog-openstack-1.0.0 lib/fog/openstack/orchestration/models/resources.rb