Sha256: 7606751319f5eecd51430a897f64316f490cfc06e82f9659d195a7f04a8dd96f
Contents?: true
Size: 1020 Bytes
Versions: 13
Compression:
Stored size: 1020 Bytes
Contents
module Fog module Compute class Brightbox class Real # Update some details of the server. # # @param [String] identifier Unique reference to identify the resource # @param [Hash] options # @option options [String] :name Editable label # @option options [String] :description Editable label # @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_snapshot_update_database_snapshot # def update_database_snapshot(identifier, options) return nil if identifier.nil? || identifier == "" return nil if options.empty? || options.nil? wrapped_request("put", "/1.0/database_snapshots/#{identifier}", [200], options) end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems