Class: Fog::OpenStack::Identity::V3::Endpoints
- Inherits:
-
Collection
- Object
- Collection
- Collection
- Fog::OpenStack::Identity::V3::Endpoints
show all
- Defined in:
- lib/fog/openstack/identity/v3/models/endpoints.rb
Instance Attribute Summary
Attributes inherited from Collection
#response
Instance Method Summary
collapse
Methods inherited from Collection
#destroy, #get, #load_response, #summary
Instance Method Details
#all(options = {}) ⇒ Object
11
12
13
|
# 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) ⇒ Object
15
16
17
18
19
20
21
22
|
# 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
|