Sha256: 4707e2f98bb994a0035d35276bcf7307d03994c3a3ae1d175aab2f691d34c924
Contents?: true
Size: 681 Bytes
Versions: 12
Compression:
Stored size: 681 Bytes
Contents
module Fog module Compute class Brightbox class Real # Unmaps a cloud IP address from its current destination making it available to remap. This remains in the account's pool of addresses. # # @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_unmap_cloud_ip # def unmap_cloud_ip(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/cloud_ips/#{identifier}/unmap", [202]) end end end end end
Version data entries
12 entries across 12 versions & 5 rubygems