InstanceInput

Request to create a GPU compute instance.

AICloud ComputingGPUHPCMachine LearningSemiconductorFortune 500

Properties

Name Type Description
name string
gpuType string
gpuCount integer
imageId string
region string
View JSON Schema on GitHub

JSON Schema

cloud-api-instance-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InstanceInput",
  "description": "Request to create a GPU compute instance.",
  "type": "object",
  "required": [
    "gpuType",
    "gpuCount"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "gpuType": {
      "type": "string",
      "enum": [
        "mi300x",
        "mi250",
        "mi210"
      ]
    },
    "gpuCount": {
      "type": "integer"
    },
    "imageId": {
      "type": "string"
    },
    "region": {
      "type": "string"
    }
  }
}