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

Public Instance Methods

all(options = {}) click to toggle source
# File lib/fog/openstack/models/identity_v3/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/models/identity_v3/endpoints.rb, line 15
def find_by_id(id)
  cached_endpoint = self.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