Sha256: b3b556ca40744bd608b6622340d8f8571c2f384c26ec5c694e05685689652017
Contents?: true
Size: 650 Bytes
Versions: 4
Compression:
Stored size: 650 Bytes
Contents
require "fog/core/collection" 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
4 entries across 4 versions & 2 rubygems