Sha256: 1e914214393fe10e2ac31256be7e2496990801539f440fa2668a9ae1cc9d241a
Contents?: true
Size: 620 Bytes
Versions: 16
Compression:
Stored size: 620 Bytes
Contents
require "fog/brightbox/models/compute/cloud_ip" module Fog module Compute class Brightbox class CloudIps < Fog::Collection model Fog::Compute::Brightbox::CloudIp def all data = service.list_cloud_ips load(data) end def get(identifier) return nil if identifier.nil? || identifier == "" data = service.get_cloud_ip(identifier) new(data) rescue Excon::Errors::NotFound nil end def allocate data = service.create_cloud_ip new(data) end end end end end
Version data entries
16 entries across 14 versions & 3 rubygems