Optional arguments for diagnostics collection.
| name | data type | description | 
|---|---|---|
| commands | ApiCommandList | Commands to limit diagnostics to. By default, the most recent 10 commands on the schedule will be used. | 
| ticketNumber | string | Ticket number to which this bundle must be associated with. | 
| comments | string | Additional comments for the bundle. | 
| phoneHome | boolean | Whether the diagnostics bundle must be uploaded to Cloudera. | 
Example
{
  "commands" : {
    "items" : [ {
      "id" : 12345,
      "name" : "...",
      "startTime" : "...",
      "endTime" : "...",
      "active" : true,
      "success" : true,
      "resultMessage" : "...",
      "resultDataUrl" : "...",
      "clusterRef" : { },
      "serviceRef" : { },
      "roleRef" : { },
      "hostRef" : { },
      "parent" : { },
      "children" : { },
      "canRetry" : true
    }, {
      "id" : 12345,
      "name" : "...",
      "startTime" : "...",
      "endTime" : "...",
      "active" : true,
      "success" : true,
      "resultMessage" : "...",
      "resultDataUrl" : "...",
      "clusterRef" : { },
      "serviceRef" : { },
      "roleRef" : { },
      "hostRef" : { },
      "parent" : { },
      "children" : { },
      "canRetry" : true
    } ]
  },
  "ticketNumber" : "...",
  "comments" : "...",
  "phoneHome" : true
}