Sha256: b7e724f998888daf855e323b9e72b10e660912040888ba7df3d3219f64f6a329

Contents?: true

Size: 1020 Bytes

Versions: 23

Compression:

Stored size: 1020 Bytes

Contents

module Fog
  module Brightbox
    class Compute
      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

23 entries across 23 versions & 1 rubygems

Version Path
fog-brightbox-1.1.0 lib/fog/brightbox/requests/compute/update_database_snapshot.rb
fog-brightbox-1.0.0 lib/fog/brightbox/requests/compute/update_database_snapshot.rb
fog-brightbox-1.0.0.rc2 lib/fog/brightbox/requests/compute/update_database_snapshot.rb