| code | condition |
|---|---|
| 401 | Bad credentials |
| media type | data type |
|---|---|
| application/json | array of BenchmarkResult (JSON) |
| application/xml | list of benchmarkResult (XML) |
GET /user/v1.0/benchmark
Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
[ {
"host" : "...",
"vmType" : "...",
"cloudDeploymentDomain" : "...",
"end" : "...",
"delta" : "...",
"start" : "...",
"id" : "58e3946e0fb4f562d84ba1ad",
"owner" : "user1",
"timestamp" : 12345
} ]
| code | condition |
|---|---|
| 401 | Bad credentials |
| media type | data type |
|---|---|
| application/json | string (JSON) |
| application/xml | string (XML) |
DELETE /user/v1.0/benchmark/all
Accept: application/json
HTTP/1.1 204 Looks Good
Content-Type: application/json
...
| code | condition |
|---|---|
| 401 | Bad credentials |
| media type | data type |
|---|---|
| application/json | array of string (JSON) |
| application/xml | list of string (XML) |
GET /user/v1.0/benchmark/ids
Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
...
| name | type | description |
|---|---|---|
| id | path |
| code | condition |
|---|---|
| 401 | Bad credentials |
| media type | data type |
|---|---|
| application/json | string (JSON) |
| application/xml | string (XML) |
DELETE /user/v1.0/benchmark/{id}
Accept: application/json
HTTP/1.1 204 Looks Good
Content-Type: application/json
...
| name | type | description |
|---|---|---|
| id | path |
| code | condition |
|---|---|
| 401 | Bad credentials |
| media type | data type |
|---|---|
| application/json | BenchmarkResult (JSON) |
| application/xml | benchmarkResult (XML) |
GET /user/v1.0/benchmark/{id}
Accept: application/json
HTTP/1.1 200 Looks Good
Content-Type: application/json
{
"host" : "...",
"vmType" : "...",
"cloudDeploymentDomain" : "...",
"end" : "...",
"delta" : "...",
"start" : "...",
"id" : "58e3946e0fb4f562d84ba1ad",
"owner" : "user1",
"timestamp" : 12345
}