Skip to content

Commit 888bbe1

Browse files
author
github-actions
committed
Generated v2.1.1
1 parent 37362c9 commit 888bbe1

27 files changed

+107
-78
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [v2.1.1](https://github.com/fastly/fastly-py/releases/tag/release/v2.1.1) (2023-05-22)
4+
5+
**Bug fixes:**
6+
7+
- fix(acl): change `version` from int to string.
8+
- fix(acl): add missing methods for `service_id` and `service_version` properties.
9+
- fix(backend): make `ssl_check_cert` nullable.
10+
- fix(purge): skip URL escape for `surrogate_key` param.
11+
- fix(snippets): change `priority` and `version` from int to string.
12+
- fix(snippets): add missing methods for `service_id` and `service_version` properties.
13+
314
## [v2.1.0](https://github.com/fastly/fastly-py/releases/tag/release/v2.1.0) (2023-05-17)
415

516
**Enhancements:**

docs/AclResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**deleted_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
1010
**updated_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
1111
**service_id** | **str** | | [optional] [readonly]
12-
**version** | **int** | | [optional] [readonly]
12+
**version** | **str** | String representing the number identifying a version of the service. | [optional] [readonly]
1313
**id** | **str** | | [optional] [readonly]
1414
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1515

docs/AclResponseAllOf.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7+
**service_id** | **str** | | [optional] [readonly]
8+
**version** | **str** | String representing the number identifying a version of the service. | [optional] [readonly]
79
**id** | **str** | | [optional] [readonly]
810
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
911

docs/Backend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Name | Type | Description | Notes
2626
**shield** | **str, none_type** | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). | [optional]
2727
**ssl_ca_cert** | **str, none_type** | CA certificate attached to origin. | [optional]
2828
**ssl_cert_hostname** | **str, none_type** | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. | [optional]
29-
**ssl_check_cert** | **bool** | Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
29+
**ssl_check_cert** | **bool, none_type** | Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
3030
**ssl_ciphers** | **str, none_type** | List of [OpenSSL ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) to support for connections to this origin. If your backend server is not able to negotiate a connection meeting this constraint, a synthetic `503` error response will be generated. | [optional]
3131
**ssl_client_cert** | **str, none_type** | Client certificate attached to origin. | [optional]
3232
**ssl_client_key** | **str, none_type** | Client key attached to origin. | [optional]

