Sha256: ef6e3b59e28fa3e21b9c515a176049b0f261fee04af0bef0baf91638991e3095
Contents?: true
Size: 929 Bytes
Versions: 23
Compression:
Stored size: 929 Bytes
Contents
module Fog module Brightbox class Compute class Real # Requests a new cloud IP address for the account. # # @param [Hash] options # @option options [String] :reverse_dns Reverse DNS hostname # @option options [String] :name Name for Cloud IP # @option options [Array] :port_translators Port on which external clients connect and port on which your service is listening. # @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 # @return [NilClass] if no options were passed # # @see https://api.gb1.brightbox.com/1.0/#cloud_ip_create_cloud_ip # def create_cloud_ip(options = {}) wrapped_request("post", "/1.0/cloud_ips", [201], options) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems