external-systems 0.104.0rc1__tar.gz → 0.105.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/PKG-INFO +1 -1
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/_version.py +1 -1
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_sources.py +10 -3
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/pyproject.toml +1 -1
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/LICENSE.txt +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/README.md +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/__init__.py +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/py.typed +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/__init__.py +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_api.py +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_connections.py +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_proxies.py +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_refreshable.py +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_sockets.py +0 -0
- {external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_utils.py +0 -0
{external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_sources.py
RENAMED
|
@@ -75,13 +75,20 @@ class Source:
|
|
|
75
75
|
def _https_connections(self) -> Mapping[str, HttpsConnection]:
|
|
76
76
|
return frozendict(
|
|
77
77
|
{
|
|
78
|
-
key: HttpsConnection(
|
|
78
|
+
key: HttpsConnection(
|
|
79
|
+
params, self._client_certificate, self._https_proxy_url, self.server_certificates_bundle_path
|
|
80
|
+
)
|
|
79
81
|
for key, params in self._source_parameters.https_connections.items()
|
|
80
82
|
}
|
|
81
83
|
)
|
|
82
84
|
|
|
83
|
-
@
|
|
84
|
-
def
|
|
85
|
+
@property
|
|
86
|
+
def server_certificates_bundle_path(self) -> Optional[str]:
|
|
87
|
+
"""
|
|
88
|
+
File path to the CA bundle file containing all server certificates required by the Source.
|
|
89
|
+
If no server certificates are defined on the Source, this will return None.
|
|
90
|
+
"""
|
|
91
|
+
|
|
85
92
|
if self._source_parameters.server_certificates is None:
|
|
86
93
|
return None
|
|
87
94
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_connections.py
RENAMED
|
File without changes
|
{external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_proxies.py
RENAMED
|
File without changes
|
{external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_refreshable.py
RENAMED
|
File without changes
|
{external_systems-0.104.0rc1 → external_systems-0.105.0}/external_systems/sources/_sockets.py
RENAMED
|
File without changes
|
|
File without changes
|