Sha256: e6d84e318608f9c45f2bbbe2617e9a3405dd55ebb3821d8f402c6bf4e52919e8
Contents?: true
Size: 481 Bytes
Versions: 23
Compression:
Stored size: 481 Bytes
Contents
require "fog/brightbox/models/compute/api_client" module Fog module Brightbox class Compute class ApiClients < Fog::Collection model Fog::Brightbox::Compute::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
23 entries across 23 versions & 1 rubygems