docs/BackendApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ with fastly.ApiClient(configuration) as api_client:
7373
shield = "shield_example" # str, none_type | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). (optional)
7474
ssl_ca_cert = "ssl_ca_cert_example" # str, none_type | CA certificate attached to origin. (optional)
7575
ssl_cert_hostname = "ssl_cert_hostname_example" # str, none_type | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. (optional)
76-
ssl_check_cert = True # bool | Be strict on checking SSL certs. (optional) if omitted the server will use the default value of True
76+
ssl_check_cert = True # bool, none_type | Be strict on checking SSL certs. (optional) if omitted the server will use the default value of True
7777
ssl_ciphers = "ssl_ciphers_example" # str, none_type | List of [OpenSSL ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) to support for connections to this origin. If your backend server is not able to negotiate a connection meeting this constraint, a synthetic `503` error response will be generated. (optional)
7878
ssl_client_cert = "ssl_client_cert_example" # str, none_type | Client certificate attached to origin. (optional)
7979
ssl_client_key = "ssl_client_key_example" # str, none_type | Client key attached to origin. (optional)
@@ -129,7 +129,7 @@ Name | Type | Description | Notes
129129
**shield** | **str, none_type**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). | [optional]
130130
**ssl_ca_cert** | **str, none_type**| CA certificate attached to origin. | [optional]
131131
**ssl_cert_hostname** | **str, none_type**| Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. | [optional]
132-
**ssl_check_cert** | **bool**| Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
132+
**ssl_check_cert** | **bool, none_type**| Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
133133
**ssl_ciphers** | **str, none_type**| List of [OpenSSL ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) to support for connections to this origin. If your backend server is not able to negotiate a connection meeting this constraint, a synthetic `503` error response will be generated. | [optional]
134134
**ssl_client_cert** | **str, none_type**| Client certificate attached to origin. | [optional]
135135
**ssl_client_key** | **str, none_type**| Client key attached to origin. | [optional]
@@ -467,7 +467,7 @@ with fastly.ApiClient(configuration) as api_client:
467467
shield = "shield_example" # str, none_type | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). (optional)
468468
ssl_ca_cert = "ssl_ca_cert_example" # str, none_type | CA certificate attached to origin. (optional)
469469
ssl_cert_hostname = "ssl_cert_hostname_example" # str, none_type | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. (optional)
470-
ssl_check_cert = True # bool | Be strict on checking SSL certs. (optional) if omitted the server will use the default value of True
470+
ssl_check_cert = True # bool, none_type | Be strict on checking SSL certs. (optional) if omitted the server will use the default value of True
471471
ssl_ciphers = "ssl_ciphers_example" # str, none_type | List of [OpenSSL ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) to support for connections to this origin. If your backend server is not able to negotiate a connection meeting this constraint, a synthetic `503` error response will be generated. (optional)
472472
ssl_client_cert = "ssl_client_cert_example" # str, none_type | Client certificate attached to origin. (optional)
473473
ssl_client_key = "ssl_client_key_example" # str, none_type | Client key attached to origin. (optional)
@@ -524,7 +524,7 @@ Name | Type | Description | Notes
524524
**shield** | **str, none_type**| Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). | [optional]
525525
**ssl_ca_cert** | **str, none_type**| CA certificate attached to origin. | [optional]
526526
**ssl_cert_hostname** | **str, none_type**| Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. | [optional]
527-
**ssl_check_cert** | **bool**| Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
527+
**ssl_check_cert** | **bool, none_type**| Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
528528
**ssl_ciphers** | **str, none_type**| List of [OpenSSL ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) to support for connections to this origin. If your backend server is not able to negotiate a connection meeting this constraint, a synthetic `503` error response will be generated. | [optional]
529529
**ssl_client_cert** | **str, none_type**| Client certificate attached to origin. | [optional]
530530
**ssl_client_key** | **str, none_type**| Client key attached to origin. | [optional]

docs/BackendResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Name | Type | Description | Notes
2626
**shield** | **str, none_type** | Identifier of the POP to use as a [shield](https://docs.fastly.com/en/guides/shielding). | [optional]
2727
**ssl_ca_cert** | **str, none_type** | CA certificate attached to origin. | [optional]
2828
**ssl_cert_hostname** | **str, none_type** | Overrides `ssl_hostname`, but only for cert verification. Does not affect SNI at all. | [optional]
29-
**ssl_check_cert** | **bool** | Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
29+
**ssl_check_cert** | **bool, none_type** | Be strict on checking SSL certs. | [optional] if omitted the server will use the default value of True
3030
**ssl_ciphers** | **str, none_type** | List of [OpenSSL ciphers](https://www.openssl.org/docs/manmaster/man1/ciphers.html) to support for connections to this origin. If your backend server is not able to negotiate a connection meeting this constraint, a synthetic `503` error response will be generated. | [optional]
3131
**ssl_client_cert** | **str, none_type** | Client certificate attached to origin. | [optional]
3232
**ssl_client_key** | **str, none_type** | Client key attached to origin. | [optional]

docs/SchemasSnippetResponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Name | Type | Description | Notes
88
**dynamic** | **int** | Sets the snippet version. | [optional]
99
**type** | **str** | The location in generated VCL where the snippet should be placed. | [optional]
1010
**content** | **str** | The VCL code that specifies exactly what the snippet does. | [optional]
11-
**priority** | **int** | Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of 100
12-
**service_id** | **str** | | [optional] [readonly]
13-
**version** | **int** | | [optional] [readonly]
11+
**priority** | **str** | Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of "100"
1412
**created_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
1513
**deleted_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
1614
**updated_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
15+
**service_id** | **str** | | [optional] [readonly]
16+
**version** | **str** | String representing the number identifying a version of the service. | [optional] [readonly]
1717
**id** | **str** | | [optional] [readonly]
1818
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1919

docs/Snippet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**dynamic** | **int** | Sets the snippet version. | [optional]
99
**type** | **str** | The location in generated VCL where the snippet should be placed. | [optional]
1010
**content** | **str** | The VCL code that specifies exactly what the snippet does. | [optional]
11-
**priority** | **int** | Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of 100
11+
**priority** | **str** | Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of "100"
1212
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1313

1414
[[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/SnippetApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ with fastly.ApiClient(configuration) as api_client:
5656
dynamic = 0 # int | Sets the snippet version. (optional)
5757
type = "init" # str | The location in generated VCL where the snippet should be placed. (optional)
5858
content = "content_example" # str | The VCL code that specifies exactly what the snippet does. (optional)
59-
priority = 10 # int | Priority determines execution order. Lower numbers execute first. (optional) if omitted the server will use the default value of 100
59+
priority = "10" # str | Priority determines execution order. Lower numbers execute first. (optional) if omitted the server will use the default value of "100"
6060

6161
# example passing only required values which don't have defaults set
6262
try:
@@ -87,7 +87,7 @@ Name | Type | Description | Notes
8787
**dynamic** | **int**| Sets the snippet version. | [optional]
8888
**type** | **str**| The location in generated VCL where the snippet should be placed. | [optional]
8989
**content** | **str**| The VCL code that specifies exactly what the snippet does. | [optional]
90-
**priority** | **int**| Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of 100
90+
**priority** | **str**| Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of "100"
9191

9292
### Return type
9393

@@ -479,7 +479,7 @@ with fastly.ApiClient(configuration) as api_client:
479479
dynamic = 0 # int | Sets the snippet version. (optional)
480480
type = "init" # str | The location in generated VCL where the snippet should be placed. (optional)
481481
content = "content_example" # str | The VCL code that specifies exactly what the snippet does. (optional)
482-
priority = 10 # int | Priority determines execution order. Lower numbers execute first. (optional) if omitted the server will use the default value of 100
482+
priority = "10" # str | Priority determines execution order. Lower numbers execute first. (optional) if omitted the server will use the default value of "100"
483483

484484
# example passing only required values which don't have defaults set
485485
try:
@@ -510,7 +510,7 @@ Name | Type | Description | Notes
510510
**dynamic** | **int**| Sets the snippet version. | [optional]
511511
**type** | **str**| The location in generated VCL where the snippet should be placed. | [optional]
512512
**content** | **str**| The VCL code that specifies exactly what the snippet does. | [optional]
513-
**priority** | **int**| Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of 100
513+
**priority** | **str**| Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of "100"
514514

515515
### Return type
516516

docs/SnippetResponse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Name | Type | Description | Notes
88
**dynamic** | **int** | Sets the snippet version. | [optional]
99
**type** | **str** | The location in generated VCL where the snippet should be placed. | [optional]
1010
**content** | **str** | The VCL code that specifies exactly what the snippet does. | [optional]
11-
**priority** | **int** | Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of 100
12-
**service_id** | **str** | | [optional] [readonly]
13-
**version** | **int** | | [optional] [readonly]
11+
**priority** | **str** | Priority determines execution order. Lower numbers execute first. | [optional] if omitted the server will use the default value of "100"
1412
**created_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
1513
**deleted_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
1614
**updated_at** | **datetime, none_type** | Date and time in ISO 8601 format. | [optional] [readonly]
15+
**service_id** | **str** | | [optional] [readonly]
16+
**version** | **str** | String representing the number identifying a version of the service. | [optional] [readonly]
1717
**id** | **str** | | [optional] [readonly]
1818
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
1919

0 commit comments

Comments
 (0)