Policy Cache Diagnostics Information
get
/iam/access/diag/api/v1/policycache/status
Get information related to server policy cache diagnostics.
Request
Supported Media Types
- application/json
- application/xml
Query Parameters
-
verbose: string
Flag for returning detailed output
Response
Supported Media Types
- application/json
- application/xml
200 Response
Success
Root Schema : PolicyDiagnosticsData
Type:
Show Source
object
-
clusterName:
string
Name of cluster
-
createTime:
string
Create time
-
isMaster(required):
string
Is Master
-
isMDCEnabled(required):
string
Is MDC enabled
-
lastPolicyUptakeTimeMillis(required):
string
Last policy cache uptake in milliseconds
-
policyCacheCheckSum:
string
Checksum of policy cache
-
policyCacheUpdateStatus:
string
Update status of policy cache
-
policyCacheUpdateTime(required):
string
Update time of policy cache
-
policyCacheVersion(required):
string
Version of policy cache
-
serverIp(required):
string
IP Address of server
-
serverName(required):
string
Name of server
-
serverPort(required):
string
Port of server
-
totalAppDomains(required):
string
Number of app domains
-
totalAuthNPolicies(required):
string
Number of AuthN policies
-
totalAuthZPolicies(required):
string
Number of AuthZ policies
-
totalHostIds(required):
string
Number of Host IDs
-
totalResources(required):
string
Number of resources
-
totalTokenPolicies(required):
string
Number of token policies
401 Response
Not authorized.
424 Response
Failed Dependency
Default Response
Unexpected error
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" } ] }