Show Proc

Shows information about a proc.

Input Parameter Description

NameTypeDescription
proc_namestringName of the proc to show information about. If specified, must be the name of a currently existing proc. If not specified, information about all procs will be returned. The default value is ''.
optionsmap of string to strings

Optional parameters. The default value is an empty map ( {} ).

Supported Parameters (keys)Parameter Description
include_files

If set to true, the files that make up the proc will be returned. If set to false, the files will not be returned. The default value is false. The supported values are:

  • true
  • false

Output Parameter Description

NameTypeDescription
proc_namesarray of stringsThe proc names.
execution_modesarray of strings

The execution modes of the procs named in output parameter proc_names.

Possible List EntriesDescription
string
Possible ValuesDescription
distributedDistributed
nondistributedNondistributed
filesarray of maps of string to bytesMaps of the files that make up the procs named in output parameter proc_names.
commandsarray of stringsThe commands (excluding arguments) that will be invoked when the procs named in output parameter proc_names are executed.
argsarray of arrays of stringsArrays of command-line arguments that will be passed to the procs named in output parameter proc_names when executed.
optionsarray of maps of string to stringsThe optional parameters for the procs named in output parameter proc_names.
infomap of string to stringsAdditional information.