Sha256: c1e08d48abbc147a86e72a8eb37f560b1cb9f91e84c654047bdf10054f558ab2
Contents?: true
Size: 655 Bytes
Versions: 66
Compression:
Stored size: 655 Bytes
Contents
module Fog module Compute class Brightbox class Real # Resets the secret used by the application to a new generated value. # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#application_reset_secret_application # def reset_secret_application(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/applications/#{identifier}/reset_secret", [200]) end end end end end
Version data entries
66 entries across 66 versions & 4 rubygems