Skip to content

Commit 0c8064c

Browse files
author
github-actions
committed
Generated v3.02
1 parent b936525 commit 0c8064c

22 files changed

+118
-71
lines changed

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
Revision history for https://metacpan.org/dist/WebService-Fastly
22

3+
3.02 2023-05-22
4+
* fix(acl): change `version` from int to string.
5+
* fix(acl): add missing methods for `service_id` and `service_version` properties.
6+
* fix(backend): make `ssl_check_cert` nullable.
7+
* fix(purge): skip URL escape for `surrogate_key` param.
8+
* fix(snippets): change `priority` and `version` from int to string.
9+
* fix(snippets): add missing methods for `service_id` and `service_version` properties.
10+
311
3.01 2023-05-17
412
* feat(config_store): add Config Store endpoints.
513

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WebService::Fastly - an interface to most facets of the [Fastly API](https://dev
44

55
# VERSION
66

7-
3.01
7+
3.02
88

99
> NOTE: This 2.x release is a new [generated API client](https://dev.to/fastly/better-fastly-api-clients-with-openapi-generator-3lno) for the Fastly API.
1010
> The previous 1.x version is no longer supported, but can be found at https://github.com/fastly/fastly-perl/tree/v1.x.

docs/AclResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
1313
**deleted_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
1414
**updated_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
1515
**service_id** | **string** | | [optional] [readonly]
16-
**version** | **int** | | [optional] [readonly]
16+
**version** | **string** | String representing the number identifying a version of the service. | [optional] [readonly]
1717
**id** | **string** | | [optional] [readonly]
1818

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

docs/AclResponseAllOf.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ use WebService::Fastly::Object::AclResponseAllOf;
88
## Properties
99
Name | Type | Description | Notes
1010
------------ | ------------- | ------------- | -------------
11+
**service_id** | **string** | | [optional] [readonly]
12+
**version** | **string** | String representing the number identifying a version of the service. | [optional] [readonly]
1113
**id** | **string** | | [optional] [readonly]
1214

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

docs/SchemasSnippetResponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ Name | Type | Description | Notes
1212
**dynamic** | **int** | Sets the snippet version. | [optional]
1313
**type** | **string** | The location in generated VCL where the snippet should be placed. | [optional]
1414
**content** | **string** | The VCL code that specifies exactly what the snippet does. | [optional]
15-
**priority** | **int** | Priority determines execution order. Lower numbers execute first. | [optional] [default to 100]
16-
**service_id** | **string** | | [optional] [readonly]
17-
**version** | **int** | | [optional] [readonly]
15+
**priority** | **string** | Priority determines execution order. Lower numbers execute first. | [optional] [default to '100']
1816
**created_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
1917
**deleted_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
2018
**updated_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
19+
**service_id** | **string** | | [optional] [readonly]
20+
**version** | **string** | String representing the number identifying a version of the service. | [optional] [readonly]
2121
**id** | **string** | | [optional] [readonly]
2222

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

docs/Snippet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
1212
**dynamic** | **int** | Sets the snippet version. | [optional]
1313
**type** | **string** | The location in generated VCL where the snippet should be placed. | [optional]
1414
**content** | **string** | The VCL code that specifies exactly what the snippet does. | [optional]
15-
**priority** | **int** | Priority determines execution order. Lower numbers execute first. | [optional] [default to 100]
15+
**priority** | **string** | Priority determines execution order. Lower numbers execute first. | [optional] [default to '100']
1616

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

docs/SnippetApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ my $name = "name_example"; # string | The name for the snippet.
4242
my $dynamic = 56; # int | Sets the snippet version.
4343
my $type = "type_example"; # string | The location in generated VCL where the snippet should be placed.
4444
my $content = "content_example"; # string | The VCL code that specifies exactly what the snippet does.
45-
my $priority = 100; # int | Priority determines execution order. Lower numbers execute first.
45+
my $priority = '100'; # string | Priority determines execution order. Lower numbers execute first.
4646

4747
eval {
4848
my $result = $api_instance->create_snippet(service_id => $service_id, version_id => $version_id, name => $name, dynamic => $dynamic, type => $type, content => $content, priority => $priority);
@@ -63,7 +63,7 @@ Name | Type | Description | Notes
6363
**dynamic** | **int**| Sets the snippet version. | [optional]
6464
**type** | **string**| The location in generated VCL where the snippet should be placed. | [optional]
6565
**content** | **string**| The VCL code that specifies exactly what the snippet does. | [optional]
66-
**priority** | **int**| Priority determines execution order. Lower numbers execute first. | [optional] [default to 100]
66+
**priority** | **string**| Priority determines execution order. Lower numbers execute first. | [optional] [default to '100']
6767

6868
### Return type
6969

@@ -321,7 +321,7 @@ my $name = "name_example"; # string | The name for the snippet.
321321
my $dynamic = 56; # int | Sets the snippet version.
322322
my $type = "type_example"; # string | The location in generated VCL where the snippet should be placed.
323323
my $content = "content_example"; # string | The VCL code that specifies exactly what the snippet does.
324-
my $priority = 100; # int | Priority determines execution order. Lower numbers execute first.
324+
my $priority = '100'; # string | Priority determines execution order. Lower numbers execute first.
325325

326326
eval {
327327
my $result = $api_instance->update_snippet_dynamic(service_id => $service_id, snippet_id => $snippet_id, name => $name, dynamic => $dynamic, type => $type, content => $content, priority => $priority);
@@ -342,7 +342,7 @@ Name | Type | Description | Notes
342342
**dynamic** | **int**| Sets the snippet version. | [optional]
343343
**type** | **string**| The location in generated VCL where the snippet should be placed. | [optional]
344344
**content** | **string**| The VCL code that specifies exactly what the snippet does. | [optional]
345-
**priority** | **int**| Priority determines execution order. Lower numbers execute first. | [optional] [default to 100]
345+
**priority** | **string**| Priority determines execution order. Lower numbers execute first. | [optional] [default to '100']
346346

347347
### Return type
348348

docs/SnippetResponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ Name | Type | Description | Notes
1212
**dynamic** | **int** | Sets the snippet version. | [optional]
1313
**type** | **string** | The location in generated VCL where the snippet should be placed. | [optional]
1414
**content** | **string** | The VCL code that specifies exactly what the snippet does. | [optional]
15-
**priority** | **int** | Priority determines execution order. Lower numbers execute first. | [optional] [default to 100]
16-
**service_id** | **string** | | [optional] [readonly]
17-
**version** | **int** | | [optional] [readonly]
15+
**priority** | **string** | Priority determines execution order. Lower numbers execute first. | [optional] [default to '100']
1816
**created_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
1917
**deleted_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
2018
**updated_at** | **DateTime** | Date and time in ISO 8601 format. | [optional] [readonly]
19+
**service_id** | **string** | | [optional] [readonly]
20+
**version** | **string** | String representing the number identifying a version of the service. | [optional] [readonly]
2121
**id** | **string** | | [optional] [readonly]
2222

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

docs/SnippetResponseAllOf.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ use WebService::Fastly::Object::SnippetResponseAllOf;
88
## Properties
99
Name | Type | Description | Notes
1010
------------ | ------------- | ------------- | -------------
11+
**service_id** | **string** | | [optional] [readonly]
12+
**version** | **string** | String representing the number identifying a version of the service. | [optional] [readonly]
1113
**id** | **string** | | [optional] [readonly]
1214

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

lib/WebService/Fastly.pm

Lines changed: 1 addition & 1 deletion
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 = '3.01';
5+
our $VERSION = '3.02';
66

77
1;
88
__END__

0 commit comments

Comments
 (0)