Skip to content
This repository was archived by the owner on Nov 2, 2022. It is now read-only.

Commit 252fdf2

Browse files
committed
Merge branch 'analysis-q1ZGO3'
2 parents 1ed918f + daef8a8 commit 252fdf2

2 files changed

Lines changed: 52 additions & 52 deletions

File tree

src/CloudFlare/Organizations/LoadBalancers/Monitors.php

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ public function monitors($organization_identifier)
3333
* Create a configured monitor
3434
*
3535
* @param string $organization_identifier
36-
* @param string $expected_body A case-insensitive substring to match in the body of the probe
37-
* response to declare an origin as up
38-
* @param string $expected_codes The expected HTTP response code or code range for the probe
39-
* @param string|null $method The HTTP method to use for the health check.
40-
* @param int|null $timeout The timeout (in seconds) before marking the health check as failed
41-
* @param string|null $path The endpoint path to health check against.
42-
* @param int|null $interval The interval between each health check. Shorter intervals may improve failover
43-
* time, but will increase load on the origins as we check from multiple locations.
44-
* @param int|null $retries The number of retries to attempt in case of a timeout before marking the origin
45-
* as unhealthy. Retries are attempted immediately.
46-
* @param array|null $header The HTTP request headers to send in the health check. It is recommended you set
47-
* a Host header by default. The User-Agent header cannot be overridden.
48-
* @param int|null $type The protocol to use for the healthcheck. Currently supported protocols are
49-
* 'HTTP' and 'HTTPS'.
50-
* @param string|null $description Object description
36+
* @param string $expected_body A case-insensitive substring to match in the body of the probe
37+
* response to declare an origin as up
38+
* @param string $expected_codes The expected HTTP response code or code range for the probe
39+
* @param string|null $method The HTTP method to use for the health check.
40+
* @param int|null $timeout The timeout (in seconds) before marking the health check as failed
41+
* @param string|null $path The endpoint path to health check against.
42+
* @param int|null $interval The interval between each health check. Shorter intervals may improve failover
43+
* time, but will increase load on the origins as we check from multiple locations.
44+
* @param int|null $retries The number of retries to attempt in case of a timeout before marking the origin
45+
* as unhealthy. Retries are attempted immediately.
46+
* @param array|null $header The HTTP request headers to send in the health check. It is recommended you set
47+
* a Host header by default. The User-Agent header cannot be overridden.
48+
* @param int|null $type The protocol to use for the healthcheck. Currently supported protocols are
49+
* 'HTTP' and 'HTTPS'.
50+
* @param string|null $description Object description
5151
*/
5252
public function create($organization_identifier, $expected_body, $expected_codes, $method = null, $timeout = null, $path = null, $interval = null, $retries = null, $header = null, $type = null, $description = null)
5353
{
@@ -85,21 +85,21 @@ public function details($organization_identifier, $identifier)
8585
*
8686
* @param string $organization_identifier
8787
* @param string $identifier
88-
* @param string $expected_body A case-insensitive substring to match in the body of the probe
89-
* response to declare an origin as up
90-
* @param string $expected_codes The expected HTTP response code or code range for the probe
91-
* @param string|null $method The HTTP method to use for the health check.
92-
* @param int|null $timeout The timeout (in seconds) before marking the health check as failed
93-
* @param string|null $path The endpoint path to health check against.
94-
* @param int|null $interval The interval between each health check. Shorter intervals may improve failover
95-
* time, but will increase load on the origins as we check from multiple locations.
96-
* @param int|null $retries The number of retries to attempt in case of a timeout before marking the origin
97-
* as unhealthy. Retries are attempted immediately.
98-
* @param array|null $header The HTTP request headers to send in the health check. It is recommended you set
99-
* a Host header by default. The User-Agent header cannot be overridden.
100-
* @param int|null $type The protocol to use for the healthcheck. Currently supported protocols are
101-
* 'HTTP' and 'HTTPS'.
102-
* @param string|null $description Object description
88+
* @param string $expected_body A case-insensitive substring to match in the body of the probe
89+
* response to declare an origin as up
90+
* @param string $expected_codes The expected HTTP response code or code range for the probe
91+
* @param string|null $method The HTTP method to use for the health check.
92+
* @param int|null $timeout The timeout (in seconds) before marking the health check as failed
93+
* @param string|null $path The endpoint path to health check against.
94+
* @param int|null $interval The interval between each health check. Shorter intervals may improve failover
95+
* time, but will increase load on the origins as we check from multiple locations.
96+
* @param int|null $retries The number of retries to attempt in case of a timeout before marking the origin
97+
* as unhealthy. Retries are attempted immediately.
98+
* @param array|null $header The HTTP request headers to send in the health check. It is recommended you set
99+
* a Host header by default. The User-Agent header cannot be overridden.
100+
* @param int|null $type The protocol to use for the healthcheck. Currently supported protocols are
101+
* 'HTTP' and 'HTTPS'.
102+
* @param string|null $description Object description
103103
*/
104104
public function update($organization_identifier, $identifier, $expected_body, $expected_codes, $method = null, $timeout = null, $path = null, $interval = null, $retries = null, $header = null, $type = null, $description = null)
105105
{

src/CloudFlare/Organizations/LoadBalancers/Pools.php

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ public function pools($organization_identifier)
3333
* Create a new pool
3434
*
3535
* @param string $organization_identifier
36-
* @param string $name Object name
37-
* @param array $origins A list of origins contained in the pool.
38-
* Traffic destined to the pool is balanced across all
39-
* available origins contained in the pool (as long as the pool
40-
* is considered available).
41-
* @param string|null $description Object description
42-
* @param bool|null $enabled Whether this pool is enabled or not.
43-
* @param string|null $monitor ID of the monitor object to use for monitoring the health
44-
* status of origins inside this pool.
45-
* @param string|null $notification_email ID of the notifier object to use for notifications relating
46-
* to the health status of origins inside this pool.
36+
* @param string $name Object name
37+
* @param array $origins A list of origins contained in the pool.
38+
* Traffic destined to the pool is balanced across all
39+
* available origins contained in the pool (as long as the pool
40+
* is considered available).
41+
* @param string|null $description Object description
42+
* @param bool|null $enabled Whether this pool is enabled or not.
43+
* @param string|null $monitor ID of the monitor object to use for monitoring the health
44+
* status of origins inside this pool.
45+
* @param string|null $notification_email ID of the notifier object to use for notifications relating
46+
* to the health status of origins inside this pool.
4747
*/
4848
public function create($organization_identifier, $name, $origins, $description = null, $enabled = null, $monitor = null, $notification_email = null)
4949
{
@@ -77,17 +77,17 @@ public function details($organization_identifier, $identifier)
7777
*
7878
* @param string $organization_identifier
7979
* @param string $identifier
80-
* @param string $name Object name
81-
* @param array $origins A list of origins contained in the pool.
82-
* Traffic destined to the pool is balanced across all
83-
* available origins contained in the pool (as long as the pool
84-
* is considered available).
85-
* @param string|null $description Object description
86-
* @param bool|null $enabled Whether this pool is enabled or not.
87-
* @param string|null $monitor ID of the monitor object to use for monitoring the health
88-
* status of origins inside this pool.
89-
* @param string|null $notification_email ID of the notifier object to use for notifications relating
90-
* to the health status of origins inside this pool.
80+
* @param string $name Object name
81+
* @param array $origins A list of origins contained in the pool.
82+
* Traffic destined to the pool is balanced across all
83+
* available origins contained in the pool (as long as the pool
84+
* is considered available).
85+
* @param string|null $description Object description
86+
* @param bool|null $enabled Whether this pool is enabled or not.
87+
* @param string|null $monitor ID of the monitor object to use for monitoring the health
88+
* status of origins inside this pool.
89+
* @param string|null $notification_email ID of the notifier object to use for notifications relating
90+
* to the health status of origins inside this pool.
9191
*/
9292
public function update($organization_identifier, $identifier, $name, $origins, $description = null, $enabled = null, $monitor = null, $notification_email = null)
9393
{

0 commit comments

Comments
 (0)