forked from oracle/weblogic-kubernetes-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcondition.json
37 lines (37 loc) · 1.19 KB
/
condition.json
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
32
33
34
35
36
37
{
"type": "object",
"javaType": "oracle.kubernetes.weblogic.domain.v1.DomainCondition",
"description": "DomainCondition contains details for the current condition of this domain.",
"required": [
"type",
"status"
],
"properties": {
"lastProbeTime": {
"description": "Last time we probed the condition.",
"type": "date-time",
"javaType": "org.joda.time.DateTime"
},
"lastTransitionTime": {
"description": "Last time the condition transitioned from one status to another.",
"type": "date-time",
"javaType": "org.joda.time.DateTime"
},
"message": {
"description": "Human-readable message indicating details about last transition.",
"type": "string"
},
"reason": {
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status is the status of the condition. Can be True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type is the type of the condition. Currently, valid types are Progressing, Available, and Failure.",
"type": "string"
}
}
}