Skip to content

Commit 88c6218

Browse files
author
github-actions
committed
Generated v6.11
1 parent 0b97614 commit 88c6218

11 files changed

+35
-30
lines changed

Changes

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Revision history for https://metacpan.org/dist/WebService-Fastly
22

3+
6.11 2024-10-23
4+
5+
[Documentation]
6+
- doc(backend): Correct spelling in `connect_timeout` and `first_byte_timeout` field descriptions.
7+
38
6.10 2024-09-13
49

510
[Bug fixes]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WebService::Fastly - an interface to most facets of the Fastly API (https://www.
44

55
# VERSION
66

7-
6.10
7+
6.11
88

99

1010
# SYNOPSIS

docs/Backend.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Name | Type | Description | Notes
1313
**between_bytes_timeout** | **int** | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional]
1414
**client_cert** | **string** | Unused. | [optional]
1515
**comment** | **string** | A freeform descriptive note. | [optional]
16-
**connect_timeout** | **int** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
17-
**first_byte_timeout** | **int** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
16+
**connect_timeout** | **int** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
17+
**first_byte_timeout** | **int** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
1818
**healthcheck** | **string** | The name of the healthcheck to use with this backend. | [optional]
1919
**hostname** | **string** | The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional]
2020
**ipv4** | **string** | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional]

docs/BackendApi.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ my $auto_loadbalance = null; # boolean | Whether or not this backend should be a
4343
my $between_bytes_timeout = 56; # int | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
4444
my $client_cert = "client_cert_example"; # string | Unused.
4545
my $comment = "comment_example"; # string | A freeform descriptive note.
46-
my $connect_timeout = 56; # int | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
47-
my $first_byte_timeout = 56; # int | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
46+
my $connect_timeout = 56; # int | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
47+
my $first_byte_timeout = 56; # int | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
4848
my $healthcheck = "healthcheck_example"; # string | The name of the healthcheck to use with this backend.
4949
my $hostname = "hostname_example"; # string | The hostname of the backend. May be used as an alternative to `address` to set the backend location.
5050
my $ipv4 = "ipv4_example"; # string | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
@@ -94,8 +94,8 @@ Name | Type | Description | Notes
9494
**between_bytes_timeout** | **int**| Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional]
9595
**client_cert** | **string**| Unused. | [optional]
9696
**comment** | **string**| A freeform descriptive note. | [optional]
97-
**connect_timeout** | **int**| Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
98-
**first_byte_timeout** | **int**| Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
97+
**connect_timeout** | **int**| Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
98+
**first_byte_timeout** | **int**| Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
9999
**healthcheck** | **string**| The name of the healthcheck to use with this backend. | [optional]
100100
**hostname** | **string**| The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional]
101101
**ipv4** | **string**| IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional]
@@ -330,8 +330,8 @@ my $auto_loadbalance = null; # boolean | Whether or not this backend should be a
330330
my $between_bytes_timeout = 56; # int | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
331331
my $client_cert = "client_cert_example"; # string | Unused.
332332
my $comment = "comment_example"; # string | A freeform descriptive note.
333-
my $connect_timeout = 56; # int | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
334-
my $first_byte_timeout = 56; # int | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
333+
my $connect_timeout = 56; # int | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
334+
my $first_byte_timeout = 56; # int | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
335335
my $healthcheck = "healthcheck_example"; # string | The name of the healthcheck to use with this backend.
336336
my $hostname = "hostname_example"; # string | The hostname of the backend. May be used as an alternative to `address` to set the backend location.
337337
my $ipv4 = "ipv4_example"; # string | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
@@ -382,8 +382,8 @@ Name | Type | Description | Notes
382382
**between_bytes_timeout** | **int**| Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional]
383383
**client_cert** | **string**| Unused. | [optional]
384384
**comment** | **string**| A freeform descriptive note. | [optional]
385-
**connect_timeout** | **int**| Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
386-
**first_byte_timeout** | **int**| Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
385+
**connect_timeout** | **int**| Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
386+
**first_byte_timeout** | **int**| Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
387387
**healthcheck** | **string**| The name of the healthcheck to use with this backend. | [optional]
388388
**hostname** | **string**| The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional]
389389
**ipv4** | **string**| IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional]

docs/BackendResponse.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Name | Type | Description | Notes
1313
**between_bytes_timeout** | **int** | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional]
1414
**client_cert** | **string** | Unused. | [optional]
1515
**comment** | **string** | A freeform descriptive note. | [optional]
16-
**connect_timeout** | **int** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
17-
**first_byte_timeout** | **int** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
16+
**connect_timeout** | **int** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional]
17+
**first_byte_timeout** | **int** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional]
1818
**healthcheck** | **string** | The name of the healthcheck to use with this backend. | [optional]
1919
**hostname** | **string** | The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional]
2020
**ipv4** | **string** | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional]

lib/WebService/Fastly.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package WebService::Fastly;
22

33
use strict;
44
use 5.008_005;
5-
our $VERSION = '6.10';
5+
our $VERSION = '6.11';
66

77
1;
88
__END__

0 commit comments

Comments
 (0)