MXS-1220: Remove redundant parameter documentation

As all requests support the only parameter `pretty`, there's no point in
documenting it separately for each resource.
This commit is contained in:
Markus Mäkelä
2017-05-22 13:38:29 +03:00
parent 43386333b3
commit c98f8369f2
8 changed files with 3 additions and 102 deletions

View File

@ -108,10 +108,6 @@ GET /v1/monitors/:name
}
```
#### Supported Request Parameter
- `pretty`
### Get all monitors
Get all monitors.
@ -216,10 +212,6 @@ GET /v1/monitors
}
```
#### Supported Request Parameter
- `pretty`
### Create a monitor
Create a new monitor. The request body must define the `/data/id`
@ -232,7 +224,7 @@ be defined at creation time.
The following example defines a request body which creates the new monitor,
_test-monitor_, and assigns two servers to be monitored by it. It also defines
a custom value for the _monitor_interval_ parameter.
a custom value for the _monitor_interval_ parameter.
```javascript
{
@ -258,7 +250,7 @@ a custom value for the _monitor_interval_ parameter.
}
]
}
}
}
}
}
```