Skip to content

Commit

Permalink
Generated v5.00
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jul 31, 2023
1 parent f5065fe commit 42872a3
Show file tree
Hide file tree
Showing 261 changed files with 13,618 additions and 3,248 deletions.
11 changes: 11 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Revision history for https://metacpan.org/dist/WebService-Fastly

5.00 2023-07-31
* refactor: general restructure OpenAPI schemas.
* refactor(domain): remove explicit schema type for 'any'.
* fix: change response `version` type to string.
* fix(cache_settings): change response `stale_ttl` and `ttl` types to strings.
* fix(header): change response `ignore_if_set` and `priority` types to strings.
* fix(logging): change response `period` and `gzip_level` types to strings.
* fix(pool): change response `use_tls`, `max_conn_default`, `first_byte_timeout`, `quorum` and `tls_check_cert` types to strings.
* fix(request_settings): change response `bypass_busy_wait`, `force_miss`, `force_ssl`, `geo_headers`, `max_stale_age` and `timer_support` types to strings.
* fix(response_object): change response `status` type to string.

4.02 2023-07-13
* fix(logging_gcs): set expected default value for 'path'.
* fix(origin_inspector_historical): use correct type for 'values'.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WebService::Fastly - an interface to most facets of the Fastly API (https://deve

# VERSION

4.02
5.00


# SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions docs/CacheSetting.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Name | Type | Description | Notes
**action** | **string** | If set, will cause vcl_fetch to terminate after processing this rule with the return state specified. If not set, other configuration logic in vcl_fetch with a lower priority will run after this rule. | [optional]
**cache_condition** | **string** | Name of the cache condition controlling when this configuration applies. | [optional]
**name** | **string** | Name for the cache settings object. | [optional]
**stale_ttl** | **int** | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **int** | Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]
**stale_ttl** | **string** | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **string** | Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
6 changes: 3 additions & 3 deletions docs/CacheSettingResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ Name | Type | Description | Notes
**action** | **string** | If set, will cause vcl_fetch to terminate after processing this rule with the return state specified. If not set, other configuration logic in vcl_fetch with a lower priority will run after this rule. | [optional]
**cache_condition** | **string** | Name of the cache condition controlling when this configuration applies. | [optional]
**name** | **string** | Name for the cache settings object. | [optional]
**stale_ttl** | **int** | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **int** | Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]
**stale_ttl** | **string** | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **string** | Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]
**service_id** | **string** | | [optional] [readonly]
**version** | **int** | | [optional] [readonly]
**version** | **string** | | [optional] [readonly]
**created_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
**deleted_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
**updated_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
Expand Down
16 changes: 8 additions & 8 deletions docs/CacheSettingsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ my $version_id = 56; # int | Integer identifying a service version.
my $action = "action_example"; # string | If set, will cause vcl_fetch to terminate after processing this rule with the return state specified. If not set, other configuration logic in vcl_fetch with a lower priority will run after this rule.
my $cache_condition = "cache_condition_example"; # string | Name of the cache condition controlling when this configuration applies.
my $name = "name_example"; # string | Name for the cache settings object.
my $stale_ttl = 56; # int | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error').
my $ttl = 56; # int | Maximum time to consider the object fresh in the cache (the cache 'time to live').
my $stale_ttl = "stale_ttl_example"; # string | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error').
my $ttl = "ttl_example"; # string | Maximum time to consider the object fresh in the cache (the cache 'time to live').

eval {
my $result = $api_instance->create_cache_settings(service_id => $service_id, version_id => $version_id, action => $action, cache_condition => $cache_condition, name => $name, stale_ttl => $stale_ttl, ttl => $ttl);
Expand All @@ -61,8 +61,8 @@ Name | Type | Description | Notes
**action** | **string**| If set, will cause vcl_fetch to terminate after processing this rule with the return state specified. If not set, other configuration logic in vcl_fetch with a lower priority will run after this rule. | [optional]
**cache_condition** | **string**| Name of the cache condition controlling when this configuration applies. | [optional]
**name** | **string**| Name for the cache settings object. | [optional]
**stale_ttl** | **int**| Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **int**| Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]
**stale_ttl** | **string**| Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **string**| Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]

