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/literals.py
CHANGED
|
@@ -19,6 +19,7 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
+
|
|
22
23
|
__all__ = (
|
|
23
24
|
"ActionStatusType",
|
|
24
25
|
"AdditionalS3DataSourceDataTypeType",
|
|
@@ -52,6 +53,7 @@ __all__ = (
|
|
|
52
53
|
"AutoMLS3DataTypeType",
|
|
53
54
|
"AutoMLSortByType",
|
|
54
55
|
"AutoMLSortOrderType",
|
|
56
|
+
"AutoMountHomeEFSType",
|
|
55
57
|
"AutotuneModeType",
|
|
56
58
|
"AwsManagedHumanLoopRequestSourceType",
|
|
57
59
|
"BatchStrategyType",
|
|
@@ -149,6 +151,7 @@ __all__ = (
|
|
|
149
151
|
"JoinSourceType",
|
|
150
152
|
"LabelingJobStatusType",
|
|
151
153
|
"LastUpdateStatusValueType",
|
|
154
|
+
"LifecycleManagementType",
|
|
152
155
|
"LineageTypeType",
|
|
153
156
|
"ListActionsPaginatorName",
|
|
154
157
|
"ListAlgorithmsPaginatorName",
|
|
@@ -389,6 +392,7 @@ __all__ = (
|
|
|
389
392
|
"RegionName",
|
|
390
393
|
)
|
|
391
394
|
|
|
395
|
+
|
|
392
396
|
ActionStatusType = Literal["Completed", "Failed", "InProgress", "Stopped", "Stopping", "Unknown"]
|
|
393
397
|
AdditionalS3DataSourceDataTypeType = Literal["S3Object", "S3Prefix"]
|
|
394
398
|
AggregationTransformationValueType = Literal["avg", "first", "max", "min", "sum"]
|
|
@@ -674,6 +678,7 @@ AutoMLProcessingUnitType = Literal["CPU", "GPU"]
|
|
|
674
678
|
AutoMLS3DataTypeType = Literal["AugmentedManifestFile", "ManifestFile", "S3Prefix"]
|
|
675
679
|
AutoMLSortByType = Literal["CreationTime", "Name", "Status"]
|
|
676
680
|
AutoMLSortOrderType = Literal["Ascending", "Descending"]
|
|
681
|
+
AutoMountHomeEFSType = Literal["DefaultAsDomain", "Disabled", "Enabled"]
|
|
677
682
|
AutotuneModeType = Literal["Enabled"]
|
|
678
683
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
679
684
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
@@ -1088,6 +1093,7 @@ LabelingJobStatusType = Literal[
|
|
|
1088
1093
|
"Completed", "Failed", "InProgress", "Initializing", "Stopped", "Stopping"
|
|
1089
1094
|
]
|
|
1090
1095
|
LastUpdateStatusValueType = Literal["Failed", "InProgress", "Successful"]
|
|
1096
|
+
LifecycleManagementType = Literal["DISABLED", "ENABLED"]
|
|
1091
1097
|
LineageTypeType = Literal["Action", "Artifact", "Context", "TrialComponent"]
|
|
1092
1098
|
ListActionsPaginatorName = Literal["list_actions"]
|
|
1093
1099
|
ListAlgorithmsPaginatorName = Literal["list_algorithms"]
|
|
@@ -2052,7 +2058,6 @@ ServiceName = Literal[
|
|
|
2052
2058
|
"codeguru-security",
|
|
2053
2059
|
"codeguruprofiler",
|
|
2054
2060
|
"codepipeline",
|
|
2055
|
-
"codestar",
|
|
2056
2061
|
"codestar-connections",
|
|
2057
2062
|
"codestar-notifications",
|
|
2058
2063
|
"cognito-identity",
|
|
@@ -2245,6 +2250,7 @@ ServiceName = Literal[
|
|
|
2245
2250
|
"payment-cryptography-data",
|
|
2246
2251
|
"pca-connector-ad",
|
|
2247
2252
|
"pca-connector-scep",
|
|
2253
|
+
"pcs",
|
|
2248
2254
|
"personalize",
|
|
2249
2255
|
"personalize-events",
|
|
2250
2256
|
"personalize-runtime",
|
|
@@ -52,6 +52,7 @@ __all__ = (
|
|
|
52
52
|
"AutoMLS3DataTypeType",
|
|
53
53
|
"AutoMLSortByType",
|
|
54
54
|
"AutoMLSortOrderType",
|
|
55
|
+
"AutoMountHomeEFSType",
|
|
55
56
|
"AutotuneModeType",
|
|
56
57
|
"AwsManagedHumanLoopRequestSourceType",
|
|
57
58
|
"BatchStrategyType",
|
|
@@ -149,6 +150,7 @@ __all__ = (
|
|
|
149
150
|
"JoinSourceType",
|
|
150
151
|
"LabelingJobStatusType",
|
|
151
152
|
"LastUpdateStatusValueType",
|
|
153
|
+
"LifecycleManagementType",
|
|
152
154
|
"LineageTypeType",
|
|
153
155
|
"ListActionsPaginatorName",
|
|
154
156
|
"ListAlgorithmsPaginatorName",
|
|
@@ -674,6 +676,7 @@ AutoMLProcessingUnitType = Literal["CPU", "GPU"]
|
|
|
674
676
|
AutoMLS3DataTypeType = Literal["AugmentedManifestFile", "ManifestFile", "S3Prefix"]
|
|
675
677
|
AutoMLSortByType = Literal["CreationTime", "Name", "Status"]
|
|
676
678
|
AutoMLSortOrderType = Literal["Ascending", "Descending"]
|
|
679
|
+
AutoMountHomeEFSType = Literal["DefaultAsDomain", "Disabled", "Enabled"]
|
|
677
680
|
AutotuneModeType = Literal["Enabled"]
|
|
678
681
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
679
682
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
@@ -1088,6 +1091,7 @@ LabelingJobStatusType = Literal[
|
|
|
1088
1091
|
"Completed", "Failed", "InProgress", "Initializing", "Stopped", "Stopping"
|
|
1089
1092
|
]
|
|
1090
1093
|
LastUpdateStatusValueType = Literal["Failed", "InProgress", "Successful"]
|
|
1094
|
+
LifecycleManagementType = Literal["DISABLED", "ENABLED"]
|
|
1091
1095
|
LineageTypeType = Literal["Action", "Artifact", "Context", "TrialComponent"]
|
|
1092
1096
|
ListActionsPaginatorName = Literal["list_actions"]
|
|
1093
1097
|
ListAlgorithmsPaginatorName = Literal["list_algorithms"]
|
|
@@ -2052,7 +2056,6 @@ ServiceName = Literal[
|
|
|
2052
2056
|
"codeguru-security",
|
|
2053
2057
|
"codeguruprofiler",
|
|
2054
2058
|
"codepipeline",
|
|
2055
|
-
"codestar",
|
|
2056
2059
|
"codestar-connections",
|
|
2057
2060
|
"codestar-notifications",
|
|
2058
2061
|
"cognito-identity",
|
|
@@ -2245,6 +2248,7 @@ ServiceName = Literal[
|
|
|
2245
2248
|
"payment-cryptography-data",
|
|
2246
2249
|
"pca-connector-ad",
|
|
2247
2250
|
"pca-connector-scep",
|
|
2251
|
+
"pcs",
|
|
2248
2252
|
"personalize",
|
|
2249
2253
|
"personalize-events",
|
|
2250
2254
|
"personalize-runtime",
|