mypy-boto3-sagemaker 1.35.68__py3-none-any.whl → 1.35.86__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 +16 -0
- mypy_boto3_sagemaker/__init__.pyi +16 -0
- mypy_boto3_sagemaker/__main__.py +8 -7
- mypy_boto3_sagemaker/client.py +789 -296
- mypy_boto3_sagemaker/client.pyi +789 -295
- mypy_boto3_sagemaker/literals.py +115 -1
- mypy_boto3_sagemaker/literals.pyi +115 -1
- mypy_boto3_sagemaker/paginator.py +952 -428
- mypy_boto3_sagemaker/paginator.pyi +867 -427
- mypy_boto3_sagemaker/type_defs.py +1142 -590
- mypy_boto3_sagemaker/type_defs.pyi +1077 -583
- mypy_boto3_sagemaker/version.py +1 -1
- mypy_boto3_sagemaker/waiter.py +41 -36
- mypy_boto3_sagemaker/waiter.pyi +41 -36
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/METADATA +63 -9
- mypy_boto3_sagemaker-1.35.86.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.35.68.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/version.py
CHANGED
mypy_boto3_sagemaker/waiter.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
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
6
|
Usage::
|
|
7
7
|
|
|
@@ -46,24 +46,20 @@ Usage::
|
|
|
46
46
|
Copyright 2024 Vlad Emelianov
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
|
+
from __future__ import annotations
|
|
50
|
+
|
|
49
51
|
import sys
|
|
50
52
|
|
|
51
53
|
from botocore.waiter import Waiter
|
|
52
54
|
|
|
53
55
|
from .type_defs import (
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
DescribeNotebookInstanceInputNotebookInstanceDeletedWaitTypeDef,
|
|
62
|
-
DescribeNotebookInstanceInputNotebookInstanceInServiceWaitTypeDef,
|
|
63
|
-
DescribeNotebookInstanceInputNotebookInstanceStoppedWaitTypeDef,
|
|
64
|
-
DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef,
|
|
65
|
-
DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef,
|
|
66
|
-
DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef,
|
|
56
|
+
DescribeEndpointInputWaitTypeDef,
|
|
57
|
+
DescribeImageRequestWaitTypeDef,
|
|
58
|
+
DescribeImageVersionRequestWaitTypeDef,
|
|
59
|
+
DescribeNotebookInstanceInputWaitTypeDef,
|
|
60
|
+
DescribeProcessingJobRequestWaitTypeDef,
|
|
61
|
+
DescribeTrainingJobRequestWaitTypeDef,
|
|
62
|
+
DescribeTransformJobRequestWaitTypeDef,
|
|
67
63
|
)
|
|
68
64
|
|
|
69
65
|
if sys.version_info >= (3, 12):
|
|
@@ -95,7 +91,9 @@ class EndpointDeletedWaiter(Waiter):
|
|
|
95
91
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
96
92
|
"""
|
|
97
93
|
|
|
98
|
-
def wait(
|
|
94
|
+
def wait( # type: ignore[override]
|
|
95
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
|
|
96
|
+
) -> None:
|
|
99
97
|
"""
|
|
100
98
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
101
99
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
@@ -108,7 +106,9 @@ class EndpointInServiceWaiter(Waiter):
|
|
|
108
106
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
109
107
|
"""
|
|
110
108
|
|
|
111
|
-
def wait(
|
|
109
|
+
def wait( # type: ignore[override]
|
|
110
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
|
|
111
|
+
) -> None:
|
|
112
112
|
"""
|
|
113
113
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService.wait)
|
|
114
114
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
@@ -121,7 +121,9 @@ class ImageCreatedWaiter(Waiter):
|
|
|
121
121
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
122
122
|
"""
|
|
123
123
|
|
|
124
|
-
def wait(
|
|
124
|
+
def wait( # type: ignore[override]
|
|
125
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
126
|
+
) -> None:
|
|
125
127
|
"""
|
|
126
128
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated.wait)
|
|
127
129
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
@@ -134,7 +136,9 @@ class ImageDeletedWaiter(Waiter):
|
|
|
134
136
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
135
137
|
"""
|
|
136
138
|
|
|
137
|
-
def wait(
|
|
139
|
+
def wait( # type: ignore[override]
|
|
140
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
141
|
+
) -> None:
|
|
138
142
|
"""
|
|
139
143
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
140
144
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
@@ -147,7 +151,9 @@ class ImageUpdatedWaiter(Waiter):
|
|
|
147
151
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
148
152
|
"""
|
|
149
153
|
|
|
150
|
-
def wait(
|
|
154
|
+
def wait( # type: ignore[override]
|
|
155
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
156
|
+
) -> None:
|
|
151
157
|
"""
|
|
152
158
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
153
159
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
@@ -160,8 +166,8 @@ class ImageVersionCreatedWaiter(Waiter):
|
|
|
160
166
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
161
167
|
"""
|
|
162
168
|
|
|
163
|
-
def wait(
|
|
164
|
-
self, **kwargs: Unpack[
|
|
169
|
+
def wait( # type: ignore[override]
|
|
170
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitTypeDef]
|
|
165
171
|
) -> None:
|
|
166
172
|
"""
|
|
167
173
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
@@ -175,8 +181,8 @@ class ImageVersionDeletedWaiter(Waiter):
|
|
|
175
181
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
176
182
|
"""
|
|
177
183
|
|
|
178
|
-
def wait(
|
|
179
|
-
self, **kwargs: Unpack[
|
|
184
|
+
def wait( # type: ignore[override]
|
|
185
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitTypeDef]
|
|
180
186
|
) -> None:
|
|
181
187
|
"""
|
|
182
188
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
@@ -190,8 +196,8 @@ class NotebookInstanceDeletedWaiter(Waiter):
|
|
|
190
196
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
191
197
|
"""
|
|
192
198
|
|
|
193
|
-
def wait(
|
|
194
|
-
self, **kwargs: Unpack[
|
|
199
|
+
def wait( # type: ignore[override]
|
|
200
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
195
201
|
) -> None:
|
|
196
202
|
"""
|
|
197
203
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
@@ -205,8 +211,8 @@ class NotebookInstanceInServiceWaiter(Waiter):
|
|
|
205
211
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
206
212
|
"""
|
|
207
213
|
|
|
208
|
-
def wait(
|
|
209
|
-
self, **kwargs: Unpack[
|
|
214
|
+
def wait( # type: ignore[override]
|
|
215
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
210
216
|
) -> None:
|
|
211
217
|
"""
|
|
212
218
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
@@ -220,8 +226,8 @@ class NotebookInstanceStoppedWaiter(Waiter):
|
|
|
220
226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
221
227
|
"""
|
|
222
228
|
|
|
223
|
-
def wait(
|
|
224
|
-
self, **kwargs: Unpack[
|
|
229
|
+
def wait( # type: ignore[override]
|
|
230
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
225
231
|
) -> None:
|
|
226
232
|
"""
|
|
227
233
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
@@ -235,9 +241,8 @@ class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
235
241
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
236
242
|
"""
|
|
237
243
|
|
|
238
|
-
def wait(
|
|
239
|
-
self,
|
|
240
|
-
**kwargs: Unpack[DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef],
|
|
244
|
+
def wait( # type: ignore[override]
|
|
245
|
+
self, **kwargs: Unpack[DescribeProcessingJobRequestWaitTypeDef]
|
|
241
246
|
) -> None:
|
|
242
247
|
"""
|
|
243
248
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
@@ -251,8 +256,8 @@ class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
251
256
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
252
257
|
"""
|
|
253
258
|
|
|
254
|
-
def wait(
|
|
255
|
-
self, **kwargs: Unpack[
|
|
259
|
+
def wait( # type: ignore[override]
|
|
260
|
+
self, **kwargs: Unpack[DescribeTrainingJobRequestWaitTypeDef]
|
|
256
261
|
) -> None:
|
|
257
262
|
"""
|
|
258
263
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
@@ -266,8 +271,8 @@ class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
|
266
271
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
267
272
|
"""
|
|
268
273
|
|
|
269
|
-
def wait(
|
|
270
|
-
self, **kwargs: Unpack[
|
|
274
|
+
def wait( # type: ignore[override]
|
|
275
|
+
self, **kwargs: Unpack[DescribeTransformJobRequestWaitTypeDef]
|
|
271
276
|
) -> None:
|
|
272
277
|
"""
|
|
273
278
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
mypy_boto3_sagemaker/waiter.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
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
6
|
Usage::
|
|
7
7
|
|
|
@@ -46,24 +46,20 @@ Usage::
|
|
|
46
46
|
Copyright 2024 Vlad Emelianov
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
|
+
from __future__ import annotations
|
|
50
|
+
|
|
49
51
|
import sys
|
|
50
52
|
|
|
51
53
|
from botocore.waiter import Waiter
|
|
52
54
|
|
|
53
55
|
from .type_defs import (
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
DescribeNotebookInstanceInputNotebookInstanceDeletedWaitTypeDef,
|
|
62
|
-
DescribeNotebookInstanceInputNotebookInstanceInServiceWaitTypeDef,
|
|
63
|
-
DescribeNotebookInstanceInputNotebookInstanceStoppedWaitTypeDef,
|
|
64
|
-
DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef,
|
|
65
|
-
DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef,
|
|
66
|
-
DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef,
|
|
56
|
+
DescribeEndpointInputWaitTypeDef,
|
|
57
|
+
DescribeImageRequestWaitTypeDef,
|
|
58
|
+
DescribeImageVersionRequestWaitTypeDef,
|
|
59
|
+
DescribeNotebookInstanceInputWaitTypeDef,
|
|
60
|
+
DescribeProcessingJobRequestWaitTypeDef,
|
|
61
|
+
DescribeTrainingJobRequestWaitTypeDef,
|
|
62
|
+
DescribeTransformJobRequestWaitTypeDef,
|
|
67
63
|
)
|
|
68
64
|
|
|
69
65
|
if sys.version_info >= (3, 12):
|
|
@@ -92,7 +88,9 @@ class EndpointDeletedWaiter(Waiter):
|
|
|
92
88
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted)
|
|
93
89
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
94
90
|
"""
|
|
95
|
-
def wait(
|
|
91
|
+
def wait( # type: ignore[override]
|
|
92
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
|
|
93
|
+
) -> None:
|
|
96
94
|
"""
|
|
97
95
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointDeleted.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
98
96
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
@@ -103,7 +101,9 @@ class EndpointInServiceWaiter(Waiter):
|
|
|
103
101
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService)
|
|
104
102
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
105
103
|
"""
|
|
106
|
-
def wait(
|
|
104
|
+
def wait( # type: ignore[override]
|
|
105
|
+
self, **kwargs: Unpack[DescribeEndpointInputWaitTypeDef]
|
|
106
|
+
) -> None:
|
|
107
107
|
"""
|
|
108
108
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/EndpointInService.html#SageMaker.Waiter.EndpointInService.wait)
|
|
109
109
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
@@ -114,7 +114,9 @@ class ImageCreatedWaiter(Waiter):
|
|
|
114
114
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated)
|
|
115
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
116
116
|
"""
|
|
117
|
-
def wait(
|
|
117
|
+
def wait( # type: ignore[override]
|
|
118
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
119
|
+
) -> None:
|
|
118
120
|
"""
|
|
119
121
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageCreated.html#SageMaker.Waiter.ImageCreated.wait)
|
|
120
122
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
@@ -125,7 +127,9 @@ class ImageDeletedWaiter(Waiter):
|
|
|
125
127
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted)
|
|
126
128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
127
129
|
"""
|
|
128
|
-
def wait(
|
|
130
|
+
def wait( # type: ignore[override]
|
|
131
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
132
|
+
) -> None:
|
|
129
133
|
"""
|
|
130
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageDeleted.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
131
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
@@ -136,7 +140,9 @@ class ImageUpdatedWaiter(Waiter):
|
|
|
136
140
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated)
|
|
137
141
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
138
142
|
"""
|
|
139
|
-
def wait(
|
|
143
|
+
def wait( # type: ignore[override]
|
|
144
|
+
self, **kwargs: Unpack[DescribeImageRequestWaitTypeDef]
|
|
145
|
+
) -> None:
|
|
140
146
|
"""
|
|
141
147
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageUpdated.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
142
148
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
@@ -147,8 +153,8 @@ class ImageVersionCreatedWaiter(Waiter):
|
|
|
147
153
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated)
|
|
148
154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
149
155
|
"""
|
|
150
|
-
def wait(
|
|
151
|
-
self, **kwargs: Unpack[
|
|
156
|
+
def wait( # type: ignore[override]
|
|
157
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitTypeDef]
|
|
152
158
|
) -> None:
|
|
153
159
|
"""
|
|
154
160
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionCreated.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
@@ -160,8 +166,8 @@ class ImageVersionDeletedWaiter(Waiter):
|
|
|
160
166
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
161
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
162
168
|
"""
|
|
163
|
-
def wait(
|
|
164
|
-
self, **kwargs: Unpack[
|
|
169
|
+
def wait( # type: ignore[override]
|
|
170
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestWaitTypeDef]
|
|
165
171
|
) -> None:
|
|
166
172
|
"""
|
|
167
173
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ImageVersionDeleted.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
@@ -173,8 +179,8 @@ class NotebookInstanceDeletedWaiter(Waiter):
|
|
|
173
179
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
174
180
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
175
181
|
"""
|
|
176
|
-
def wait(
|
|
177
|
-
self, **kwargs: Unpack[
|
|
182
|
+
def wait( # type: ignore[override]
|
|
183
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
178
184
|
) -> None:
|
|
179
185
|
"""
|
|
180
186
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceDeleted.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
@@ -186,8 +192,8 @@ class NotebookInstanceInServiceWaiter(Waiter):
|
|
|
186
192
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
187
193
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
188
194
|
"""
|
|
189
|
-
def wait(
|
|
190
|
-
self, **kwargs: Unpack[
|
|
195
|
+
def wait( # type: ignore[override]
|
|
196
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
191
197
|
) -> None:
|
|
192
198
|
"""
|
|
193
199
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceInService.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
@@ -199,8 +205,8 @@ class NotebookInstanceStoppedWaiter(Waiter):
|
|
|
199
205
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
200
206
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
201
207
|
"""
|
|
202
|
-
def wait(
|
|
203
|
-
self, **kwargs: Unpack[
|
|
208
|
+
def wait( # type: ignore[override]
|
|
209
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputWaitTypeDef]
|
|
204
210
|
) -> None:
|
|
205
211
|
"""
|
|
206
212
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/NotebookInstanceStopped.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
@@ -212,9 +218,8 @@ class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
212
218
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
213
219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
214
220
|
"""
|
|
215
|
-
def wait(
|
|
216
|
-
self,
|
|
217
|
-
**kwargs: Unpack[DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef],
|
|
221
|
+
def wait( # type: ignore[override]
|
|
222
|
+
self, **kwargs: Unpack[DescribeProcessingJobRequestWaitTypeDef]
|
|
218
223
|
) -> None:
|
|
219
224
|
"""
|
|
220
225
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/ProcessingJobCompletedOrStopped.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
@@ -226,8 +231,8 @@ class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
226
231
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
227
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
228
233
|
"""
|
|
229
|
-
def wait(
|
|
230
|
-
self, **kwargs: Unpack[
|
|
234
|
+
def wait( # type: ignore[override]
|
|
235
|
+
self, **kwargs: Unpack[DescribeTrainingJobRequestWaitTypeDef]
|
|
231
236
|
) -> None:
|
|
232
237
|
"""
|
|
233
238
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TrainingJobCompletedOrStopped.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
@@ -239,8 +244,8 @@ class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
|
239
244
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
240
245
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
241
246
|
"""
|
|
242
|
-
def wait(
|
|
243
|
-
self, **kwargs: Unpack[
|
|
247
|
+
def wait( # type: ignore[override]
|
|
248
|
+
self, **kwargs: Unpack[DescribeTransformJobRequestWaitTypeDef]
|
|
244
249
|
) -> None:
|
|
245
250
|
"""
|
|
246
251
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker/waiter/TransformJobCompletedOrStopped.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.35.
|
|
3
|
+
Version: 1.35.86
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.35.86 service generated with mypy-boto3-builder 8.7.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
|
|
@@ -9,7 +9,7 @@ License: MIT License
|
|
|
9
9
|
Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/
|
|
10
10
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
11
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3 sagemaker type-annotations
|
|
12
|
+
Keywords: boto3 sagemaker boto3-stubs type-annotations mypy typeshed autocomplete
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 SageMaker 1.35.
|
|
46
|
+
Type annotations for [boto3 SageMaker 1.35.86](https://pypi.org/project/boto3/)
|
|
47
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -51,8 +51,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
51
51
|
[mypy](https://github.com/python/mypy),
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
|
-
Generated
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
54
|
+
Generated with
|
|
55
|
+
[mypy-boto3-builder 8.7.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -60,10 +60,11 @@ More information can be found on
|
|
|
60
60
|
|
|
61
61
|
See how it helps you find and fix potential bugs:
|
|
62
62
|
|
|
63
|
-

|
|
64
64
|
|
|
65
65
|
- [mypy-boto3-sagemaker](#mypy-boto3-sagemaker)
|
|
66
66
|
- [How to install](#how-to-install)
|
|
67
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
|
67
68
|
- [VSCode extension](#vscode-extension)
|
|
68
69
|
- [From PyPI with pip](#from-pypi-with-pip)
|
|
69
70
|
- [How to uninstall](#how-to-uninstall)
|
|
@@ -75,6 +76,7 @@ See how it helps you find and fix potential bugs:
|
|
|
75
76
|
- [Other IDEs](#other-ides)
|
|
76
77
|
- [mypy](#mypy)
|
|
77
78
|
- [pyright](#pyright)
|
|
79
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
78
80
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
79
81
|
- [Client annotations](#client-annotations)
|
|
80
82
|
- [Paginators annotations](#paginators-annotations)
|
|
@@ -94,6 +96,21 @@ See how it helps you find and fix potential bugs:
|
|
|
94
96
|
|
|
95
97
|
## How to install
|
|
96
98
|
|
|
99
|
+
<a id="generate-locally-(recommended)"></a>
|
|
100
|
+
|
|
101
|
+
### Generate locally (recommended)
|
|
102
|
+
|
|
103
|
+
You can generate type annotations for `boto3` package locally with
|
|
104
|
+
`mypy_boto3_builder`. Use
|
|
105
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
106
|
+
isolation.
|
|
107
|
+
|
|
108
|
+
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
+
`uvx --with 'boto3==1.35.86' mypy_boto3_builder`
|
|
110
|
+
2. Select `boto3-stubs` AWS SDK.
|
|
111
|
+
3. Add `SageMaker` service.
|
|
112
|
+
4. Use provided commands to install generated packages.
|
|
113
|
+
|
|
97
114
|
<a id="vscode-extension"></a>
|
|
98
115
|
|
|
99
116
|
### VSCode extension
|
|
@@ -114,12 +131,10 @@ Install `boto3-stubs` for `SageMaker` service.
|
|
|
114
131
|
# install with boto3 type annotations
|
|
115
132
|
python -m pip install 'boto3-stubs[sagemaker]'
|
|
116
133
|
|
|
117
|
-
|
|
118
134
|
# Lite version does not provide session.client/resource overloads
|
|
119
135
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
120
136
|
python -m pip install 'boto3-stubs-lite[sagemaker]'
|
|
121
137
|
|
|
122
|
-
|
|
123
138
|
# standalone installation
|
|
124
139
|
python -m pip install mypy-boto3-sagemaker
|
|
125
140
|
```
|
|
@@ -268,6 +283,31 @@ Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
|
268
283
|
Type checking should now work. No explicit type annotations required, write
|
|
269
284
|
your `boto3` code as usual.
|
|
270
285
|
|
|
286
|
+
<a id="pylint-compatibility"></a>
|
|
287
|
+
|
|
288
|
+
### Pylint compatibility
|
|
289
|
+
|
|
290
|
+
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
|
|
291
|
+
`mypy-boto3-sagemaker` dependency in production. However, there is an issue in
|
|
292
|
+
`pylint` that it complains about undefined variables. To fix it, set all types
|
|
293
|
+
to `object` in non-`TYPE_CHECKING` mode.
|
|
294
|
+
|
|
295
|
+
```python
|
|
296
|
+
from typing import TYPE_CHECKING
|
|
297
|
+
|
|
298
|
+
if TYPE_CHECKING:
|
|
299
|
+
from mypy_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
300
|
+
from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
301
|
+
from mypy_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
302
|
+
else:
|
|
303
|
+
EC2Client = object
|
|
304
|
+
EC2ServiceResource = object
|
|
305
|
+
BundleTaskCompleteWaiter = object
|
|
306
|
+
DescribeVolumesPaginator = object
|
|
307
|
+
|
|
308
|
+
...
|
|
309
|
+
```
|
|
310
|
+
|
|
271
311
|
<a id="explicit-type-annotations"></a>
|
|
272
312
|
|
|
273
313
|
## Explicit type annotations
|
|
@@ -310,9 +350,11 @@ from mypy_boto3_sagemaker.paginator import (
|
|
|
310
350
|
ListAutoMLJobsPaginator,
|
|
311
351
|
ListCandidatesForAutoMLJobPaginator,
|
|
312
352
|
ListClusterNodesPaginator,
|
|
353
|
+
ListClusterSchedulerConfigsPaginator,
|
|
313
354
|
ListClustersPaginator,
|
|
314
355
|
ListCodeRepositoriesPaginator,
|
|
315
356
|
ListCompilationJobsPaginator,
|
|
357
|
+
ListComputeQuotasPaginator,
|
|
316
358
|
ListContextsPaginator,
|
|
317
359
|
ListDataQualityJobDefinitionsPaginator,
|
|
318
360
|
ListDeviceFleetsPaginator,
|
|
@@ -354,6 +396,7 @@ from mypy_boto3_sagemaker.paginator import (
|
|
|
354
396
|
ListNotebookInstanceLifecycleConfigsPaginator,
|
|
355
397
|
ListNotebookInstancesPaginator,
|
|
356
398
|
ListOptimizationJobsPaginator,
|
|
399
|
+
ListPartnerAppsPaginator,
|
|
357
400
|
ListPipelineExecutionStepsPaginator,
|
|
358
401
|
ListPipelineExecutionsPaginator,
|
|
359
402
|
ListPipelineParametersForExecutionPaginator,
|
|
@@ -367,6 +410,7 @@ from mypy_boto3_sagemaker.paginator import (
|
|
|
367
410
|
ListTagsPaginator,
|
|
368
411
|
ListTrainingJobsForHyperParameterTuningJobPaginator,
|
|
369
412
|
ListTrainingJobsPaginator,
|
|
413
|
+
ListTrainingPlansPaginator,
|
|
370
414
|
ListTransformJobsPaginator,
|
|
371
415
|
ListTrialComponentsPaginator,
|
|
372
416
|
ListTrialsPaginator,
|
|
@@ -394,6 +438,9 @@ list_candidates_for_auto_ml_job_paginator: ListCandidatesForAutoMLJobPaginator =
|
|
|
394
438
|
client.get_paginator("list_candidates_for_auto_ml_job")
|
|
395
439
|
)
|
|
396
440
|
list_cluster_nodes_paginator: ListClusterNodesPaginator = client.get_paginator("list_cluster_nodes")
|
|
441
|
+
list_cluster_scheduler_configs_paginator: ListClusterSchedulerConfigsPaginator = (
|
|
442
|
+
client.get_paginator("list_cluster_scheduler_configs")
|
|
443
|
+
)
|
|
397
444
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
398
445
|
list_code_repositories_paginator: ListCodeRepositoriesPaginator = client.get_paginator(
|
|
399
446
|
"list_code_repositories"
|
|
@@ -401,6 +448,9 @@ list_code_repositories_paginator: ListCodeRepositoriesPaginator = client.get_pag
|
|
|
401
448
|
list_compilation_jobs_paginator: ListCompilationJobsPaginator = client.get_paginator(
|
|
402
449
|
"list_compilation_jobs"
|
|
403
450
|
)
|
|
451
|
+
list_compute_quotas_paginator: ListComputeQuotasPaginator = client.get_paginator(
|
|
452
|
+
"list_compute_quotas"
|
|
453
|
+
)
|
|
404
454
|
list_contexts_paginator: ListContextsPaginator = client.get_paginator("list_contexts")
|
|
405
455
|
list_data_quality_job_definitions_paginator: ListDataQualityJobDefinitionsPaginator = (
|
|
406
456
|
client.get_paginator("list_data_quality_job_definitions")
|
|
@@ -504,6 +554,7 @@ list_notebook_instances_paginator: ListNotebookInstancesPaginator = client.get_p
|
|
|
504
554
|
list_optimization_jobs_paginator: ListOptimizationJobsPaginator = client.get_paginator(
|
|
505
555
|
"list_optimization_jobs"
|
|
506
556
|
)
|
|
557
|
+
list_partner_apps_paginator: ListPartnerAppsPaginator = client.get_paginator("list_partner_apps")
|
|
507
558
|
list_pipeline_execution_steps_paginator: ListPipelineExecutionStepsPaginator = client.get_paginator(
|
|
508
559
|
"list_pipeline_execution_steps"
|
|
509
560
|
)
|
|
@@ -533,6 +584,9 @@ list_training_jobs_for_hyper_parameter_tuning_job_paginator: ListTrainingJobsFor
|
|
|
533
584
|
"list_training_jobs_for_hyper_parameter_tuning_job"
|
|
534
585
|
)
|
|
535
586
|
list_training_jobs_paginator: ListTrainingJobsPaginator = client.get_paginator("list_training_jobs")
|
|
587
|
+
list_training_plans_paginator: ListTrainingPlansPaginator = client.get_paginator(
|
|
588
|
+
"list_training_plans"
|
|
589
|
+
)
|
|
536
590
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator(
|
|
537
591
|
"list_transform_jobs"
|
|
538
592
|
)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=1dhTcsW6YDsy1ZfKkGI38VUMx5aRfIU38uLx8DGmMsQ,20779
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=BGr_znBC4FxDq9f6LYMR2XxCxayB8AxU-pLlEQCryEY,20778
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=0PyZ6uiA-20rWnQ1OMx9DO7aMIL5hKUNf4Zo0kU8tMM,991
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=w8PxrsM-x9vuFDHTq4G1lNUkqB61St2cly1DfbH6yHo,273091
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=6Pdl5OcuI9_iXV4SvV8b1_gvZ2TsgDZwwUvj87qGr8U,273088
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=uqKFns4l-e0XNjvLniVyUB2iJbF2V20wkWHvvjYaCbU,78836
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=rFbjhly1csGm0ylVctxl6BGQds9kaZW3GM7FATWYS9A,78834
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=HqXMZ-QsPxun_4-Ll-iRGGFLQ7PXg3SaETpKIElWlb0,113965
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=x_H-qKsNOi0dxaIu4wpQ4oNdrTOsBPJ77Jj2SxzsvQU,113730
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=TVWPgDtKR_7Eu7kSqMb3tq1sbYvu5FnoGatj4B1Br0w,456189
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=PA2r5Bqk-vT_04Wi2Ag8S19E-5ps0zOYYW5evHx2xwI,454652
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=R7ca4mwTpgac6S4rPbB0dyM2ChqlwVrwpVhiVVMCC_k,93
|
|
14
|
+
mypy_boto3_sagemaker/waiter.py,sha256=1Rar97caLIY-e4wJRWb3ffFEQ4wochXrAtz6bX1xkXE,14752
|
|
15
|
+
mypy_boto3_sagemaker/waiter.pyi,sha256=I_RYLxqX9YnINwtgb_uOXmDIMPSsy_Q4DbsEk7yHspY,14725
|
|
16
|
+
mypy_boto3_sagemaker-1.35.86.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.35.86.dist-info/METADATA,sha256=qn-jMnousYyk86-5iU-4Hr5O0RIxS5oTnFDejE3-qU4,28521
|
|
18
|
+
mypy_boto3_sagemaker-1.35.86.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
+
mypy_boto3_sagemaker-1.35.86.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.35.86.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=c_BpdLyoMwjra3k6Y-a7ZEg4xjHIgMJpH5EI9ALNncY,19889
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=TREr5gIgLR7Tb6oKo0Nc1NsvI7tTAySX6l6pWhquO2o,19888
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=pEfJqfHtWSEbJRl6hIEd3tHf-NpMquTYhBCvmo4lv54,957
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=jww0Wka9nZKZTPtjK0kqfwTFBt8E3fzJyrV-i1RJzM8,249644
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=p3EQxJM4YgvD_5Vumlz9X2oUXsRsQzn-KBIrvABTffI,249640
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=zfrf5aKIctGzw8z7vxLHJZmFhbki_trFxW2nQYGOxIM,75055
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=J2qi8NtSJuTLoEXAqeJHz7LmtNKJzs-VQRbju4cpP58,75053
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=D7Ln-RHzxiob2rZCpXl__wSf_6cWRr5-9j3Vtk3eMzM,93794
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=hnWdLyIT-BeicGxvmArL0Eb2UdbAbN0-BR47KLI3ttI,93643
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=Cje4w5--5RYJz-I1FcVtQY1un4a-Uco3w5CNuzGkynY,441331
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=VLUX_UIXjcyckG_RU9Yy5ZXem9c4huxFcqF4uvPUyUY,439852
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=PcdOPBWwsAGW5n9X_5Y2mhMlza_5GJh35mY9J_rFf8Q,93
|
|
14
|
-
mypy_boto3_sagemaker/waiter.py,sha256=lFZNGbgWtR7c6Au8ED42rwrmoaxdTq3gCrC9SozEVbY,15104
|
|
15
|
-
mypy_boto3_sagemaker/waiter.pyi,sha256=nsVNAnPyopzM3cXozPgBDq6IfeVhbmNZKxBpp7Yvf4Q,15077
|
|
16
|
-
mypy_boto3_sagemaker-1.35.68.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.35.68.dist-info/METADATA,sha256=Q52tu1rCAe0KhVJz6MJG83mBIUZZAyysosc5La8JfLE,26581
|
|
18
|
-
mypy_boto3_sagemaker-1.35.68.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
-
mypy_boto3_sagemaker-1.35.68.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.35.68.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_sagemaker-1.35.68.dist-info → mypy_boto3_sagemaker-1.35.86.dist-info}/top_level.txt
RENAMED
|
File without changes
|