### Return type

Expand Down Expand Up @@ -267,8 +267,8 @@ my $cache_settings_name = "cache_settings_name_example"; # string | Name for the
my $action = "action_example"; # string | If set, will cause vcl_fetch to terminate after processing this rule with the return state specified. If not set, other configuration logic in vcl_fetch with a lower priority will run after this rule.
my $cache_condition = "cache_condition_example"; # string | Name of the cache condition controlling when this configuration applies.
my $name = "name_example"; # string | Name for the cache settings object.
my $stale_ttl = 56; # int | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error').
my $ttl = 56; # int | Maximum time to consider the object fresh in the cache (the cache 'time to live').
my $stale_ttl = "stale_ttl_example"; # string | Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error').
my $ttl = "ttl_example"; # string | Maximum time to consider the object fresh in the cache (the cache 'time to live').

eval {
my $result = $api_instance->update_cache_settings(service_id => $service_id, version_id => $version_id, cache_settings_name => $cache_settings_name, action => $action, cache_condition => $cache_condition, name => $name, stale_ttl => $stale_ttl, ttl => $ttl);
Expand All @@ -289,8 +289,8 @@ Name | Type | Description | Notes
**action** | **string**| If set, will cause vcl_fetch to terminate after processing this rule with the return state specified. If not set, other configuration logic in vcl_fetch with a lower priority will run after this rule. | [optional]
**cache_condition** | **string**| Name of the cache condition controlling when this configuration applies. | [optional]
**name** | **string**| Name for the cache settings object. | [optional]
**stale_ttl** | **int**| Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **int**| Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]
**stale_ttl** | **string**| Maximum time in seconds to continue to use a stale version of the object if future requests to your backend server fail (also known as 'stale if error'). | [optional]
**ttl** | **string**| Maximum time to consider the object fresh in the cache (the cache 'time to live'). | [optional]

### Return type

Expand Down
4 changes: 2 additions & 2 deletions docs/DomainApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Method | HTTP request | Description


# **check_domain**
> ARRAY[DomainCheckItem] check_domain(service_id => $service_id, version_id => $version_id, domain_name => $domain_name)
> ARRAY[AnyType] check_domain(service_id => $service_id, version_id => $version_id, domain_name => $domain_name)
Validate DNS configuration for a single domain on a service

Expand Down Expand Up @@ -60,7 +60,7 @@ Name | Type | Description | Notes

### Return type

[**ARRAY[DomainCheckItem]**](DomainCheckItem.md)
[**ARRAY[AnyType]**](AnyType.md)

### Authorization

Expand Down
2 changes: 1 addition & 1 deletion docs/GzipResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Name | Type | Description | Notes
**extensions** | **string** | Space-separated list of file extensions to compress. If you omit this field a default list will be used. | [optional]
**name** | **string** | Name of the gzip configuration. | [optional]
**service_id** | **string** | | [optional] [readonly]
**version** | **int** | | [optional] [readonly]
**version** | **string** | | [optional] [readonly]
**created_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
**deleted_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
**updated_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
Expand Down
2 changes: 0 additions & 2 deletions docs/Header.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ Name | Type | Description | Notes
**action** | **string** | Accepts a string value. | [optional]
**cache_condition** | **string** | Name of the cache condition controlling when this configuration applies. | [optional]
**dst** | **string** | Header to set. | [optional]
**ignore_if_set** | **int** | Don't add the header if it is added already. Only applies to 'set' action. | [optional]
**name** | **string** | A handle to refer to this Header object. | [optional]
**priority** | **int** | Priority determines execution order. Lower numbers execute first. | [optional] [default to 100]
**regex** | **string** | Regular expression to use. Only applies to `regex` and `regex_repeat` actions. | [optional]
**request_condition** | **string** | Condition which, if met, will select this configuration during a request. Optional. | [optional]
**response_condition** | **string** | Optional name of a response condition to apply. | [optional]
Expand Down
Loading

0 comments on commit 42872a3

Please sign in to comment.