Sha256: 87e2583a1514293695c598a93d1613cd611db0e078281f47ed0b59dfbcd4089a
Contents?: true
Size: 654 Bytes
Versions: 78
Compression:
Stored size: 654 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
78 entries across 78 versions & 7 rubygems