/** * @swagger {components.schemas} CommonsModelComputationStatus { "description": "Status of a computation request.", "type": "string", "enum": [ "success", "timeout", "checkconfirmed", "checkdenied", "checkpending", "maxcombinedassetsizeexceeded", "maxdbsizeperoutputexceeded", "maxpartsperoutputexceeded", "maxassetpartsperoutputexceeded", "maxtransformationsperoutputexceeded", "maxpartsexceeded", "maxassetpartsexceeded", "recoverableerror", "unrecoverableerror", "nooutputdatafordefaultparametervalues", "modelwithoutgeometryoutput", "unknown" ] } */ /** Status of a computation request. */ export enum ShapeDiverCommonsModelComputationStatus { /** Model computation was successful */ SUCCESS = 'success', /** Model computation timed out */ TIMEOUT = 'timeout', /** Model was confirmed */ CHECK_CONFIRMED = 'checkconfirmed', /** Model was denied */ CHECK_DENIED = 'checkdenied', /** Model check is pending (e.g. due to manual script checking required) */ CHECK_PENDING = 'checkpending', /** Maximum size for data to be written to files exceeded */ MAX_COMBINED_ASSET_SIZE_EXCEEDED = 'maxcombinedassetsizeexceeded', /** Maximum output size for data to be written to the database exceeded */ MAX_DB_SIZE_PER_OUTPUT_EXCEEDED = 'maxdbsizeperoutputexceeded', /** Maximum number of allowed data parts per output exceeded */ MAX_PARTS_PER_OUTPUT_EXCEEDED = 'maxpartsperoutputexceeded', /** Maximum number of allowed file parts per output exceeded */ MAX_ASSET_PARTS_PER_OUTPUT_EXCEEDED = 'maxassetpartsperoutputexceeded', /** Maximum number of allowed transformations per output exceeded */ MAX_TRANSFORMATIONS_PER_OUTPUT_EXCEEDED = 'maxtransformationsperoutputexceeded', /** Maximum number of allowed data parts per work order exceeded */ MAX_PARTS_EXCEEDED = 'maxpartsexceeded', /** Maximum number of allowed file parts per work order exceeded */ MAX_ASSET_PARTS_EXCEEDED = 'maxassetpartsexceeded', /** Recoverable error while processing the request */ RECOVERABLE_ERROR = 'recoverableerror', /** Unrecoverable error while processing the request */ UNRECOVERABLE_ERROR = 'unrecoverableerror', /** The model does not have output data for its default parameter values, and the worker is configured to not allow this. */ NO_OUTPUT_DATA_FOR_DEFAULT_PARAMETER_VALUES = 'nooutputdatafordefaultparametervalues', /** The model does not contain any outputs which could output geometry, and the worker is configured to not allow this. */ MODEL_WITHOUT_GEOMETRY_OUTPUT = 'modelwithoutgeometryoutput', /** Unknown status */ UNKNOWN = 'unknown', }