Sha256: 296803589805f82eabdc8260293bbc7e8cdc4c588e0d9a706c542606f50721f0
Contents?: true
Size: 1.1 KB
Versions: 6
Compression:
Stored size: 1.1 KB
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/models/compute/service' module Fog module Compute class OpenStack class Services < Fog::OpenStack::Collection model Fog::Compute::OpenStack::Service def all(options = {}) load_response(service.list_services(options), 'services') end alias_method :summary, :all def details(options = {}) Fog::Logger.deprecation('Calling OpenStack[:compute].services.details is deprecated, use .services.all') all(options) end def get(service_id) # OpenStack API currently does not support getting single service from it # There is a blueprint https://blueprints.launchpad.net/nova/+spec/get-service-by-id # with spec proposal patch https://review.openstack.org/#/c/172412/ but this is abandoned. serv = service.list_services.body['services'].detect do |s| s['id'] == service_id end new(serv) if serv rescue Fog::Compute::OpenStack::NotFound nil end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems