Sha256: beae9bd0d5ed3810901e36e8a0536d151b31f55d6cb5c9ea3b9d13248c2d819a
Contents?: true
Size: 585 Bytes
Versions: 66
Compression:
Stored size: 585 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] if successful Hash version of JSON object # # @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
66 entries across 66 versions & 4 rubygems