Skip to main content

◆ showProc() [1/2]

ShowProcResponse kinetica.Kinetica.showProc (ShowProcRequestrequest_)
inline

Shows information about a proc.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 60442 of file KineticaFunctions.cs.

◆ showProc() [2/2]

ShowProcResponse kinetica.Kinetica.showProc (stringproc_name = "",
IDictionary< string, string >options = null )
inline

Shows information about a proc.

Parameters
proc_nameName 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 ”.
optionsOptional parameters.
  • 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. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 60500 of file KineticaFunctions.cs.

◆ ShowProcAsync() [1/2]

async System.Threading.Tasks.Task< ShowProcResponse > kinetica.Kinetica.ShowProcAsync (ShowProcRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows information about a proc.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 60457 of file KineticaFunctions.cs.

◆ ShowProcAsync() [2/2]

async System.Threading.Tasks.Task< ShowProcResponse > kinetica.Kinetica.ShowProcAsync (stringproc_name = "",
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows information about a proc.

(async)

Parameters
proc_nameName 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 ”.
optionsOptional parameters.
  • 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. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 60543 of file KineticaFunctions.cs.