Sha256: f3d15a9dd0eee155a8f05d842d4aaad208a5708a7b6ad60a31cf8a8c1fbe488a
Contents?: true
Size: 864 Bytes
Versions: 13
Compression:
Stored size: 864 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 # @param [Hash] options # @option options [Boolean] :nested passed through with the API request. When true nested resources are expanded. # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#cloud_ip_unmap_cloud_ip # def unmap_cloud_ip(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/cloud_ips/#{identifier}/unmap", [202], options) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems