dropEnvironment
public DropEnvironmentResponse dropEnvironment(DropEnvironmentRequest request) throws GPUdbException Drop an existing user-defined function (UDF) environment.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.dropEnvironment
public DropEnvironmentResponse dropEnvironment(String environmentName, Map<String, String> options) throws GPUdbException Drop an existing user-defined function (UDF) environment.Parameters:environmentName- Name of the environment to be dropped. Must be an existing environment.options- Optional parameters.NO_ERROR_IF_NOT_EXISTS: IfTRUEand if the environment specified inenvironmentNamedoes not exist, no error is returned. IfFALSEand if the environment specified inenvironmentNamedoes not exist, then an error is returned. Supported values:The default value isFALSE.
Map.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.