forked from docker-php/docker-php-api
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathContainersIdUpdatePostBody.php
More file actions
1013 lines (913 loc) · 25.1 KB
/
Copy pathContainersIdUpdatePostBody.php
File metadata and controls
1013 lines (913 loc) · 25.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
declare(strict_types=1);
namespace Docker\API\Model;
class ContainersIdUpdatePostBody extends \ArrayObject
{
/**
* @var array
*/
protected $initialized = [];
public function isInitialized($property): bool
{
return \array_key_exists($property, $this->initialized);
}
/**
* An integer value representing this container's relative CPU weight
* versus other containers.
*
* @var int|null
*/
protected $cpuShares;
/**
* Memory limit in bytes.
*
* @var int|null
*/
protected $memory = 0;
/**
* Path to `cgroups` under which the container's `cgroup` is created. If
* the path is not absolute, the path is considered to be relative to the
* `cgroups` path of the init process. Cgroups are created if they do not
* already exist.
*
* @var string|null
*/
protected $cgroupParent;
/**
* Block IO weight (relative weight).
*
* @var int|null
*/
protected $blkioWeight;
/**
* Block IO weight (relative device weight) in the form:
*
* ```
* [{"Path": "device_path", "Weight": weight}]
* ```
*
* @var list<ResourcesBlkioWeightDeviceItem>|null
*/
protected $blkioWeightDevice;
/**
* Limit read rate (bytes per second) from a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @var list<ThrottleDevice>|null
*/
protected $blkioDeviceReadBps;
/**
* Limit write rate (bytes per second) to a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @var list<ThrottleDevice>|null
*/
protected $blkioDeviceWriteBps;
/**
* Limit read rate (IO per second) from a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @var list<ThrottleDevice>|null
*/
protected $blkioDeviceReadIOps;
/**
* Limit write rate (IO per second) to a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @var list<ThrottleDevice>|null
*/
protected $blkioDeviceWriteIOps;
/**
* The length of a CPU period in microseconds.
*
* @var int|null
*/
protected $cpuPeriod;
/**
* Microseconds of CPU time that the container can get in a CPU period.
*
* @var int|null
*/
protected $cpuQuota;
/**
* The length of a CPU real-time period in microseconds. Set to 0 to
* allocate no time allocated to real-time tasks.
*
* @var int|null
*/
protected $cpuRealtimePeriod;
/**
* The length of a CPU real-time runtime in microseconds. Set to 0 to
* allocate no time allocated to real-time tasks.
*
* @var int|null
*/
protected $cpuRealtimeRuntime;
/**
* CPUs in which to allow execution (e.g., `0-3`, `0,1`).
*
* @var string|null
*/
protected $cpusetCpus;
/**
* Memory nodes (MEMs) in which to allow execution (0-3, 0,1). Only
* effective on NUMA systems.
*
* @var string|null
*/
protected $cpusetMems;
/**
* A list of devices to add to the container.
*
* @var list<DeviceMapping>|null
*/
protected $devices;
/**
* a list of cgroup rules to apply to the container.
*
* @var list<string>|null
*/
protected $deviceCgroupRules;
/**
* A list of requests for devices to be sent to device drivers.
*
* @var list<DeviceRequest>|null
*/
protected $deviceRequests;
/**
* Hard limit for kernel TCP buffer memory (in bytes). Depending on the
* OCI runtime in use, this option may be ignored. It is no longer supported
* by the default (runc) runtime.
*
* This field is omitted when empty.
*
* @var int|null
*/
protected $kernelMemoryTCP;
/**
* Memory soft limit in bytes.
*
* @var int|null
*/
protected $memoryReservation;
/**
* Total memory limit (memory + swap). Set as `-1` to enable unlimited
* swap.
*
* @var int|null
*/
protected $memorySwap;
/**
* Tune a container's memory swappiness behavior. Accepts an integer
* between 0 and 100.
*
* @var int|null
*/
protected $memorySwappiness;
/**
* CPU quota in units of 10<sup>-9</sup> CPUs.
*
* @var int|null
*/
protected $nanoCpus;
/**
* Disable OOM Killer for the container.
*
* @var bool|null
*/
protected $oomKillDisable;
/**
* Run an init inside the container that forwards signals and reaps
* processes. This field is omitted if empty, and the default (as
* configured on the daemon) is used.
*
* @var bool|null
*/
protected $init;
/**
* Tune a container's PIDs limit. Set `0` or `-1` for unlimited, or `null`
* to not change.
*
* @var int|null
*/
protected $pidsLimit;
/**
* A list of resource limits to set in the container. For example:
*
* ```
* {"Name": "nofile", "Soft": 1024, "Hard": 2048}
* ```
*
* @var list<ResourcesUlimitsItem>|null
*/
protected $ulimits;
/**
* The number of usable CPUs (Windows only).
*
* On Windows Server containers, the processor resource controls are
* mutually exclusive. The order of precedence is `CPUCount` first, then
* `CPUShares`, and `CPUPercent` last.
*
* @var int|null
*/
protected $cpuCount;
/**
* The usable percentage of the available CPUs (Windows only).
*
* On Windows Server containers, the processor resource controls are
* mutually exclusive. The order of precedence is `CPUCount` first, then
* `CPUShares`, and `CPUPercent` last.
*
* @var int|null
*/
protected $cpuPercent;
/**
* Maximum IOps for the container system drive (Windows only).
*
* @var int|null
*/
protected $iOMaximumIOps;
/**
* Maximum IO in bytes per second for the container system drive
* (Windows only).
*
* @var int|null
*/
protected $iOMaximumBandwidth;
/**
* The behavior to apply when the container exits. The default is not to
* restart.
*
* An ever increasing delay (double the previous delay, starting at 100ms) is
* added before each restart to prevent flooding the server.
*
* @var RestartPolicy|null
*/
protected $restartPolicy;
/**
* An integer value representing this container's relative CPU weight
* versus other containers.
*/
public function getCpuShares(): ?int
{
return $this->cpuShares;
}
/**
* An integer value representing this container's relative CPU weight
* versus other containers.
*/
public function setCpuShares(?int $cpuShares): self
{
$this->initialized['cpuShares'] = true;
$this->cpuShares = $cpuShares;
return $this;
}
/**
* Memory limit in bytes.
*/
public function getMemory(): ?int
{
return $this->memory;
}
/**
* Memory limit in bytes.
*/
public function setMemory(?int $memory): self
{
$this->initialized['memory'] = true;
$this->memory = $memory;
return $this;
}
/**
* Path to `cgroups` under which the container's `cgroup` is created. If
* the path is not absolute, the path is considered to be relative to the
* `cgroups` path of the init process. Cgroups are created if they do not
* already exist.
*/
public function getCgroupParent(): ?string
{
return $this->cgroupParent;
}
/**
* Path to `cgroups` under which the container's `cgroup` is created. If
* the path is not absolute, the path is considered to be relative to the
* `cgroups` path of the init process. Cgroups are created if they do not
* already exist.
*/
public function setCgroupParent(?string $cgroupParent): self
{
$this->initialized['cgroupParent'] = true;
$this->cgroupParent = $cgroupParent;
return $this;
}
/**
* Block IO weight (relative weight).
*/
public function getBlkioWeight(): ?int
{
return $this->blkioWeight;
}
/**
* Block IO weight (relative weight).
*/
public function setBlkioWeight(?int $blkioWeight): self
{
$this->initialized['blkioWeight'] = true;
$this->blkioWeight = $blkioWeight;
return $this;
}
/**
* Block IO weight (relative device weight) in the form:
*
* ```
* [{"Path": "device_path", "Weight": weight}]
* ```
*
* @return list<ResourcesBlkioWeightDeviceItem>|null
*/
public function getBlkioWeightDevice(): ?array
{
return $this->blkioWeightDevice;
}
/**
* Block IO weight (relative device weight) in the form:
*
* ```
* [{"Path": "device_path", "Weight": weight}]
* ```
*
* @param list<ResourcesBlkioWeightDeviceItem>|null $blkioWeightDevice
*/
public function setBlkioWeightDevice(?array $blkioWeightDevice): self
{
$this->initialized['blkioWeightDevice'] = true;
$this->blkioWeightDevice = $blkioWeightDevice;
return $this;
}
/**
* Limit read rate (bytes per second) from a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @return list<ThrottleDevice>|null
*/
public function getBlkioDeviceReadBps(): ?array
{
return $this->blkioDeviceReadBps;
}
/**
* Limit read rate (bytes per second) from a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @param list<ThrottleDevice>|null $blkioDeviceReadBps
*/
public function setBlkioDeviceReadBps(?array $blkioDeviceReadBps): self
{
$this->initialized['blkioDeviceReadBps'] = true;
$this->blkioDeviceReadBps = $blkioDeviceReadBps;
return $this;
}
/**
* Limit write rate (bytes per second) to a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @return list<ThrottleDevice>|null
*/
public function getBlkioDeviceWriteBps(): ?array
{
return $this->blkioDeviceWriteBps;
}
/**
* Limit write rate (bytes per second) to a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @param list<ThrottleDevice>|null $blkioDeviceWriteBps
*/
public function setBlkioDeviceWriteBps(?array $blkioDeviceWriteBps): self
{
$this->initialized['blkioDeviceWriteBps'] = true;
$this->blkioDeviceWriteBps = $blkioDeviceWriteBps;
return $this;
}
/**
* Limit read rate (IO per second) from a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @return list<ThrottleDevice>|null
*/
public function getBlkioDeviceReadIOps(): ?array
{
return $this->blkioDeviceReadIOps;
}
/**
* Limit read rate (IO per second) from a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @param list<ThrottleDevice>|null $blkioDeviceReadIOps
*/
public function setBlkioDeviceReadIOps(?array $blkioDeviceReadIOps): self
{
$this->initialized['blkioDeviceReadIOps'] = true;
$this->blkioDeviceReadIOps = $blkioDeviceReadIOps;
return $this;
}
/**
* Limit write rate (IO per second) to a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @return list<ThrottleDevice>|null
*/
public function getBlkioDeviceWriteIOps(): ?array
{
return $this->blkioDeviceWriteIOps;
}
/**
* Limit write rate (IO per second) to a device, in the form:
*
* ```
* [{"Path": "device_path", "Rate": rate}]
* ```
*
* @param list<ThrottleDevice>|null $blkioDeviceWriteIOps
*/
public function setBlkioDeviceWriteIOps(?array $blkioDeviceWriteIOps): self
{
$this->initialized['blkioDeviceWriteIOps'] = true;
$this->blkioDeviceWriteIOps = $blkioDeviceWriteIOps;
return $this;
}
/**
* The length of a CPU period in microseconds.
*/
public function getCpuPeriod(): ?int
{
return $this->cpuPeriod;
}
/**
* The length of a CPU period in microseconds.
*/
public function setCpuPeriod(?int $cpuPeriod): self
{
$this->initialized['cpuPeriod'] = true;
$this->cpuPeriod = $cpuPeriod;
return $this;
}
/**
* Microseconds of CPU time that the container can get in a CPU period.
*/
public function getCpuQuota(): ?int
{
return $this->cpuQuota;
}
/**
* Microseconds of CPU time that the container can get in a CPU period.
*/
public function setCpuQuota(?int $cpuQuota): self
{
$this->initialized['cpuQuota'] = true;
$this->cpuQuota = $cpuQuota;
return $this;
}
/**
* The length of a CPU real-time period in microseconds. Set to 0 to
* allocate no time allocated to real-time tasks.
*/
public function getCpuRealtimePeriod(): ?int
{
return $this->cpuRealtimePeriod;
}
/**
* The length of a CPU real-time period in microseconds. Set to 0 to
* allocate no time allocated to real-time tasks.
*/
public function setCpuRealtimePeriod(?int $cpuRealtimePeriod): self
{
$this->initialized['cpuRealtimePeriod'] = true;
$this->cpuRealtimePeriod = $cpuRealtimePeriod;
return $this;
}
/**
* The length of a CPU real-time runtime in microseconds. Set to 0 to
* allocate no time allocated to real-time tasks.
*/
public function getCpuRealtimeRuntime(): ?int
{
return $this->cpuRealtimeRuntime;
}
/**
* The length of a CPU real-time runtime in microseconds. Set to 0 to
* allocate no time allocated to real-time tasks.
*/
public function setCpuRealtimeRuntime(?int $cpuRealtimeRuntime): self
{
$this->initialized['cpuRealtimeRuntime'] = true;
$this->cpuRealtimeRuntime = $cpuRealtimeRuntime;
return $this;
}
/**
* CPUs in which to allow execution (e.g., `0-3`, `0,1`).
*/
public function getCpusetCpus(): ?string
{
return $this->cpusetCpus;
}
/**
* CPUs in which to allow execution (e.g., `0-3`, `0,1`).
*/
public function setCpusetCpus(?string $cpusetCpus): self
{
$this->initialized['cpusetCpus'] = true;
$this->cpusetCpus = $cpusetCpus;
return $this;
}
/**
* Memory nodes (MEMs) in which to allow execution (0-3, 0,1). Only
* effective on NUMA systems.
*/
public function getCpusetMems(): ?string
{
return $this->cpusetMems;
}
/**
* Memory nodes (MEMs) in which to allow execution (0-3, 0,1). Only
* effective on NUMA systems.
*/
public function setCpusetMems(?string $cpusetMems): self
{
$this->initialized['cpusetMems'] = true;
$this->cpusetMems = $cpusetMems;
return $this;
}
/**
* A list of devices to add to the container.
*
* @return list<DeviceMapping>|null
*/
public function getDevices(): ?array
{
return $this->devices;
}
/**
* A list of devices to add to the container.
*
* @param list<DeviceMapping>|null $devices
*/
public function setDevices(?array $devices): self
{
$this->initialized['devices'] = true;
$this->devices = $devices;
return $this;
}
/**
* a list of cgroup rules to apply to the container.
*
* @return list<string>|null
*/
public function getDeviceCgroupRules(): ?array
{
return $this->deviceCgroupRules;
}
/**
* a list of cgroup rules to apply to the container.
*
* @param list<string>|null $deviceCgroupRules
*/
public function setDeviceCgroupRules(?array $deviceCgroupRules): self
{
$this->initialized['deviceCgroupRules'] = true;
$this->deviceCgroupRules = $deviceCgroupRules;
return $this;
}
/**
* A list of requests for devices to be sent to device drivers.
*
* @return list<DeviceRequest>|null
*/
public function getDeviceRequests(): ?array
{
return $this->deviceRequests;
}
/**
* A list of requests for devices to be sent to device drivers.
*
* @param list<DeviceRequest>|null $deviceRequests
*/
public function setDeviceRequests(?array $deviceRequests): self
{
$this->initialized['deviceRequests'] = true;
$this->deviceRequests = $deviceRequests;
return $this;
}
/**
* Hard limit for kernel TCP buffer memory (in bytes). Depending on the
* OCI runtime in use, this option may be ignored. It is no longer supported
* by the default (runc) runtime.
*
* This field is omitted when empty.
*/
public function getKernelMemoryTCP(): ?int
{
return $this->kernelMemoryTCP;
}
/**
* Hard limit for kernel TCP buffer memory (in bytes). Depending on the
* OCI runtime in use, this option may be ignored. It is no longer supported
* by the default (runc) runtime.
*
* This field is omitted when empty.
*/
public function setKernelMemoryTCP(?int $kernelMemoryTCP): self
{
$this->initialized['kernelMemoryTCP'] = true;
$this->kernelMemoryTCP = $kernelMemoryTCP;
return $this;
}
/**
* Memory soft limit in bytes.
*/
public function getMemoryReservation(): ?int
{
return $this->memoryReservation;
}
/**
* Memory soft limit in bytes.
*/
public function setMemoryReservation(?int $memoryReservation): self
{
$this->initialized['memoryReservation'] = true;
$this->memoryReservation = $memoryReservation;
return $this;
}
/**
* Total memory limit (memory + swap). Set as `-1` to enable unlimited
* swap.
*/
public function getMemorySwap(): ?int
{
return $this->memorySwap;
}
/**
* Total memory limit (memory + swap). Set as `-1` to enable unlimited
* swap.
*/
public function setMemorySwap(?int $memorySwap): self
{
$this->initialized['memorySwap'] = true;
$this->memorySwap = $memorySwap;
return $this;
}
/**
* Tune a container's memory swappiness behavior. Accepts an integer
* between 0 and 100.
*/
public function getMemorySwappiness(): ?int
{
return $this->memorySwappiness;
}
/**
* Tune a container's memory swappiness behavior. Accepts an integer
* between 0 and 100.
*/
public function setMemorySwappiness(?int $memorySwappiness): self
{
$this->initialized['memorySwappiness'] = true;
$this->memorySwappiness = $memorySwappiness;
return $this;
}
/**
* CPU quota in units of 10<sup>-9</sup> CPUs.
*/
public function getNanoCpus(): ?int
{
return $this->nanoCpus;
}
/**
* CPU quota in units of 10<sup>-9</sup> CPUs.
*/
public function setNanoCpus(?int $nanoCpus): self
{
$this->initialized['nanoCpus'] = true;
$this->nanoCpus = $nanoCpus;
return $this;
}
/**
* Disable OOM Killer for the container.
*/
public function getOomKillDisable(): ?bool
{
return $this->oomKillDisable;
}
/**
* Disable OOM Killer for the container.
*/
public function setOomKillDisable(?bool $oomKillDisable): self
{
$this->initialized['oomKillDisable'] = true;
$this->oomKillDisable = $oomKillDisable;
return $this;
}
/**
* Run an init inside the container that forwards signals and reaps
* processes. This field is omitted if empty, and the default (as
* configured on the daemon) is used.
*/
public function getInit(): ?bool
{
return $this->init;
}
/**
* Run an init inside the container that forwards signals and reaps
* processes. This field is omitted if empty, and the default (as
* configured on the daemon) is used.
*/
public function setInit(?bool $init): self
{
$this->initialized['init'] = true;
$this->init = $init;
return $this;
}
/**
* Tune a container's PIDs limit. Set `0` or `-1` for unlimited, or `null`
* to not change.
*/
public function getPidsLimit(): ?int
{
return $this->pidsLimit;
}
/**
* Tune a container's PIDs limit. Set `0` or `-1` for unlimited, or `null`
* to not change.
*/
public function setPidsLimit(?int $pidsLimit): self
{
$this->initialized['pidsLimit'] = true;
$this->pidsLimit = $pidsLimit;
return $this;
}
/**
* A list of resource limits to set in the container. For example:
*
* ```
* {"Name": "nofile", "Soft": 1024, "Hard": 2048}
* ```
*
* @return list<ResourcesUlimitsItem>|null
*/
public function getUlimits(): ?array
{
return $this->ulimits;
}
/**
* A list of resource limits to set in the container. For example:
*
* ```
* {"Name": "nofile", "Soft": 1024, "Hard": 2048}
* ```
*
* @param list<ResourcesUlimitsItem>|null $ulimits
*/
public function setUlimits(?array $ulimits): self
{
$this->initialized['ulimits'] = true;
$this->ulimits = $ulimits;
return $this;
}
/**
* The number of usable CPUs (Windows only).
*
* On Windows Server containers, the processor resource controls are
* mutually exclusive. The order of precedence is `CPUCount` first, then
* `CPUShares`, and `CPUPercent` last.
*/
public function getCpuCount(): ?int
{
return $this->cpuCount;
}
/**
* The number of usable CPUs (Windows only).
*
* On Windows Server containers, the processor resource controls are
* mutually exclusive. The order of precedence is `CPUCount` first, then
* `CPUShares`, and `CPUPercent` last.
*/
public function setCpuCount(?int $cpuCount): self
{
$this->initialized['cpuCount'] = true;
$this->cpuCount = $cpuCount;
return $this;
}
/**
* The usable percentage of the available CPUs (Windows only).
*
* On Windows Server containers, the processor resource controls are
* mutually exclusive. The order of precedence is `CPUCount` first, then
* `CPUShares`, and `CPUPercent` last.
*/
public function getCpuPercent(): ?int
{
return $this->cpuPercent;
}
/**
* The usable percentage of the available CPUs (Windows only).
*
* On Windows Server containers, the processor resource controls are
* mutually exclusive. The order of precedence is `CPUCount` first, then
* `CPUShares`, and `CPUPercent` last.
*/
public function setCpuPercent(?int $cpuPercent): self
{
$this->initialized['cpuPercent'] = true;
$this->cpuPercent = $cpuPercent;
return $this;
}
/**
* Maximum IOps for the container system drive (Windows only).
*/
public function getIOMaximumIOps(): ?int
{
return $this->iOMaximumIOps;
}
/**
* Maximum IOps for the container system drive (Windows only).
*/
public function setIOMaximumIOps(?int $iOMaximumIOps): self
{
$this->initialized['iOMaximumIOps'] = true;
$this->iOMaximumIOps = $iOMaximumIOps;
return $this;
}
/**
* Maximum IO in bytes per second for the container system drive
* (Windows only).
*/
public function getIOMaximumBandwidth(): ?int
{
return $this->iOMaximumBandwidth;
}
/**
* Maximum IO in bytes per second for the container system drive
* (Windows only).
*/
public function setIOMaximumBandwidth(?int $iOMaximumBandwidth): self
{
$this->initialized['iOMaximumBandwidth'] = true;
$this->iOMaximumBandwidth = $iOMaximumBandwidth;
return $this;
}
/**
* The behavior to apply when the container exits. The default is not to
* restart.
*
* An ever increasing delay (double the previous delay, starting at 100ms) is
* added before each restart to prevent flooding the server.
*/
public function getRestartPolicy(): ?RestartPolicy
{
return $this->restartPolicy;
}
/**
* The behavior to apply when the container exits. The default is not to