Sha256: 6aeddd5a566f77494eeababc7eff2eb301f8dd75d9c4cac48b95ebf7af4cd917
Contents?: true
Size: 648 Bytes
Versions: 12
Compression:
Stored size: 648 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] The JSON response parsed to a Hash # # @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
12 entries across 12 versions & 5 rubygems