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