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