forked from beluga-php/docker-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHealth.php
More file actions
112 lines (99 loc) · 2.86 KB
/
Copy pathHealth.php
File metadata and controls
112 lines (99 loc) · 2.86 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
<?php
declare(strict_types=1);
namespace Docker\API\Model;
class Health extends \ArrayObject
{
/**
* @var array
*/
protected $initialized = [];
public function isInitialized($property): bool
{
return \array_key_exists($property, $this->initialized);
}
/**
* Status is one of `none`, `starting`, `healthy` or `unhealthy`.
*
* - "none" Indicates there is no healthcheck
* - "starting" Starting indicates that the container is not yet ready
* - "healthy" Healthy indicates that the container is running correctly
* - "unhealthy" Unhealthy indicates that the container has a problem
*
* @var string|null
*/
protected $status;
/**
* FailingStreak is the number of consecutive failures.
*
* @var int|null
*/
protected $failingStreak;
/**
* Log contains the last few results (oldest first).
*
* @var list<HealthcheckResult>|null
*/
protected $log;
/**
* Status is one of `none`, `starting`, `healthy` or `unhealthy`.
*
* - "none" Indicates there is no healthcheck
* - "starting" Starting indicates that the container is not yet ready
* - "healthy" Healthy indicates that the container is running correctly
* - "unhealthy" Unhealthy indicates that the container has a problem
*/
public function getStatus(): ?string
{
return $this->status;
}
/**
* Status is one of `none`, `starting`, `healthy` or `unhealthy`.
*
* - "none" Indicates there is no healthcheck
* - "starting" Starting indicates that the container is not yet ready
* - "healthy" Healthy indicates that the container is running correctly
* - "unhealthy" Unhealthy indicates that the container has a problem
*/
public function setStatus(?string $status): self
{
$this->initialized['status'] = true;
$this->status = $status;
return $this;
}
/**
* FailingStreak is the number of consecutive failures.
*/
public function getFailingStreak(): ?int
{
return $this->failingStreak;
}
/**
* FailingStreak is the number of consecutive failures.
*/
public function setFailingStreak(?int $failingStreak): self
{
$this->initialized['failingStreak'] = true;
$this->failingStreak = $failingStreak;
return $this;
}
/**
* Log contains the last few results (oldest first).
*
* @return list<HealthcheckResult>|null
*/
public function getLog(): ?array
{
return $this->log;
}
/**
* Log contains the last few results (oldest first).
*
* @param list<HealthcheckResult>|null $log
*/
public function setLog(?array $log): self
{
$this->initialized['log'] = true;
$this->log = $log;
return $this;
}
}