nvidia-nat-s3 1.3.0a20251110__py3-none-any.whl → 1.4.0a20251113__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.
- nat/plugins/s3/object_store.py +5 -4
- {nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/METADATA +2 -2
- nvidia_nat_s3-1.4.0a20251113.dist-info/RECORD +11 -0
- nvidia_nat_s3-1.3.0a20251110.dist-info/RECORD +0 -11
- {nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/WHEEL +0 -0
- {nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/entry_points.txt +0 -0
- {nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/top_level.txt +0 -0
nat/plugins/s3/object_store.py
CHANGED
|
@@ -20,6 +20,7 @@ from pydantic import Field
|
|
|
20
20
|
|
|
21
21
|
from nat.builder.builder import Builder
|
|
22
22
|
from nat.cli.register_workflow import register_object_store
|
|
23
|
+
from nat.data_models.common import OptionalSecretStr
|
|
23
24
|
from nat.data_models.object_store import ObjectStoreBaseConfig
|
|
24
25
|
|
|
25
26
|
|
|
@@ -33,10 +34,10 @@ class S3ObjectStoreClientConfig(ObjectStoreBaseConfig, name="s3"):
|
|
|
33
34
|
|
|
34
35
|
bucket_name: str = Field(..., description="The name of the bucket to use for the object store")
|
|
35
36
|
endpoint_url: str | None = Field(default=None, description="The URL of the S3 server to connect to")
|
|
36
|
-
access_key:
|
|
37
|
-
|
|
38
|
-
secret_key:
|
|
39
|
-
|
|
37
|
+
access_key: OptionalSecretStr = Field(default=os.environ.get(ACCESS_KEY_ENV),
|
|
38
|
+
description=f"Access key. If omitted, reads from {ACCESS_KEY_ENV}")
|
|
39
|
+
secret_key: OptionalSecretStr = Field(default=os.environ.get(SECRET_KEY_ENV),
|
|
40
|
+
description=f"Secret key. If omitted, reads from {SECRET_KEY_ENV}")
|
|
40
41
|
region: str | None = Field(default=None, description="Region to access (or none if unspecified)")
|
|
41
42
|
|
|
42
43
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-nat-s3
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0a20251113
|
|
4
4
|
Summary: Subpackage for S3-compatible integration in NeMo Agent toolkit
|
|
5
5
|
Author: NVIDIA Corporation
|
|
6
6
|
Maintainer: NVIDIA Corporation
|
|
@@ -16,6 +16,6 @@ Requires-Python: <3.14,>=3.11
|
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE-3rd-party.txt
|
|
18
18
|
License-File: LICENSE.md
|
|
19
|
-
Requires-Dist: nvidia-nat==v1.
|
|
19
|
+
Requires-Dist: nvidia-nat==v1.4.0a20251113
|
|
20
20
|
Requires-Dist: aioboto3>=11.0.0
|
|
21
21
|
Dynamic: license-file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
nat/plugins/s3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
nat/plugins/s3/object_store.py,sha256=iSLoAbsRgaabG_fM-O5Du63GLD8YcPomgpvdRtsCCpo,2253
|
|
3
|
+
nat/plugins/s3/register.py,sha256=iBGq69m0rbZ3BTisA4Lt5UCHtW0Pc7m-l8G8dz-_pBc,813
|
|
4
|
+
nat/plugins/s3/s3_object_store.py,sha256=_2Sx1QXosuS2FnHXtG8qo4x9-xTNJVbNxoiJCZQcWgE,6052
|
|
5
|
+
nvidia_nat_s3-1.4.0a20251113.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
6
|
+
nvidia_nat_s3-1.4.0a20251113.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
|
+
nvidia_nat_s3-1.4.0a20251113.dist-info/METADATA,sha256=7FzUNjPpr-aRSKXR4fQt-sXfkddLhTCbv19ssv7l9JU,823
|
|
8
|
+
nvidia_nat_s3-1.4.0a20251113.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
+
nvidia_nat_s3-1.4.0a20251113.dist-info/entry_points.txt,sha256=HSc9lsaEu-3DyVezRMR-VZrfhWnDtA9llVaWE2CYZNw,63
|
|
10
|
+
nvidia_nat_s3-1.4.0a20251113.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
11
|
+
nvidia_nat_s3-1.4.0a20251113.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
nat/plugins/s3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
nat/plugins/s3/object_store.py,sha256=FDcO_8j__Nb-W8IY7JeUk5WoCRIqVNi1a1L1aVmYt10,2172
|
|
3
|
-
nat/plugins/s3/register.py,sha256=iBGq69m0rbZ3BTisA4Lt5UCHtW0Pc7m-l8G8dz-_pBc,813
|
|
4
|
-
nat/plugins/s3/s3_object_store.py,sha256=_2Sx1QXosuS2FnHXtG8qo4x9-xTNJVbNxoiJCZQcWgE,6052
|
|
5
|
-
nvidia_nat_s3-1.3.0a20251110.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
6
|
-
nvidia_nat_s3-1.3.0a20251110.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
|
-
nvidia_nat_s3-1.3.0a20251110.dist-info/METADATA,sha256=TJtgTfa4ztA7bWLVSL1gH_jsE_3hfyYsHqX_QHk5ZD8,823
|
|
8
|
-
nvidia_nat_s3-1.3.0a20251110.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
-
nvidia_nat_s3-1.3.0a20251110.dist-info/entry_points.txt,sha256=HSc9lsaEu-3DyVezRMR-VZrfhWnDtA9llVaWE2CYZNw,63
|
|
10
|
-
nvidia_nat_s3-1.3.0a20251110.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
11
|
-
nvidia_nat_s3-1.3.0a20251110.dist-info/RECORD,,
|
|
File without changes
|
{nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nvidia_nat_s3-1.3.0a20251110.dist-info → nvidia_nat_s3-1.4.0a20251113.dist-info}/top_level.txt
RENAMED
|
File without changes
|