Skip to content

Commit a4cd741

Browse files
author
github-actions
committed
Generated v2.2.1
1 parent aadeee7 commit a4cd741

18 files changed

+387
-18
lines changed

CHANGELOG.md

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

3+
## [v2.2.1](https://github.com/fastly/fastly-py/releases/tag/release/v2.2.1) (2023-06-21)
4+
5+
**Bug fixes:**
6+
7+
- fix(tls_activation): add tls_configuration and tls_domains.
8+
- fix(tls_subscription): add tls_configuration and common name.
9+
310
## [v2.2.0](https://github.com/fastly/fastly-py/releases/tag/release/v2.2.0) (2023-06-20)
411

512
**Enhancements:**

docs/RelationshipCommonName.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# RelationshipCommonName
22

3+
The common name associated with the subscription generated by Fastly TLS. Optional. If you do not pass a common name on create, we will default to the first TLS domain included. If provided, the domain chosen as the common name must be included in TLS domains.
34

45
## Properties
56
Name | Type | Description | Notes

docs/RelationshipMutualAuthentication.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# RelationshipMutualAuthentication
22

3+
The [Mutual Authentication](/reference/api/tls/mutual-tls/authentication/) for client-to-server authentication. Optional.
34

45
## Properties
56
Name | Type | Description | Notes

docs/RelationshipTlsCertificate.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# RelationshipTlsCertificate
22

3+
The [TLS certificate](/reference/api/tls/custom-certs/certificates/) being used to terminate TLS traffic for a domain. Required.
34

45
## Properties
56
Name | Type | Description | Notes

docs/RelationshipTlsConfiguration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# RelationshipTlsConfiguration
22

3+
The [TLS configuration](/reference/api/tls/custom-certs/configuration/) being used to terminate TLS traffic. Optional.
34

45
## Properties
56
Name | Type | Description | Notes
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# RelationshipTlsConfigurationForTlsSubscription
2+
3+
The unique identifier for the set of TLS configuration options that apply to the enabled domains on this subscription. Write-only on create.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional]
9+
**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]
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/RelationshipTlsDomain.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# RelationshipTlsDomain
22

3+
The [TLS domain](/reference/api/tls/custom-certs/domains/) being enabled for TLS traffic. Required.
34

45
## Properties
56
Name | Type | Description | Notes

docs/RelationshipsForTlsActivation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**tls_certificate** | [**RelationshipTlsCertificateTlsCertificate**](RelationshipTlsCertificateTlsCertificate.md) | | [optional]
8+
**tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional]
9+
**tls_domain** | [**RelationshipTlsDomainTlsDomain**](RelationshipTlsDomainTlsDomain.md) | | [optional]
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

1012
[[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/RelationshipsForTlsSubscription.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7+
**tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional]
8+
**common_name** | [**RelationshipMemberTlsDomain**](RelationshipMemberTlsDomain.md) | | [optional]
79
**tls_domains** | [**RelationshipTlsDomainsTlsDomains**](RelationshipTlsDomainsTlsDomains.md) | | [optional]
810
**tls_certificates** | [**RelationshipTlsCertificatesTlsCertificates**](RelationshipTlsCertificatesTlsCertificates.md) | | [optional]
9-
**tls_configuration** | [**RelationshipTlsConfigurationTlsConfiguration**](RelationshipTlsConfigurationTlsConfiguration.md) | | [optional]
1011
**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]
1112

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

fastly/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212

13-
__version__ = "2.2.0"
13+
__version__ = "2.2.1"
1414

1515
# import ApiClient
1616
from fastly.api_client import ApiClient

0 commit comments

Comments
 (0)