BenchmarkController Resource

GET /user/v1.0/benchmark

Security Roles Allowed
ADMIN, USER
Response Codes
code condition
401 Bad credentials
Response Body
media type data type
application/json array of BenchmarkResult (JSON)
application/xml list of benchmarkResult (XML)

Example

Request
GET /user/v1.0/benchmark
Accept: application/json

              
Response
HTTP/1.1 200 Looks Good
Content-Type: application/json

                
[ {
  "start" : "...",
  "cloudDeploymentDomain" : "...",
  "end" : "...",
  "host" : "...",
  "delta" : "...",
  "vmType" : "...",
  "timestamp" : 12345,
  "owner" : "user1",
  "id" : "58e3946e0fb4f562d84ba1ad"
} ]
                
              

DELETE /user/v1.0/benchmark/all

Security Roles Allowed
ADMIN
Response Codes
code condition
401 Bad credentials
Response Body
media type data type
application/json string (JSON)
application/xml string (XML)

Example

Request
DELETE /user/v1.0/benchmark/all
Accept: application/json

              
Response
HTTP/1.1 204 Looks Good
Content-Type: application/json

                
...
                
              

GET /user/v1.0/benchmark/ids

Security Roles Allowed
ADMIN, USER
Response Codes
code condition
401 Bad credentials
Response Body
media type data type
application/json array of string (JSON)
application/xml list of string (XML)

Example

Request
GET /user/v1.0/benchmark/ids
Accept: application/json

              
Response
HTTP/1.1 200 Looks Good
Content-Type: application/json

                
...
                
              

DELETE /user/v1.0/benchmark/{id}

Security Roles Allowed
ADMIN, USER
Request Parameters
name type description
id path  
Response Codes
code condition
401 Bad credentials
Response Body
media type data type
application/json string (JSON)
application/xml string (XML)

Example

Request
DELETE /user/v1.0/benchmark/{id}
Accept: application/json

              
Response
HTTP/1.1 204 Looks Good
Content-Type: application/json

                
...
                
              

GET /user/v1.0/benchmark/{id}

Security Roles Allowed
ADMIN, USER
Request Parameters
name type description
id path  
Response Codes
code condition
401 Bad credentials
Response Body
media type data type
application/json BenchmarkResult (JSON)
application/xml benchmarkResult (XML)

Example

Request
GET /user/v1.0/benchmark/{id}
Accept: application/json

              
Response
HTTP/1.1 200 Looks Good
Content-Type: application/json

                
{
  "start" : "...",
  "cloudDeploymentDomain" : "...",
  "end" : "...",
  "host" : "...",
  "delta" : "...",
  "vmType" : "...",
  "timestamp" : 12345,
  "owner" : "user1",
  "id" : "58e3946e0fb4f562d84ba1ad"
}