Completed
Push — master ( c21b15...51d90f )
by Alexander
01:37
created

Mount::setConditionTimestampMonotonic()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

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