Skip to main content

New_Stock_Response

regionstring

Region the resource is in (for example, NORWAY-1, CANADA-1, US-1).

Example: CANADA-1
stock-typestring

Specifies the type of stock, which is "GPU".

Example: GPU
models object[]

An array of objects containing stock information for each GPU model, in each region.

  • Array [
  • modelstring

    The model name of the GPU.

    Example: H100-80G-PCIe-NVLink
    availablestring

    Whether stock is currently available.

    Example: 0
    planned_7_daysstringnullable

    Anticipated stock level for the next 7 days. A value of null, indicates there is no data available.

    planned_30_daysstringnullable

    Anticipated stock level for the next 30 days. A value of null, indicates there is no data available.

    planned_100_daysstringnullable

    Anticipated stock level for the next 100 days. A value of null, indicates there is no data available.

    configurations object

    An object containing GPU configuration details.

    1xinteger

    Number of GPUs configured as 1x.

    Example: 0
    2xinteger

    Number of GPUs configured as 2x.

    Example: 0
    4xinteger

    Number of GPUs configured as 4x.

    Example: 0
    8xinteger

    Number of GPUs configured as 8x.

    Example: 0
    10xinteger

    Number of GPUs configured as 10x.

    Example: 0
  • ]
  • New_Stock_Response
    {
    "region": "CANADA-1",
    "stock-type": "GPU",
    "models": [
    {
    "model": "H100-80G-PCIe-NVLink",
    "available": "0",
    "planned_7_days": "string",
    "planned_30_days": "string",
    "planned_100_days": "string",
    "configurations": {
    "1x": 0,
    "2x": 0,
    "4x": 0,
    "8x": 0,
    "10x": 0
    }
    }
    ]
    }