forked from oracle/weblogic-kubernetes-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserverstatus.json
More file actions
31 lines (31 loc) · 874 Bytes
/
serverstatus.json
File metadata and controls
31 lines (31 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"type": "object",
"javaType": "oracle.kubernetes.weblogic.domain.v1.ServerStatus",
"description": "ServerStatus describes the current status of a specific WebLogic server.",
"required": [
"serverName",
"state"
],
"properties": {
"serverName": {
"description": "WebLogic server name.",
"type": "string"
},
"state": {
"description": "Current state of this WebLogic server.",
"type": "string"
},
"clusterName": {
"description": "WebLogic cluster name, if the server is part of a cluster",
"type": "string"
},
"nodeName": {
"description": "Name of node that is hosting the Pod containing this WebLogic server.",
"type": "string"
},
"health": {
"description": "State and health of the server.",
"$ref": "serverhealth.json"
}
}
}