Sha256: 8f26f89c91c7c137accb83ec20a15c9b8fe3df570a5769e447cd3f63c1220ef9
Contents?: true
Size: 582 Bytes
Versions: 66
Compression:
Stored size: 582 Bytes
Contents
module Fog module Compute class Brightbox class Real # Get full details of the interface. # # @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/#interface_get_interface # def get_interface(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("get", "/1.0/interfaces/#{identifier}", [200]) end end end end end
Version data entries
66 entries across 66 versions & 4 rubygems