Sha256: 94cd3fd2f421c8a88ed54c6d6f29603bfeedc4385518f30b8706c0c9c2c28752
Contents?: true
Size: 578 Bytes
Versions: 12
Compression:
Stored size: 578 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get full details of the cloud IP address. # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] The JSON response parsed to a Hash # # @see https://api.gb1.brightbox.com/1.0/#cloud_ip_get_cloud_ip # def get_cloud_ip(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/cloud_ips/#{identifier}", [200]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems