Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add log collection job type
  • Loading branch information
priyjain358 committed May 21, 2024
commit 6c4d855bdcb73e1174d2870007d25fc9666d4529
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,19 @@
},
"readOnly": true
},
"logCollectionJobType": {
"description": "LogCollection job type",
"type": "string",
"enum": [
"OnDemand",
"Scheduled"
],
"x-ms-enum": {
"name": "LogCollectionJobType",
"modelAsString": true
},
"readOnly": true
},
"correlationId": {
"description": "CorrelationId of the log collection",
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"timeCollected": "2020-01-01T17:18:19.1234567Z",
"logSize": 1000,
"logCollectionStatus": "Succeeded",
"logCollectionJobType": "OnDemand",
"correlationId": "a76ab33a-1819-4e82-1212-e3e4ec3d1425",
"endTimeCollected": "2020-01-01T17:25:19.1234567Z"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"timeCollected": "2020-01-01T17:18:19.1234567Z",
"logSize": 1000,
"logCollectionStatus": "Succeeded",
"logCollectionJobType": "OnDemand",
"correlationId": "a76ab33a-1819-4e82-1212-e3e4ec3d1425",
"endTimeCollected": "2020-01-01T17:25:19.1234567Z"
}
Expand Down