Sha256: 77f10af228f1aa6c78dc4ed8b33e86d26c77965692a630ac6422bf46702cb56c
Contents?: true
Size: 592 Bytes
Versions: 7
Compression:
Stored size: 592 Bytes
Contents
module Fog module Compute class Brightbox class Real # @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/#database_snapshot_lock_resource_database_snapshot # def lock_resource_database_snapshot(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("put", "/1.0/database_snapshots/#{identifier}/lock_resource", [200]) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems