You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/grz-common/src/grz_common/models/s3.py
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,23 @@
5
5
from .baseimportIgnoringBaseModel, IgnoringBaseSettings
6
6
7
7
8
+
classProxyOptions(IgnoringBaseModel):
9
+
proxy_ca_bundle: str|None=None
10
+
"""
11
+
The path to a custom certificate bundle to use when establishing SSL/TLS connections with proxy (optional).
12
+
"""
13
+
14
+
proxy_client_cert: str|None=None
15
+
"""
16
+
The path to a certificate for proxy TLS client authentication (optional).
17
+
"""
18
+
19
+
proxy_use_forwarding_for_https: bool=False
20
+
"""
21
+
For HTTPS proxies, forward your requests to HTTPS destinations with an absolute URI. We strongly recommend you only use this option with trusted or corporate proxies.
22
+
"""
23
+
24
+
8
25
classS3Options(IgnoringBaseModel):
9
26
endpoint_url: AnyHttpUrl
10
27
"""
@@ -53,6 +70,9 @@ class S3Options(IgnoringBaseModel):
0 commit comments