Policy Cache Diagnostics Information

get

/iam/access/diag/api/v1/policycache/status

Get information related to server policy cache diagnostics.

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : PolicyDiagnosticsData
Type: object
Show Source

401 Response

Not authorized.

424 Response

Failed Dependency

Default Response

Unexpected error
Back to Top

Examples

cURL Example

This example demonstrates the ability to get information related to server policy cache diagnostics.

curl -X GET 'http://<host>:<port>/iam/access/diag/api/v1/policycache/status?verbose=true' -H 'authorization: Basic d2VibG9naWM6d2VibG9naWMx'

Example of Response Body

The following example shows the contents of the response body in JSON format.

{
"serverName": "oam_server1",
"serverIp": "*.*..**",
"serverPort": "14100",
"isMDCEnabled": false,
"isMaster": "false",
"policyCacheUpdateTime": "2018-05-03T21:25:29.137-07:00",
"policyCacheVersion": "2239",
"totalAppDomains": "2",
"totalAuthNPolicies": "18",
"totalAuthZPolicies": "5",
"totalResources": "93",
"totalHostIds": "1",
"totalTokenPolicies": "0",
"lastPolicyUptakeTimeMillis": "2996",
"applicationDomains": [
{ "domainName": "Fusion Apps Integration", "domainId": "f04c50a4-b985-49b0-b0ec-07b4bf183340" } 
,
{ "domainName": "IAM Suite", "domainId": "71554a18-ce54-4698-bc1d-18761a3afbf3" } 
]
}
Back to Top