Get Essbase Query Governor Execution Time (v2)

This API returns the Oracle Essbase Query Governor Execution Time (maximum number of seconds that a query can run before Essbase Server terminates it) of all the Essbase cubes.

Required Roles

Service Administrator

REST Resource

GET /interop/rest/v2/config/services/essbaseqrygovexectime

Request

Supported Media Types: application/json

Response

Supported Media Types: application/json

Table 9-95 Parameters

Parameters Description
details In case of errors, details are published with the error string
status See Migration Status Codes
links Detailed information about the link
href Links to API call
action The HTTP call type
rel Can be self and/or Job Status. If set to Job Status, you can use the href to get the status of the import operation
data Parameters as key value pairs passed in the request

Example of Response Body

{  
  "details": null,  
  "status": 0,  
  "items": [  
    {  
      "qryexectime": "<QUERY-GOVERNOR-EXECUTION-TIME>"  
    }  
  ],  
  "links": [  
    {  
      "href": "https://<BASE-URL>/interop/rest/v2/config/services/essbaseqrygovexectime",  
      "action": "GET",  
      "rel": "self",  
      "data": null  
    }  
  ]  
}  

Sample cURL Command

curl -s -u <USERNAME>:<PASSWORD>-H 'Content-Type: application/json' --request GET -G https://<BASE-URL>/interop/rest/v2/config/services/essbaseqrygovexectime