Sha256: 50eb45c42ba893d33be3cddb87e7fa187c0a1a18355536e9b34c65b178896558
Contents?: true
Size: 878 Bytes
Versions: 20
Compression:
Stored size: 878 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/identity/v3/models/service' module Fog module OpenStack class Identity class V3 class Services < Fog::OpenStack::Collection model Fog::OpenStack::Identity::V3::Service def all(options = {}) load_response(service.list_services(options), 'services') end def find_by_id(id) cached_service = find { |service| service.id == id } return cached_service if cached_service service_hash = service.get_service(id).body['service'] Fog::OpenStack::Identity::V3::Service.new( service_hash.merge(:service => service) ) end def destroy(id) service = find_by_id(id) service.destroy end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems