Sha256: a54b5bdb21352442e3066fd723560c6171ad96f007a4befb5e6d2cfba5050eaa
Contents?: true
Size: 864 Bytes
Versions: 23
Compression:
Stored size: 864 Bytes
Contents
module Fog module Brightbox class Compute 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
23 entries across 23 versions & 1 rubygems