1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace CyberLine\SystemdState\Types; |
4
|
|
|
|
5
|
|
|
class Mount extends AbstractType |
6
|
|
|
{ |
7
|
|
|
/** @var array */ |
8
|
|
|
protected $After = []; |
9
|
|
|
|
10
|
|
|
protected $AmbientCapabilities; |
11
|
|
|
|
12
|
|
|
/** @var array */ |
13
|
|
|
protected $BindsTo = []; |
14
|
|
|
|
15
|
|
|
protected $BlockIOAccounting; |
16
|
|
|
|
17
|
|
|
protected $BlockIOWeight; |
18
|
|
|
|
19
|
|
|
protected $CPUAccounting; |
20
|
|
|
|
21
|
|
|
protected $CPUQuotaPerSecUSec; |
22
|
|
|
|
23
|
|
|
protected $CPUSchedulingPolicy; |
24
|
|
|
|
25
|
|
|
protected $CPUSchedulingPriority; |
26
|
|
|
|
27
|
|
|
protected $CPUSchedulingResetOnFork; |
28
|
|
|
|
29
|
|
|
protected $CPUShares; |
30
|
|
|
|
31
|
|
|
protected $CPUUsageNSec; |
32
|
|
|
|
33
|
|
|
protected $CPUWeight; |
34
|
|
|
|
35
|
|
|
protected $CapabilityBoundingSet; |
36
|
|
|
|
37
|
|
|
/** @var array */ |
38
|
|
|
protected $Conflicts = []; |
39
|
|
|
|
40
|
|
|
protected $ControlGroup; |
41
|
|
|
|
42
|
|
|
protected $ControlPID; |
43
|
|
|
|
44
|
|
|
protected $Delegate; |
45
|
|
|
|
46
|
|
|
protected $DevicePolicy; |
47
|
|
|
|
48
|
|
|
protected $DirectoryMode; |
49
|
|
|
|
50
|
|
|
/** @var array */ |
51
|
|
|
protected $Documentation = []; |
52
|
|
|
|
53
|
|
|
protected $DynamicUser; |
54
|
|
|
|
55
|
|
|
protected $ForceUnmount; |
56
|
|
|
|
57
|
|
|
protected $FragmentPath; |
58
|
|
|
|
59
|
|
|
protected $GID; |
60
|
|
|
|
61
|
|
|
protected $IOAccounting; |
62
|
|
|
|
63
|
|
|
protected $IOScheduling; |
64
|
|
|
|
65
|
|
|
protected $IOWeight; |
66
|
|
|
|
67
|
|
|
protected $IgnoreSIGPIPE; |
68
|
|
|
|
69
|
|
|
protected $KillMode; |
70
|
|
|
|
71
|
|
|
protected $KillSignal; |
72
|
|
|
|
73
|
|
|
protected $LazyUnmount; |
74
|
|
|
|
75
|
|
|
protected $LimitAS; |
76
|
|
|
|
77
|
|
|
protected $LimitASSoft; |
78
|
|
|
|
79
|
|
|
protected $LimitCORE; |
80
|
|
|
|
81
|
|
|
protected $LimitCORESoft; |
82
|
|
|
|
83
|
|
|
protected $LimitCPU; |
84
|
|
|
|
85
|
|
|
protected $LimitCPUSoft; |
86
|
|
|
|
87
|
|
|
protected $LimitDATA; |
88
|
|
|
|
89
|
|
|
protected $LimitDATASoft; |
90
|
|
|
|
91
|
|
|
protected $LimitFSIZE; |
92
|
|
|
|
93
|
|
|
protected $LimitFSIZESoft; |
94
|
|
|
|
95
|
|
|
protected $LimitLOCKS; |
96
|
|
|
|
97
|
|
|
protected $LimitLOCKSSoft; |
98
|
|
|
|
99
|
|
|
protected $LimitMEMLOCK; |
100
|
|
|
|
101
|
|
|
protected $LimitMEMLOCKSoft; |
102
|
|
|
|
103
|
|
|
protected $LimitMSGQUEUE; |
104
|
|
|
|
105
|
|
|
protected $LimitMSGQUEUESoft; |
106
|
|
|
|
107
|
|
|
protected $LimitNICE; |
108
|
|
|
|
109
|
|
|
protected $LimitNICESoft; |
110
|
|
|
|
111
|
|
|
protected $LimitNOFILE; |
112
|
|
|
|
113
|
|
|
protected $LimitNOFILESoft; |
114
|
|
|
|
115
|
|
|
protected $LimitNPROC; |
116
|
|
|
|
117
|
|
|
protected $LimitNPROCSoft; |
118
|
|
|
|
119
|
|
|
protected $LimitRSS; |
120
|
|
|
|
121
|
|
|
protected $LimitRSSSoft; |
122
|
|
|
|
123
|
|
|
protected $LimitRTPRIO; |
124
|
|
|
|
125
|
|
|
protected $LimitRTPRIOSoft; |
126
|
|
|
|
127
|
|
|
protected $LimitRTTIME; |
128
|
|
|
|
129
|
|
|
protected $LimitRTTIMESoft; |
130
|
|
|
|
131
|
|
|
protected $LimitSIGPENDING; |
132
|
|
|
|
133
|
|
|
protected $LimitSIGPENDINGSoft; |
134
|
|
|
|
135
|
|
|
protected $LimitSTACK; |
136
|
|
|
|
137
|
|
|
protected $LimitSTACKSoft; |
138
|
|
|
|
139
|
|
|
protected $MemoryAccounting; |
140
|
|
|
|
141
|
|
|
protected $MemoryCurrent; |
142
|
|
|
|
143
|
|
|
protected $MemoryDenyWriteExecute; |
144
|
|
|
|
145
|
|
|
protected $MemoryHigh; |
146
|
|
|
|
147
|
|
|
protected $MemoryLimit; |
148
|
|
|
|
149
|
|
|
protected $MemoryLow; |
150
|
|
|
|
151
|
|
|
protected $MemoryMax; |
152
|
|
|
|
153
|
|
|
protected $MemorySwapMax; |
154
|
|
|
|
155
|
|
|
protected $MountFlags; |
156
|
|
|
|
157
|
|
|
protected $Nice; |
158
|
|
|
|
159
|
|
|
protected $NoNewPrivileges; |
160
|
|
|
|
161
|
|
|
protected $NonBlocking; |
162
|
|
|
|
163
|
|
|
protected $OOMScoreAdjust; |
164
|
|
|
|
165
|
|
|
protected $Options; |
166
|
|
|
|
167
|
|
|
protected $PrivateDevices; |
168
|
|
|
|
169
|
|
|
protected $PrivateNetwork; |
170
|
|
|
|
171
|
|
|
protected $PrivateTmp; |
172
|
|
|
|
173
|
|
|
protected $PrivateUsers; |
174
|
|
|
|
175
|
|
|
protected $ProtectControlGroups; |
176
|
|
|
|
177
|
|
|
protected $ProtectHome; |
178
|
|
|
|
179
|
|
|
protected $ProtectKernelModules; |
180
|
|
|
|
181
|
|
|
protected $ProtectKernelTunables; |
182
|
|
|
|
183
|
|
|
protected $ProtectSystem; |
184
|
|
|
|
185
|
|
|
protected $RemoveIPC; |
186
|
|
|
|
187
|
|
|
/** @var array */ |
188
|
|
|
protected $RequiredBy = []; |
189
|
|
|
|
190
|
|
|
/** @var array */ |
191
|
|
|
protected $Requires = []; |
192
|
|
|
|
193
|
|
|
/** @var array */ |
194
|
|
|
protected $RequiresMountsFor = []; |
195
|
|
|
|
196
|
|
|
protected $RestrictNamespace; |
197
|
|
|
|
198
|
|
|
protected $RestrictRealtime; |
199
|
|
|
|
200
|
|
|
protected $Result; |
201
|
|
|
|
202
|
|
|
protected $RuntimeDirectoryMode; |
203
|
|
|
|
204
|
|
|
protected $SameProcessGroup; |
205
|
|
|
|
206
|
|
|
protected $SecureBits; |
207
|
|
|
|
208
|
|
|
protected $SendSIGHUP; |
209
|
|
|
|
210
|
|
|
protected $SendSIGKILL; |
211
|
|
|
|
212
|
|
|
protected $Slice; |
213
|
|
|
|
214
|
|
|
protected $SloppyOptions; |
215
|
|
|
|
216
|
|
|
protected $SourcePath; |
217
|
|
|
|
218
|
|
|
protected $StandardError; |
219
|
|
|
|
220
|
|
|
protected $StandardInput; |
221
|
|
|
|
222
|
|
|
protected $StandardOutput; |
223
|
|
|
|
224
|
|
|
protected $StartupBlockIOWeight; |
225
|
|
|
|
226
|
|
|
protected $StartupCPUShares; |
227
|
|
|
|
228
|
|
|
protected $StartupCPUWeight; |
229
|
|
|
|
230
|
|
|
protected $StartupIOWeight; |
231
|
|
|
|
232
|
|
|
protected $SyslogFacility; |
233
|
|
|
|
234
|
|
|
protected $SyslogLevel; |
235
|
|
|
|
236
|
|
|
protected $SyslogLevelPrefix; |
237
|
|
|
|
238
|
|
|
protected $SyslogPriority; |
239
|
|
|
|
240
|
|
|
protected $SystemCallErrorNumber; |
241
|
|
|
|
242
|
|
|
protected $TTYReset; |
243
|
|
|
|
244
|
|
|
protected $TTYVHangup; |
245
|
|
|
|
246
|
|
|
protected $TTYVTDisallocate; |
247
|
|
|
|
248
|
|
|
protected $TasksAccounting; |
249
|
|
|
|
250
|
|
|
protected $TasksCurrent; |
251
|
|
|
|
252
|
|
|
protected $TasksMax; |
253
|
|
|
|
254
|
|
|
protected $TimeoutUSec; |
255
|
|
|
|
256
|
|
|
protected $TimerSlackNSec; |
257
|
|
|
|
258
|
|
|
protected $TriggeredBy; |
259
|
|
|
|
260
|
|
|
protected $Type; |
261
|
|
|
|
262
|
|
|
protected $UID; |
263
|
|
|
|
264
|
|
|
protected $UMask; |
265
|
|
|
|
266
|
|
|
protected $UnitFilePreset; |
267
|
|
|
|
268
|
|
|
protected $UnitFileState; |
269
|
|
|
|
270
|
|
|
protected $UtmpMode; |
271
|
|
|
|
272
|
|
|
/** @var array */ |
273
|
|
|
protected $WantedBy = []; |
274
|
|
|
|
275
|
|
|
/** @var array */ |
276
|
|
|
protected $Wants = []; |
277
|
|
|
|
278
|
|
|
protected $What; |
279
|
|
|
|
280
|
|
|
protected $Where; |
281
|
|
|
} |
282
|
|
|
|