NSX-T Data Center REST API

ProgressItemPart (type)

{
  "id": "ProgressItemPart",
  "module_id": "SiteManagerModule",
  "properties": {
    "description": {
      "required": true,
      "title": "Description of the process",
      "type": "string"
    },
    "error": {
      "required": false,
      "title": "Error message, if ran into error",
      "type": "string"
    },
    "name": {
      "required": true,
      "title": "Name of the process",
      "type": "string"
    },
    "percentage": {
      "required": true,
      "title": "0 - 100 of the task being completed",
      "type": "integer"
    },
    "status": {
      "enum": [
        "RUNNING",
        "ERROR",
        "COMPLETE"
      ],
      "required": true,
      "title": "Status of this process",
      "type": "string"
    }
  },
  "type": "object"
}