Swap
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 261
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 127
dl 0
loc 261
c 0
b 0
f 0
1
<?php
2
3
namespace CyberLine\SystemdState\Types;
4
5
class Swap 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
    /** @var array */
49
    protected $Documentation = [];
50
51
    protected $DynamicUser;
52
53
    protected $FragmentPath;
54
55
    protected $GID;
56
57
    protected $IOAccounting;
58
59
    protected $IOScheduling;
60
61
    protected $IOWeight;
62
63
    protected $IgnoreSIGPIPE;
64
65
    protected $KillMode;
66
67
    protected $KillSignal;
68
69
    protected $LimitAS;
70
71
    protected $LimitASSoft;
72
73
    protected $LimitCORE;
74
75
    protected $LimitCORESoft;
76
77
    protected $LimitCPU;
78
79
    protected $LimitCPUSoft;
80
81
    protected $LimitDATA;
82
83
    protected $LimitDATASoft;
84
85
    protected $LimitFSIZE;
86
87
    protected $LimitFSIZESoft;
88
89
    protected $LimitLOCKS;
90
91
    protected $LimitLOCKSSoft;
92
93
    protected $LimitMEMLOCK;
94
95
    protected $LimitMEMLOCKSoft;
96
97
    protected $LimitMSGQUEUE;
98
99
    protected $LimitMSGQUEUESoft;
100
101
    protected $LimitNICE;
102
103
    protected $LimitNICESoft;
104
105
    protected $LimitNOFILE;
106
107
    protected $LimitNOFILESoft;
108
109
    protected $LimitNPROC;
110
111
    protected $LimitNPROCSoft;
112
113
    protected $LimitRSS;
114
115
    protected $LimitRSSSoft;
116
117
    protected $LimitRTPRIO;
118
119
    protected $LimitRTPRIOSoft;
120
121
    protected $LimitRTTIME;
122
123
    protected $LimitRTTIMESoft;
124
125
    protected $LimitSIGPENDING;
126
127
    protected $LimitSIGPENDINGSoft;
128
129
    protected $LimitSTACK;
130
131
    protected $LimitSTACKSoft;
132
133
    protected $MemoryAccounting;
134
135
    protected $MemoryCurrent;
136
137
    protected $MemoryDenyWriteExecute;
138
139
    protected $MemoryHigh;
140
141
    protected $MemoryLimit;
142
143
    protected $MemoryLow;
144
145
    protected $MemoryMax;
146
147
    protected $MemorySwapMax;
148
149
    protected $MountFlags;
150
151
    protected $Nice;
152
153
    protected $NoNewPrivileges;
154
155
    protected $NonBlocking;
156
157
    protected $OOMScoreAdjust;
158
159
    protected $Options;
160
161
    protected $Priority;
162
163
    protected $PrivateDevices;
164
165
    protected $PrivateNetwork;
166
167
    protected $PrivateTmp;
168
169
    protected $PrivateUsers;
170
171
    protected $ProtectControlGroups;
172
173
    protected $ProtectHome;
174
175
    protected $ProtectKernelModules;
176
177
    protected $ProtectKernelTunables;
178
179
    protected $ProtectSystem;
180
181
    protected $RemoveIPC;
182
183
    /** @var array */
184
    protected $RequiredBy = [];
185
186
    /** @var array */
187
    protected $Requires = [];
188
189
    /** @var array */
190
    protected $RequiresMountsFor = [];
191
192
    protected $RestrictNamespace;
193
194
    protected $RestrictRealtime;
195
196
    protected $Result;
197
198
    protected $RuntimeDirectoryMode;
199
200
    protected $SameProcessGroup;
201
202
    protected $SecureBits;
203
204
    protected $SendSIGHUP;
205
206
    protected $SendSIGKILL;
207
208
    protected $Slice;
209
210
    protected $SourcePath;
211
212
    protected $StandardError;
213
214
    protected $StandardInput;
215
216
    protected $StandardOutput;
217
218
    protected $StartupBlockIOWeight;
219
220
    protected $StartupCPUShares;
221
222
    protected $StartupCPUWeight;
223
224
    protected $StartupIOWeight;
225
226
    protected $SyslogFacility;
227
228
    protected $SyslogLevel;
229
230
    protected $SyslogLevelPrefix;
231
232
    protected $SyslogPriority;
233
234
    protected $SystemCallErrorNumber;
235
236
    protected $TTYReset;
237
238
    protected $TTYVHangup;
239
240
    protected $TTYVTDisallocate;
241
242
    protected $TasksAccounting;
243
244
    protected $TasksCurrent;
245
246
    protected $TasksMax;
247
248
    protected $TimeoutUSec;
249
250
    protected $TimerSlackNSec;
251
252
    protected $UID;
253
254
    protected $UMask;
255
256
    protected $UnitFilePreset;
257
258
    protected $UnitFileState;
259
260
    protected $UtmpMode;
261
262
    /** @var array */
263
    protected $WantedBy = [];
264
265
    protected $What;
266
}
267