Dell Servers · Schema

Manager

Manager resource representing the iDRAC management controller

HardwareInfrastructureManagementMonitoringServers

Properties

Name Type Description
@odata.id string OData resource identifier
Id string Manager resource identifier
Name string Manager name
ManagerType string Type of management controller
FirmwareVersion string iDRAC firmware version
Model string iDRAC model designation
Status object
View JSON Schema on GitHub

JSON Schema

dell-servers-manager-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Manager",
  "title": "Manager",
  "type": "object",
  "description": "Manager resource representing the iDRAC management controller",
  "properties": {
    "@odata.id": {
      "type": "string",
      "description": "OData resource identifier"
    },
    "Id": {
      "type": "string",
      "description": "Manager resource identifier"
    },
    "Name": {
      "type": "string",
      "description": "Manager name"
    },
    "ManagerType": {
      "type": "string",
      "description": "Type of management controller",
      "enum": [
        "ManagementController",
        "EnclosureManager",
        "BMC",
        "RackManager"
      ]
    },
    "FirmwareVersion": {
      "type": "string",
      "description": "iDRAC firmware version"
    },
    "Model": {
      "type": "string",
      "description": "iDRAC model designation"
    },
    "Status": {
      "$ref": "#/components/schemas/Status"
    }
  }
}