Package com.gpudb.protocol
Class AlterEnvironmentRequest.Action
- java.lang.Object
-
- com.gpudb.protocol.AlterEnvironmentRequest.Action
-
- Enclosing class:
- AlterEnvironmentRequest
public static final class AlterEnvironmentRequest.Action extends Object
A set of string constants for theAlterEnvironmentRequestparameteraction.Modification operation to be applied
-
-
Field Summary
Fields Modifier and Type Field Description static StringINSTALL_PACKAGEInstall a python package from PyPI, an external data source or KiFSstatic StringINSTALL_REQUIREMENTSInstall packages from a requirements filestatic StringREBUILDRecreates the environment and re-installs all packages, upgrades the packages if necessary based on dependenciesstatic StringRESETUninstalls all packages in the environment and resets it to the original state at time of creationstatic StringUNINSTALL_PACKAGEUninstall a python package.static StringUNINSTALL_REQUIREMENTSUninstall packages from a requirements file
-
-
-
Field Detail
-
INSTALL_PACKAGE
public static final String INSTALL_PACKAGE
Install a python package from PyPI, an external data source or KiFS- See Also:
- Constant Field Values
-
INSTALL_REQUIREMENTS
public static final String INSTALL_REQUIREMENTS
Install packages from a requirements file- See Also:
- Constant Field Values
-
UNINSTALL_PACKAGE
public static final String UNINSTALL_PACKAGE
Uninstall a python package.- See Also:
- Constant Field Values
-
UNINSTALL_REQUIREMENTS
public static final String UNINSTALL_REQUIREMENTS
Uninstall packages from a requirements file- See Also:
- Constant Field Values
-
RESET
public static final String RESET
Uninstalls all packages in the environment and resets it to the original state at time of creation- See Also:
- Constant Field Values
-
REBUILD
public static final String REBUILD
Recreates the environment and re-installs all packages, upgrades the packages if necessary based on dependencies- See Also:
- Constant Field Values
-
-