JFrog · Schema

DeploymentRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
name string
model_id string
model_version_id string
replicas integer
resources object
View JSON Schema on GitHub

JSON Schema

jfrog-deploymentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeploymentRequest",
  "title": "DeploymentRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "model_id": {
      "type": "string"
    },
    "model_version_id": {
      "type": "string"
    },
    "replicas": {
      "type": "integer",
      "default": 1
    },
    "resources": {
      "type": "object",
      "properties": {
        "cpu": {
          "type": "string"
        },
        "memory": {
          "type": "string"
        },
        "gpu": {
          "type": "integer"
        }
      }
    }
  },
  "required": [
    "name",
    "model_id",
    "model_version_id"
  ]
}