mypy-boto3-sagemaker 1.34.159__py3-none-any.whl → 1.35.11__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.
- 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 +5 -1
- mypy_boto3_sagemaker/literals.pyi +3 -1
- mypy_boto3_sagemaker/paginator.py +184 -730
- mypy_boto3_sagemaker/paginator.pyi +182 -804
- mypy_boto3_sagemaker/type_defs.py +29 -697
- mypy_boto3_sagemaker/type_defs.pyi +28 -697
- 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.34.159.dist-info → mypy_boto3_sagemaker-1.35.11.dist-info}/METADATA +19 -20
- mypy_boto3_sagemaker-1.35.11.dist-info/RECORD +20 -0
- {mypy_boto3_sagemaker-1.34.159.dist-info → mypy_boto3_sagemaker-1.35.11.dist-info}/WHEEL +1 -1
- mypy_boto3_sagemaker-1.34.159.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.34.159.dist-info → mypy_boto3_sagemaker-1.35.11.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.34.159.dist-info → mypy_boto3_sagemaker-1.35.11.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",
|
|
@@ -389,6 +391,7 @@ __all__ = (
|
|
|
389
391
|
"RegionName",
|
|
390
392
|
)
|
|
391
393
|
|
|
394
|
+
|
|
392
395
|
ActionStatusType = Literal["Completed", "Failed", "InProgress", "Stopped", "Stopping", "Unknown"]
|
|
393
396
|
AdditionalS3DataSourceDataTypeType = Literal["S3Object", "S3Prefix"]
|
|
394
397
|
AggregationTransformationValueType = Literal["avg", "first", "max", "min", "sum"]
|
|
@@ -674,6 +677,7 @@ AutoMLProcessingUnitType = Literal["CPU", "GPU"]
|
|
|
674
677
|
AutoMLS3DataTypeType = Literal["AugmentedManifestFile", "ManifestFile", "S3Prefix"]
|
|
675
678
|
AutoMLSortByType = Literal["CreationTime", "Name", "Status"]
|
|
676
679
|
AutoMLSortOrderType = Literal["Ascending", "Descending"]
|
|
680
|
+
AutoMountHomeEFSType = Literal["DefaultAsDomain", "Disabled", "Enabled"]
|
|
677
681
|
AutotuneModeType = Literal["Enabled"]
|
|
678
682
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
679
683
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
@@ -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",
|
|
@@ -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",
|
|
@@ -674,6 +675,7 @@ AutoMLProcessingUnitType = Literal["CPU", "GPU"]
|
|
|
674
675
|
AutoMLS3DataTypeType = Literal["AugmentedManifestFile", "ManifestFile", "S3Prefix"]
|
|
675
676
|
AutoMLSortByType = Literal["CreationTime", "Name", "Status"]
|
|
676
677
|
AutoMLSortOrderType = Literal["Ascending", "Descending"]
|
|
678
|
+
AutoMountHomeEFSType = Literal["DefaultAsDomain", "Disabled", "Enabled"]
|
|
677
679
|
AutotuneModeType = Literal["Enabled"]
|
|
678
680
|
AwsManagedHumanLoopRequestSourceType = Literal[
|
|
679
681
|
"AWS/Rekognition/DetectModerationLabels/Image/V3", "AWS/Textract/AnalyzeDocument/Forms/V1"
|
|
@@ -2052,7 +2054,6 @@ ServiceName = Literal[
|
|
|
2052
2054
|
"codeguru-security",
|
|
2053
2055
|
"codeguruprofiler",
|
|
2054
2056
|
"codepipeline",
|
|
2055
|
-
"codestar",
|
|
2056
2057
|
"codestar-connections",
|
|
2057
2058
|
"codestar-notifications",
|
|
2058
2059
|
"cognito-identity",
|
|
@@ -2245,6 +2246,7 @@ ServiceName = Literal[
|
|
|
2245
2246
|
"payment-cryptography-data",
|
|
2246
2247
|
"pca-connector-ad",
|
|
2247
2248
|
"pca-connector-scep",
|
|
2249
|
+
"pcs",
|
|
2248
2250
|
"personalize",
|
|
2249
2251
|
"personalize-events",
|
|
2250
2252
|
"personalize-runtime",
|