mypy-boto3-sagemaker 1.36.2__py3-none-any.whl → 1.36.11__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 mypy-boto3-sagemaker might be problematic. Click here for more details.
- mypy_boto3_sagemaker/__init__.py +4 -2
- mypy_boto3_sagemaker/__init__.pyi +4 -2
- mypy_boto3_sagemaker/__main__.py +4 -4
- mypy_boto3_sagemaker/client.py +708 -730
- mypy_boto3_sagemaker/client.pyi +708 -730
- mypy_boto3_sagemaker/literals.py +3 -2
- mypy_boto3_sagemaker/literals.pyi +3 -2
- mypy_boto3_sagemaker/paginator.py +2 -2
- mypy_boto3_sagemaker/paginator.pyi +2 -2
- mypy_boto3_sagemaker/type_defs.py +1752 -1696
- mypy_boto3_sagemaker/type_defs.pyi +1663 -1623
- mypy_boto3_sagemaker/version.py +1 -1
- mypy_boto3_sagemaker/waiter.py +14 -8
- mypy_boto3_sagemaker/waiter.pyi +14 -8
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/METADATA +7 -6
- mypy_boto3_sagemaker-1.36.11.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.36.2.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/version.py
CHANGED
mypy_boto3_sagemaker/waiter.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for sagemaker service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -42,8 +44,6 @@ Usage::
|
|
|
42
44
|
training_job_completed_or_stopped_waiter: TrainingJobCompletedOrStoppedWaiter = client.get_waiter("training_job_completed_or_stopped")
|
|
43
45
|
transform_job_completed_or_stopped_waiter: TransformJobCompletedOrStoppedWaiter = client.get_waiter("transform_job_completed_or_stopped")
|
|
44
46
|
```
|
|
45
|
-
|
|
46
|
-
Copyright 2025 Vlad Emelianov
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
49
|
from __future__ import annotations
|
|
@@ -53,9 +53,15 @@ import sys
|
|
|
53
53
|
from botocore.waiter import Waiter
|
|
54
54
|
|
|
55
55
|
from .type_defs import (
|
|
56
|
+
DescribeEndpointInputWaitExtraTypeDef,
|
|
56
57
|
DescribeEndpointInputWaitTypeDef,
|
|
58
|
+
DescribeImageRequestWaitExtraExtraTypeDef,
|
|
59
|
+
DescribeImageRequestWaitExtraTypeDef,
|
|
57
60
|
DescribeImageRequestWaitTypeDef,
|
|
61
|
+
DescribeImageVersionRequestWaitExtraTypeDef,
|
|
58
62
|
DescribeImageVersionRequestWaitTypeDef,
|
|
63
|
+
DescribeNotebookInstanceInputWaitExtraExtraTypeDef,
|
|
64
|
+
DescribeNotebookInstanceInputWaitExtraTypeDef,
|
|
59
65
|
DescribeNotebookInstanceInputWaitTypeDef,
|
|
60
66
|
DescribeProcessingJobRequestWaitTypeDef,
|
|
61
67
|
DescribeTrainingJobRequestWaitTypeDef,
|
|
@@ -92,7 +98,7 @@ class EndpointDeletedWaiter(Waiter):
|
|
|
92
98
|
"""
|
|
93
99
|
|
|
94
100
|
def wait( # type: ignore[override]
|
|
95
|
-
self, **kwargs: Unpack[
|
|
101
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
|
|
96
102
|
) -> None:
|
|
97
103
|
"""
|
|
98
104
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
@@ -137,7 +143,7 @@ class ImageDeletedWaiter(Waiter):
|
|
|
137
143
|
"""
|
|
138
144
|
|
|
139
145
|
def wait( # type: ignore[override]
|
|
140
|
-
self, **kwargs: Unpack[
|
|
146
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
|
|
141
147
|
) -> None:
|
|
142
148
|
"""
|
|
143
149
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
@@ -152,7 +158,7 @@ class ImageUpdatedWaiter(Waiter):
|
|
|
152
158
|
"""
|
|
153
159
|
|
|
154
160
|
def wait( # type: ignore[override]
|
|
155
|
-
self, **kwargs: Unpack[
|
|
161
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
|
|
156
162
|
) -> None:
|
|
157
163
|
"""
|
|
158
164
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
@@ -182,7 +188,7 @@ class ImageVersionDeletedWaiter(Waiter):
|
|
|
182
188
|
"""
|
|
183
189
|
|
|
184
190
|
def wait( # type: ignore[override]
|
|
185
|
-
self, **kwargs: Unpack[
|
|
191
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitExtraTypeDef]
|
|
186
192
|
) -> None:
|
|
187
193
|
"""
|
|
188
194
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
@@ -197,7 +203,7 @@ class NotebookInstanceDeletedWaiter(Waiter):
|
|
|
197
203
|
"""
|
|
198
204
|
|
|
199
205
|
def wait( # type: ignore[override]
|
|
200
|
-
self, **kwargs: Unpack[
|
|
206
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
|
|
201
207
|
) -> None:
|
|
202
208
|
"""
|
|
203
209
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
@@ -227,7 +233,7 @@ class NotebookInstanceStoppedWaiter(Waiter):
|
|
|
227
233
|
"""
|
|
228
234
|
|
|
229
235
|
def wait( # type: ignore[override]
|
|
230
|
-
self, **kwargs: Unpack[
|
|
236
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
|
|
231
237
|
) -> None:
|
|
232
238
|
"""
|
|
233
239
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
mypy_boto3_sagemaker/waiter.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for sagemaker service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -42,8 +44,6 @@ Usage::
|
|
|
42
44
|
training_job_completed_or_stopped_waiter: TrainingJobCompletedOrStoppedWaiter = client.get_waiter("training_job_completed_or_stopped")
|
|
43
45
|
transform_job_completed_or_stopped_waiter: TransformJobCompletedOrStoppedWaiter = client.get_waiter("transform_job_completed_or_stopped")
|
|
44
46
|
```
|
|
45
|
-
|
|
46
|
-
Copyright 2025 Vlad Emelianov
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
49
|
from __future__ import annotations
|
|
@@ -53,9 +53,15 @@ import sys
|
|
|
53
53
|
from botocore.waiter import Waiter
|
|
54
54
|
|
|
55
55
|
from .type_defs import (
|
|
56
|
+
DescribeEndpointInputWaitExtraTypeDef,
|
|
56
57
|
DescribeEndpointInputWaitTypeDef,
|
|
58
|
+
DescribeImageRequestWaitExtraExtraTypeDef,
|
|
59
|
+
DescribeImageRequestWaitExtraTypeDef,
|
|
57
60
|
DescribeImageRequestWaitTypeDef,
|
|
61
|
+
DescribeImageVersionRequestWaitExtraTypeDef,
|
|
58
62
|
DescribeImageVersionRequestWaitTypeDef,
|
|
63
|
+
DescribeNotebookInstanceInputWaitExtraExtraTypeDef,
|
|
64
|
+
DescribeNotebookInstanceInputWaitExtraTypeDef,
|
|
59
65
|
DescribeNotebookInstanceInputWaitTypeDef,
|
|
60
66
|
DescribeProcessingJobRequestWaitTypeDef,
|
|
61
67
|
DescribeTrainingJobRequestWaitTypeDef,
|
|
@@ -89,7 +95,7 @@ class EndpointDeletedWaiter(Waiter):
|
|
|
89
95
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
90
96
|
"""
|
|
91
97
|
def wait( # type: ignore[override]
|
|
92
|
-
self, **kwargs: Unpack[
|
|
98
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitExtraTypeDef]
|
|
93
99
|
) -> None:
|
|
94
100
|
"""
|
|
95
101
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
@@ -128,7 +134,7 @@ class ImageDeletedWaiter(Waiter):
|
|
|
128
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
129
135
|
"""
|
|
130
136
|
def wait( # type: ignore[override]
|
|
131
|
-
self, **kwargs: Unpack[
|
|
137
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraExtraTypeDef]
|
|
132
138
|
) -> None:
|
|
133
139
|
"""
|
|
134
140
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
@@ -141,7 +147,7 @@ class ImageUpdatedWaiter(Waiter):
|
|
|
141
147
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
142
148
|
"""
|
|
143
149
|
def wait( # type: ignore[override]
|
|
144
|
-
self, **kwargs: Unpack[
|
|
150
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitExtraTypeDef]
|
|
145
151
|
) -> None:
|
|
146
152
|
"""
|
|
147
153
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
@@ -167,7 +173,7 @@ class ImageVersionDeletedWaiter(Waiter):
|
|
|
167
173
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
168
174
|
"""
|
|
169
175
|
def wait( # type: ignore[override]
|
|
170
|
-
self, **kwargs: Unpack[
|
|
176
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitExtraTypeDef]
|
|
171
177
|
) -> None:
|
|
172
178
|
"""
|
|
173
179
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
@@ -180,7 +186,7 @@ class NotebookInstanceDeletedWaiter(Waiter):
|
|
|
180
186
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
181
187
|
"""
|
|
182
188
|
def wait( # type: ignore[override]
|
|
183
|
-
self, **kwargs: Unpack[
|
|
189
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraExtraTypeDef]
|
|
184
190
|
) -> None:
|
|
185
191
|
"""
|
|
186
192
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
@@ -206,7 +212,7 @@ class NotebookInstanceStoppedWaiter(Waiter):
|
|
|
206
212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
207
213
|
"""
|
|
208
214
|
def wait( # type: ignore[override]
|
|
209
|
-
self, **kwargs: Unpack[
|
|
215
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitExtraTypeDef]
|
|
210
216
|
) -> None:
|
|
211
217
|
"""
|
|
212
218
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.36.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.36.
|
|
3
|
+
Version: 1.36.11
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.36.11 service generated with mypy-boto3-builder 8.9.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 SageMaker 1.36.
|
|
58
|
+
Type annotations for [boto3 SageMaker 1.36.11](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
65
|
|
|
66
66
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.9.0](https://github.com/youtype/mypy_boto3_builder).
|
|
68
68
|
|
|
69
69
|
More information can be found on
|
|
70
70
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.36.
|
|
121
|
+
`uvx --with 'boto3==1.36.11' mypy_boto3_builder`
|
|
122
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
123
|
3. Add `SageMaker` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -755,7 +755,8 @@ Builder changelog can be found in
|
|
|
755
755
|
## Versioning
|
|
756
756
|
|
|
757
757
|
`mypy-boto3-sagemaker` version is the same as related `boto3` version and
|
|
758
|
-
follows
|
|
758
|
+
follows
|
|
759
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
759
760
|
|
|
760
761
|
<a id="thank-you"></a>
|
|
761
762
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=opHkjuIms4oAULgt6RpiQM_b3MlcLpgp8MMTkCReC3o,20862
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=tbdiUUr5WXkYKgsTJGeNm8nf-W6kCYBvkDpK4kvX654,20861
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=2h4bj8ZyeoVzMaD__9UBCwERO93A3REYrb9L8MrMT8Q,991
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=mo9BTapS59xspt_GTa2vV-5u-Xhxxt6ome8wXFn4V90,268182
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=sOJ0YhwPOkZZgkrlIBUMuf9eM4XawehDYv2LI1e_sBo,268179
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=JnrBpKvoZ2vnVYy3o1EY5zEcMIRWpHE_yT8CYotvu5c,78850
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=SWmXpVrJj87PJGyHNWz5aFfNLWrDZLYhFaud6TZb84g,78848
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=6L2do5UDlW6ag_KUhRla4QbZORaFO-AulDv7A4nXEh8,113965
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=HJgYz9NiQOAITGAFA-ySnltWarPIVrk7wB-8nuAMYhQ,113730
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=94jWu8SYlTnmT2qB5jBG1FkKuxHdPWQJU5Seo2RNIWE,453489
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=MH-ZBY0oDnYfwzclsxn0KzLTr6yUfXDltsybhpu49FE,451936
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=5m4VXemNzNwY6_J1ufkq7Q-nt07uYdFwXWONbx1tP4g,93
|
|
14
|
+
mypy_boto3_sagemaker/waiter.py,sha256=-S1TZyw55DA_NY46uwNmMEDpruhN4am2JYcCn53mH1M,15080
|
|
15
|
+
mypy_boto3_sagemaker/waiter.pyi,sha256=Ddbvoy56vM8BmGsIG3bz4wmsRS7ruZSpyb1HArqvrj4,15053
|
|
16
|
+
mypy_boto3_sagemaker-1.36.11.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.36.11.dist-info/METADATA,sha256=YZzXqjTkLAGx_XFWGMmUzvhOKQfnVmTyBVpwAT5LXp4,28820
|
|
18
|
+
mypy_boto3_sagemaker-1.36.11.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
+
mypy_boto3_sagemaker-1.36.11.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.36.11.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=ChcIZ_w3l_S3hOE_Suehn0xlbY1t4zv7TV7_BDr0yE4,20779
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=0cJeN6GYQYFx99Odq2Ld26mNCocXVubyciUX4RaXaTo,20778
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=Dsje2kY-JAmFX-_2GxV0DXlV6rcnEUkwktWU8vR3XDs,988
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=i-_4LaKmHDFA0hEsFLYJk9K59pLA8vrMIVExjXiL9D8,273278
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=qdtkmAkjwDjLGzPYgxLY3w6TWzEqlTOr9AK9vnvPK6M,273275
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=Kr8jvxZRX6G2FH6sYea2YIADzLrb2PLHQnuYIBlvqBQ,78826
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=5M52s_M1pzqA_fEJYli0Jow4k13Rycv3IkhgWvL3v1E,78824
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=pVE-eqVsvU4OEXMiQbblBgRZPjqB8otndqYtNSnmw64,113965
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=x1FyvaPOi4dDOQEmKm8xyTeCxfsEI0qdqLNFI-jrv6w,113730
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=HUHRJUfqthorr-0V4fKKmiYTr9-Hi16xEmuW1sRTwII,456624
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=fbJCtEUMll3V-crdQ8GdP5rLXT0kouwuoX2BSPc75D8,455087
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=xJMCbHxGn9ClDupCqAkW-_t0cy6Fxy5jHnlfacfC2Kw,92
|
|
14
|
-
mypy_boto3_sagemaker/waiter.py,sha256=ebzZ5r8afi6WO7TTz26k4cHgEt4f3t4qkz7ZAoTTZ7k,14752
|
|
15
|
-
mypy_boto3_sagemaker/waiter.pyi,sha256=qhgN-O9ZVCfS-p_80TN70RzgwkzY1EZIhkqIn-iovrM,14725
|
|
16
|
-
mypy_boto3_sagemaker-1.36.2.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.36.2.dist-info/METADATA,sha256=4SiCB5xOe9W8HQm4VuCLUJNERFumpfiq4Oln1whUYWI,28763
|
|
18
|
-
mypy_boto3_sagemaker-1.36.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
-
mypy_boto3_sagemaker-1.36.2.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.36.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_sagemaker-1.36.2.dist-info → mypy_boto3_sagemaker-1.36.11.dist-info}/top_level.txt
RENAMED
|
File without changes
|