mypy-boto3-sagemaker 1.37.22__py3-none-any.whl → 1.37.25__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.

@@ -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.22\n"
16
- "Version: 1.37.22\n"
15
+ "Type annotations for boto3 SageMaker 1.37.25\n"
16
+ "Version: 1.37.25\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.22\n")
29
+ sys.stdout.write("1.37.25\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -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",
@@ -2767,6 +2769,7 @@ RegionName = Literal[
2767
2769
  "ap-southeast-3",
2768
2770
  "ap-southeast-4",
2769
2771
  "ap-southeast-5",
2772
+ "ap-southeast-7",
2770
2773
  "ca-central-1",
2771
2774
  "ca-west-1",
2772
2775
  "eu-central-1",
@@ -2780,6 +2783,7 @@ RegionName = Literal[
2780
2783
  "il-central-1",
2781
2784
  "me-central-1",
2782
2785
  "me-south-1",
2786
+ "mx-central-1",
2783
2787
  "sa-east-1",
2784
2788
  "us-east-1",
2785
2789
  "us-east-2",
@@ -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",
@@ -2765,6 +2767,7 @@ RegionName = Literal[
2765
2767
  "ap-southeast-3",
2766
2768
  "ap-southeast-4",
2767
2769
  "ap-southeast-5",
2770
+ "ap-southeast-7",
2768
2771
  "ca-central-1",
2769
2772
  "ca-west-1",
2770
2773
  "eu-central-1",
@@ -2778,6 +2781,7 @@ RegionName = Literal[
2778
2781
  "il-central-1",
2779
2782
  "me-central-1",
2780
2783
  "me-south-1",
2784
+ "mx-central-1",
2781
2785
  "sa-east-1",
2782
2786
  "us-east-1",
2783
2787
  "us-east-2",
@@ -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
 
@@ -6884,6 +6892,7 @@ class CreateNotebookInstanceLifecycleConfigInputTypeDef(TypedDict):
6884
6892
  NotebookInstanceLifecycleConfigName: str
6885
6893
  OnCreate: NotRequired[Sequence[NotebookInstanceLifecycleHookTypeDef]]
6886
6894
  OnStart: NotRequired[Sequence[NotebookInstanceLifecycleHookTypeDef]]
6895
+ Tags: NotRequired[Sequence[TagTypeDef]]
6887
6896
 
6888
6897
 
6889
6898
  class DescribeNotebookInstanceLifecycleConfigOutputTypeDef(TypedDict):
@@ -13588,6 +13597,7 @@ AlgorithmValidationSpecificationUnionTypeDef = Union[
13588
13597
 
13589
13598
  class SearchResponseTypeDef(TypedDict):
13590
13599
  Results: List[SearchRecordTypeDef]
13600
+ TotalHits: TotalHitsTypeDef
13591
13601
  ResponseMetadata: ResponseMetadataTypeDef
13592
13602
  NextToken: NotRequired[str]
13593
13603
 
@@ -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
 
@@ -6031,6 +6038,7 @@ class CreateNotebookInstanceLifecycleConfigInputTypeDef(TypedDict):
6031
6038
  NotebookInstanceLifecycleConfigName: str
6032
6039
  OnCreate: NotRequired[Sequence[NotebookInstanceLifecycleHookTypeDef]]
6033
6040
  OnStart: NotRequired[Sequence[NotebookInstanceLifecycleHookTypeDef]]
6041
+ Tags: NotRequired[Sequence[TagTypeDef]]
6034
6042
 
6035
6043
  class DescribeNotebookInstanceLifecycleConfigOutputTypeDef(TypedDict):
6036
6044
  NotebookInstanceLifecycleConfigArn: str
@@ -12026,6 +12034,7 @@ AlgorithmValidationSpecificationUnionTypeDef = Union[
12026
12034
 
12027
12035
  class SearchResponseTypeDef(TypedDict):
12028
12036
  Results: List[SearchRecordTypeDef]
12037
+ TotalHits: TotalHitsTypeDef
12029
12038
  ResponseMetadata: ResponseMetadataTypeDef
12030
12039
  NextToken: NotRequired[str]
12031
12040
 
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.37.22"
7
+ __version__ = "1.37.25"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-sagemaker
3
- Version: 1.37.22
4
- Summary: Type annotations for boto3 SageMaker 1.37.22 service generated with mypy-boto3-builder 8.10.1
3
+ Version: 1.37.25
4
+ Summary: Type annotations for boto3 SageMaker 1.37.25 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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 SageMaker 1.37.22](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 SageMaker 1.37.25](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.22' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.37.25' 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.
@@ -1,20 +1,20 @@
1
1
  mypy_boto3_sagemaker/__init__.py,sha256=opHkjuIms4oAULgt6RpiQM_b3MlcLpgp8MMTkCReC3o,20862
2
2
  mypy_boto3_sagemaker/__init__.pyi,sha256=tbdiUUr5WXkYKgsTJGeNm8nf-W6kCYBvkDpK4kvX654,20861
3
- mypy_boto3_sagemaker/__main__.py,sha256=0u_i5U3w2MJ89WiyqNqAan1yYa99Hfr_6Iki093qjPg,992
3
+ mypy_boto3_sagemaker/__main__.py,sha256=4s7RdAggOC2DU9G8vH-jAMOtMLWs2RHlodCWEgUTmrE,992
4
4
  mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
5
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
6
+ mypy_boto3_sagemaker/literals.py,sha256=LPqwuuJpPZzi5RorHJNMyR6Jpoo6riWcXvr7GxsdVKE,80385
7
+ mypy_boto3_sagemaker/literals.pyi,sha256=bmnOfnIryvJExy_L-MfFrBexxpBkU2YssiOPfl59Oh4,80383
8
8
  mypy_boto3_sagemaker/paginator.py,sha256=6L2do5UDlW6ag_KUhRla4QbZORaFO-AulDv7A4nXEh8,113965
9
9
  mypy_boto3_sagemaker/paginator.pyi,sha256=HJgYz9NiQOAITGAFA-ySnltWarPIVrk7wB-8nuAMYhQ,113730
10
10
  mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_sagemaker/type_defs.py,sha256=SI3W_INFRZ-QdNQXc01TkdHkyaFDnjOjd_rkDdhs4WA,456769
12
- mypy_boto3_sagemaker/type_defs.pyi,sha256=aq39X0pEYCvLtafGRVfpo3LOEA6qd9MlsgmkcJGKHUM,455206
13
- mypy_boto3_sagemaker/version.py,sha256=AMWnEEbhonEcJHxYoNnMUXiy0zMP6ODvvD1A8Plyfn8,93
11
+ mypy_boto3_sagemaker/type_defs.py,sha256=jxClOjBZJ7ieCX3n4LhWSZtiCR0KE3I2I2fF4TN5GGI,457034
12
+ mypy_boto3_sagemaker/type_defs.pyi,sha256=NVvMvx7CBjvLJlPHjXE3TSicSlX-DvKvVFiFts0_ovg,455470
13
+ mypy_boto3_sagemaker/version.py,sha256=bh1pJH6J6_d84Rt7LDnl0EqBwLEILcZNgnBI-uc4fSc,93
14
14
  mypy_boto3_sagemaker/waiter.py,sha256=-S1TZyw55DA_NY46uwNmMEDpruhN4am2JYcCn53mH1M,15080
15
15
  mypy_boto3_sagemaker/waiter.pyi,sha256=Ddbvoy56vM8BmGsIG3bz4wmsRS7ruZSpyb1HArqvrj4,15053
16
- mypy_boto3_sagemaker-1.37.22.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_sagemaker-1.37.22.dist-info/METADATA,sha256=Dkbvz_0ZoiBEZaEuZNBuA7pyfI-KyFgitWqefnbrQB4,28898
18
- mypy_boto3_sagemaker-1.37.22.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
19
- mypy_boto3_sagemaker-1.37.22.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
- mypy_boto3_sagemaker-1.37.22.dist-info/RECORD,,
16
+ mypy_boto3_sagemaker-1.37.25.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_sagemaker-1.37.25.dist-info/METADATA,sha256=Effn8T0ZLwOudrs7n-6fz8pMC4MpJBW2Ec_UaP_YRg0,28898
18
+ mypy_boto3_sagemaker-1.37.25.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
19
+ mypy_boto3_sagemaker-1.37.25.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
+ mypy_boto3_sagemaker-1.37.25.dist-info/RECORD,,