Sha256: a15a926f1eef32b078d3b06a729ccb562351c33e77c619baf17267fb39911b2b

Contents?: true

Size: 657 Bytes

Versions: 20

Compression:

Stored size: 657 Bytes

Contents

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

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

        model Fog::OpenStack::ContainerInfra::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::OpenStack::ContainerInfra::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 3 rubygems

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