Sha256: 20c6deb29e8ccbe7559861389ca841db27993da30826b1504fb0194be59cb53d
Contents?: true
Size: 786 Bytes
Versions: 39
Compression:
Stored size: 786 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/identity/openstack/v3/models/service' module Fog module Identity class OpenStack class V3 class Endpoints < Fog::OpenStack::Collection model Fog::Identity::OpenStack::V3::Endpoint def all(options = {}) load_response(service.list_endpoints(options), 'endpoints') end def find_by_id(id) cached_endpoint = find { |endpoint| endpoint.id == id } return cached_endpoint if cached_endpoint endpoint_hash = service.get_endpoint(id).body['endpoint'] Fog::Identity::OpenStack::V3::Endpoint.new( endpoint_hash.merge(:service => service) ) end end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems