summaryrefslogtreecommitdiff
path: root/rest-api
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2015-08-07 10:41:11 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-08-07 10:41:12 -0500
commitecd4cde521d0b5fc43312aed500e1bcff181209c (patch)
tree97f5c99d8c02839ef7274d3fc13579d228984698 /rest-api
parent1b89cbb3b0f0a3cb65e5ab6c2a374f62c5203b4c (diff)
parentf19c4930c2bd11e8b75ad2c6b4e5ff9d5304edb8 (diff)
Merge "ARI: Deleting log channels"
Diffstat (limited to 'rest-api')
-rw-r--r--rest-api/api-docs/asterisk.json32
1 files changed, 30 insertions, 2 deletions
diff --git a/rest-api/api-docs/asterisk.json b/rest-api/api-docs/asterisk.json
index 5109419d7..53f690d47 100644
--- a/rest-api/api-docs/asterisk.json
+++ b/rest-api/api-docs/asterisk.json
@@ -297,6 +297,34 @@
]
},
{
+ "path": "/asterisk/logging/{logChannelName}",
+ "description": "Asterisk log channel",
+ "operations": [
+ {
+ "httpMethod": "DELETE",
+ "summary": "Deletes a log channel.",
+ "nickname": "deleteLog",
+ "responseClass": "void",
+ "parameters": [
+ {
+ "name": "logChannelName",
+ "description": "Log channels name",
+ "paramType": "path",
+ "required": true,
+ "allowMultiple": false,
+ "dataType": "string"
+ }
+ ],
+ "errorResponses": [
+ {
+ "code": 404,
+ "reason": "Log channel does not exist."
+ }
+ ]
+ }
+ ]
+ },
+ {
"path": "/asterisk/logging/{logChannelName}/rotate",
"description": "Asterisk log channel",
"operations": [
@@ -565,7 +593,7 @@
"id": "LogChannel",
"description": "Details of an Asterisk log channel",
"properties": {
- "name": {
+ "channel": {
"type": "string",
"description": "The log channel path",
"required": true
@@ -581,7 +609,7 @@
"required": true
},
"configuration": {
- "type": "string",
+ "type": "List[string]",
"description": "The various log levels",
"required": true
}