Sha256: b63e99bff20dc0a864699d15e080b575c8496844568d218a71be84e7da572098
Contents?: true
Size: 481 Bytes
Versions: 16
Compression:
Stored size: 481 Bytes
Contents
require "fog/brightbox/models/compute/api_client" module Fog module Compute class Brightbox class ApiClients < Fog::Collection model Fog::Compute::Brightbox::ApiClient def all data = service.list_api_clients load(data) end def get(identifier = nil) data = service.get_api_client(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
16 entries across 14 versions & 3 rubygems