@@ -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 {
0 commit comments