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

@@ -10,8 +10,8 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.SageMaker 1.34.131\n"
14
- "Version: 1.34.131\n"
13
+ "Type annotations for boto3.SageMaker 1.34.135\n"
14
+ "Version: 1.34.135\n"
15
15
  "Builder version: 7.24.0\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.34.131")
27
+ print("1.34.135")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -232,6 +232,7 @@ __all__ = (
232
232
  "ListWorkteamsSortByOptionsType",
233
233
  "ManagedInstanceScalingStatusType",
234
234
  "MetricSetSourceType",
235
+ "MlToolsType",
235
236
  "ModelApprovalStatusType",
236
237
  "ModelCacheSettingType",
237
238
  "ModelCardExportJobSortByType",
@@ -1178,6 +1179,21 @@ ListWorkteamsPaginatorName = Literal["list_workteams"]
1178
1179
  ListWorkteamsSortByOptionsType = Literal["CreateDate", "Name"]
1179
1180
  ManagedInstanceScalingStatusType = Literal["DISABLED", "ENABLED"]
1180
1181
  MetricSetSourceType = Literal["Test", "Train", "Validation"]
1182
+ MlToolsType = Literal[
1183
+ "AutoMl",
1184
+ "DataWrangler",
1185
+ "EmrClusters",
1186
+ "Endpoints",
1187
+ "Experiments",
1188
+ "FeatureStore",
1189
+ "InferenceRecommender",
1190
+ "JumpStart",
1191
+ "ModelEvaluation",
1192
+ "Models",
1193
+ "Pipelines",
1194
+ "Projects",
1195
+ "Training",
1196
+ ]
1181
1197
  ModelApprovalStatusType = Literal["Approved", "PendingManualApproval", "Rejected"]
1182
1198
  ModelCacheSettingType = Literal["Disabled", "Enabled"]
1183
1199
  ModelCardExportJobSortByType = Literal["CreationTime", "Name", "Status"]
@@ -232,6 +232,7 @@ __all__ = (
232
232
  "ListWorkteamsSortByOptionsType",
233
233
  "ManagedInstanceScalingStatusType",
234
234
  "MetricSetSourceType",
235
+ "MlToolsType",
235
236
  "ModelApprovalStatusType",
236
237
  "ModelCacheSettingType",
237
238
  "ModelCardExportJobSortByType",
@@ -1178,6 +1179,21 @@ ListWorkteamsPaginatorName = Literal["list_workteams"]
1178
1179
  ListWorkteamsSortByOptionsType = Literal["CreateDate", "Name"]
1179
1180
  ManagedInstanceScalingStatusType = Literal["DISABLED", "ENABLED"]
1180
1181
  MetricSetSourceType = Literal["Test", "Train", "Validation"]
1182
+ MlToolsType = Literal[
1183
+ "AutoMl",
1184
+ "DataWrangler",
1185
+ "EmrClusters",
1186
+ "Endpoints",
1187
+ "Experiments",
1188
+ "FeatureStore",
1189
+ "InferenceRecommender",
1190
+ "JumpStart",
1191
+ "ModelEvaluation",
1192
+ "Models",
1193
+ "Pipelines",
1194
+ "Projects",
1195
+ "Training",
1196
+ ]
1181
1197
  ModelApprovalStatusType = Literal["Approved", "PendingManualApproval", "Rejected"]
1182
1198
  ModelCacheSettingType = Literal["Disabled", "Enabled"]
1183
1199
  ModelCardExportJobSortByType = Literal["CreationTime", "Name", "Status"]
@@ -144,6 +144,7 @@ from .literals import (
144
144
  ListWorkteamsSortByOptionsType,
145
145
  ManagedInstanceScalingStatusType,
146
146
  MetricSetSourceType,
147
+ MlToolsType,
147
148
  ModelApprovalStatusType,
148
149
  ModelCacheSettingType,
149
150
  ModelCardExportJobSortByType,
@@ -829,6 +830,8 @@ __all__ = (
829
830
  "StopProcessingJobRequestRequestTypeDef",
830
831
  "StopTrainingJobRequestRequestTypeDef",
831
832
  "StopTransformJobRequestRequestTypeDef",
833
+ "StudioWebPortalSettingsOutputTypeDef",
834
+ "StudioWebPortalSettingsTypeDef",
832
835
  "ThroughputConfigUpdateTypeDef",
833
836
  "TimeSeriesConfigOutputTypeDef",
834
837
  "TimeSeriesConfigTypeDef",
@@ -5897,6 +5900,20 @@ StopTransformJobRequestRequestTypeDef = TypedDict(
5897
5900
  "TransformJobName": str,
5898
5901
  },
5899
5902
  )
5903
+ StudioWebPortalSettingsOutputTypeDef = TypedDict(
5904
+ "StudioWebPortalSettingsOutputTypeDef",
5905
+ {
5906
+ "HiddenMlTools": NotRequired[List[MlToolsType]],
5907
+ "HiddenAppTypes": NotRequired[List[AppTypeType]],
5908
+ },
5909
+ )
5910
+ StudioWebPortalSettingsTypeDef = TypedDict(
5911
+ "StudioWebPortalSettingsTypeDef",
5912
+ {
5913
+ "HiddenMlTools": NotRequired[Sequence[MlToolsType]],
5914
+ "HiddenAppTypes": NotRequired[Sequence[AppTypeType]],
5915
+ },
5916
+ )
5900
5917
  ThroughputConfigUpdateTypeDef = TypedDict(
5901
5918
  "ThroughputConfigUpdateTypeDef",
5902
5919
  {
@@ -11956,6 +11973,7 @@ UserSettingsOutputTypeDef = TypedDict(
11956
11973
  "StudioWebPortal": NotRequired[StudioWebPortalType],
11957
11974
  "CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
11958
11975
  "CustomFileSystemConfigs": NotRequired[List[CustomFileSystemConfigTypeDef]],
11976
+ "StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsOutputTypeDef],
11959
11977
  },
11960
11978
  )
11961
11979
  UserSettingsTypeDef = TypedDict(
@@ -11977,6 +11995,7 @@ UserSettingsTypeDef = TypedDict(
11977
11995
  "StudioWebPortal": NotRequired[StudioWebPortalType],
11978
11996
  "CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
11979
11997
  "CustomFileSystemConfigs": NotRequired[Sequence[CustomFileSystemConfigTypeDef]],
11998
+ "StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsTypeDef],
11980
11999
  },
11981
12000
  )
11982
12001
  InferenceComponentSpecificationSummaryTypeDef = TypedDict(
@@ -144,6 +144,7 @@ from .literals import (
144
144
  ListWorkteamsSortByOptionsType,
145
145
  ManagedInstanceScalingStatusType,
146
146
  MetricSetSourceType,
147
+ MlToolsType,
147
148
  ModelApprovalStatusType,
148
149
  ModelCacheSettingType,
149
150
  ModelCardExportJobSortByType,
@@ -829,6 +830,8 @@ __all__ = (
829
830
  "StopProcessingJobRequestRequestTypeDef",
830
831
  "StopTrainingJobRequestRequestTypeDef",
831
832
  "StopTransformJobRequestRequestTypeDef",
833
+ "StudioWebPortalSettingsOutputTypeDef",
834
+ "StudioWebPortalSettingsTypeDef",
832
835
  "ThroughputConfigUpdateTypeDef",
833
836
  "TimeSeriesConfigOutputTypeDef",
834
837
  "TimeSeriesConfigTypeDef",
@@ -5897,6 +5900,20 @@ StopTransformJobRequestRequestTypeDef = TypedDict(
5897
5900
  "TransformJobName": str,
5898
5901
  },
5899
5902
  )
5903
+ StudioWebPortalSettingsOutputTypeDef = TypedDict(
5904
+ "StudioWebPortalSettingsOutputTypeDef",
5905
+ {
5906
+ "HiddenMlTools": NotRequired[List[MlToolsType]],
5907
+ "HiddenAppTypes": NotRequired[List[AppTypeType]],
5908
+ },
5909
+ )
5910
+ StudioWebPortalSettingsTypeDef = TypedDict(
5911
+ "StudioWebPortalSettingsTypeDef",
5912
+ {
5913
+ "HiddenMlTools": NotRequired[Sequence[MlToolsType]],
5914
+ "HiddenAppTypes": NotRequired[Sequence[AppTypeType]],
5915
+ },
5916
+ )
5900
5917
  ThroughputConfigUpdateTypeDef = TypedDict(
5901
5918
  "ThroughputConfigUpdateTypeDef",
5902
5919
  {
@@ -11956,6 +11973,7 @@ UserSettingsOutputTypeDef = TypedDict(
11956
11973
  "StudioWebPortal": NotRequired[StudioWebPortalType],
11957
11974
  "CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
11958
11975
  "CustomFileSystemConfigs": NotRequired[List[CustomFileSystemConfigTypeDef]],
11976
+ "StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsOutputTypeDef],
11959
11977
  },
11960
11978
  )
11961
11979
  UserSettingsTypeDef = TypedDict(
@@ -11977,6 +11995,7 @@ UserSettingsTypeDef = TypedDict(
11977
11995
  "StudioWebPortal": NotRequired[StudioWebPortalType],
11978
11996
  "CustomPosixUserConfig": NotRequired[CustomPosixUserConfigTypeDef],
11979
11997
  "CustomFileSystemConfigs": NotRequired[Sequence[CustomFileSystemConfigTypeDef]],
11998
+ "StudioWebPortalSettings": NotRequired[StudioWebPortalSettingsTypeDef],
11980
11999
  },
11981
12000
  )
11982
12001
  InferenceComponentSpecificationSummaryTypeDef = TypedDict(
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.131"
5
+ __version__ = "1.34.135"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-sagemaker
3
- Version: 1.34.131
4
- Summary: Type annotations for boto3.SageMaker 1.34.131 service generated with mypy-boto3-builder 7.24.0
3
+ Version: 1.34.135
4
+ Summary: Type annotations for boto3.SageMaker 1.34.135 service generated with mypy-boto3-builder 7.24.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
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3.SageMaker 1.34.131](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker)
46
+ [boto3.SageMaker 1.34.135](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/),
@@ -0,0 +1,20 @@
1
+ mypy_boto3_sagemaker/__init__.py,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
2
+ mypy_boto3_sagemaker/__init__.pyi,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
3
+ mypy_boto3_sagemaker/__main__.py,sha256=FCqhgYLcvJHVISArwLDcHFSQDrQ8MkvExNaq42X1qJo,930
4
+ mypy_boto3_sagemaker/client.py,sha256=f5ODO7Xvf-P4UnSkixSwScuhtBPuZ7AaURgB7v6LmfU,287236
5
+ mypy_boto3_sagemaker/client.pyi,sha256=o36Rya36oriCa4C5eb95HBX4fpBnz68CAXAko7Qna70,287233
6
+ mypy_boto3_sagemaker/literals.py,sha256=GmMz2yHpab0RLkRJEJir-4KsRD-ERPKK6yKmPCoOiv4,70282
7
+ mypy_boto3_sagemaker/literals.pyi,sha256=GmMz2yHpab0RLkRJEJir-4KsRD-ERPKK6yKmPCoOiv4,70282
8
+ mypy_boto3_sagemaker/paginator.py,sha256=_xnATTKBFwnkPPImy7HNm1LeYF43gJCblIRefT_xIh8,104353
9
+ mypy_boto3_sagemaker/paginator.pyi,sha256=rXTqx1MM8iMqnJWo5soGF09O7ldIEy5WtZRylpbsrMk,104279
10
+ mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_sagemaker/type_defs.py,sha256=l_r_3XxoLEMmgr_1oMMEttQHoQF1ETvN3DMShOutRXg,556138
12
+ mypy_boto3_sagemaker/type_defs.pyi,sha256=l_r_3XxoLEMmgr_1oMMEttQHoQF1ETvN3DMShOutRXg,556138
13
+ mypy_boto3_sagemaker/version.py,sha256=R95NeWKZEL0LP08KWp17khP6OMeEBOdI3_Ovq6rrWvc,63
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.34.135.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_sagemaker-1.34.135.dist-info/METADATA,sha256=7Dg2M-TcdTC9VpZ2Ila2l_tA6Q00wmLA6r-s8nyS_M4,25945
18
+ mypy_boto3_sagemaker-1.34.135.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
19
+ mypy_boto3_sagemaker-1.34.135.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
+ mypy_boto3_sagemaker-1.34.135.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.0)
2
+ Generator: setuptools (70.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,20 +0,0 @@
1
- mypy_boto3_sagemaker/__init__.py,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
2
- mypy_boto3_sagemaker/__init__.pyi,sha256=IMnQgK56iqhstbmy74Mesy85HeJHGDXZ3JCj9JrsCOs,19629
3
- mypy_boto3_sagemaker/__main__.py,sha256=ZPIR_OS60WFU_ckd05XowH4EB3p44waQYXz23l9p85U,930
4
- mypy_boto3_sagemaker/client.py,sha256=f5ODO7Xvf-P4UnSkixSwScuhtBPuZ7AaURgB7v6LmfU,287236
5
- mypy_boto3_sagemaker/client.pyi,sha256=o36Rya36oriCa4C5eb95HBX4fpBnz68CAXAko7Qna70,287233
6
- mypy_boto3_sagemaker/literals.py,sha256=VGNaMOI2qk2qPtbmxPow6h37Or7t-0FLmgaiGzjPT1Y,69998
7
- mypy_boto3_sagemaker/literals.pyi,sha256=VGNaMOI2qk2qPtbmxPow6h37Or7t-0FLmgaiGzjPT1Y,69998
8
- mypy_boto3_sagemaker/paginator.py,sha256=_xnATTKBFwnkPPImy7HNm1LeYF43gJCblIRefT_xIh8,104353
9
- mypy_boto3_sagemaker/paginator.pyi,sha256=rXTqx1MM8iMqnJWo5soGF09O7ldIEy5WtZRylpbsrMk,104279
10
- mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_sagemaker/type_defs.py,sha256=K1d9eAurcPsbih7QpKnOHRoKRJIlSPg2qC8VQkmxtz0,555429
12
- mypy_boto3_sagemaker/type_defs.pyi,sha256=K1d9eAurcPsbih7QpKnOHRoKRJIlSPg2qC8VQkmxtz0,555429
13
- mypy_boto3_sagemaker/version.py,sha256=LKnSnvnVgHboGedSlSWZA_k3l3h43W1XlyCLbfr0tIM,63
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.34.131.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_sagemaker-1.34.131.dist-info/METADATA,sha256=9zM1h1Xb9zyZkWzOkQ4eoS1jBPw45nsBSBLTSVxwPEc,25945
18
- mypy_boto3_sagemaker-1.34.131.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
19
- mypy_boto3_sagemaker-1.34.131.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
- mypy_boto3_sagemaker-1.34.131.dist-info/RECORD,,