Sha256: 390832b5881059e8fd06c18a68b57e6ba9445e61b33b392b4a3360d84dd4a24c
Contents?: true
Size: 587 Bytes
Versions: 33
Compression:
Stored size: 587 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/container_infra/openstack/models/cluster' module Fog module ContainerInfra class OpenStack class Clusters < Fog::OpenStack::Collection model Fog::ContainerInfra::OpenStack::Cluster def all load_response(service.list_clusters, "clusters") end def get(cluster_uuid_or_name) resource = service.get_cluster(cluster_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