mypy-boto3-sagemaker 1.35.0__py3-none-any.whl → 1.35.13__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 +1 -0
- mypy_boto3_sagemaker/__main__.py +4 -4
- mypy_boto3_sagemaker/client.py +796 -2097
- mypy_boto3_sagemaker/client.pyi +795 -2097
- mypy_boto3_sagemaker/literals.py +7 -1
- mypy_boto3_sagemaker/literals.pyi +5 -1
- mypy_boto3_sagemaker/paginator.py +184 -730
- mypy_boto3_sagemaker/paginator.pyi +182 -804
- mypy_boto3_sagemaker/type_defs.py +351 -996
- mypy_boto3_sagemaker/type_defs.pyi +351 -997
- mypy_boto3_sagemaker/version.py +1 -1
- mypy_boto3_sagemaker/waiter.py +49 -24
- mypy_boto3_sagemaker/waiter.pyi +48 -37
- {mypy_boto3_sagemaker-1.35.0.dist-info → mypy_boto3_sagemaker-1.35.13.dist-info}/METADATA +19 -20
- mypy_boto3_sagemaker-1.35.13.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.35.0.dist-info → mypy_boto3_sagemaker-1.35.13.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.35.0.dist-info → mypy_boto3_sagemaker-1.35.13.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.35.0.dist-info → mypy_boto3_sagemaker-1.35.13.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/version.py
CHANGED
mypy_boto3_sagemaker/waiter.py
CHANGED
|
@@ -44,9 +44,31 @@ Usage::
|
|
|
44
44
|
```
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
|
+
import sys
|
|
48
|
+
|
|
47
49
|
from botocore.waiter import Waiter
|
|
48
50
|
|
|
49
|
-
from .type_defs import
|
|
51
|
+
from .type_defs import (
|
|
52
|
+
DescribeEndpointInputEndpointDeletedWaitTypeDef,
|
|
53
|
+
DescribeEndpointInputEndpointInServiceWaitTypeDef,
|
|
54
|
+
DescribeImageRequestImageCreatedWaitTypeDef,
|
|
55
|
+
DescribeImageRequestImageDeletedWaitTypeDef,
|
|
56
|
+
DescribeImageRequestImageUpdatedWaitTypeDef,
|
|
57
|
+
DescribeImageVersionRequestImageVersionCreatedWaitTypeDef,
|
|
58
|
+
DescribeImageVersionRequestImageVersionDeletedWaitTypeDef,
|
|
59
|
+
DescribeNotebookInstanceInputNotebookInstanceDeletedWaitTypeDef,
|
|
60
|
+
DescribeNotebookInstanceInputNotebookInstanceInServiceWaitTypeDef,
|
|
61
|
+
DescribeNotebookInstanceInputNotebookInstanceStoppedWaitTypeDef,
|
|
62
|
+
DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef,
|
|
63
|
+
DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef,
|
|
64
|
+
DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef,
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
if sys.version_info >= (3, 12):
|
|
68
|
+
from typing import Unpack
|
|
69
|
+
else:
|
|
70
|
+
from typing_extensions import Unpack
|
|
71
|
+
|
|
50
72
|
|
|
51
73
|
__all__ = (
|
|
52
74
|
"EndpointDeletedWaiter",
|
|
@@ -71,7 +93,7 @@ class EndpointDeletedWaiter(Waiter):
|
|
|
71
93
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
72
94
|
"""
|
|
73
95
|
|
|
74
|
-
def wait(self,
|
|
96
|
+
def wait(self, **kwargs: Unpack[DescribeEndpointInputEndpointDeletedWaitTypeDef]) -> None:
|
|
75
97
|
"""
|
|
76
98
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
77
99
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
@@ -84,7 +106,7 @@ class EndpointInServiceWaiter(Waiter):
|
|
|
84
106
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
85
107
|
"""
|
|
86
108
|
|
|
87
|
-
def wait(self,
|
|
109
|
+
def wait(self, **kwargs: Unpack[DescribeEndpointInputEndpointInServiceWaitTypeDef]) -> None:
|
|
88
110
|
"""
|
|
89
111
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService.wait)
|
|
90
112
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
@@ -97,7 +119,7 @@ class ImageCreatedWaiter(Waiter):
|
|
|
97
119
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
98
120
|
"""
|
|
99
121
|
|
|
100
|
-
def wait(self,
|
|
122
|
+
def wait(self, **kwargs: Unpack[DescribeImageRequestImageCreatedWaitTypeDef]) -> None:
|
|
101
123
|
"""
|
|
102
124
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated.wait)
|
|
103
125
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
@@ -110,7 +132,7 @@ class ImageDeletedWaiter(Waiter):
|
|
|
110
132
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
111
133
|
"""
|
|
112
134
|
|
|
113
|
-
def wait(self,
|
|
135
|
+
def wait(self, **kwargs: Unpack[DescribeImageRequestImageDeletedWaitTypeDef]) -> None:
|
|
114
136
|
"""
|
|
115
137
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
116
138
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
@@ -123,7 +145,7 @@ class ImageUpdatedWaiter(Waiter):
|
|
|
123
145
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
124
146
|
"""
|
|
125
147
|
|
|
126
|
-
def wait(self,
|
|
148
|
+
def wait(self, **kwargs: Unpack[DescribeImageRequestImageUpdatedWaitTypeDef]) -> None:
|
|
127
149
|
"""
|
|
128
150
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
129
151
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
@@ -137,12 +159,7 @@ class ImageVersionCreatedWaiter(Waiter):
|
|
|
137
159
|
"""
|
|
138
160
|
|
|
139
161
|
def wait(
|
|
140
|
-
self,
|
|
141
|
-
*,
|
|
142
|
-
ImageName: str,
|
|
143
|
-
Version: int = ...,
|
|
144
|
-
Alias: str = ...,
|
|
145
|
-
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
162
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestImageVersionCreatedWaitTypeDef]
|
|
146
163
|
) -> None:
|
|
147
164
|
"""
|
|
148
165
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
@@ -157,12 +174,7 @@ class ImageVersionDeletedWaiter(Waiter):
|
|
|
157
174
|
"""
|
|
158
175
|
|
|
159
176
|
def wait(
|
|
160
|
-
self,
|
|
161
|
-
*,
|
|
162
|
-
ImageName: str,
|
|
163
|
-
Version: int = ...,
|
|
164
|
-
Alias: str = ...,
|
|
165
|
-
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
177
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestImageVersionDeletedWaitTypeDef]
|
|
166
178
|
) -> None:
|
|
167
179
|
"""
|
|
168
180
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
@@ -176,7 +188,9 @@ class NotebookInstanceDeletedWaiter(Waiter):
|
|
|
176
188
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
177
189
|
"""
|
|
178
190
|
|
|
179
|
-
def wait(
|
|
191
|
+
def wait(
|
|
192
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceDeletedWaitTypeDef]
|
|
193
|
+
) -> None:
|
|
180
194
|
"""
|
|
181
195
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
182
196
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
@@ -189,7 +203,9 @@ class NotebookInstanceInServiceWaiter(Waiter):
|
|
|
189
203
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
190
204
|
"""
|
|
191
205
|
|
|
192
|
-
def wait(
|
|
206
|
+
def wait(
|
|
207
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceInServiceWaitTypeDef]
|
|
208
|
+
) -> None:
|
|
193
209
|
"""
|
|
194
210
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
195
211
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
@@ -202,7 +218,9 @@ class NotebookInstanceStoppedWaiter(Waiter):
|
|
|
202
218
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
203
219
|
"""
|
|
204
220
|
|
|
205
|
-
def wait(
|
|
221
|
+
def wait(
|
|
222
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceStoppedWaitTypeDef]
|
|
223
|
+
) -> None:
|
|
206
224
|
"""
|
|
207
225
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
208
226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
@@ -215,7 +233,10 @@ class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
215
233
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
216
234
|
"""
|
|
217
235
|
|
|
218
|
-
def wait(
|
|
236
|
+
def wait(
|
|
237
|
+
self,
|
|
238
|
+
**kwargs: Unpack[DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef],
|
|
239
|
+
) -> None:
|
|
219
240
|
"""
|
|
220
241
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
221
242
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
@@ -228,7 +249,9 @@ class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
228
249
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
229
250
|
"""
|
|
230
251
|
|
|
231
|
-
def wait(
|
|
252
|
+
def wait(
|
|
253
|
+
self, **kwargs: Unpack[DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef]
|
|
254
|
+
) -> None:
|
|
232
255
|
"""
|
|
233
256
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
234
257
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
@@ -241,7 +264,9 @@ class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
|
241
264
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
242
265
|
"""
|
|
243
266
|
|
|
244
|
-
def wait(
|
|
267
|
+
def wait(
|
|
268
|
+
self, **kwargs: Unpack[DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef]
|
|
269
|
+
) -> None:
|
|
245
270
|
"""
|
|
246
271
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
247
272
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
mypy_boto3_sagemaker/waiter.pyi
CHANGED
|
@@ -44,9 +44,30 @@ Usage::
|
|
|
44
44
|
```
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
|
+
import sys
|
|
48
|
+
|
|
47
49
|
from botocore.waiter import Waiter
|
|
48
50
|
|
|
49
|
-
from .type_defs import
|
|
51
|
+
from .type_defs import (
|
|
52
|
+
DescribeEndpointInputEndpointDeletedWaitTypeDef,
|
|
53
|
+
DescribeEndpointInputEndpointInServiceWaitTypeDef,
|
|
54
|
+
DescribeImageRequestImageCreatedWaitTypeDef,
|
|
55
|
+
DescribeImageRequestImageDeletedWaitTypeDef,
|
|
56
|
+
DescribeImageRequestImageUpdatedWaitTypeDef,
|
|
57
|
+
DescribeImageVersionRequestImageVersionCreatedWaitTypeDef,
|
|
58
|
+
DescribeImageVersionRequestImageVersionDeletedWaitTypeDef,
|
|
59
|
+
DescribeNotebookInstanceInputNotebookInstanceDeletedWaitTypeDef,
|
|
60
|
+
DescribeNotebookInstanceInputNotebookInstanceInServiceWaitTypeDef,
|
|
61
|
+
DescribeNotebookInstanceInputNotebookInstanceStoppedWaitTypeDef,
|
|
62
|
+
DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef,
|
|
63
|
+
DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef,
|
|
64
|
+
DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef,
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
if sys.version_info >= (3, 12):
|
|
68
|
+
from typing import Unpack
|
|
69
|
+
else:
|
|
70
|
+
from typing_extensions import Unpack
|
|
50
71
|
|
|
51
72
|
__all__ = (
|
|
52
73
|
"EndpointDeletedWaiter",
|
|
@@ -69,8 +90,7 @@ class EndpointDeletedWaiter(Waiter):
|
|
|
69
90
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted)
|
|
70
91
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
71
92
|
"""
|
|
72
|
-
|
|
73
|
-
def wait(self, *, EndpointName: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
93
|
+
def wait(self, **kwargs: Unpack[DescribeEndpointInputEndpointDeletedWaitTypeDef]) -> None:
|
|
74
94
|
"""
|
|
75
95
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointDeleted.wait)
|
|
76
96
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointdeletedwaiter)
|
|
@@ -81,8 +101,7 @@ class EndpointInServiceWaiter(Waiter):
|
|
|
81
101
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService)
|
|
82
102
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
83
103
|
"""
|
|
84
|
-
|
|
85
|
-
def wait(self, *, EndpointName: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
104
|
+
def wait(self, **kwargs: Unpack[DescribeEndpointInputEndpointInServiceWaitTypeDef]) -> None:
|
|
86
105
|
"""
|
|
87
106
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.EndpointInService.wait)
|
|
88
107
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#endpointinservicewaiter)
|
|
@@ -93,8 +112,7 @@ class ImageCreatedWaiter(Waiter):
|
|
|
93
112
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated)
|
|
94
113
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
95
114
|
"""
|
|
96
|
-
|
|
97
|
-
def wait(self, *, ImageName: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
115
|
+
def wait(self, **kwargs: Unpack[DescribeImageRequestImageCreatedWaitTypeDef]) -> None:
|
|
98
116
|
"""
|
|
99
117
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageCreated.wait)
|
|
100
118
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagecreatedwaiter)
|
|
@@ -105,8 +123,7 @@ class ImageDeletedWaiter(Waiter):
|
|
|
105
123
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted)
|
|
106
124
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
107
125
|
"""
|
|
108
|
-
|
|
109
|
-
def wait(self, *, ImageName: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
126
|
+
def wait(self, **kwargs: Unpack[DescribeImageRequestImageDeletedWaitTypeDef]) -> None:
|
|
110
127
|
"""
|
|
111
128
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageDeleted.wait)
|
|
112
129
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imagedeletedwaiter)
|
|
@@ -117,8 +134,7 @@ class ImageUpdatedWaiter(Waiter):
|
|
|
117
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated)
|
|
118
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
119
136
|
"""
|
|
120
|
-
|
|
121
|
-
def wait(self, *, ImageName: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
137
|
+
def wait(self, **kwargs: Unpack[DescribeImageRequestImageUpdatedWaitTypeDef]) -> None:
|
|
122
138
|
"""
|
|
123
139
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageUpdated.wait)
|
|
124
140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageupdatedwaiter)
|
|
@@ -129,14 +145,8 @@ class ImageVersionCreatedWaiter(Waiter):
|
|
|
129
145
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated)
|
|
130
146
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversioncreatedwaiter)
|
|
131
147
|
"""
|
|
132
|
-
|
|
133
148
|
def wait(
|
|
134
|
-
self,
|
|
135
|
-
*,
|
|
136
|
-
ImageName: str,
|
|
137
|
-
Version: int = ...,
|
|
138
|
-
Alias: str = ...,
|
|
139
|
-
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
149
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestImageVersionCreatedWaitTypeDef]
|
|
140
150
|
) -> None:
|
|
141
151
|
"""
|
|
142
152
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionCreated.wait)
|
|
@@ -148,14 +158,8 @@ class ImageVersionDeletedWaiter(Waiter):
|
|
|
148
158
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted)
|
|
149
159
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#imageversiondeletedwaiter)
|
|
150
160
|
"""
|
|
151
|
-
|
|
152
161
|
def wait(
|
|
153
|
-
self,
|
|
154
|
-
*,
|
|
155
|
-
ImageName: str,
|
|
156
|
-
Version: int = ...,
|
|
157
|
-
Alias: str = ...,
|
|
158
|
-
WaiterConfig: WaiterConfigTypeDef = ...,
|
|
162
|
+
self, **kwargs: Unpack[DescribeImageVersionRequestImageVersionDeletedWaitTypeDef]
|
|
159
163
|
) -> None:
|
|
160
164
|
"""
|
|
161
165
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ImageVersionDeleted.wait)
|
|
@@ -167,8 +171,9 @@ class NotebookInstanceDeletedWaiter(Waiter):
|
|
|
167
171
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted)
|
|
168
172
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
169
173
|
"""
|
|
170
|
-
|
|
171
|
-
|
|
174
|
+
def wait(
|
|
175
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceDeletedWaitTypeDef]
|
|
176
|
+
) -> None:
|
|
172
177
|
"""
|
|
173
178
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceDeleted.wait)
|
|
174
179
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancedeletedwaiter)
|
|
@@ -179,8 +184,9 @@ class NotebookInstanceInServiceWaiter(Waiter):
|
|
|
179
184
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService)
|
|
180
185
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
181
186
|
"""
|
|
182
|
-
|
|
183
|
-
|
|
187
|
+
def wait(
|
|
188
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceInServiceWaitTypeDef]
|
|
189
|
+
) -> None:
|
|
184
190
|
"""
|
|
185
191
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceInService.wait)
|
|
186
192
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstanceinservicewaiter)
|
|
@@ -191,8 +197,9 @@ class NotebookInstanceStoppedWaiter(Waiter):
|
|
|
191
197
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped)
|
|
192
198
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
193
199
|
"""
|
|
194
|
-
|
|
195
|
-
|
|
200
|
+
def wait(
|
|
201
|
+
self, **kwargs: Unpack[DescribeNotebookInstanceInputNotebookInstanceStoppedWaitTypeDef]
|
|
202
|
+
) -> None:
|
|
196
203
|
"""
|
|
197
204
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.NotebookInstanceStopped.wait)
|
|
198
205
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#notebookinstancestoppedwaiter)
|
|
@@ -203,8 +210,10 @@ class ProcessingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
203
210
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped)
|
|
204
211
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
205
212
|
"""
|
|
206
|
-
|
|
207
|
-
|
|
213
|
+
def wait(
|
|
214
|
+
self,
|
|
215
|
+
**kwargs: Unpack[DescribeProcessingJobRequestProcessingJobCompletedOrStoppedWaitTypeDef],
|
|
216
|
+
) -> None:
|
|
208
217
|
"""
|
|
209
218
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.ProcessingJobCompletedOrStopped.wait)
|
|
210
219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#processingjobcompletedorstoppedwaiter)
|
|
@@ -215,8 +224,9 @@ class TrainingJobCompletedOrStoppedWaiter(Waiter):
|
|
|
215
224
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped)
|
|
216
225
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
217
226
|
"""
|
|
218
|
-
|
|
219
|
-
|
|
227
|
+
def wait(
|
|
228
|
+
self, **kwargs: Unpack[DescribeTrainingJobRequestTrainingJobCompletedOrStoppedWaitTypeDef]
|
|
229
|
+
) -> None:
|
|
220
230
|
"""
|
|
221
231
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TrainingJobCompletedOrStopped.wait)
|
|
222
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#trainingjobcompletedorstoppedwaiter)
|
|
@@ -227,8 +237,9 @@ class TransformJobCompletedOrStoppedWaiter(Waiter):
|
|
|
227
237
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped)
|
|
228
238
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
229
239
|
"""
|
|
230
|
-
|
|
231
|
-
|
|
240
|
+
def wait(
|
|
241
|
+
self, **kwargs: Unpack[DescribeTransformJobRequestTransformJobCompletedOrStoppedWaitTypeDef]
|
|
242
|
+
) -> None:
|
|
232
243
|
"""
|
|
233
244
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Waiter.TransformJobCompletedOrStopped.wait)
|
|
234
245
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/waiters/#transformjobcompletedorstoppedwaiter)
|
|
@@ -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.13
|
|
4
|
+
Summary: Type annotations for boto3.SageMaker 1.35.13 service generated with mypy-boto3-builder 8.0.1
|
|
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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.SageMaker 1.35.
|
|
46
|
+
[boto3.SageMaker 1.35.13](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder
|
|
55
|
+
[mypy-boto3-builder 8.0.1](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
|
|
@@ -231,7 +231,7 @@ should work.
|
|
|
231
231
|
- Install `boto3-stubs[sagemaker]` in your environment:
|
|
232
232
|
|
|
233
233
|
```bash
|
|
234
|
-
python -m pip install 'boto3-stubs[sagemaker]'
|
|
234
|
+
python -m pip install 'boto3-stubs[sagemaker]'
|
|
235
235
|
```
|
|
236
236
|
|
|
237
237
|
Type checking should now work. No explicit type annotations required, write
|
|
@@ -248,7 +248,7 @@ your `boto3` code as usual.
|
|
|
248
248
|
python -m pip install 'boto3-stubs[sagemaker]'
|
|
249
249
|
```
|
|
250
250
|
|
|
251
|
-
Optionally, you can install `boto3-stubs` to `typings`
|
|
251
|
+
Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
252
252
|
|
|
253
253
|
Type checking should now work. No explicit type annotations required, write
|
|
254
254
|
your `boto3` code as usual.
|
|
@@ -426,9 +426,9 @@ list_inference_components_paginator: ListInferenceComponentsPaginator = client.g
|
|
|
426
426
|
list_inference_experiments_paginator: ListInferenceExperimentsPaginator = client.get_paginator(
|
|
427
427
|
"list_inference_experiments"
|
|
428
428
|
)
|
|
429
|
-
list_inference_recommendations_job_steps_paginator: (
|
|
430
|
-
|
|
431
|
-
)
|
|
429
|
+
list_inference_recommendations_job_steps_paginator: ListInferenceRecommendationsJobStepsPaginator = client.get_paginator(
|
|
430
|
+
"list_inference_recommendations_job_steps"
|
|
431
|
+
)
|
|
432
432
|
list_inference_recommendations_jobs_paginator: ListInferenceRecommendationsJobsPaginator = (
|
|
433
433
|
client.get_paginator("list_inference_recommendations_jobs")
|
|
434
434
|
)
|
|
@@ -452,9 +452,9 @@ list_model_card_versions_paginator: ListModelCardVersionsPaginator = client.get_
|
|
|
452
452
|
"list_model_card_versions"
|
|
453
453
|
)
|
|
454
454
|
list_model_cards_paginator: ListModelCardsPaginator = client.get_paginator("list_model_cards")
|
|
455
|
-
list_model_explainability_job_definitions_paginator: (
|
|
456
|
-
|
|
457
|
-
)
|
|
455
|
+
list_model_explainability_job_definitions_paginator: ListModelExplainabilityJobDefinitionsPaginator = client.get_paginator(
|
|
456
|
+
"list_model_explainability_job_definitions"
|
|
457
|
+
)
|
|
458
458
|
list_model_metadata_paginator: ListModelMetadataPaginator = client.get_paginator(
|
|
459
459
|
"list_model_metadata"
|
|
460
460
|
)
|
|
@@ -480,9 +480,9 @@ list_monitoring_executions_paginator: ListMonitoringExecutionsPaginator = client
|
|
|
480
480
|
list_monitoring_schedules_paginator: ListMonitoringSchedulesPaginator = client.get_paginator(
|
|
481
481
|
"list_monitoring_schedules"
|
|
482
482
|
)
|
|
483
|
-
list_notebook_instance_lifecycle_configs_paginator: (
|
|
484
|
-
|
|
485
|
-
)
|
|
483
|
+
list_notebook_instance_lifecycle_configs_paginator: ListNotebookInstanceLifecycleConfigsPaginator = client.get_paginator(
|
|
484
|
+
"list_notebook_instance_lifecycle_configs"
|
|
485
|
+
)
|
|
486
486
|
list_notebook_instances_paginator: ListNotebookInstancesPaginator = client.get_paginator(
|
|
487
487
|
"list_notebook_instances"
|
|
488
488
|
)
|
|
@@ -515,9 +515,9 @@ list_subscribed_workteams_paginator: ListSubscribedWorkteamsPaginator = client.g
|
|
|
515
515
|
)
|
|
516
516
|
list_tags_paginator: ListTagsPaginator = client.get_paginator("list_tags")
|
|
517
517
|
list_training_jobs_paginator: ListTrainingJobsPaginator = client.get_paginator("list_training_jobs")
|
|
518
|
-
list_training_jobs_for_hyper_parameter_tuning_job_paginator: (
|
|
519
|
-
|
|
520
|
-
)
|
|
518
|
+
list_training_jobs_for_hyper_parameter_tuning_job_paginator: ListTrainingJobsForHyperParameterTuningJobPaginator = client.get_paginator(
|
|
519
|
+
"list_training_jobs_for_hyper_parameter_tuning_job"
|
|
520
|
+
)
|
|
521
521
|
list_transform_jobs_paginator: ListTransformJobsPaginator = client.get_paginator(
|
|
522
522
|
"list_transform_jobs"
|
|
523
523
|
)
|
|
@@ -637,8 +637,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
|
|
|
637
637
|
annotations extracted from `botocore` schemas.
|
|
638
638
|
- Type annotations include up-to-date documentation.
|
|
639
639
|
- Link to documentation is provided for every method.
|
|
640
|
-
- Code is processed by [
|
|
641
|
-
[isort](https://github.com/PyCQA/isort) for readability.
|
|
640
|
+
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
|
|
642
641
|
|
|
643
642
|
<a id="what's-new"></a>
|
|
644
643
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_sagemaker/__init__.py,sha256=b08-0nE22ES-AR3RJfmeB96l7Cu0WH35tk0vC5pvdko,19858
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=Oxh-kRhT-JvQkrKOLiGHPqwvvSOFR-MquOEW-y-4w7s,19857
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=bR0LSAxAkHzWqJSTwHdRWr6HUdt6Cy5hjJvgrf4ZKzY,926
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=Axh6X2mdQpbcf_nOtkhwG8U9XhWEWP_X_Jihg14qw0o,253556
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=FFJMDqf0LQijhw1b8vxyssfKNvVdZGPGYINGo--t95U,253552
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=Eb-NmAWLWNuekbUqVVjuYU4kc4U2dqVBxTE0nD6IB2Q,72370
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=LCGcUXmPQJsC97rnuf3txP_wbvMflau2k7a85aHy-8c,72368
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=JVxnUJtPpS6jz78bSSCwRO6DC1vXtbdCgVBMUQY70Q8,89269
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=0MaN2KE4RNJ3951h7i4PYtqpfb7HxpgwFc6vThXisP4,89118
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=Go0WM4NdPUA4NDtK0wM2WvE40Tj4I1JpLI6NJ-g4RLk,540340
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=yMv9kg-fSCUf4l0QdGkbpauMZTaV9gKlXlAG3YyjpzM,540339
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=Mqwsdq2avN-_xHsKfhTcjNjjmZ8BLcETeIidQfFPur8,62
|
|
14
|
+
mypy_boto3_sagemaker/waiter.py,sha256=KKO4niBCTQALrdlTnKuiWICQC8BmGDvYrjXnZWnpD0c,14331
|
|
15
|
+
mypy_boto3_sagemaker/waiter.pyi,sha256=4xauDS_2um-f-waElqVGiDnN_7TCaMkJa8j8DkaaNw4,14304
|
|
16
|
+
mypy_boto3_sagemaker-1.35.13.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.35.13.dist-info/METADATA,sha256=5IYQv2pzzCBENcQuCJRGpxwdy9rL2P2o_P1XNzg0Ui4,26039
|
|
18
|
+
mypy_boto3_sagemaker-1.35.13.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
19
|
+
mypy_boto3_sagemaker-1.35.13.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.35.13.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=Oxh-kRhT-JvQkrKOLiGHPqwvvSOFR-MquOEW-y-4w7s,19857
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=Oxh-kRhT-JvQkrKOLiGHPqwvvSOFR-MquOEW-y-4w7s,19857
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=H8zEn4TWOK3QSbjSOTDxQanRpLpkCaJ0CM7JlKWpHrA,924
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=eM3YS59qo8UVAcaY5caGfKiDutLhvCcjGxMTWV8NDJU,291725
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=NTV6lx3WyD5i3INExNfXxKHnDWfycjpJkNSTqYXCJ6U,291722
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=3Dbi0EAW0NhbGv3kFd4L6RL2h9Sg5LKV8mxhe-nogW4,72184
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=3Dbi0EAW0NhbGv3kFd4L6RL2h9Sg5LKV8mxhe-nogW4,72184
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=6N8KV1cqmGBSIZrZJtYRag4qQXQdPrLJHaCUHKRkSsg,105973
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=Kqh5JtGaxuqojThxdEKF35HQuioAjZO91aQQZXPIcDs,105898
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=-V23QzaK_ydxvD0Y3VUp2bgXXnJ5fE3z0e8clIr3l-k,567483
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=-V23QzaK_ydxvD0Y3VUp2bgXXnJ5fE3z0e8clIr3l-k,567483
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=LGeN8DOPs0tRcJcxZVxCtqSh0iyZT7lFggGF3KkSqhA,61
|
|
14
|
-
mypy_boto3_sagemaker/waiter.py,sha256=sgVFqtSXJD4pkx1f6t-BBp6hh61GjIp1IS2Iz_WJMaE,13323
|
|
15
|
-
mypy_boto3_sagemaker/waiter.pyi,sha256=vpObdrmi9_5qh3M5fkDnJRCj55lDcN_ZcNaoZOb1U4I,13310
|
|
16
|
-
mypy_boto3_sagemaker-1.35.0.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.35.0.dist-info/METADATA,sha256=N3crv22upycPAkEbxNWioKsRiN4xkX_oPPysXhZIK7c,26091
|
|
18
|
-
mypy_boto3_sagemaker-1.35.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
19
|
-
mypy_boto3_sagemaker-1.35.0.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.35.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sagemaker-1.35.0.dist-info → mypy_boto3_sagemaker-1.35.13.dist-info}/top_level.txt
RENAMED
|
File without changes
|