Sha256: f0ed159a9c12643ec43ab9611c304878597fe8ca887f34972f4d64074edef644

Contents?: true

Size: 656 Bytes

Versions: 33

Compression:

Stored size: 656 Bytes

Contents

require 'fog/openstack/models/collection'
require 'fog/container_infra/openstack/models/cluster_template'

module Fog
  module ContainerInfra
    class OpenStack
      class ClusterTemplates < Fog::OpenStack::Collection

        model Fog::ContainerInfra::OpenStack::ClusterTemplate

        def all
          load_response(service.list_cluster_templates, 'clustertemplates')
        end

        def get(cluster_template_uuid_or_name)
          resource = service.get_cluster_template(cluster_template_uuid_or_name).body
          new(resource)
        rescue Fog::ContainerInfra::OpenStack::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

33 entries across 31 versions & 3 rubygems

Version Path
fog-openstack-0.1.31 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.10 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.1.30 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.1.29 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.9 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.1.28 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.8 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.7 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.6 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.5 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.4 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.3 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.2 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.3.0 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.2.4 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.2.3 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.2.2 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.2.1 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-openstack-0.2.0 lib/fog/container_infra/openstack/models/cluster_templates.rb
fog-zj-0.1.28 lib/fog/container_infra/openstack/models/cluster_templates.rb