Skip to main content

◆ dropEnvironment() [1/2]

DropEnvironmentResponse kinetica.Kinetica.dropEnvironment (DropEnvironmentRequestrequest_)
inline

Drop an existing user-defined function (UDF) environment.

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

Definition at line 33281 of file KineticaFunctions.cs.

◆ dropEnvironment() [2/2]

DropEnvironmentResponse kinetica.Kinetica.dropEnvironment (stringenvironment_name,
IDictionary< string, string >options = null )
inline

Drop an existing user-defined function (UDF) environment.

Parameters
environment_nameName of the environment to be dropped. Must be an existing environment.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If TRUE and if the environment specified in environment_name does not exist, no error is returned. If FALSE and if the environment specified in environment_name does not exist, then an error is 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 33345 of file KineticaFunctions.cs.

◆ DropEnvironmentAsync() [1/2]

async System.Threading.Tasks.Task< DropEnvironmentResponse > kinetica.Kinetica.DropEnvironmentAsync (DropEnvironmentRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Drop an existing user-defined function (UDF) environment.

(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 33298 of file KineticaFunctions.cs.

◆ DropEnvironmentAsync() [2/2]

async System.Threading.Tasks.Task< DropEnvironmentResponse > kinetica.Kinetica.DropEnvironmentAsync (stringenvironment_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Drop an existing user-defined function (UDF) environment.

(async)

Parameters
environment_nameName of the environment to be dropped. Must be an existing environment.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If TRUE and if the environment specified in environment_name does not exist, no error is returned. If FALSE and if the environment specified in environment_name does not exist, then an error is 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 33393 of file KineticaFunctions.cs.