recoder-code
Version:
Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities
12 lines (9 loc) • 337 B
JavaScript
;
const PooledResourceStateEnum = {
ALLOCATED: "ALLOCATED", // In use
IDLE: "IDLE", // In the queue, not in use.
INVALID: "INVALID", // Failed validation
RETURNING: "RETURNING", // Resource is in process of returning
VALIDATION: "VALIDATION" // Currently being tested
};
module.exports = PooledResourceStateEnum;