external-systems 0.106.0__py3-none-any.whl → 0.107.0__py3-none-any.whl
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.
Potentially problematic release.
This version of external-systems might be problematic. Click here for more details.
- external_systems/_version.py +1 -1
- external_systems/sources/__init__.py +2 -0
- external_systems/sources/_api.py +7 -1
- {external_systems-0.106.0.dist-info → external_systems-0.107.0.dist-info}/METADATA +1 -1
- {external_systems-0.106.0.dist-info → external_systems-0.107.0.dist-info}/RECORD +7 -7
- {external_systems-0.106.0.dist-info → external_systems-0.107.0.dist-info}/LICENSE.txt +0 -0
- {external_systems-0.106.0.dist-info → external_systems-0.107.0.dist-info}/WHEEL +0 -0
external_systems/_version.py
CHANGED
|
@@ -18,6 +18,7 @@ from ._api import (
|
|
|
18
18
|
ClientCertificateFilePaths,
|
|
19
19
|
GcpOauthCredentials,
|
|
20
20
|
HttpsConnectionParameters,
|
|
21
|
+
OauthCredentials,
|
|
21
22
|
SourceCredentials,
|
|
22
23
|
SourceParameters,
|
|
23
24
|
)
|
|
@@ -33,6 +34,7 @@ __all__ = [
|
|
|
33
34
|
"HttpsConnectionParameters",
|
|
34
35
|
"Source",
|
|
35
36
|
"SourceParameters",
|
|
37
|
+
"OauthCredentials",
|
|
36
38
|
"RefreshHandler",
|
|
37
39
|
"Refreshable",
|
|
38
40
|
"AwsCredentials",
|
external_systems/sources/_api.py
CHANGED
|
@@ -72,8 +72,14 @@ class GcpOauthCredentials:
|
|
|
72
72
|
expiration: Optional[datetime] = None
|
|
73
73
|
|
|
74
74
|
|
|
75
|
+
@dataclass(frozen=True)
|
|
76
|
+
class OauthCredentials:
|
|
77
|
+
access_token: str
|
|
78
|
+
expiration: datetime
|
|
79
|
+
|
|
80
|
+
|
|
75
81
|
# Each new credential type must include an expiration field
|
|
76
|
-
SourceCredentials = Union[AwsCredentials, GcpOauthCredentials]
|
|
82
|
+
SourceCredentials = Union[AwsCredentials, GcpOauthCredentials, OauthCredentials]
|
|
77
83
|
|
|
78
84
|
|
|
79
85
|
@dataclass(frozen=True)
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
external_systems/__init__.py,sha256=xXDUDD6_qRO-nHuXZx-fXp0R0vc3N_OOsB1F5mF_kpU,651
|
|
2
|
-
external_systems/_version.py,sha256=
|
|
2
|
+
external_systems/_version.py,sha256=TzcwoSCctVTFJGSvUQNnx5vhfYX5mzG_Dt7LLoImSok,749
|
|
3
3
|
external_systems/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
external_systems/sources/__init__.py,sha256=
|
|
5
|
-
external_systems/sources/_api.py,sha256=
|
|
4
|
+
external_systems/sources/__init__.py,sha256=4Ls3ag-BoAl4ErDfp3SnGkYSwxFxbMhkI5atnzE16jc,1254
|
|
5
|
+
external_systems/sources/_api.py,sha256=ZkISIGeCPu_ytQMIPD53594KeULu-O4d6cd7u5DowgY,3515
|
|
6
6
|
external_systems/sources/_connections.py,sha256=h82npEks29NALAAfMHrXcSnB7TY_OLeXgL3QN9Cssus,2509
|
|
7
7
|
external_systems/sources/_proxies.py,sha256=hwgMBpOUdlhyRLgCyXE7v9X5v-1a655PDFqHJtZ9c74,6576
|
|
8
8
|
external_systems/sources/_refreshable.py,sha256=0pa5XW0_2gTMW-ZymKhlhh3Kka_bWTWffThKvrTTifc,4421
|
|
9
9
|
external_systems/sources/_sockets.py,sha256=XH51adVnloqg8XYVHPxl6K8R_q2BCh6WZ77cq1L8nRg,4473
|
|
10
10
|
external_systems/sources/_sources.py,sha256=2sranCdLgb_IO8pHMPqwoGqWfmECiMro96piN6iVaZ4,11783
|
|
11
11
|
external_systems/sources/_utils.py,sha256=EmUKKiKRDOZ2cZs7FZ4qCSan_lq1K_tquh3kxleB-jA,1004
|
|
12
|
-
external_systems-0.
|
|
13
|
-
external_systems-0.
|
|
14
|
-
external_systems-0.
|
|
15
|
-
external_systems-0.
|
|
12
|
+
external_systems-0.107.0.dist-info/LICENSE.txt,sha256=NAk6Uc9K_N_J5V75k9qECpzUnO-ujT-mKK_jk_mboUE,569
|
|
13
|
+
external_systems-0.107.0.dist-info/METADATA,sha256=E1LpjvtGvz_Uucz8yQ296WrS46Dl6SZXFQPXWbt5ttE,4809
|
|
14
|
+
external_systems-0.107.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
15
|
+
external_systems-0.107.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|