Sha256: 0920cae19cd44747c494a006f6a83f0b710e37185e8aadb6576e4378cc1cffdf
Contents?: true
Size: 765 Bytes
Versions: 10
Compression:
Stored size: 765 Bytes
Contents
module Fog module Compute class Brightbox class Real # @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/#database_server_reset_password_database_server # def reset_password_database_server(identifier, options = {}) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/database_servers/#{identifier}/reset_password", [202], options) end end end end end
Version data entries
10 entries across 8 versions & 2 rubygems