diff --git a/src/@types/DDO/Service.ts b/src/@types/DDO/Service.ts index 178d5b5d..5cf7ee78 100644 --- a/src/@types/DDO/Service.ts +++ b/src/@types/DDO/Service.ts @@ -19,47 +19,6 @@ export interface PublisherTrustedAlgorithm { } export interface ServiceComputeOptions { - /** - * Namespaced used for the compute job. - * @type {string} - */ - namespace: string - - /** - * Maximum number of CPUs allocated for a job - * @type {number} - */ - cpu?: number - - /** - * Maximum number of GPUs allocated for a job - * @type {number} - */ - gpu?: number - - /** - * Type of GPU (if any) - * @type {string} - */ - gpuType?: string - - /** - * Maximum amount of memory allocated for a job. - * You can express memory as a plain integer or as a fixed-point number using one of these suffixes: E, P, T, G, M, k. - * You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki. - * For example, the following represent roughly the same value: 128974848, 129e6, 129M, 123Mi - * @type {string} - */ - memory?: string - - /** - * Amount of disk space allocated. - * You can express it as a plain integer or as a fixed-point number using one of these suffixes: E, P, T, G, M, k. - * You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki. - * @type {string} - */ - volumeSize?: string - /** * If true, any passed raw text will be allowed to run. * Useful for an algorithm drag & drop use case, but increases risk of data escape through malicious user input. @@ -138,7 +97,7 @@ export interface Service { description?: string /** - * If service is of typecompute, holds information about the compute-related privacy settings & resources. + * If service is of type compute, holds information about the compute-related privacy settings & resources. * @type {ServiceComputeOptions} */ compute?: ServiceComputeOptions