/* tslint:disable */ /* eslint-disable */ /** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @enum {string} */ export enum EnumRuntimeEnvironment { TapisWorkflowsPythonSingularity010 = 'tapis/workflows-python-singularity:0.1.0', Pythonlatest = 'python:latest', Pythonslim = 'python:slim', Python312 = 'python:3.12', Python312Slim = 'python:3.12-slim', Python311 = 'python:3.11', Python311Slim = 'python:3.11-slim', Python310 = 'python:3.10', Python310Slim = 'python:3.10-slim', Python39 = 'python:3.9', Python39Slim = 'python:3.9-slim', Python38 = 'python:3.8', Python38Slim = 'python:3.8-slim', Python2718 = 'python:2.7.18', Python2718Slim = 'python:2.7.18-slim', TensorflowTensorflowlatest = 'tensorflow/tensorflow:latest', TensorflowTensorflowlatestGpu = 'tensorflow/tensorflow:latest-gpu', TensorflowTensorflow2120 = 'tensorflow/tensorflow:2.12.0', TensorflowTensorflow2120Gpu = 'tensorflow/tensorflow:2.12.0-gpu', PytorchPytorchlatest = 'pytorch/pytorch:latest', HuggingfaceTransformersPytorchGpulatest = 'huggingface/transformers-pytorch-gpu:latest', HuggingfaceTransformersPytorchGpu4292 = 'huggingface/transformers-pytorch-gpu:4.29.2', GhcrIoTobiashi26PygeofloodContainermain = 'ghcr.io/tobiashi26/pygeoflood-container:main', GhcrIoIcicleAiPlugNPlayMegadetectorV6bmain = 'ghcr.io/icicle-ai/plug-n-play-megadetector-v6b:main' } export function EnumRuntimeEnvironmentFromJSON(json: any): EnumRuntimeEnvironment { return EnumRuntimeEnvironmentFromJSONTyped(json, false); } export function EnumRuntimeEnvironmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnumRuntimeEnvironment { return json as EnumRuntimeEnvironment; } export function EnumRuntimeEnvironmentToJSON(value?: EnumRuntimeEnvironment | null): any { return value as any; }