Class: Fog::Identity::OpenStack::V3::Endpoints

Inherits:
OpenStack::Collection show all
Defined in:
lib/fog/openstack/models/identity_v3/endpoints.rb

Instance Attribute Summary

Attributes inherited from OpenStack::Collection

#response

Instance Method Summary collapse

Methods inherited from OpenStack::Collection

#destroy, #get, #load_response, #summary

Instance Method Details

#all(options = {}) ⇒ Object



11
12
13
# 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) ⇒ Object



15
16
17
18
19
20
21
# 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