Skip to main content
  • 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 - Request object containing the parameters for the operation.
    Returns:
    Response object 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: If TRUE and if the environment specified in environmentName does not exist, no error is returned. If FALSE and if the environment specified in environmentName does not exist, then an error is returned. Supported values:The default value is FALSE.
    • SHOW_NAMES_ONLY: If TRUE only return the names of the installed environments and omit package listing. Supported values:The default value is FALSE.
    The default value is an empty Map.
    Returns:
    Response object containing the results of the operation.
    Throws:
    GPUdbException - if an error occurs during the operation.