showEnvironment
public ShowEnvironmentResponse showEnvironment(ShowEnvironmentRequest request) throws GPUdbException Shows information about a specified user-defined function (UDF) environment or all environments. Returns detailed information about existing environments.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.showEnvironment
public ShowEnvironmentResponse showEnvironment(String environmentName, Map<String, String> options) throws GPUdbException Shows information about a specified user-defined function (UDF) environment or all environments. Returns detailed information about existing environments.Parameters:environmentName- Name of the environment on which to retrieve information. The name must refer to a currently existing environment. If ’*’ or an empty value is specified, information about all environments will be returned. The default value is ”.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.SHOW_NAMES_ONLY: IfTRUEonly return the names of the installed environments and omit package listing. Supported values:The default value isFALSE.
Map.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.