external-systems 0.104.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: external-systems
3
- Version: 0.104.0
3
+ Version: 0.105.0
4
4
  Summary: A Python library for interacting with Foundry Sources
5
5
  License: Apache-2.0
6
6
  Keywords: Palantir,Foundry,Sources,Compute Modules,Python Functions,Transforms
@@ -16,4 +16,4 @@
16
16
  # The version is set during the publishing step (since we can't know the version in advance)
17
17
  # using the autorelease bot
18
18
 
19
- __version__ = "0.104.0"
19
+ __version__ = "0.105.0"
@@ -75,13 +75,20 @@ class Source:
75
75
  def _https_connections(self) -> Mapping[str, HttpsConnection]:
76
76
  return frozendict(
77
77
  {
78
- key: HttpsConnection(params, self._client_certificate, self._https_proxy_url, self._ca_bundle_path)
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
- @cached_property
84
- def _ca_bundle_path(self) -> Optional[str]:
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
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "external-systems"
3
- version = "0.104.0"
3
+ version = "0.105.0"
4
4
  description = "A Python library for interacting with Foundry Sources"
5
5
  authors = ["Palantir Technologies, Inc."]
6
6
  license = "Apache-2.0"