Sha256: 72d99c23f4c6c3a2249edf109ab98fad7a03fa603993de482566b674fcdf1b3e
Contents?: true
Size: 504 Bytes
Versions: 35
Compression:
Stored size: 504 Bytes
Contents
require 'fog/openstack/auth/catalog' module Fog module OpenStack module Auth module Catalog class V3 include Fog::OpenStack::Auth::Catalog def endpoint_match?(endpoint, interface, region) if endpoint['interface'] == interface true unless !region.nil? && endpoint['region'] != region end end def endpoint_url(endpoint, _) endpoint['url'] end end end end end end
Version data entries
35 entries across 35 versions & 3 rubygems