mypy-boto3-sagemaker 1.37.20__py3-none-any.whl → 1.37.23__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/__main__.py +3 -3
- mypy_boto3_sagemaker/literals.py +2 -0
- mypy_boto3_sagemaker/literals.pyi +2 -0
- mypy_boto3_sagemaker/type_defs.py +11 -0
- mypy_boto3_sagemaker/type_defs.pyi +10 -0
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.37.20.dist-info → mypy_boto3_sagemaker-1.37.23.dist-info}/METADATA +4 -4
- mypy_boto3_sagemaker-1.37.23.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.37.20.dist-info → mypy_boto3_sagemaker-1.37.23.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.37.20.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.37.20.dist-info → mypy_boto3_sagemaker-1.37.23.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.37.20.dist-info → mypy_boto3_sagemaker-1.37.23.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SageMaker 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.37.23\n"
|
|
16
|
+
"Version: 1.37.23\n"
|
|
17
17
|
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#sagemaker\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.23\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -332,6 +332,7 @@ __all__ = (
|
|
|
332
332
|
"RedshiftResultCompressionTypeType",
|
|
333
333
|
"RedshiftResultFormatType",
|
|
334
334
|
"RegionName",
|
|
335
|
+
"RelationType",
|
|
335
336
|
"RepositoryAccessModeType",
|
|
336
337
|
"ReservedCapacityInstanceTypeType",
|
|
337
338
|
"ReservedCapacityStatusType",
|
|
@@ -1811,6 +1812,7 @@ RecommendationStepTypeType = Literal["BENCHMARK"]
|
|
|
1811
1812
|
RecordWrapperType = Literal["None", "RecordIO"]
|
|
1812
1813
|
RedshiftResultCompressionTypeType = Literal["BZIP2", "GZIP", "None", "SNAPPY", "ZSTD"]
|
|
1813
1814
|
RedshiftResultFormatType = Literal["CSV", "PARQUET"]
|
|
1815
|
+
RelationType = Literal["EqualTo", "GreaterThanOrEqualTo"]
|
|
1814
1816
|
RepositoryAccessModeType = Literal["Platform", "Vpc"]
|
|
1815
1817
|
ReservedCapacityInstanceTypeType = Literal[
|
|
1816
1818
|
"ml.p4d.24xlarge",
|
|
@@ -331,6 +331,7 @@ __all__ = (
|
|
|
331
331
|
"RedshiftResultCompressionTypeType",
|
|
332
332
|
"RedshiftResultFormatType",
|
|
333
333
|
"RegionName",
|
|
334
|
+
"RelationType",
|
|
334
335
|
"RepositoryAccessModeType",
|
|
335
336
|
"ReservedCapacityInstanceTypeType",
|
|
336
337
|
"ReservedCapacityStatusType",
|
|
@@ -1809,6 +1810,7 @@ RecommendationStepTypeType = Literal["BENCHMARK"]
|
|
|
1809
1810
|
RecordWrapperType = Literal["None", "RecordIO"]
|
|
1810
1811
|
RedshiftResultCompressionTypeType = Literal["BZIP2", "GZIP", "None", "SNAPPY", "ZSTD"]
|
|
1811
1812
|
RedshiftResultFormatType = Literal["CSV", "PARQUET"]
|
|
1813
|
+
RelationType = Literal["EqualTo", "GreaterThanOrEqualTo"]
|
|
1812
1814
|
RepositoryAccessModeType = Literal["Platform", "Vpc"]
|
|
1813
1815
|
ReservedCapacityInstanceTypeType = Literal[
|
|
1814
1816
|
"ml.p4d.24xlarge",
|
|
@@ -228,6 +228,7 @@ from .literals import (
|
|
|
228
228
|
RecordWrapperType,
|
|
229
229
|
RedshiftResultCompressionTypeType,
|
|
230
230
|
RedshiftResultFormatType,
|
|
231
|
+
RelationType,
|
|
231
232
|
RepositoryAccessModeType,
|
|
232
233
|
ReservedCapacityInstanceTypeType,
|
|
233
234
|
ReservedCapacityStatusType,
|
|
@@ -1754,6 +1755,7 @@ __all__ = (
|
|
|
1754
1755
|
"TimeSeriesTransformationsOutputTypeDef",
|
|
1755
1756
|
"TimeSeriesTransformationsTypeDef",
|
|
1756
1757
|
"TimestampTypeDef",
|
|
1758
|
+
"TotalHitsTypeDef",
|
|
1757
1759
|
"TrackingServerSummaryTypeDef",
|
|
1758
1760
|
"TrafficPatternOutputTypeDef",
|
|
1759
1761
|
"TrafficPatternTypeDef",
|
|
@@ -2766,6 +2768,7 @@ class TransformResourcesTypeDef(TypedDict):
|
|
|
2766
2768
|
InstanceType: TransformInstanceTypeType
|
|
2767
2769
|
InstanceCount: int
|
|
2768
2770
|
VolumeKmsKeyId: NotRequired[str]
|
|
2771
|
+
TransformAmiVersion: NotRequired[str]
|
|
2769
2772
|
|
|
2770
2773
|
|
|
2771
2774
|
TimestampTypeDef = Union[datetime, str]
|
|
@@ -5073,6 +5076,11 @@ class VisibilityConditionsTypeDef(TypedDict):
|
|
|
5073
5076
|
Value: NotRequired[str]
|
|
5074
5077
|
|
|
5075
5078
|
|
|
5079
|
+
class TotalHitsTypeDef(TypedDict):
|
|
5080
|
+
Value: NotRequired[int]
|
|
5081
|
+
Relation: NotRequired[RelationType]
|
|
5082
|
+
|
|
5083
|
+
|
|
5076
5084
|
class SelectedStepTypeDef(TypedDict):
|
|
5077
5085
|
StepName: str
|
|
5078
5086
|
|
|
@@ -6218,6 +6226,7 @@ class CreateAppRequestTypeDef(TypedDict):
|
|
|
6218
6226
|
SpaceName: NotRequired[str]
|
|
6219
6227
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
6220
6228
|
ResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
6229
|
+
RecoveryMode: NotRequired[bool]
|
|
6221
6230
|
|
|
6222
6231
|
|
|
6223
6232
|
class DescribeAppResponseTypeDef(TypedDict):
|
|
@@ -6228,6 +6237,7 @@ class DescribeAppResponseTypeDef(TypedDict):
|
|
|
6228
6237
|
UserProfileName: str
|
|
6229
6238
|
SpaceName: str
|
|
6230
6239
|
Status: AppStatusType
|
|
6240
|
+
RecoveryMode: bool
|
|
6231
6241
|
LastHealthCheckTimestamp: datetime
|
|
6232
6242
|
LastUserActivityTimestamp: datetime
|
|
6233
6243
|
CreationTime: datetime
|
|
@@ -13586,6 +13596,7 @@ AlgorithmValidationSpecificationUnionTypeDef = Union[
|
|
|
13586
13596
|
|
|
13587
13597
|
class SearchResponseTypeDef(TypedDict):
|
|
13588
13598
|
Results: List[SearchRecordTypeDef]
|
|
13599
|
+
TotalHits: TotalHitsTypeDef
|
|
13589
13600
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
13590
13601
|
NextToken: NotRequired[str]
|
|
13591
13602
|
|
|
@@ -228,6 +228,7 @@ from .literals import (
|
|
|
228
228
|
RecordWrapperType,
|
|
229
229
|
RedshiftResultCompressionTypeType,
|
|
230
230
|
RedshiftResultFormatType,
|
|
231
|
+
RelationType,
|
|
231
232
|
RepositoryAccessModeType,
|
|
232
233
|
ReservedCapacityInstanceTypeType,
|
|
233
234
|
ReservedCapacityStatusType,
|
|
@@ -1753,6 +1754,7 @@ __all__ = (
|
|
|
1753
1754
|
"TimeSeriesTransformationsOutputTypeDef",
|
|
1754
1755
|
"TimeSeriesTransformationsTypeDef",
|
|
1755
1756
|
"TimestampTypeDef",
|
|
1757
|
+
"TotalHitsTypeDef",
|
|
1756
1758
|
"TrackingServerSummaryTypeDef",
|
|
1757
1759
|
"TrafficPatternOutputTypeDef",
|
|
1758
1760
|
"TrafficPatternTypeDef",
|
|
@@ -2611,6 +2613,7 @@ class TransformResourcesTypeDef(TypedDict):
|
|
|
2611
2613
|
InstanceType: TransformInstanceTypeType
|
|
2612
2614
|
InstanceCount: int
|
|
2613
2615
|
VolumeKmsKeyId: NotRequired[str]
|
|
2616
|
+
TransformAmiVersion: NotRequired[str]
|
|
2614
2617
|
|
|
2615
2618
|
TimestampTypeDef = Union[datetime, str]
|
|
2616
2619
|
|
|
@@ -4521,6 +4524,10 @@ class VisibilityConditionsTypeDef(TypedDict):
|
|
|
4521
4524
|
Key: NotRequired[str]
|
|
4522
4525
|
Value: NotRequired[str]
|
|
4523
4526
|
|
|
4527
|
+
class TotalHitsTypeDef(TypedDict):
|
|
4528
|
+
Value: NotRequired[int]
|
|
4529
|
+
Relation: NotRequired[RelationType]
|
|
4530
|
+
|
|
4524
4531
|
class SelectedStepTypeDef(TypedDict):
|
|
4525
4532
|
StepName: str
|
|
4526
4533
|
|
|
@@ -5461,6 +5468,7 @@ class CreateAppRequestTypeDef(TypedDict):
|
|
|
5461
5468
|
SpaceName: NotRequired[str]
|
|
5462
5469
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
5463
5470
|
ResourceSpec: NotRequired[ResourceSpecTypeDef]
|
|
5471
|
+
RecoveryMode: NotRequired[bool]
|
|
5464
5472
|
|
|
5465
5473
|
class DescribeAppResponseTypeDef(TypedDict):
|
|
5466
5474
|
AppArn: str
|
|
@@ -5470,6 +5478,7 @@ class DescribeAppResponseTypeDef(TypedDict):
|
|
|
5470
5478
|
UserProfileName: str
|
|
5471
5479
|
SpaceName: str
|
|
5472
5480
|
Status: AppStatusType
|
|
5481
|
+
RecoveryMode: bool
|
|
5473
5482
|
LastHealthCheckTimestamp: datetime
|
|
5474
5483
|
LastUserActivityTimestamp: datetime
|
|
5475
5484
|
CreationTime: datetime
|
|
@@ -12024,6 +12033,7 @@ AlgorithmValidationSpecificationUnionTypeDef = Union[
|
|
|
12024
12033
|
|
|
12025
12034
|
class SearchResponseTypeDef(TypedDict):
|
|
12026
12035
|
Results: List[SearchRecordTypeDef]
|
|
12036
|
+
TotalHits: TotalHitsTypeDef
|
|
12027
12037
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
12028
12038
|
NextToken: NotRequired[str]
|
|
12029
12039
|
|
mypy_boto3_sagemaker/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.37.
|
|
3
|
+
Version: 1.37.23
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.37.23 service generated with mypy-boto3-builder 8.10.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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 SageMaker 1.37.
|
|
59
|
+
Type annotations for [boto3 SageMaker 1.37.23](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.37.
|
|
122
|
+
`uvx --with 'boto3==1.37.23' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `SageMaker` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -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=ygZRAeRNzlMen36_R3xaxhsmNqMI0WboIO7EiZcLInc,992
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=GSQQDofiZ9Uwc3Z3wNJxmISvrqwatSVMHLhrXaBMRSk,269490
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=OJfJVccHg3qO4h3SPEPnyFWHeKRhodBmlJiyerWq1KI,80343
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=1l7Rbs8i2KaXngcCC9lniH9NG22zsky3cTrjzpwD5Tc,80341
|
|
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=FGMw2rRv-fZ_mP7n_6eVO_XrPneG5Taup6jlcEmkxrI,456990
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=tqwZ4BTfFN7mtlwvHWpLHmr6ebqyNOr11sQIhVSwszU,455426
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=f3mE225hqwDn5dKxWq8ZSjFm3b2QTXzcFWzWzG-KtEc,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.37.23.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.37.23.dist-info/METADATA,sha256=AjBfpKuy9ljhXSTgbWHqZzPB3p-yG-0FqwydLjNGxKQ,28898
|
|
18
|
+
mypy_boto3_sagemaker-1.37.23.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
19
|
+
mypy_boto3_sagemaker-1.37.23.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.37.23.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
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=GROilb5mfYDunajD1KLTLfYGglJn7gRESyRgmCy9eDM,992
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=GSQQDofiZ9Uwc3Z3wNJxmISvrqwatSVMHLhrXaBMRSk,269490
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=Y3pNDmBa5sG-f40vR5u3RVTqExmRHco6ZUNRsxX7L8w,80265
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=0CfrlMdmclmxj9UnAvrTct-bKWNWS7cETvwPHJEzsCQ,80263
|
|
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=L864_5p_PULxbG5XWq9oOzOJjviwyV1Y9Lttykp_uGc,456710
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=8KlIF-Fe1pXPaNb_cnxwTX7NoLnF6x8bmpZSZzFznAo,455147
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=lqzgPP69AiXzogdT1NOaWjzEgx3Uc_ynn79kNP73bOo,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.37.20.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.37.20.dist-info/METADATA,sha256=Ec2Lij--hDVbWYe9WIr8aDh4V4L_rIlMWfAN4ErvhfY,28898
|
|
18
|
-
mypy_boto3_sagemaker-1.37.20.dist-info/WHEEL,sha256=DK49LOLCYiurdXXOXwGJm6U4DkHkg4lcxjhqwRa0CP4,91
|
|
19
|
-
mypy_boto3_sagemaker-1.37.20.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.37.20.dist-info/RECORD,,
|
{mypy_boto3_sagemaker-1.37.20.dist-info → mypy_boto3_sagemaker-1.37.23.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sagemaker-1.37.20.dist-info → mypy_boto3_sagemaker-1.37.23.dist-info}/top_level.txt
RENAMED
|
File without changes
|