Skip to content

Commit

Permalink
RDK-39846 : Updated doc for SystemServices.
Browse files Browse the repository at this point in the history
  • Loading branch information
sborushevsky committed Apr 13, 2023
1 parent bd9781e commit 45a7220
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions SystemServices/System.json
Original file line number Diff line number Diff line change
Expand Up @@ -1941,6 +1941,24 @@
"result": {
"$ref": "#/common/result"
}
},
"uploadLogsAsync": {
"summary": "Starts background process to upload logs",
"events": {
"onLogUpload" : "Triggered when logs upload process is done"
},
"result": {
"$ref": "#/common/result"
}
},
"abortLogUpload": {
"summary": "Stops background process to upload logs",
"events": {
"onLogUpload" : "Triggered when logs upload process is stopped"
},
"result": {
"$ref": "#/common/result"
}
}
},
"events": {
Expand Down Expand Up @@ -2260,6 +2278,27 @@
"newAccuracy"
]
}
},
"onLogUpload":{
"summary": "Triggered when logs upload process is done or stopped",
"params": {
"type": "object",
"properties": {
"logUploadStatus":{
"summary": "Upload status",
"type":"string",
"enum": [
"UPLOAD_SUCCESS",
"UPLOAD_FAILURE"
"UPLOAD_ABORTED"
],
"example":"UPLOAD_SUCCESS"
}
},
"required":[
"logUploadStatus"
]
}
}
}
}

0 comments on commit 45a7220

Please sign in to comment.