1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
require 'fog/openstack/models/collection'
require 'fog/openstack/identity/v3/models/service'
module Fog
module OpenStack
class Identity
class V3
class Endpoints < Fog::OpenStack::Collection
model Fog::OpenStack::Identity::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::OpenStack::Identity::V3::Endpoint.new(
endpoint_hash.merge(:service => service)
)
end
end
end
end
end
end
|