Skip to main content

Class AlterEnvironmentRequest.Action

java.lang.Object
com.gpudb.protocol.AlterEnvironmentRequest.Action
Enclosing class:

public static final class AlterEnvironmentRequest.Action extends Object
A set of string constants for the AlterEnvironmentRequest parameter action.

Modification operation to be applied.

  • Field Details

    • INSTALL_PACKAGE

      public static final String INSTALL_PACKAGE
      Install a python package from PyPI, an external data source or KiFS.
    • INSTALL_REQUIREMENTS

      public static final String INSTALL_REQUIREMENTS
      Install packages from a requirements file.
    • UNINSTALL_PACKAGE

      public static final String UNINSTALL_PACKAGE
      Uninstall a python package.
    • UNINSTALL_REQUIREMENTS

      public static final String UNINSTALL_REQUIREMENTS
      Uninstall packages from a requirements file.
    • RESET

      public static final String RESET
      Uninstalls all packages in the environment and resets it to the original state at time of creation.
    • REBUILD

      public static final String REBUILD
      Recreates the environment and re-installs all packages, upgrades the packages if necessary based on dependencies.