Completed
Push — master ( 5f68f7...766e2f )
by Alexander
01:24
created

Mount::setWants()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace CyberLine\SystemdState\Types;
4
5
class Mount extends AbstractType
6
{
7
    protected $After = [];
8
9
    protected $AmbientCapabilities;
10
11
    protected $BindsTo = [];
12
13
    protected $BlockIOAccounting;
14
15
    protected $BlockIOWeight;
16
17
    protected $CPUAccounting;
18
19
    protected $CPUQuotaPerSecUSec;
20
21
    protected $CPUSchedulingPolicy;
22
23
    protected $CPUSchedulingPriority;
24
25
    protected $CPUSchedulingResetOnFork;
26
27
    protected $CPUShares;
28
29
    protected $CPUUsageNSec;
30
31
    protected $CPUWeight;
32
33
    protected $CapabilityBoundingSet;
34
35
    protected $Conflicts = [];
36
37
    protected $ControlGroup;
38
39
    protected $ControlPID;
40
41
    protected $Delegate;
42
43
    protected $DevicePolicy;
44
45
    protected $DirectoryMode;
46
47
    protected $Documentation = [];
48
49
    protected $DynamicUser;
50
51
    protected $ForceUnmount;
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 $LazyUnmount;
70
71
    protected $LimitAS;
72
73
    protected $LimitASSoft;
74
75
    protected $LimitCORE;
76
77
    protected $LimitCORESoft;
78
79
    protected $LimitCPU;
80
81
    protected $LimitCPUSoft;
82
83
    protected $LimitDATA;
84
85
    protected $LimitDATASoft;
86
87
    protected $LimitFSIZE;
88
89
    protected $LimitFSIZESoft;
90
91
    protected $LimitLOCKS;
92
93
    protected $LimitLOCKSSoft;
94
95
    protected $LimitMEMLOCK;
96
97
    protected $LimitMEMLOCKSoft;
98
99
    protected $LimitMSGQUEUE;
100
101
    protected $LimitMSGQUEUESoft;
102
103
    protected $LimitNICE;
104
105
    protected $LimitNICESoft;
106
107
    protected $LimitNOFILE;
108
109
    protected $LimitNOFILESoft;
110
111
    protected $LimitNPROC;
112
113
    protected $LimitNPROCSoft;
114
115
    protected $LimitRSS;
116
117
    protected $LimitRSSSoft;
118
119
    protected $LimitRTPRIO;
120
121
    protected $LimitRTPRIOSoft;
122
123
    protected $LimitRTTIME;
124
125
    protected $LimitRTTIMESoft;
126
127
    protected $LimitSIGPENDING;
128
129
    protected $LimitSIGPENDINGSoft;
130
131
    protected $LimitSTACK;
132
133
    protected $LimitSTACKSoft;
134
135
    protected $MemoryAccounting;
136
137
    protected $MemoryCurrent;
138
139
    protected $MemoryDenyWriteExecute;
140
141
    protected $MemoryHigh;
142
143
    protected $MemoryLimit;
144
145
    protected $MemoryLow;
146
147
    protected $MemoryMax;
148
149
    protected $MemorySwapMax;
150
151
    protected $MountFlags;
152
153
    protected $Nice;
154
155
    protected $NoNewPrivileges;
156
157
    protected $NonBlocking;
158
159
    protected $OOMScoreAdjust;
160
161
    protected $Options;
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
    protected $RequiredBy = [];
184
185
    protected $Requires = [];
186
187
    protected $RequiresMountsFor = [];
188
189
    protected $RestrictNamespace;
190
191
    protected $RestrictRealtime;
192
193
    protected $Result;
194
195
    protected $RuntimeDirectoryMode;
196
197
    protected $SameProcessGroup;
198
199
    protected $SecureBits;
200
201
    protected $SendSIGHUP;
202
203
    protected $SendSIGKILL;
204
205
    protected $Slice;
206
207
    protected $SloppyOptions;
208
209
    protected $SourcePath;
210
211
    protected $StandardError;
212
213
    protected $StandardInput;
214
215
    protected $StandardOutput;
216
217
    protected $StartupBlockIOWeight;
218
219
    protected $StartupCPUShares;
220
221
    protected $StartupCPUWeight;
222
223
    protected $StartupIOWeight;
224
225
    protected $SyslogFacility;
226
227
    protected $SyslogLevel;
228
229
    protected $SyslogLevelPrefix;
230
231
    protected $SyslogPriority;
232
233
    protected $SystemCallErrorNumber;
234
235
    protected $TTYReset;
236
237
    protected $TTYVHangup;
238
239
    protected $TTYVTDisallocate;
240
241
    protected $TasksAccounting;
242
243
    protected $TasksCurrent;
244
245
    protected $TasksMax;
246
247
    protected $TimeoutUSec;
248
249
    protected $TimerSlackNSec;
250
251
    protected $TriggeredBy;
252
253
    protected $Type;
254
255
    protected $UID;
256
257
    protected $UMask;
258
259
    protected $UnitFilePreset;
260
261
    protected $UnitFileState;
262
263
    protected $UtmpMode;
264
265
    protected $WantedBy = [];
266
267
    protected $Wants = [];
268
269
    protected $What;
270
271
    protected $Where;
272
273
    /**
274
     * @return array
275
     */
276
    public function getAfter(): array
277
    {
278
        return $this->After;
279
    }
280
281
    /**
282
     * @param array $After
283
     * @return Mount
284
     */
285
    public function setAfter(array $After): Mount
286
    {
287
        $this->After = $After;
288
        return $this;
289
    }
290
291
    /**
292
     * @return mixed
293
     */
294
    public function getAmbientCapabilities()
295
    {
296
        return $this->AmbientCapabilities;
297
    }
298
299
    /**
300
     * @param mixed $AmbientCapabilities
301
     * @return Mount
302
     */
303
    public function setAmbientCapabilities($AmbientCapabilities)
304
    {
305
        $this->AmbientCapabilities = $AmbientCapabilities;
306
        return $this;
307
    }
308
309
    /**
310
     * @return array
311
     */
312
    public function getBindsTo(): array
313
    {
314
        return $this->BindsTo;
315
    }
316
317
    /**
318
     * @param array $BindsTo
319
     * @return Mount
320
     */
321
    public function setBindsTo(array $BindsTo): Mount
322
    {
323
        $this->BindsTo = $BindsTo;
324
        return $this;
325
    }
326
327
    /**
328
     * @return mixed
329
     */
330
    public function getBlockIOAccounting()
331
    {
332
        return $this->BlockIOAccounting;
333
    }
334
335
    /**
336
     * @param mixed $BlockIOAccounting
337
     * @return Mount
338
     */
339
    public function setBlockIOAccounting($BlockIOAccounting)
340
    {
341
        $this->BlockIOAccounting = $BlockIOAccounting;
342
        return $this;
343
    }
344
345
    /**
346
     * @return mixed
347
     */
348
    public function getBlockIOWeight()
349
    {
350
        return $this->BlockIOWeight;
351
    }
352
353
    /**
354
     * @param mixed $BlockIOWeight
355
     * @return Mount
356
     */
357
    public function setBlockIOWeight($BlockIOWeight)
358
    {
359
        $this->BlockIOWeight = $BlockIOWeight;
360
        return $this;
361
    }
362
363
    /**
364
     * @return mixed
365
     */
366
    public function getCPUAccounting()
367
    {
368
        return $this->CPUAccounting;
369
    }
370
371
    /**
372
     * @param mixed $CPUAccounting
373
     * @return Mount
374
     */
375
    public function setCPUAccounting($CPUAccounting)
376
    {
377
        $this->CPUAccounting = $CPUAccounting;
378
        return $this;
379
    }
380
381
    /**
382
     * @return mixed
383
     */
384
    public function getCPUQuotaPerSecUSec()
385
    {
386
        return $this->CPUQuotaPerSecUSec;
387
    }
388
389
    /**
390
     * @param mixed $CPUQuotaPerSecUSec
391
     * @return Mount
392
     */
393
    public function setCPUQuotaPerSecUSec($CPUQuotaPerSecUSec)
394
    {
395
        $this->CPUQuotaPerSecUSec = $CPUQuotaPerSecUSec;
396
        return $this;
397
    }
398
399
    /**
400
     * @return mixed
401
     */
402
    public function getCPUSchedulingPolicy()
403
    {
404
        return $this->CPUSchedulingPolicy;
405
    }
406
407
    /**
408
     * @param mixed $CPUSchedulingPolicy
409
     * @return Mount
410
     */
411
    public function setCPUSchedulingPolicy($CPUSchedulingPolicy)
412
    {
413
        $this->CPUSchedulingPolicy = $CPUSchedulingPolicy;
414
        return $this;
415
    }
416
417
    /**
418
     * @return mixed
419
     */
420
    public function getCPUSchedulingPriority()
421
    {
422
        return $this->CPUSchedulingPriority;
423
    }
424
425
    /**
426
     * @param mixed $CPUSchedulingPriority
427
     * @return Mount
428
     */
429
    public function setCPUSchedulingPriority($CPUSchedulingPriority)
430
    {
431
        $this->CPUSchedulingPriority = $CPUSchedulingPriority;
432
        return $this;
433
    }
434
435
    /**
436
     * @return mixed
437
     */
438
    public function getCPUSchedulingResetOnFork()
439
    {
440
        return $this->CPUSchedulingResetOnFork;
441
    }
442
443
    /**
444
     * @param mixed $CPUSchedulingResetOnFork
445
     * @return Mount
446
     */
447
    public function setCPUSchedulingResetOnFork($CPUSchedulingResetOnFork)
448
    {
449
        $this->CPUSchedulingResetOnFork = $CPUSchedulingResetOnFork;
450
        return $this;
451
    }
452
453
    /**
454
     * @return mixed
455
     */
456
    public function getCPUShares()
457
    {
458
        return $this->CPUShares;
459
    }
460
461
    /**
462
     * @param mixed $CPUShares
463
     * @return Mount
464
     */
465
    public function setCPUShares($CPUShares)
466
    {
467
        $this->CPUShares = $CPUShares;
468
        return $this;
469
    }
470
471
    /**
472
     * @return mixed
473
     */
474
    public function getCPUUsageNSec()
475
    {
476
        return $this->CPUUsageNSec;
477
    }
478
479
    /**
480
     * @param mixed $CPUUsageNSec
481
     * @return Mount
482
     */
483
    public function setCPUUsageNSec($CPUUsageNSec)
484
    {
485
        $this->CPUUsageNSec = $CPUUsageNSec;
486
        return $this;
487
    }
488
489
    /**
490
     * @return mixed
491
     */
492
    public function getCPUWeight()
493
    {
494
        return $this->CPUWeight;
495
    }
496
497
    /**
498
     * @param mixed $CPUWeight
499
     * @return Mount
500
     */
501
    public function setCPUWeight($CPUWeight)
502
    {
503
        $this->CPUWeight = $CPUWeight;
504
        return $this;
505
    }
506
507
    /**
508
     * @return mixed
509
     */
510
    public function getCapabilityBoundingSet()
511
    {
512
        return $this->CapabilityBoundingSet;
513
    }
514
515
    /**
516
     * @param mixed $CapabilityBoundingSet
517
     * @return Mount
518
     */
519
    public function setCapabilityBoundingSet($CapabilityBoundingSet)
520
    {
521
        $this->CapabilityBoundingSet = $CapabilityBoundingSet;
522
        return $this;
523
    }
524
525
    /**
526
     * @return array
527
     */
528
    public function getConflicts(): array
529
    {
530
        return $this->Conflicts;
531
    }
532
533
    /**
534
     * @param array $Conflicts
535
     * @return Mount
536
     */
537
    public function setConflicts(array $Conflicts): Mount
538
    {
539
        $this->Conflicts = $Conflicts;
540
        return $this;
541
    }
542
543
    /**
544
     * @return mixed
545
     */
546
    public function getControlGroup()
547
    {
548
        return $this->ControlGroup;
549
    }
550
551
    /**
552
     * @param mixed $ControlGroup
553
     * @return Mount
554
     */
555
    public function setControlGroup($ControlGroup)
556
    {
557
        $this->ControlGroup = $ControlGroup;
558
        return $this;
559
    }
560
561
    /**
562
     * @return mixed
563
     */
564
    public function getControlPID()
565
    {
566
        return $this->ControlPID;
567
    }
568
569
    /**
570
     * @param mixed $ControlPID
571
     * @return Mount
572
     */
573
    public function setControlPID($ControlPID)
574
    {
575
        $this->ControlPID = $ControlPID;
576
        return $this;
577
    }
578
579
    /**
580
     * @return mixed
581
     */
582
    public function getDelegate()
583
    {
584
        return $this->Delegate;
585
    }
586
587
    /**
588
     * @param mixed $Delegate
589
     * @return Mount
590
     */
591
    public function setDelegate($Delegate)
592
    {
593
        $this->Delegate = $Delegate;
594
        return $this;
595
    }
596
597
    /**
598
     * @return mixed
599
     */
600
    public function getDevicePolicy()
601
    {
602
        return $this->DevicePolicy;
603
    }
604
605
    /**
606
     * @param mixed $DevicePolicy
607
     * @return Mount
608
     */
609
    public function setDevicePolicy($DevicePolicy)
610
    {
611
        $this->DevicePolicy = $DevicePolicy;
612
        return $this;
613
    }
614
615
    /**
616
     * @return mixed
617
     */
618
    public function getDirectoryMode()
619
    {
620
        return $this->DirectoryMode;
621
    }
622
623
    /**
624
     * @param mixed $DirectoryMode
625
     * @return Mount
626
     */
627
    public function setDirectoryMode($DirectoryMode)
628
    {
629
        $this->DirectoryMode = $DirectoryMode;
630
        return $this;
631
    }
632
633
    /**
634
     * @return array
635
     */
636
    public function getDocumentation(): array
637
    {
638
        return $this->Documentation;
639
    }
640
641
    /**
642
     * @param array $Documentation
643
     * @return Mount
644
     */
645
    public function setDocumentation(array $Documentation): Mount
646
    {
647
        $this->Documentation = $Documentation;
648
        return $this;
649
    }
650
651
    /**
652
     * @return mixed
653
     */
654
    public function getDynamicUser()
655
    {
656
        return $this->DynamicUser;
657
    }
658
659
    /**
660
     * @param mixed $DynamicUser
661
     * @return Mount
662
     */
663
    public function setDynamicUser($DynamicUser)
664
    {
665
        $this->DynamicUser = $DynamicUser;
666
        return $this;
667
    }
668
669
    /**
670
     * @return mixed
671
     */
672
    public function getForceUnmount()
673
    {
674
        return $this->ForceUnmount;
675
    }
676
677
    /**
678
     * @param mixed $ForceUnmount
679
     * @return Mount
680
     */
681
    public function setForceUnmount($ForceUnmount)
682
    {
683
        $this->ForceUnmount = $ForceUnmount;
684
        return $this;
685
    }
686
687
    /**
688
     * @return mixed
689
     */
690
    public function getFragmentPath()
691
    {
692
        return $this->FragmentPath;
693
    }
694
695
    /**
696
     * @param mixed $FragmentPath
697
     * @return Mount
698
     */
699
    public function setFragmentPath($FragmentPath)
700
    {
701
        $this->FragmentPath = $FragmentPath;
702
        return $this;
703
    }
704
705
    /**
706
     * @return mixed
707
     */
708
    public function getGID()
709
    {
710
        return $this->GID;
711
    }
712
713
    /**
714
     * @param mixed $GID
715
     * @return Mount
716
     */
717
    public function setGID($GID)
718
    {
719
        $this->GID = $GID;
720
        return $this;
721
    }
722
723
    /**
724
     * @return mixed
725
     */
726
    public function getIOAccounting()
727
    {
728
        return $this->IOAccounting;
729
    }
730
731
    /**
732
     * @param mixed $IOAccounting
733
     * @return Mount
734
     */
735
    public function setIOAccounting($IOAccounting)
736
    {
737
        $this->IOAccounting = $IOAccounting;
738
        return $this;
739
    }
740
741
    /**
742
     * @return mixed
743
     */
744
    public function getIOScheduling()
745
    {
746
        return $this->IOScheduling;
747
    }
748
749
    /**
750
     * @param mixed $IOScheduling
751
     * @return Mount
752
     */
753
    public function setIOScheduling($IOScheduling)
754
    {
755
        $this->IOScheduling = $IOScheduling;
756
        return $this;
757
    }
758
759
    /**
760
     * @return mixed
761
     */
762
    public function getIOWeight()
763
    {
764
        return $this->IOWeight;
765
    }
766
767
    /**
768
     * @param mixed $IOWeight
769
     * @return Mount
770
     */
771
    public function setIOWeight($IOWeight)
772
    {
773
        $this->IOWeight = $IOWeight;
774
        return $this;
775
    }
776
777
    /**
778
     * @return mixed
779
     */
780
    public function getIgnoreSIGPIPE()
781
    {
782
        return $this->IgnoreSIGPIPE;
783
    }
784
785
    /**
786
     * @param mixed $IgnoreSIGPIPE
787
     * @return Mount
788
     */
789
    public function setIgnoreSIGPIPE($IgnoreSIGPIPE)
790
    {
791
        $this->IgnoreSIGPIPE = $IgnoreSIGPIPE;
792
        return $this;
793
    }
794
795
    /**
796
     * @return mixed
797
     */
798
    public function getKillMode()
799
    {
800
        return $this->KillMode;
801
    }
802
803
    /**
804
     * @param mixed $KillMode
805
     * @return Mount
806
     */
807
    public function setKillMode($KillMode)
808
    {
809
        $this->KillMode = $KillMode;
810
        return $this;
811
    }
812
813
    /**
814
     * @return mixed
815
     */
816
    public function getKillSignal()
817
    {
818
        return $this->KillSignal;
819
    }
820
821
    /**
822
     * @param mixed $KillSignal
823
     * @return Mount
824
     */
825
    public function setKillSignal($KillSignal)
826
    {
827
        $this->KillSignal = $KillSignal;
828
        return $this;
829
    }
830
831
    /**
832
     * @return mixed
833
     */
834
    public function getLazyUnmount()
835
    {
836
        return $this->LazyUnmount;
837
    }
838
839
    /**
840
     * @param mixed $LazyUnmount
841
     * @return Mount
842
     */
843
    public function setLazyUnmount($LazyUnmount)
844
    {
845
        $this->LazyUnmount = $LazyUnmount;
846
        return $this;
847
    }
848
849
    /**
850
     * @return mixed
851
     */
852
    public function getLimitAS()
853
    {
854
        return $this->LimitAS;
855
    }
856
857
    /**
858
     * @param mixed $LimitAS
859
     * @return Mount
860
     */
861
    public function setLimitAS($LimitAS)
862
    {
863
        $this->LimitAS = $LimitAS;
864
        return $this;
865
    }
866
867
    /**
868
     * @return mixed
869
     */
870
    public function getLimitASSoft()
871
    {
872
        return $this->LimitASSoft;
873
    }
874
875
    /**
876
     * @param mixed $LimitASSoft
877
     * @return Mount
878
     */
879
    public function setLimitASSoft($LimitASSoft)
880
    {
881
        $this->LimitASSoft = $LimitASSoft;
882
        return $this;
883
    }
884
885
    /**
886
     * @return mixed
887
     */
888
    public function getLimitCORE()
889
    {
890
        return $this->LimitCORE;
891
    }
892
893
    /**
894
     * @param mixed $LimitCORE
895
     * @return Mount
896
     */
897
    public function setLimitCORE($LimitCORE)
898
    {
899
        $this->LimitCORE = $LimitCORE;
900
        return $this;
901
    }
902
903
    /**
904
     * @return mixed
905
     */
906
    public function getLimitCORESoft()
907
    {
908
        return $this->LimitCORESoft;
909
    }
910
911
    /**
912
     * @param mixed $LimitCORESoft
913
     * @return Mount
914
     */
915
    public function setLimitCORESoft($LimitCORESoft)
916
    {
917
        $this->LimitCORESoft = $LimitCORESoft;
918
        return $this;
919
    }
920
921
    /**
922
     * @return mixed
923
     */
924
    public function getLimitCPU()
925
    {
926
        return $this->LimitCPU;
927
    }
928
929
    /**
930
     * @param mixed $LimitCPU
931
     * @return Mount
932
     */
933
    public function setLimitCPU($LimitCPU)
934
    {
935
        $this->LimitCPU = $LimitCPU;
936
        return $this;
937
    }
938
939
    /**
940
     * @return mixed
941
     */
942
    public function getLimitCPUSoft()
943
    {
944
        return $this->LimitCPUSoft;
945
    }
946
947
    /**
948
     * @param mixed $LimitCPUSoft
949
     * @return Mount
950
     */
951
    public function setLimitCPUSoft($LimitCPUSoft)
952
    {
953
        $this->LimitCPUSoft = $LimitCPUSoft;
954
        return $this;
955
    }
956
957
    /**
958
     * @return mixed
959
     */
960
    public function getLimitDATA()
961
    {
962
        return $this->LimitDATA;
963
    }
964
965
    /**
966
     * @param mixed $LimitDATA
967
     * @return Mount
968
     */
969
    public function setLimitDATA($LimitDATA)
970
    {
971
        $this->LimitDATA = $LimitDATA;
972
        return $this;
973
    }
974
975
    /**
976
     * @return mixed
977
     */
978
    public function getLimitDATASoft()
979
    {
980
        return $this->LimitDATASoft;
981
    }
982
983
    /**
984
     * @param mixed $LimitDATASoft
985
     * @return Mount
986
     */
987
    public function setLimitDATASoft($LimitDATASoft)
988
    {
989
        $this->LimitDATASoft = $LimitDATASoft;
990
        return $this;
991
    }
992
993
    /**
994
     * @return mixed
995
     */
996
    public function getLimitFSIZE()
997
    {
998
        return $this->LimitFSIZE;
999
    }
1000
1001
    /**
1002
     * @param mixed $LimitFSIZE
1003
     * @return Mount
1004
     */
1005
    public function setLimitFSIZE($LimitFSIZE)
1006
    {
1007
        $this->LimitFSIZE = $LimitFSIZE;
1008
        return $this;
1009
    }
1010
1011
    /**
1012
     * @return mixed
1013
     */
1014
    public function getLimitFSIZESoft()
1015
    {
1016
        return $this->LimitFSIZESoft;
1017
    }
1018
1019
    /**
1020
     * @param mixed $LimitFSIZESoft
1021
     * @return Mount
1022
     */
1023
    public function setLimitFSIZESoft($LimitFSIZESoft)
1024
    {
1025
        $this->LimitFSIZESoft = $LimitFSIZESoft;
1026
        return $this;
1027
    }
1028
1029
    /**
1030
     * @return mixed
1031
     */
1032
    public function getLimitLOCKS()
1033
    {
1034
        return $this->LimitLOCKS;
1035
    }
1036
1037
    /**
1038
     * @param mixed $LimitLOCKS
1039
     * @return Mount
1040
     */
1041
    public function setLimitLOCKS($LimitLOCKS)
1042
    {
1043
        $this->LimitLOCKS = $LimitLOCKS;
1044
        return $this;
1045
    }
1046
1047
    /**
1048
     * @return mixed
1049
     */
1050
    public function getLimitLOCKSSoft()
1051
    {
1052
        return $this->LimitLOCKSSoft;
1053
    }
1054
1055
    /**
1056
     * @param mixed $LimitLOCKSSoft
1057
     * @return Mount
1058
     */
1059
    public function setLimitLOCKSSoft($LimitLOCKSSoft)
1060
    {
1061
        $this->LimitLOCKSSoft = $LimitLOCKSSoft;
1062
        return $this;
1063
    }
1064
1065
    /**
1066
     * @return mixed
1067
     */
1068
    public function getLimitMEMLOCK()
1069
    {
1070
        return $this->LimitMEMLOCK;
1071
    }
1072
1073
    /**
1074
     * @param mixed $LimitMEMLOCK
1075
     * @return Mount
1076
     */
1077
    public function setLimitMEMLOCK($LimitMEMLOCK)
1078
    {
1079
        $this->LimitMEMLOCK = $LimitMEMLOCK;
1080
        return $this;
1081
    }
1082
1083
    /**
1084
     * @return mixed
1085
     */
1086
    public function getLimitMEMLOCKSoft()
1087
    {
1088
        return $this->LimitMEMLOCKSoft;
1089
    }
1090
1091
    /**
1092
     * @param mixed $LimitMEMLOCKSoft
1093
     * @return Mount
1094
     */
1095
    public function setLimitMEMLOCKSoft($LimitMEMLOCKSoft)
1096
    {
1097
        $this->LimitMEMLOCKSoft = $LimitMEMLOCKSoft;
1098
        return $this;
1099
    }
1100
1101
    /**
1102
     * @return mixed
1103
     */
1104
    public function getLimitMSGQUEUE()
1105
    {
1106
        return $this->LimitMSGQUEUE;
1107
    }
1108
1109
    /**
1110
     * @param mixed $LimitMSGQUEUE
1111
     * @return Mount
1112
     */
1113
    public function setLimitMSGQUEUE($LimitMSGQUEUE)
1114
    {
1115
        $this->LimitMSGQUEUE = $LimitMSGQUEUE;
1116
        return $this;
1117
    }
1118
1119
    /**
1120
     * @return mixed
1121
     */
1122
    public function getLimitMSGQUEUESoft()
1123
    {
1124
        return $this->LimitMSGQUEUESoft;
1125
    }
1126
1127
    /**
1128
     * @param mixed $LimitMSGQUEUESoft
1129
     * @return Mount
1130
     */
1131
    public function setLimitMSGQUEUESoft($LimitMSGQUEUESoft)
1132
    {
1133
        $this->LimitMSGQUEUESoft = $LimitMSGQUEUESoft;
1134
        return $this;
1135
    }
1136
1137
    /**
1138
     * @return mixed
1139
     */
1140
    public function getLimitNICE()
1141
    {
1142
        return $this->LimitNICE;
1143
    }
1144
1145
    /**
1146
     * @param mixed $LimitNICE
1147
     * @return Mount
1148
     */
1149
    public function setLimitNICE($LimitNICE)
1150
    {
1151
        $this->LimitNICE = $LimitNICE;
1152
        return $this;
1153
    }
1154
1155
    /**
1156
     * @return mixed
1157
     */
1158
    public function getLimitNICESoft()
1159
    {
1160
        return $this->LimitNICESoft;
1161
    }
1162
1163
    /**
1164
     * @param mixed $LimitNICESoft
1165
     * @return Mount
1166
     */
1167
    public function setLimitNICESoft($LimitNICESoft)
1168
    {
1169
        $this->LimitNICESoft = $LimitNICESoft;
1170
        return $this;
1171
    }
1172
1173
    /**
1174
     * @return mixed
1175
     */
1176
    public function getLimitNOFILE()
1177
    {
1178
        return $this->LimitNOFILE;
1179
    }
1180
1181
    /**
1182
     * @param mixed $LimitNOFILE
1183
     * @return Mount
1184
     */
1185
    public function setLimitNOFILE($LimitNOFILE)
1186
    {
1187
        $this->LimitNOFILE = $LimitNOFILE;
1188
        return $this;
1189
    }
1190
1191
    /**
1192
     * @return mixed
1193
     */
1194
    public function getLimitNOFILESoft()
1195
    {
1196
        return $this->LimitNOFILESoft;
1197
    }
1198
1199
    /**
1200
     * @param mixed $LimitNOFILESoft
1201
     * @return Mount
1202
     */
1203
    public function setLimitNOFILESoft($LimitNOFILESoft)
1204
    {
1205
        $this->LimitNOFILESoft = $LimitNOFILESoft;
1206
        return $this;
1207
    }
1208
1209
    /**
1210
     * @return mixed
1211
     */
1212
    public function getLimitNPROC()
1213
    {
1214
        return $this->LimitNPROC;
1215
    }
1216
1217
    /**
1218
     * @param mixed $LimitNPROC
1219
     * @return Mount
1220
     */
1221
    public function setLimitNPROC($LimitNPROC)
1222
    {
1223
        $this->LimitNPROC = $LimitNPROC;
1224
        return $this;
1225
    }
1226
1227
    /**
1228
     * @return mixed
1229
     */
1230
    public function getLimitNPROCSoft()
1231
    {
1232
        return $this->LimitNPROCSoft;
1233
    }
1234
1235
    /**
1236
     * @param mixed $LimitNPROCSoft
1237
     * @return Mount
1238
     */
1239
    public function setLimitNPROCSoft($LimitNPROCSoft)
1240
    {
1241
        $this->LimitNPROCSoft = $LimitNPROCSoft;
1242
        return $this;
1243
    }
1244
1245
    /**
1246
     * @return mixed
1247
     */
1248
    public function getLimitRSS()
1249
    {
1250
        return $this->LimitRSS;
1251
    }
1252
1253
    /**
1254
     * @param mixed $LimitRSS
1255
     * @return Mount
1256
     */
1257
    public function setLimitRSS($LimitRSS)
1258
    {
1259
        $this->LimitRSS = $LimitRSS;
1260
        return $this;
1261
    }
1262
1263
    /**
1264
     * @return mixed
1265
     */
1266
    public function getLimitRSSSoft()
1267
    {
1268
        return $this->LimitRSSSoft;
1269
    }
1270
1271
    /**
1272
     * @param mixed $LimitRSSSoft
1273
     * @return Mount
1274
     */
1275
    public function setLimitRSSSoft($LimitRSSSoft)
1276
    {
1277
        $this->LimitRSSSoft = $LimitRSSSoft;
1278
        return $this;
1279
    }
1280
1281
    /**
1282
     * @return mixed
1283
     */
1284
    public function getLimitRTPRIO()
1285
    {
1286
        return $this->LimitRTPRIO;
1287
    }
1288
1289
    /**
1290
     * @param mixed $LimitRTPRIO
1291
     * @return Mount
1292
     */
1293
    public function setLimitRTPRIO($LimitRTPRIO)
1294
    {
1295
        $this->LimitRTPRIO = $LimitRTPRIO;
1296
        return $this;
1297
    }
1298
1299
    /**
1300
     * @return mixed
1301
     */
1302
    public function getLimitRTPRIOSoft()
1303
    {
1304
        return $this->LimitRTPRIOSoft;
1305
    }
1306
1307
    /**
1308
     * @param mixed $LimitRTPRIOSoft
1309
     * @return Mount
1310
     */
1311
    public function setLimitRTPRIOSoft($LimitRTPRIOSoft)
1312
    {
1313
        $this->LimitRTPRIOSoft = $LimitRTPRIOSoft;
1314
        return $this;
1315
    }
1316
1317
    /**
1318
     * @return mixed
1319
     */
1320
    public function getLimitRTTIME()
1321
    {
1322
        return $this->LimitRTTIME;
1323
    }
1324
1325
    /**
1326
     * @param mixed $LimitRTTIME
1327
     * @return Mount
1328
     */
1329
    public function setLimitRTTIME($LimitRTTIME)
1330
    {
1331
        $this->LimitRTTIME = $LimitRTTIME;
1332
        return $this;
1333
    }
1334
1335
    /**
1336
     * @return mixed
1337
     */
1338
    public function getLimitRTTIMESoft()
1339
    {
1340
        return $this->LimitRTTIMESoft;
1341
    }
1342
1343
    /**
1344
     * @param mixed $LimitRTTIMESoft
1345
     * @return Mount
1346
     */
1347
    public function setLimitRTTIMESoft($LimitRTTIMESoft)
1348
    {
1349
        $this->LimitRTTIMESoft = $LimitRTTIMESoft;
1350
        return $this;
1351
    }
1352
1353
    /**
1354
     * @return mixed
1355
     */
1356
    public function getLimitSIGPENDING()
1357
    {
1358
        return $this->LimitSIGPENDING;
1359
    }
1360
1361
    /**
1362
     * @param mixed $LimitSIGPENDING
1363
     * @return Mount
1364
     */
1365
    public function setLimitSIGPENDING($LimitSIGPENDING)
1366
    {
1367
        $this->LimitSIGPENDING = $LimitSIGPENDING;
1368
        return $this;
1369
    }
1370
1371
    /**
1372
     * @return mixed
1373
     */
1374
    public function getLimitSIGPENDINGSoft()
1375
    {
1376
        return $this->LimitSIGPENDINGSoft;
1377
    }
1378
1379
    /**
1380
     * @param mixed $LimitSIGPENDINGSoft
1381
     * @return Mount
1382
     */
1383
    public function setLimitSIGPENDINGSoft($LimitSIGPENDINGSoft)
1384
    {
1385
        $this->LimitSIGPENDINGSoft = $LimitSIGPENDINGSoft;
1386
        return $this;
1387
    }
1388
1389
    /**
1390
     * @return mixed
1391
     */
1392
    public function getLimitSTACK()
1393
    {
1394
        return $this->LimitSTACK;
1395
    }
1396
1397
    /**
1398
     * @param mixed $LimitSTACK
1399
     * @return Mount
1400
     */
1401
    public function setLimitSTACK($LimitSTACK)
1402
    {
1403
        $this->LimitSTACK = $LimitSTACK;
1404
        return $this;
1405
    }
1406
1407
    /**
1408
     * @return mixed
1409
     */
1410
    public function getLimitSTACKSoft()
1411
    {
1412
        return $this->LimitSTACKSoft;
1413
    }
1414
1415
    /**
1416
     * @param mixed $LimitSTACKSoft
1417
     * @return Mount
1418
     */
1419
    public function setLimitSTACKSoft($LimitSTACKSoft)
1420
    {
1421
        $this->LimitSTACKSoft = $LimitSTACKSoft;
1422
        return $this;
1423
    }
1424
1425
    /**
1426
     * @return mixed
1427
     */
1428
    public function getMemoryAccounting()
1429
    {
1430
        return $this->MemoryAccounting;
1431
    }
1432
1433
    /**
1434
     * @param mixed $MemoryAccounting
1435
     * @return Mount
1436
     */
1437
    public function setMemoryAccounting($MemoryAccounting)
1438
    {
1439
        $this->MemoryAccounting = $MemoryAccounting;
1440
        return $this;
1441
    }
1442
1443
    /**
1444
     * @return mixed
1445
     */
1446
    public function getMemoryCurrent()
1447
    {
1448
        return $this->MemoryCurrent;
1449
    }
1450
1451
    /**
1452
     * @param mixed $MemoryCurrent
1453
     * @return Mount
1454
     */
1455
    public function setMemoryCurrent($MemoryCurrent)
1456
    {
1457
        $this->MemoryCurrent = $MemoryCurrent;
1458
        return $this;
1459
    }
1460
1461
    /**
1462
     * @return mixed
1463
     */
1464
    public function getMemoryDenyWriteExecute()
1465
    {
1466
        return $this->MemoryDenyWriteExecute;
1467
    }
1468
1469
    /**
1470
     * @param mixed $MemoryDenyWriteExecute
1471
     * @return Mount
1472
     */
1473
    public function setMemoryDenyWriteExecute($MemoryDenyWriteExecute)
1474
    {
1475
        $this->MemoryDenyWriteExecute = $MemoryDenyWriteExecute;
1476
        return $this;
1477
    }
1478
1479
    /**
1480
     * @return mixed
1481
     */
1482
    public function getMemoryHigh()
1483
    {
1484
        return $this->MemoryHigh;
1485
    }
1486
1487
    /**
1488
     * @param mixed $MemoryHigh
1489
     * @return Mount
1490
     */
1491
    public function setMemoryHigh($MemoryHigh)
1492
    {
1493
        $this->MemoryHigh = $MemoryHigh;
1494
        return $this;
1495
    }
1496
1497
    /**
1498
     * @return mixed
1499
     */
1500
    public function getMemoryLimit()
1501
    {
1502
        return $this->MemoryLimit;
1503
    }
1504
1505
    /**
1506
     * @param mixed $MemoryLimit
1507
     * @return Mount
1508
     */
1509
    public function setMemoryLimit($MemoryLimit)
1510
    {
1511
        $this->MemoryLimit = $MemoryLimit;
1512
        return $this;
1513
    }
1514
1515
    /**
1516
     * @return mixed
1517
     */
1518
    public function getMemoryLow()
1519
    {
1520
        return $this->MemoryLow;
1521
    }
1522
1523
    /**
1524
     * @param mixed $MemoryLow
1525
     * @return Mount
1526
     */
1527
    public function setMemoryLow($MemoryLow)
1528
    {
1529
        $this->MemoryLow = $MemoryLow;
1530
        return $this;
1531
    }
1532
1533
    /**
1534
     * @return mixed
1535
     */
1536
    public function getMemoryMax()
1537
    {
1538
        return $this->MemoryMax;
1539
    }
1540
1541
    /**
1542
     * @param mixed $MemoryMax
1543
     * @return Mount
1544
     */
1545
    public function setMemoryMax($MemoryMax)
1546
    {
1547
        $this->MemoryMax = $MemoryMax;
1548
        return $this;
1549
    }
1550
1551
    /**
1552
     * @return mixed
1553
     */
1554
    public function getMemorySwapMax()
1555
    {
1556
        return $this->MemorySwapMax;
1557
    }
1558
1559
    /**
1560
     * @param mixed $MemorySwapMax
1561
     * @return Mount
1562
     */
1563
    public function setMemorySwapMax($MemorySwapMax)
1564
    {
1565
        $this->MemorySwapMax = $MemorySwapMax;
1566
        return $this;
1567
    }
1568
1569
    /**
1570
     * @return mixed
1571
     */
1572
    public function getMountFlags()
1573
    {
1574
        return $this->MountFlags;
1575
    }
1576
1577
    /**
1578
     * @param mixed $MountFlags
1579
     * @return Mount
1580
     */
1581
    public function setMountFlags($MountFlags)
1582
    {
1583
        $this->MountFlags = $MountFlags;
1584
        return $this;
1585
    }
1586
1587
    /**
1588
     * @return mixed
1589
     */
1590
    public function getNice()
1591
    {
1592
        return $this->Nice;
1593
    }
1594
1595
    /**
1596
     * @param mixed $Nice
1597
     * @return Mount
1598
     */
1599
    public function setNice($Nice)
1600
    {
1601
        $this->Nice = $Nice;
1602
        return $this;
1603
    }
1604
1605
    /**
1606
     * @return mixed
1607
     */
1608
    public function getNoNewPrivileges()
1609
    {
1610
        return $this->NoNewPrivileges;
1611
    }
1612
1613
    /**
1614
     * @param mixed $NoNewPrivileges
1615
     * @return Mount
1616
     */
1617
    public function setNoNewPrivileges($NoNewPrivileges)
1618
    {
1619
        $this->NoNewPrivileges = $NoNewPrivileges;
1620
        return $this;
1621
    }
1622
1623
    /**
1624
     * @return mixed
1625
     */
1626
    public function getNonBlocking()
1627
    {
1628
        return $this->NonBlocking;
1629
    }
1630
1631
    /**
1632
     * @param mixed $NonBlocking
1633
     * @return Mount
1634
     */
1635
    public function setNonBlocking($NonBlocking)
1636
    {
1637
        $this->NonBlocking = $NonBlocking;
1638
        return $this;
1639
    }
1640
1641
    /**
1642
     * @return mixed
1643
     */
1644
    public function getOOMScoreAdjust()
1645
    {
1646
        return $this->OOMScoreAdjust;
1647
    }
1648
1649
    /**
1650
     * @param mixed $OOMScoreAdjust
1651
     * @return Mount
1652
     */
1653
    public function setOOMScoreAdjust($OOMScoreAdjust)
1654
    {
1655
        $this->OOMScoreAdjust = $OOMScoreAdjust;
1656
        return $this;
1657
    }
1658
1659
    /**
1660
     * @return mixed
1661
     */
1662
    public function getOptions()
1663
    {
1664
        return $this->Options;
1665
    }
1666
1667
    /**
1668
     * @param mixed $Options
1669
     * @return Mount
1670
     */
1671
    public function setOptions($Options)
1672
    {
1673
        $this->Options = $Options;
1674
        return $this;
1675
    }
1676
1677
    /**
1678
     * @return mixed
1679
     */
1680
    public function getPrivateDevices()
1681
    {
1682
        return $this->PrivateDevices;
1683
    }
1684
1685
    /**
1686
     * @param mixed $PrivateDevices
1687
     * @return Mount
1688
     */
1689
    public function setPrivateDevices($PrivateDevices)
1690
    {
1691
        $this->PrivateDevices = $PrivateDevices;
1692
        return $this;
1693
    }
1694
1695
    /**
1696
     * @return mixed
1697
     */
1698
    public function getPrivateNetwork()
1699
    {
1700
        return $this->PrivateNetwork;
1701
    }
1702
1703
    /**
1704
     * @param mixed $PrivateNetwork
1705
     * @return Mount
1706
     */
1707
    public function setPrivateNetwork($PrivateNetwork)
1708
    {
1709
        $this->PrivateNetwork = $PrivateNetwork;
1710
        return $this;
1711
    }
1712
1713
    /**
1714
     * @return mixed
1715
     */
1716
    public function getPrivateTmp()
1717
    {
1718
        return $this->PrivateTmp;
1719
    }
1720
1721
    /**
1722
     * @param mixed $PrivateTmp
1723
     * @return Mount
1724
     */
1725
    public function setPrivateTmp($PrivateTmp)
1726
    {
1727
        $this->PrivateTmp = $PrivateTmp;
1728
        return $this;
1729
    }
1730
1731
    /**
1732
     * @return mixed
1733
     */
1734
    public function getPrivateUsers()
1735
    {
1736
        return $this->PrivateUsers;
1737
    }
1738
1739
    /**
1740
     * @param mixed $PrivateUsers
1741
     * @return Mount
1742
     */
1743
    public function setPrivateUsers($PrivateUsers)
1744
    {
1745
        $this->PrivateUsers = $PrivateUsers;
1746
        return $this;
1747
    }
1748
1749
    /**
1750
     * @return mixed
1751
     */
1752
    public function getProtectControlGroups()
1753
    {
1754
        return $this->ProtectControlGroups;
1755
    }
1756
1757
    /**
1758
     * @param mixed $ProtectControlGroups
1759
     * @return Mount
1760
     */
1761
    public function setProtectControlGroups($ProtectControlGroups)
1762
    {
1763
        $this->ProtectControlGroups = $ProtectControlGroups;
1764
        return $this;
1765
    }
1766
1767
    /**
1768
     * @return mixed
1769
     */
1770
    public function getProtectHome()
1771
    {
1772
        return $this->ProtectHome;
1773
    }
1774
1775
    /**
1776
     * @param mixed $ProtectHome
1777
     * @return Mount
1778
     */
1779
    public function setProtectHome($ProtectHome)
1780
    {
1781
        $this->ProtectHome = $ProtectHome;
1782
        return $this;
1783
    }
1784
1785
    /**
1786
     * @return mixed
1787
     */
1788
    public function getProtectKernelModules()
1789
    {
1790
        return $this->ProtectKernelModules;
1791
    }
1792
1793
    /**
1794
     * @param mixed $ProtectKernelModules
1795
     * @return Mount
1796
     */
1797
    public function setProtectKernelModules($ProtectKernelModules)
1798
    {
1799
        $this->ProtectKernelModules = $ProtectKernelModules;
1800
        return $this;
1801
    }
1802
1803
    /**
1804
     * @return mixed
1805
     */
1806
    public function getProtectKernelTunables()
1807
    {
1808
        return $this->ProtectKernelTunables;
1809
    }
1810
1811
    /**
1812
     * @param mixed $ProtectKernelTunables
1813
     * @return Mount
1814
     */
1815
    public function setProtectKernelTunables($ProtectKernelTunables)
1816
    {
1817
        $this->ProtectKernelTunables = $ProtectKernelTunables;
1818
        return $this;
1819
    }
1820
1821
    /**
1822
     * @return mixed
1823
     */
1824
    public function getProtectSystem()
1825
    {
1826
        return $this->ProtectSystem;
1827
    }
1828
1829
    /**
1830
     * @param mixed $ProtectSystem
1831
     * @return Mount
1832
     */
1833
    public function setProtectSystem($ProtectSystem)
1834
    {
1835
        $this->ProtectSystem = $ProtectSystem;
1836
        return $this;
1837
    }
1838
1839
    /**
1840
     * @return mixed
1841
     */
1842
    public function getRemoveIPC()
1843
    {
1844
        return $this->RemoveIPC;
1845
    }
1846
1847
    /**
1848
     * @param mixed $RemoveIPC
1849
     * @return Mount
1850
     */
1851
    public function setRemoveIPC($RemoveIPC)
1852
    {
1853
        $this->RemoveIPC = $RemoveIPC;
1854
        return $this;
1855
    }
1856
1857
    /**
1858
     * @return array
1859
     */
1860
    public function getRequiredBy(): array
1861
    {
1862
        return $this->RequiredBy;
1863
    }
1864
1865
    /**
1866
     * @param array $RequiredBy
1867
     * @return Mount
1868
     */
1869
    public function setRequiredBy(array $RequiredBy): Mount
1870
    {
1871
        $this->RequiredBy = $RequiredBy;
1872
        return $this;
1873
    }
1874
1875
    /**
1876
     * @return array
1877
     */
1878
    public function getRequires(): array
1879
    {
1880
        return $this->Requires;
1881
    }
1882
1883
    /**
1884
     * @param array $Requires
1885
     * @return Mount
1886
     */
1887
    public function setRequires(array $Requires): Mount
1888
    {
1889
        $this->Requires = $Requires;
1890
        return $this;
1891
    }
1892
1893
    /**
1894
     * @return array
1895
     */
1896
    public function getRequiresMountsFor(): array
1897
    {
1898
        return $this->RequiresMountsFor;
1899
    }
1900
1901
    /**
1902
     * @param array $RequiresMountsFor
1903
     * @return Mount
1904
     */
1905
    public function setRequiresMountsFor(array $RequiresMountsFor): Mount
1906
    {
1907
        $this->RequiresMountsFor = $RequiresMountsFor;
1908
        return $this;
1909
    }
1910
1911
    /**
1912
     * @return mixed
1913
     */
1914
    public function getRestrictNamespace()
1915
    {
1916
        return $this->RestrictNamespace;
1917
    }
1918
1919
    /**
1920
     * @param mixed $RestrictNamespace
1921
     * @return Mount
1922
     */
1923
    public function setRestrictNamespace($RestrictNamespace)
1924
    {
1925
        $this->RestrictNamespace = $RestrictNamespace;
1926
        return $this;
1927
    }
1928
1929
    /**
1930
     * @return mixed
1931
     */
1932
    public function getRestrictRealtime()
1933
    {
1934
        return $this->RestrictRealtime;
1935
    }
1936
1937
    /**
1938
     * @param mixed $RestrictRealtime
1939
     * @return Mount
1940
     */
1941
    public function setRestrictRealtime($RestrictRealtime)
1942
    {
1943
        $this->RestrictRealtime = $RestrictRealtime;
1944
        return $this;
1945
    }
1946
1947
    /**
1948
     * @return mixed
1949
     */
1950
    public function getResult()
1951
    {
1952
        return $this->Result;
1953
    }
1954
1955
    /**
1956
     * @param mixed $Result
1957
     * @return Mount
1958
     */
1959
    public function setResult($Result)
1960
    {
1961
        $this->Result = $Result;
1962
        return $this;
1963
    }
1964
1965
    /**
1966
     * @return mixed
1967
     */
1968
    public function getRuntimeDirectoryMode()
1969
    {
1970
        return $this->RuntimeDirectoryMode;
1971
    }
1972
1973
    /**
1974
     * @param mixed $RuntimeDirectoryMode
1975
     * @return Mount
1976
     */
1977
    public function setRuntimeDirectoryMode($RuntimeDirectoryMode)
1978
    {
1979
        $this->RuntimeDirectoryMode = $RuntimeDirectoryMode;
1980
        return $this;
1981
    }
1982
1983
    /**
1984
     * @return mixed
1985
     */
1986
    public function getSameProcessGroup()
1987
    {
1988
        return $this->SameProcessGroup;
1989
    }
1990
1991
    /**
1992
     * @param mixed $SameProcessGroup
1993
     * @return Mount
1994
     */
1995
    public function setSameProcessGroup($SameProcessGroup)
1996
    {
1997
        $this->SameProcessGroup = $SameProcessGroup;
1998
        return $this;
1999
    }
2000
2001
    /**
2002
     * @return mixed
2003
     */
2004
    public function getSecureBits()
2005
    {
2006
        return $this->SecureBits;
2007
    }
2008
2009
    /**
2010
     * @param mixed $SecureBits
2011
     * @return Mount
2012
     */
2013
    public function setSecureBits($SecureBits)
2014
    {
2015
        $this->SecureBits = $SecureBits;
2016
        return $this;
2017
    }
2018
2019
    /**
2020
     * @return mixed
2021
     */
2022
    public function getSendSIGHUP()
2023
    {
2024
        return $this->SendSIGHUP;
2025
    }
2026
2027
    /**
2028
     * @param mixed $SendSIGHUP
2029
     * @return Mount
2030
     */
2031
    public function setSendSIGHUP($SendSIGHUP)
2032
    {
2033
        $this->SendSIGHUP = $SendSIGHUP;
2034
        return $this;
2035
    }
2036
2037
    /**
2038
     * @return mixed
2039
     */
2040
    public function getSendSIGKILL()
2041
    {
2042
        return $this->SendSIGKILL;
2043
    }
2044
2045
    /**
2046
     * @param mixed $SendSIGKILL
2047
     * @return Mount
2048
     */
2049
    public function setSendSIGKILL($SendSIGKILL)
2050
    {
2051
        $this->SendSIGKILL = $SendSIGKILL;
2052
        return $this;
2053
    }
2054
2055
    /**
2056
     * @return mixed
2057
     */
2058
    public function getSlice()
2059
    {
2060
        return $this->Slice;
2061
    }
2062
2063
    /**
2064
     * @param mixed $Slice
2065
     * @return Mount
2066
     */
2067
    public function setSlice($Slice)
2068
    {
2069
        $this->Slice = $Slice;
2070
        return $this;
2071
    }
2072
2073
    /**
2074
     * @return mixed
2075
     */
2076
    public function getSloppyOptions()
2077
    {
2078
        return $this->SloppyOptions;
2079
    }
2080
2081
    /**
2082
     * @param mixed $SloppyOptions
2083
     * @return Mount
2084
     */
2085
    public function setSloppyOptions($SloppyOptions)
2086
    {
2087
        $this->SloppyOptions = $SloppyOptions;
2088
        return $this;
2089
    }
2090
2091
    /**
2092
     * @return mixed
2093
     */
2094
    public function getSourcePath()
2095
    {
2096
        return $this->SourcePath;
2097
    }
2098
2099
    /**
2100
     * @param mixed $SourcePath
2101
     * @return Mount
2102
     */
2103
    public function setSourcePath($SourcePath)
2104
    {
2105
        $this->SourcePath = $SourcePath;
2106
        return $this;
2107
    }
2108
2109
    /**
2110
     * @return mixed
2111
     */
2112
    public function getStandardError()
2113
    {
2114
        return $this->StandardError;
2115
    }
2116
2117
    /**
2118
     * @param mixed $StandardError
2119
     * @return Mount
2120
     */
2121
    public function setStandardError($StandardError)
2122
    {
2123
        $this->StandardError = $StandardError;
2124
        return $this;
2125
    }
2126
2127
    /**
2128
     * @return mixed
2129
     */
2130
    public function getStandardInput()
2131
    {
2132
        return $this->StandardInput;
2133
    }
2134
2135
    /**
2136
     * @param mixed $StandardInput
2137
     * @return Mount
2138
     */
2139
    public function setStandardInput($StandardInput)
2140
    {
2141
        $this->StandardInput = $StandardInput;
2142
        return $this;
2143
    }
2144
2145
    /**
2146
     * @return mixed
2147
     */
2148
    public function getStandardOutput()
2149
    {
2150
        return $this->StandardOutput;
2151
    }
2152
2153
    /**
2154
     * @param mixed $StandardOutput
2155
     * @return Mount
2156
     */
2157
    public function setStandardOutput($StandardOutput)
2158
    {
2159
        $this->StandardOutput = $StandardOutput;
2160
        return $this;
2161
    }
2162
2163
    /**
2164
     * @return mixed
2165
     */
2166
    public function getStartupBlockIOWeight()
2167
    {
2168
        return $this->StartupBlockIOWeight;
2169
    }
2170
2171
    /**
2172
     * @param mixed $StartupBlockIOWeight
2173
     * @return Mount
2174
     */
2175
    public function setStartupBlockIOWeight($StartupBlockIOWeight)
2176
    {
2177
        $this->StartupBlockIOWeight = $StartupBlockIOWeight;
2178
        return $this;
2179
    }
2180
2181
    /**
2182
     * @return mixed
2183
     */
2184
    public function getStartupCPUShares()
2185
    {
2186
        return $this->StartupCPUShares;
2187
    }
2188
2189
    /**
2190
     * @param mixed $StartupCPUShares
2191
     * @return Mount
2192
     */
2193
    public function setStartupCPUShares($StartupCPUShares)
2194
    {
2195
        $this->StartupCPUShares = $StartupCPUShares;
2196
        return $this;
2197
    }
2198
2199
    /**
2200
     * @return mixed
2201
     */
2202
    public function getStartupCPUWeight()
2203
    {
2204
        return $this->StartupCPUWeight;
2205
    }
2206
2207
    /**
2208
     * @param mixed $StartupCPUWeight
2209
     * @return Mount
2210
     */
2211
    public function setStartupCPUWeight($StartupCPUWeight)
2212
    {
2213
        $this->StartupCPUWeight = $StartupCPUWeight;
2214
        return $this;
2215
    }
2216
2217
    /**
2218
     * @return mixed
2219
     */
2220
    public function getStartupIOWeight()
2221
    {
2222
        return $this->StartupIOWeight;
2223
    }
2224
2225
    /**
2226
     * @param mixed $StartupIOWeight
2227
     * @return Mount
2228
     */
2229
    public function setStartupIOWeight($StartupIOWeight)
2230
    {
2231
        $this->StartupIOWeight = $StartupIOWeight;
2232
        return $this;
2233
    }
2234
2235
    /**
2236
     * @return mixed
2237
     */
2238
    public function getSyslogFacility()
2239
    {
2240
        return $this->SyslogFacility;
2241
    }
2242
2243
    /**
2244
     * @param mixed $SyslogFacility
2245
     * @return Mount
2246
     */
2247
    public function setSyslogFacility($SyslogFacility)
2248
    {
2249
        $this->SyslogFacility = $SyslogFacility;
2250
        return $this;
2251
    }
2252
2253
    /**
2254
     * @return mixed
2255
     */
2256
    public function getSyslogLevel()
2257
    {
2258
        return $this->SyslogLevel;
2259
    }
2260
2261
    /**
2262
     * @param mixed $SyslogLevel
2263
     * @return Mount
2264
     */
2265
    public function setSyslogLevel($SyslogLevel)
2266
    {
2267
        $this->SyslogLevel = $SyslogLevel;
2268
        return $this;
2269
    }
2270
2271
    /**
2272
     * @return mixed
2273
     */
2274
    public function getSyslogLevelPrefix()
2275
    {
2276
        return $this->SyslogLevelPrefix;
2277
    }
2278
2279
    /**
2280
     * @param mixed $SyslogLevelPrefix
2281
     * @return Mount
2282
     */
2283
    public function setSyslogLevelPrefix($SyslogLevelPrefix)
2284
    {
2285
        $this->SyslogLevelPrefix = $SyslogLevelPrefix;
2286
        return $this;
2287
    }
2288
2289
    /**
2290
     * @return mixed
2291
     */
2292
    public function getSyslogPriority()
2293
    {
2294
        return $this->SyslogPriority;
2295
    }
2296
2297
    /**
2298
     * @param mixed $SyslogPriority
2299
     * @return Mount
2300
     */
2301
    public function setSyslogPriority($SyslogPriority)
2302
    {
2303
        $this->SyslogPriority = $SyslogPriority;
2304
        return $this;
2305
    }
2306
2307
    /**
2308
     * @return mixed
2309
     */
2310
    public function getSystemCallErrorNumber()
2311
    {
2312
        return $this->SystemCallErrorNumber;
2313
    }
2314
2315
    /**
2316
     * @param mixed $SystemCallErrorNumber
2317
     * @return Mount
2318
     */
2319
    public function setSystemCallErrorNumber($SystemCallErrorNumber)
2320
    {
2321
        $this->SystemCallErrorNumber = $SystemCallErrorNumber;
2322
        return $this;
2323
    }
2324
2325
    /**
2326
     * @return mixed
2327
     */
2328
    public function getTTYReset()
2329
    {
2330
        return $this->TTYReset;
2331
    }
2332
2333
    /**
2334
     * @param mixed $TTYReset
2335
     * @return Mount
2336
     */
2337
    public function setTTYReset($TTYReset)
2338
    {
2339
        $this->TTYReset = $TTYReset;
2340
        return $this;
2341
    }
2342
2343
    /**
2344
     * @return mixed
2345
     */
2346
    public function getTTYVHangup()
2347
    {
2348
        return $this->TTYVHangup;
2349
    }
2350
2351
    /**
2352
     * @param mixed $TTYVHangup
2353
     * @return Mount
2354
     */
2355
    public function setTTYVHangup($TTYVHangup)
2356
    {
2357
        $this->TTYVHangup = $TTYVHangup;
2358
        return $this;
2359
    }
2360
2361
    /**
2362
     * @return mixed
2363
     */
2364
    public function getTTYVTDisallocate()
2365
    {
2366
        return $this->TTYVTDisallocate;
2367
    }
2368
2369
    /**
2370
     * @param mixed $TTYVTDisallocate
2371
     * @return Mount
2372
     */
2373
    public function setTTYVTDisallocate($TTYVTDisallocate)
2374
    {
2375
        $this->TTYVTDisallocate = $TTYVTDisallocate;
2376
        return $this;
2377
    }
2378
2379
    /**
2380
     * @return mixed
2381
     */
2382
    public function getTasksAccounting()
2383
    {
2384
        return $this->TasksAccounting;
2385
    }
2386
2387
    /**
2388
     * @param mixed $TasksAccounting
2389
     * @return Mount
2390
     */
2391
    public function setTasksAccounting($TasksAccounting)
2392
    {
2393
        $this->TasksAccounting = $TasksAccounting;
2394
        return $this;
2395
    }
2396
2397
    /**
2398
     * @return mixed
2399
     */
2400
    public function getTasksCurrent()
2401
    {
2402
        return $this->TasksCurrent;
2403
    }
2404
2405
    /**
2406
     * @param mixed $TasksCurrent
2407
     * @return Mount
2408
     */
2409
    public function setTasksCurrent($TasksCurrent)
2410
    {
2411
        $this->TasksCurrent = $TasksCurrent;
2412
        return $this;
2413
    }
2414
2415
    /**
2416
     * @return mixed
2417
     */
2418
    public function getTasksMax()
2419
    {
2420
        return $this->TasksMax;
2421
    }
2422
2423
    /**
2424
     * @param mixed $TasksMax
2425
     * @return Mount
2426
     */
2427
    public function setTasksMax($TasksMax)
2428
    {
2429
        $this->TasksMax = $TasksMax;
2430
        return $this;
2431
    }
2432
2433
    /**
2434
     * @return mixed
2435
     */
2436
    public function getTimeoutUSec()
2437
    {
2438
        return $this->TimeoutUSec;
2439
    }
2440
2441
    /**
2442
     * @param mixed $TimeoutUSec
2443
     * @return Mount
2444
     */
2445
    public function setTimeoutUSec($TimeoutUSec)
2446
    {
2447
        $this->TimeoutUSec = $TimeoutUSec;
2448
        return $this;
2449
    }
2450
2451
    /**
2452
     * @return mixed
2453
     */
2454
    public function getTimerSlackNSec()
2455
    {
2456
        return $this->TimerSlackNSec;
2457
    }
2458
2459
    /**
2460
     * @param mixed $TimerSlackNSec
2461
     * @return Mount
2462
     */
2463
    public function setTimerSlackNSec($TimerSlackNSec)
2464
    {
2465
        $this->TimerSlackNSec = $TimerSlackNSec;
2466
        return $this;
2467
    }
2468
2469
    /**
2470
     * @return mixed
2471
     */
2472
    public function getTriggeredBy()
2473
    {
2474
        return $this->TriggeredBy;
2475
    }
2476
2477
    /**
2478
     * @param mixed $TriggeredBy
2479
     * @return Mount
2480
     */
2481
    public function setTriggeredBy($TriggeredBy)
2482
    {
2483
        $this->TriggeredBy = $TriggeredBy;
2484
        return $this;
2485
    }
2486
2487
    /**
2488
     * @return mixed
2489
     */
2490
    public function getType()
2491
    {
2492
        return $this->Type;
2493
    }
2494
2495
    /**
2496
     * @param mixed $Type
2497
     * @return Mount
2498
     */
2499
    public function setType($Type)
2500
    {
2501
        $this->Type = $Type;
2502
        return $this;
2503
    }
2504
2505
    /**
2506
     * @return mixed
2507
     */
2508
    public function getUID()
2509
    {
2510
        return $this->UID;
2511
    }
2512
2513
    /**
2514
     * @param mixed $UID
2515
     * @return Mount
2516
     */
2517
    public function setUID($UID)
2518
    {
2519
        $this->UID = $UID;
2520
        return $this;
2521
    }
2522
2523
    /**
2524
     * @return mixed
2525
     */
2526
    public function getUMask()
2527
    {
2528
        return $this->UMask;
2529
    }
2530
2531
    /**
2532
     * @param mixed $UMask
2533
     * @return Mount
2534
     */
2535
    public function setUMask($UMask)
2536
    {
2537
        $this->UMask = $UMask;
2538
        return $this;
2539
    }
2540
2541
    /**
2542
     * @return mixed
2543
     */
2544
    public function getUnitFilePreset()
2545
    {
2546
        return $this->UnitFilePreset;
2547
    }
2548
2549
    /**
2550
     * @param mixed $UnitFilePreset
2551
     * @return Mount
2552
     */
2553
    public function setUnitFilePreset($UnitFilePreset)
2554
    {
2555
        $this->UnitFilePreset = $UnitFilePreset;
2556
        return $this;
2557
    }
2558
2559
    /**
2560
     * @return mixed
2561
     */
2562
    public function getUnitFileState()
2563
    {
2564
        return $this->UnitFileState;
2565
    }
2566
2567
    /**
2568
     * @param mixed $UnitFileState
2569
     * @return Mount
2570
     */
2571
    public function setUnitFileState($UnitFileState)
2572
    {
2573
        $this->UnitFileState = $UnitFileState;
2574
        return $this;
2575
    }
2576
2577
    /**
2578
     * @return mixed
2579
     */
2580
    public function getUtmpMode()
2581
    {
2582
        return $this->UtmpMode;
2583
    }
2584
2585
    /**
2586
     * @param mixed $UtmpMode
2587
     * @return Mount
2588
     */
2589
    public function setUtmpMode($UtmpMode)
2590
    {
2591
        $this->UtmpMode = $UtmpMode;
2592
        return $this;
2593
    }
2594
2595
    /**
2596
     * @return array
2597
     */
2598
    public function getWantedBy(): array
2599
    {
2600
        return $this->WantedBy;
2601
    }
2602
2603
    /**
2604
     * @param array $WantedBy
2605
     * @return Mount
2606
     */
2607
    public function setWantedBy(array $WantedBy): Mount
2608
    {
2609
        $this->WantedBy = $WantedBy;
2610
        return $this;
2611
    }
2612
2613
    /**
2614
     * @return array
2615
     */
2616
    public function getWants(): array
2617
    {
2618
        return $this->Wants;
2619
    }
2620
2621
    /**
2622
     * @param array $Wants
2623
     * @return Mount
2624
     */
2625
    public function setWants(array $Wants): Mount
2626
    {
2627
        $this->Wants = $Wants;
2628
        return $this;
2629
    }
2630
2631
    /**
2632
     * @return mixed
2633
     */
2634
    public function getWhat()
2635
    {
2636
        return $this->What;
2637
    }
2638
2639
    /**
2640
     * @param mixed $What
2641
     * @return Mount
2642
     */
2643
    public function setWhat($What)
2644
    {
2645
        $this->What = $What;
2646
        return $this;
2647
    }
2648
2649
    /**
2650
     * @return mixed
2651
     */
2652
    public function getWhere()
2653
    {
2654
        return $this->Where;
2655
    }
2656
2657
    /**
2658
     * @param mixed $Where
2659
     * @return Mount
2660
     */
2661
    public function setWhere($Where)
2662
    {
2663
        $this->Where = $Where;
2664
        return $this;
2665
    }
2666
}
2667