Sha256: 3b88c2d72d8a70470a55d83f687834f55428f0bd90e4268177dbadfc39bcd358
Contents?: true
Size: 979 Bytes
Versions: 10
Compression:
Stored size: 979 Bytes
Contents
module Fog module Compute class Brightbox class Real # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [String] :name # @option options [String] :description # @option options [Array] :allow_access ... # @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/#database_server_update_database_server # def update_database_server(identifier, options) return nil if identifier.nil? || identifier == "" return nil if options.empty? || options.nil? wrapped_request("put", "/1.0/database_servers/#{identifier}", [200], options) end end end end end
Version data entries
10 entries across 8 versions & 2 rubygems