Sha256: 8200d27f4838f41f1c65e192ddf4d093443f75827070f49024d72efbcccc2348
Contents?: true
Size: 556 Bytes
Versions: 37
Compression:
Stored size: 556 Bytes
Contents
require 'fog/core/collection' require 'fog/hp/models/lb/algorithm' module Fog module HP class LB class Algorithms < Fog::Collection model Fog::HP::LB::Algorithm def all data = service.list_algorithms.body['algorithms'] load(data) end def get(name) data = service.list_algorithms.body['algorithms'] algorithm = data.detect {|algo| algo['name'] == name} new(algorithm) rescue Fog::HP::LB::NotFound nil end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems