Sha256: 7b5ac83d047e9f65fa5d0c3fdde807c2251d6f70d98ae4bbe808882488d90189
Contents?: true
Size: 780 Bytes
Versions: 17
Compression:
Stored size: 780 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/models/identity_v3/service' module Fog module Identity class OpenStack class V3 class Endpoints < Fog::OpenStack::Collection model Fog::Identity::OpenStack::V3::Endpoint def all(options = {}) load_response(service.list_endpoints(options), 'endpoints') end 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 end end end end end
Version data entries
17 entries across 17 versions & 2 rubygems