module Selligent::Client::StoredProcedures

Implements the stored procedures endpoints

/organizations/:organization/storedprocedures/*

Public Instance Methods

stored_procedure(name) click to toggle source

Get details of a stored procedure

@param name [String] Name of the stored procedure

# File lib/selligent/client/stored_procedures.rb, line 21
def stored_procedure(name)
  get "#{base_url}/storedprocedures/#{name}"
end
stored_procedures(options = {}) click to toggle source

Get stored procedures defined in the given organization

@param options [Hash] Additional options @option options [String] :filter Filter by type @option options [String] :search Search by name or description

# File lib/selligent/client/stored_procedures.rb, line 14
def stored_procedures(options = {})
  get "#{base_url}/storedprocedures", options
end