File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+
3
+ namespace OpenStack \Compute \v2 \Models ;
4
+
5
+ use OpenStack \Common \Resource \AbstractResource ;
6
+
7
+ /**
8
+ * Represents a Compute v2 Fault.
9
+ */
10
+ class Fault extends AbstractResource
11
+ {
12
+ /** @var int **/
13
+ public $ code ;
14
+
15
+ /** @var \DateTimeImmutable **/
16
+ public $ created ;
17
+
18
+ /** @var string **/
19
+ public $ message ;
20
+
21
+ /** @var string */
22
+ public $ details ;
23
+ }
Original file line number Diff line number Diff line change @@ -91,6 +91,9 @@ class Server extends OperatorResource implements
91
91
/** @var string */
92
92
public $ vmState ;
93
93
94
+ /** @var Fault */
95
+ public $ fault ;
96
+
94
97
protected $ resourceKey = 'server ' ;
95
98
protected $ resourcesKey = 'servers ' ;
96
99
protected $ markerKey = 'id ' ;
You can’t perform that action at this time.
0 commit comments