class Fog::OpenStack::Identity::V3::Endpoints

Public Instance Methods

all(options = {}) click to toggle source
# File lib/fog/openstack/identity/v3/models/endpoints.rb, line 11
def all(options = {})
  load_response(service.list_endpoints(options), 'endpoints')
end
find_by_id(id) click to toggle source
# File lib/fog/openstack/identity/v3/models/endpoints.rb, line 15
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