mypy-boto3-sagemaker 1.34.107__py3-none-any.whl → 1.34.116__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/client.py +5 -0
- mypy_boto3_sagemaker/client.pyi +5 -0
- mypy_boto3_sagemaker/literals.py +7 -0
- mypy_boto3_sagemaker/literals.pyi +7 -0
- mypy_boto3_sagemaker/type_defs.py +52 -28
- mypy_boto3_sagemaker/type_defs.pyi +52 -28
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.34.107.dist-info → mypy_boto3_sagemaker-1.34.116.dist-info}/METADATA +3 -3
- mypy_boto3_sagemaker-1.34.116.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.34.107.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.34.107.dist-info → mypy_boto3_sagemaker-1.34.116.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.34.107.dist-info → mypy_boto3_sagemaker-1.34.116.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.34.107.dist-info → mypy_boto3_sagemaker-1.34.116.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -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.
|
|
14
|
-
"Version: 1.34.
|
|
13
|
+
"Type annotations for boto3.SageMaker 1.34.116\n"
|
|
14
|
+
"Version: 1.34.116\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.
|
|
27
|
+
print("1.34.116")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -506,6 +506,8 @@ from .type_defs import (
|
|
|
506
506
|
ModelExplainabilityJobInputUnionTypeDef,
|
|
507
507
|
ModelMetadataSearchExpressionTypeDef,
|
|
508
508
|
ModelMetricsTypeDef,
|
|
509
|
+
ModelPackageModelCardTypeDef,
|
|
510
|
+
ModelPackageSecurityConfigTypeDef,
|
|
509
511
|
ModelPackageValidationSpecificationUnionTypeDef,
|
|
510
512
|
ModelQualityAppSpecificationUnionTypeDef,
|
|
511
513
|
ModelQualityBaselineConfigTypeDef,
|
|
@@ -1423,6 +1425,8 @@ class SageMakerClient(BaseClient):
|
|
|
1423
1425
|
] = ...,
|
|
1424
1426
|
SkipModelValidation: SkipModelValidationType = ...,
|
|
1425
1427
|
SourceUri: str = ...,
|
|
1428
|
+
SecurityConfig: ModelPackageSecurityConfigTypeDef = ...,
|
|
1429
|
+
ModelCard: ModelPackageModelCardTypeDef = ...,
|
|
1426
1430
|
) -> CreateModelPackageOutputTypeDef:
|
|
1427
1431
|
"""
|
|
1428
1432
|
Creates a model package that you can use to create SageMaker models or list on
|
|
@@ -5038,6 +5042,7 @@ class SageMakerClient(BaseClient):
|
|
|
5038
5042
|
] = ...,
|
|
5039
5043
|
InferenceSpecification: InferenceSpecificationUnionTypeDef = ...,
|
|
5040
5044
|
SourceUri: str = ...,
|
|
5045
|
+
ModelCard: ModelPackageModelCardTypeDef = ...,
|
|
5041
5046
|
) -> UpdateModelPackageOutputTypeDef:
|
|
5042
5047
|
"""
|
|
5043
5048
|
Updates a versioned model.
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -506,6 +506,8 @@ from .type_defs import (
|
|
|
506
506
|
ModelExplainabilityJobInputUnionTypeDef,
|
|
507
507
|
ModelMetadataSearchExpressionTypeDef,
|
|
508
508
|
ModelMetricsTypeDef,
|
|
509
|
+
ModelPackageModelCardTypeDef,
|
|
510
|
+
ModelPackageSecurityConfigTypeDef,
|
|
509
511
|
ModelPackageValidationSpecificationUnionTypeDef,
|
|
510
512
|
ModelQualityAppSpecificationUnionTypeDef,
|
|
511
513
|
ModelQualityBaselineConfigTypeDef,
|
|
@@ -1420,6 +1422,8 @@ class SageMakerClient(BaseClient):
|
|
|
1420
1422
|
] = ...,
|
|
1421
1423
|
SkipModelValidation: SkipModelValidationType = ...,
|
|
1422
1424
|
SourceUri: str = ...,
|
|
1425
|
+
SecurityConfig: ModelPackageSecurityConfigTypeDef = ...,
|
|
1426
|
+
ModelCard: ModelPackageModelCardTypeDef = ...,
|
|
1423
1427
|
) -> CreateModelPackageOutputTypeDef:
|
|
1424
1428
|
"""
|
|
1425
1429
|
Creates a model package that you can use to create SageMaker models or list on
|
|
@@ -5035,6 +5039,7 @@ class SageMakerClient(BaseClient):
|
|
|
5035
5039
|
] = ...,
|
|
5036
5040
|
InferenceSpecification: InferenceSpecificationUnionTypeDef = ...,
|
|
5037
5041
|
SourceUri: str = ...,
|
|
5042
|
+
ModelCard: ModelPackageModelCardTypeDef = ...,
|
|
5038
5043
|
) -> UpdateModelPackageOutputTypeDef:
|
|
5039
5044
|
"""
|
|
5040
5045
|
Updates a versioned model.
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -563,13 +563,19 @@ AthenaResultCompressionTypeType = Literal["GZIP", "SNAPPY", "ZLIB"]
|
|
|
563
563
|
AthenaResultFormatType = Literal["AVRO", "JSON", "ORC", "PARQUET", "TEXTFILE"]
|
|
564
564
|
AuthModeType = Literal["IAM", "SSO"]
|
|
565
565
|
AutoMLAlgorithmType = Literal[
|
|
566
|
+
"arima",
|
|
566
567
|
"catboost",
|
|
568
|
+
"cnn-qr",
|
|
569
|
+
"deepar",
|
|
570
|
+
"ets",
|
|
567
571
|
"extra-trees",
|
|
568
572
|
"fastai",
|
|
569
573
|
"lightgbm",
|
|
570
574
|
"linear-learner",
|
|
571
575
|
"mlp",
|
|
572
576
|
"nn-torch",
|
|
577
|
+
"npts",
|
|
578
|
+
"prophet",
|
|
573
579
|
"randomforest",
|
|
574
580
|
"xgboost",
|
|
575
581
|
]
|
|
@@ -2068,6 +2074,7 @@ ServiceName = Literal[
|
|
|
2068
2074
|
"m2",
|
|
2069
2075
|
"machinelearning",
|
|
2070
2076
|
"macie2",
|
|
2077
|
+
"mailmanager",
|
|
2071
2078
|
"managedblockchain",
|
|
2072
2079
|
"managedblockchain-query",
|
|
2073
2080
|
"marketplace-agreement",
|
|
@@ -563,13 +563,19 @@ AthenaResultCompressionTypeType = Literal["GZIP", "SNAPPY", "ZLIB"]
|
|
|
563
563
|
AthenaResultFormatType = Literal["AVRO", "JSON", "ORC", "PARQUET", "TEXTFILE"]
|
|
564
564
|
AuthModeType = Literal["IAM", "SSO"]
|
|
565
565
|
AutoMLAlgorithmType = Literal[
|
|
566
|
+
"arima",
|
|
566
567
|
"catboost",
|
|
568
|
+
"cnn-qr",
|
|
569
|
+
"deepar",
|
|
570
|
+
"ets",
|
|
567
571
|
"extra-trees",
|
|
568
572
|
"fastai",
|
|
569
573
|
"lightgbm",
|
|
570
574
|
"linear-learner",
|
|
571
575
|
"mlp",
|
|
572
576
|
"nn-torch",
|
|
577
|
+
"npts",
|
|
578
|
+
"prophet",
|
|
573
579
|
"randomforest",
|
|
574
580
|
"xgboost",
|
|
575
581
|
]
|
|
@@ -2068,6 +2074,7 @@ ServiceName = Literal[
|
|
|
2068
2074
|
"m2",
|
|
2069
2075
|
"machinelearning",
|
|
2070
2076
|
"macie2",
|
|
2077
|
+
"mailmanager",
|
|
2071
2078
|
"managedblockchain",
|
|
2072
2079
|
"managedblockchain-query",
|
|
2073
2080
|
"marketplace-agreement",
|
|
@@ -408,6 +408,8 @@ __all__ = (
|
|
|
408
408
|
"ModelCardSecurityConfigTypeDef",
|
|
409
409
|
"ModelExplainabilityAppSpecificationTypeDef",
|
|
410
410
|
"InferenceExecutionConfigTypeDef",
|
|
411
|
+
"ModelPackageModelCardTypeDef",
|
|
412
|
+
"ModelPackageSecurityConfigTypeDef",
|
|
411
413
|
"ModelQualityAppSpecificationTypeDef",
|
|
412
414
|
"InstanceMetadataServiceConfigurationTypeDef",
|
|
413
415
|
"NotebookInstanceLifecycleHookTypeDef",
|
|
@@ -1392,8 +1394,6 @@ __all__ = (
|
|
|
1392
1394
|
"SourceIpConfigUnionTypeDef",
|
|
1393
1395
|
"TrafficPatternOutputTypeDef",
|
|
1394
1396
|
"TrafficPatternTypeDef",
|
|
1395
|
-
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
1396
|
-
"TimeSeriesForecastingJobConfigTypeDef",
|
|
1397
1397
|
"TrainingImageConfigTypeDef",
|
|
1398
1398
|
"TransformDataSourceTypeDef",
|
|
1399
1399
|
"WorkforceTypeDef",
|
|
@@ -1409,7 +1409,9 @@ __all__ = (
|
|
|
1409
1409
|
"AsyncInferenceConfigOutputTypeDef",
|
|
1410
1410
|
"AsyncInferenceConfigTypeDef",
|
|
1411
1411
|
"TabularJobConfigOutputTypeDef",
|
|
1412
|
+
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
1412
1413
|
"TabularJobConfigTypeDef",
|
|
1414
|
+
"TimeSeriesForecastingJobConfigTypeDef",
|
|
1413
1415
|
"AutoMLChannelTypeDef",
|
|
1414
1416
|
"AutoMLJobChannelTypeDef",
|
|
1415
1417
|
"ListAutoMLJobsResponseTypeDef",
|
|
@@ -2680,6 +2682,19 @@ InferenceExecutionConfigTypeDef = TypedDict(
|
|
|
2680
2682
|
"Mode": InferenceExecutionModeType,
|
|
2681
2683
|
},
|
|
2682
2684
|
)
|
|
2685
|
+
ModelPackageModelCardTypeDef = TypedDict(
|
|
2686
|
+
"ModelPackageModelCardTypeDef",
|
|
2687
|
+
{
|
|
2688
|
+
"ModelCardContent": NotRequired[str],
|
|
2689
|
+
"ModelCardStatus": NotRequired[ModelCardStatusType],
|
|
2690
|
+
},
|
|
2691
|
+
)
|
|
2692
|
+
ModelPackageSecurityConfigTypeDef = TypedDict(
|
|
2693
|
+
"ModelPackageSecurityConfigTypeDef",
|
|
2694
|
+
{
|
|
2695
|
+
"KmsKeyId": str,
|
|
2696
|
+
},
|
|
2697
|
+
)
|
|
2683
2698
|
ModelQualityAppSpecificationTypeDef = TypedDict(
|
|
2684
2699
|
"ModelQualityAppSpecificationTypeDef",
|
|
2685
2700
|
{
|
|
@@ -11208,32 +11223,6 @@ TrafficPatternTypeDef = TypedDict(
|
|
|
11208
11223
|
"Stairs": NotRequired[StairsTypeDef],
|
|
11209
11224
|
},
|
|
11210
11225
|
)
|
|
11211
|
-
TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
|
|
11212
|
-
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
11213
|
-
{
|
|
11214
|
-
"ForecastFrequency": str,
|
|
11215
|
-
"ForecastHorizon": int,
|
|
11216
|
-
"TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
|
|
11217
|
-
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11218
|
-
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11219
|
-
"ForecastQuantiles": NotRequired[List[str]],
|
|
11220
|
-
"Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
|
|
11221
|
-
"HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
|
|
11222
|
-
},
|
|
11223
|
-
)
|
|
11224
|
-
TimeSeriesForecastingJobConfigTypeDef = TypedDict(
|
|
11225
|
-
"TimeSeriesForecastingJobConfigTypeDef",
|
|
11226
|
-
{
|
|
11227
|
-
"ForecastFrequency": str,
|
|
11228
|
-
"ForecastHorizon": int,
|
|
11229
|
-
"TimeSeriesConfig": TimeSeriesConfigTypeDef,
|
|
11230
|
-
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11231
|
-
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11232
|
-
"ForecastQuantiles": NotRequired[Sequence[str]],
|
|
11233
|
-
"Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
|
|
11234
|
-
"HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
|
|
11235
|
-
},
|
|
11236
|
-
)
|
|
11237
11226
|
TrainingImageConfigTypeDef = TypedDict(
|
|
11238
11227
|
"TrainingImageConfigTypeDef",
|
|
11239
11228
|
{
|
|
@@ -11365,6 +11354,20 @@ TabularJobConfigOutputTypeDef = TypedDict(
|
|
|
11365
11354
|
"SampleWeightAttributeName": NotRequired[str],
|
|
11366
11355
|
},
|
|
11367
11356
|
)
|
|
11357
|
+
TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
|
|
11358
|
+
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
11359
|
+
{
|
|
11360
|
+
"ForecastFrequency": str,
|
|
11361
|
+
"ForecastHorizon": int,
|
|
11362
|
+
"TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
|
|
11363
|
+
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11364
|
+
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11365
|
+
"ForecastQuantiles": NotRequired[List[str]],
|
|
11366
|
+
"Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
|
|
11367
|
+
"HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
|
|
11368
|
+
"CandidateGenerationConfig": NotRequired[CandidateGenerationConfigOutputTypeDef],
|
|
11369
|
+
},
|
|
11370
|
+
)
|
|
11368
11371
|
TabularJobConfigTypeDef = TypedDict(
|
|
11369
11372
|
"TabularJobConfigTypeDef",
|
|
11370
11373
|
{
|
|
@@ -11378,6 +11381,20 @@ TabularJobConfigTypeDef = TypedDict(
|
|
|
11378
11381
|
"SampleWeightAttributeName": NotRequired[str],
|
|
11379
11382
|
},
|
|
11380
11383
|
)
|
|
11384
|
+
TimeSeriesForecastingJobConfigTypeDef = TypedDict(
|
|
11385
|
+
"TimeSeriesForecastingJobConfigTypeDef",
|
|
11386
|
+
{
|
|
11387
|
+
"ForecastFrequency": str,
|
|
11388
|
+
"ForecastHorizon": int,
|
|
11389
|
+
"TimeSeriesConfig": TimeSeriesConfigTypeDef,
|
|
11390
|
+
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11391
|
+
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11392
|
+
"ForecastQuantiles": NotRequired[Sequence[str]],
|
|
11393
|
+
"Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
|
|
11394
|
+
"HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
|
|
11395
|
+
"CandidateGenerationConfig": NotRequired[CandidateGenerationConfigTypeDef],
|
|
11396
|
+
},
|
|
11397
|
+
)
|
|
11381
11398
|
AutoMLChannelTypeDef = TypedDict(
|
|
11382
11399
|
"AutoMLChannelTypeDef",
|
|
11383
11400
|
{
|
|
@@ -14963,6 +14980,7 @@ UpdateModelPackageInputRequestTypeDef = TypedDict(
|
|
|
14963
14980
|
],
|
|
14964
14981
|
"InferenceSpecification": NotRequired[InferenceSpecificationTypeDef],
|
|
14965
14982
|
"SourceUri": NotRequired[str],
|
|
14983
|
+
"ModelCard": NotRequired[ModelPackageModelCardTypeDef],
|
|
14966
14984
|
},
|
|
14967
14985
|
)
|
|
14968
14986
|
DescribeMonitoringScheduleResponseTypeDef = TypedDict(
|
|
@@ -15081,6 +15099,8 @@ DescribeModelPackageOutputTypeDef = TypedDict(
|
|
|
15081
15099
|
],
|
|
15082
15100
|
"SkipModelValidation": SkipModelValidationType,
|
|
15083
15101
|
"SourceUri": str,
|
|
15102
|
+
"SecurityConfig": ModelPackageSecurityConfigTypeDef,
|
|
15103
|
+
"ModelCard": ModelPackageModelCardTypeDef,
|
|
15084
15104
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
15085
15105
|
},
|
|
15086
15106
|
)
|
|
@@ -15113,6 +15133,8 @@ ModelPackageTypeDef = TypedDict(
|
|
|
15113
15133
|
List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
|
|
15114
15134
|
],
|
|
15115
15135
|
"SourceUri": NotRequired[str],
|
|
15136
|
+
"SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
|
|
15137
|
+
"ModelCard": NotRequired[ModelPackageModelCardTypeDef],
|
|
15116
15138
|
"Tags": NotRequired[List[TagTypeDef]],
|
|
15117
15139
|
"CustomerMetadataProperties": NotRequired[Dict[str, str]],
|
|
15118
15140
|
"DriftCheckBaselines": NotRequired[DriftCheckBaselinesTypeDef],
|
|
@@ -15159,6 +15181,8 @@ CreateModelPackageInputRequestTypeDef = TypedDict(
|
|
|
15159
15181
|
],
|
|
15160
15182
|
"SkipModelValidation": NotRequired[SkipModelValidationType],
|
|
15161
15183
|
"SourceUri": NotRequired[str],
|
|
15184
|
+
"SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
|
|
15185
|
+
"ModelCard": NotRequired[ModelPackageModelCardTypeDef],
|
|
15162
15186
|
},
|
|
15163
15187
|
)
|
|
15164
15188
|
ModelPackageValidationSpecificationUnionTypeDef = Union[
|
|
@@ -408,6 +408,8 @@ __all__ = (
|
|
|
408
408
|
"ModelCardSecurityConfigTypeDef",
|
|
409
409
|
"ModelExplainabilityAppSpecificationTypeDef",
|
|
410
410
|
"InferenceExecutionConfigTypeDef",
|
|
411
|
+
"ModelPackageModelCardTypeDef",
|
|
412
|
+
"ModelPackageSecurityConfigTypeDef",
|
|
411
413
|
"ModelQualityAppSpecificationTypeDef",
|
|
412
414
|
"InstanceMetadataServiceConfigurationTypeDef",
|
|
413
415
|
"NotebookInstanceLifecycleHookTypeDef",
|
|
@@ -1392,8 +1394,6 @@ __all__ = (
|
|
|
1392
1394
|
"SourceIpConfigUnionTypeDef",
|
|
1393
1395
|
"TrafficPatternOutputTypeDef",
|
|
1394
1396
|
"TrafficPatternTypeDef",
|
|
1395
|
-
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
1396
|
-
"TimeSeriesForecastingJobConfigTypeDef",
|
|
1397
1397
|
"TrainingImageConfigTypeDef",
|
|
1398
1398
|
"TransformDataSourceTypeDef",
|
|
1399
1399
|
"WorkforceTypeDef",
|
|
@@ -1409,7 +1409,9 @@ __all__ = (
|
|
|
1409
1409
|
"AsyncInferenceConfigOutputTypeDef",
|
|
1410
1410
|
"AsyncInferenceConfigTypeDef",
|
|
1411
1411
|
"TabularJobConfigOutputTypeDef",
|
|
1412
|
+
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
1412
1413
|
"TabularJobConfigTypeDef",
|
|
1414
|
+
"TimeSeriesForecastingJobConfigTypeDef",
|
|
1413
1415
|
"AutoMLChannelTypeDef",
|
|
1414
1416
|
"AutoMLJobChannelTypeDef",
|
|
1415
1417
|
"ListAutoMLJobsResponseTypeDef",
|
|
@@ -2680,6 +2682,19 @@ InferenceExecutionConfigTypeDef = TypedDict(
|
|
|
2680
2682
|
"Mode": InferenceExecutionModeType,
|
|
2681
2683
|
},
|
|
2682
2684
|
)
|
|
2685
|
+
ModelPackageModelCardTypeDef = TypedDict(
|
|
2686
|
+
"ModelPackageModelCardTypeDef",
|
|
2687
|
+
{
|
|
2688
|
+
"ModelCardContent": NotRequired[str],
|
|
2689
|
+
"ModelCardStatus": NotRequired[ModelCardStatusType],
|
|
2690
|
+
},
|
|
2691
|
+
)
|
|
2692
|
+
ModelPackageSecurityConfigTypeDef = TypedDict(
|
|
2693
|
+
"ModelPackageSecurityConfigTypeDef",
|
|
2694
|
+
{
|
|
2695
|
+
"KmsKeyId": str,
|
|
2696
|
+
},
|
|
2697
|
+
)
|
|
2683
2698
|
ModelQualityAppSpecificationTypeDef = TypedDict(
|
|
2684
2699
|
"ModelQualityAppSpecificationTypeDef",
|
|
2685
2700
|
{
|
|
@@ -11208,32 +11223,6 @@ TrafficPatternTypeDef = TypedDict(
|
|
|
11208
11223
|
"Stairs": NotRequired[StairsTypeDef],
|
|
11209
11224
|
},
|
|
11210
11225
|
)
|
|
11211
|
-
TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
|
|
11212
|
-
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
11213
|
-
{
|
|
11214
|
-
"ForecastFrequency": str,
|
|
11215
|
-
"ForecastHorizon": int,
|
|
11216
|
-
"TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
|
|
11217
|
-
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11218
|
-
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11219
|
-
"ForecastQuantiles": NotRequired[List[str]],
|
|
11220
|
-
"Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
|
|
11221
|
-
"HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
|
|
11222
|
-
},
|
|
11223
|
-
)
|
|
11224
|
-
TimeSeriesForecastingJobConfigTypeDef = TypedDict(
|
|
11225
|
-
"TimeSeriesForecastingJobConfigTypeDef",
|
|
11226
|
-
{
|
|
11227
|
-
"ForecastFrequency": str,
|
|
11228
|
-
"ForecastHorizon": int,
|
|
11229
|
-
"TimeSeriesConfig": TimeSeriesConfigTypeDef,
|
|
11230
|
-
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11231
|
-
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11232
|
-
"ForecastQuantiles": NotRequired[Sequence[str]],
|
|
11233
|
-
"Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
|
|
11234
|
-
"HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
|
|
11235
|
-
},
|
|
11236
|
-
)
|
|
11237
11226
|
TrainingImageConfigTypeDef = TypedDict(
|
|
11238
11227
|
"TrainingImageConfigTypeDef",
|
|
11239
11228
|
{
|
|
@@ -11365,6 +11354,20 @@ TabularJobConfigOutputTypeDef = TypedDict(
|
|
|
11365
11354
|
"SampleWeightAttributeName": NotRequired[str],
|
|
11366
11355
|
},
|
|
11367
11356
|
)
|
|
11357
|
+
TimeSeriesForecastingJobConfigOutputTypeDef = TypedDict(
|
|
11358
|
+
"TimeSeriesForecastingJobConfigOutputTypeDef",
|
|
11359
|
+
{
|
|
11360
|
+
"ForecastFrequency": str,
|
|
11361
|
+
"ForecastHorizon": int,
|
|
11362
|
+
"TimeSeriesConfig": TimeSeriesConfigOutputTypeDef,
|
|
11363
|
+
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11364
|
+
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11365
|
+
"ForecastQuantiles": NotRequired[List[str]],
|
|
11366
|
+
"Transformations": NotRequired[TimeSeriesTransformationsOutputTypeDef],
|
|
11367
|
+
"HolidayConfig": NotRequired[List[HolidayConfigAttributesTypeDef]],
|
|
11368
|
+
"CandidateGenerationConfig": NotRequired[CandidateGenerationConfigOutputTypeDef],
|
|
11369
|
+
},
|
|
11370
|
+
)
|
|
11368
11371
|
TabularJobConfigTypeDef = TypedDict(
|
|
11369
11372
|
"TabularJobConfigTypeDef",
|
|
11370
11373
|
{
|
|
@@ -11378,6 +11381,20 @@ TabularJobConfigTypeDef = TypedDict(
|
|
|
11378
11381
|
"SampleWeightAttributeName": NotRequired[str],
|
|
11379
11382
|
},
|
|
11380
11383
|
)
|
|
11384
|
+
TimeSeriesForecastingJobConfigTypeDef = TypedDict(
|
|
11385
|
+
"TimeSeriesForecastingJobConfigTypeDef",
|
|
11386
|
+
{
|
|
11387
|
+
"ForecastFrequency": str,
|
|
11388
|
+
"ForecastHorizon": int,
|
|
11389
|
+
"TimeSeriesConfig": TimeSeriesConfigTypeDef,
|
|
11390
|
+
"FeatureSpecificationS3Uri": NotRequired[str],
|
|
11391
|
+
"CompletionCriteria": NotRequired[AutoMLJobCompletionCriteriaTypeDef],
|
|
11392
|
+
"ForecastQuantiles": NotRequired[Sequence[str]],
|
|
11393
|
+
"Transformations": NotRequired[TimeSeriesTransformationsTypeDef],
|
|
11394
|
+
"HolidayConfig": NotRequired[Sequence[HolidayConfigAttributesTypeDef]],
|
|
11395
|
+
"CandidateGenerationConfig": NotRequired[CandidateGenerationConfigTypeDef],
|
|
11396
|
+
},
|
|
11397
|
+
)
|
|
11381
11398
|
AutoMLChannelTypeDef = TypedDict(
|
|
11382
11399
|
"AutoMLChannelTypeDef",
|
|
11383
11400
|
{
|
|
@@ -14963,6 +14980,7 @@ UpdateModelPackageInputRequestTypeDef = TypedDict(
|
|
|
14963
14980
|
],
|
|
14964
14981
|
"InferenceSpecification": NotRequired[InferenceSpecificationTypeDef],
|
|
14965
14982
|
"SourceUri": NotRequired[str],
|
|
14983
|
+
"ModelCard": NotRequired[ModelPackageModelCardTypeDef],
|
|
14966
14984
|
},
|
|
14967
14985
|
)
|
|
14968
14986
|
DescribeMonitoringScheduleResponseTypeDef = TypedDict(
|
|
@@ -15081,6 +15099,8 @@ DescribeModelPackageOutputTypeDef = TypedDict(
|
|
|
15081
15099
|
],
|
|
15082
15100
|
"SkipModelValidation": SkipModelValidationType,
|
|
15083
15101
|
"SourceUri": str,
|
|
15102
|
+
"SecurityConfig": ModelPackageSecurityConfigTypeDef,
|
|
15103
|
+
"ModelCard": ModelPackageModelCardTypeDef,
|
|
15084
15104
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
15085
15105
|
},
|
|
15086
15106
|
)
|
|
@@ -15113,6 +15133,8 @@ ModelPackageTypeDef = TypedDict(
|
|
|
15113
15133
|
List[AdditionalInferenceSpecificationDefinitionOutputTypeDef]
|
|
15114
15134
|
],
|
|
15115
15135
|
"SourceUri": NotRequired[str],
|
|
15136
|
+
"SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
|
|
15137
|
+
"ModelCard": NotRequired[ModelPackageModelCardTypeDef],
|
|
15116
15138
|
"Tags": NotRequired[List[TagTypeDef]],
|
|
15117
15139
|
"CustomerMetadataProperties": NotRequired[Dict[str, str]],
|
|
15118
15140
|
"DriftCheckBaselines": NotRequired[DriftCheckBaselinesTypeDef],
|
|
@@ -15159,6 +15181,8 @@ CreateModelPackageInputRequestTypeDef = TypedDict(
|
|
|
15159
15181
|
],
|
|
15160
15182
|
"SkipModelValidation": NotRequired[SkipModelValidationType],
|
|
15161
15183
|
"SourceUri": NotRequired[str],
|
|
15184
|
+
"SecurityConfig": NotRequired[ModelPackageSecurityConfigTypeDef],
|
|
15185
|
+
"ModelCard": NotRequired[ModelPackageModelCardTypeDef],
|
|
15162
15186
|
},
|
|
15163
15187
|
)
|
|
15164
15188
|
ModelPackageValidationSpecificationUnionTypeDef = Union[
|
mypy_boto3_sagemaker/version.py
CHANGED
{mypy_boto3_sagemaker-1.34.107.dist-info → mypy_boto3_sagemaker-1.34.116.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.SageMaker 1.34.
|
|
3
|
+
Version: 1.34.116
|
|
4
|
+
Summary: Type annotations for boto3.SageMaker 1.34.116 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
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.SageMaker 1.34.
|
|
46
|
+
[boto3.SageMaker 1.34.116](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=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
2
|
+
mypy_boto3_sagemaker/__init__.pyi,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=STP_dhtI7Pk5YCmcAJ6jhT5GX9qz47bjGdBVnaBp1aY,930
|
|
4
|
+
mypy_boto3_sagemaker/client.py,sha256=Zb4RddsvH5kTM9k1L0esGHIlg9GPeu-37sSfqzebvXE,279436
|
|
5
|
+
mypy_boto3_sagemaker/client.pyi,sha256=rUHfSlb6TqQaOci2gf4wlSyneJeLpf79enUjpm4VL8w,279433
|
|
6
|
+
mypy_boto3_sagemaker/literals.py,sha256=7dyUU0TVrml_Cdc7iVw2CcT7yXo7wH5x6jkTdbQT0qU,68883
|
|
7
|
+
mypy_boto3_sagemaker/literals.pyi,sha256=7dyUU0TVrml_Cdc7iVw2CcT7yXo7wH5x6jkTdbQT0qU,68883
|
|
8
|
+
mypy_boto3_sagemaker/paginator.py,sha256=q2jVJQEHSxSRpulbl9pWG8bBzHVP9di7T2JScL33WdE,102768
|
|
9
|
+
mypy_boto3_sagemaker/paginator.pyi,sha256=WEXKsc8Cb7_Rx4ngfAJJ0LHm0eE7r0W-TM9G7HOZAco,102695
|
|
10
|
+
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=nJ0Ia38mEIiLPxr72qKSgJMJz6uR1BamLjlNts-ObDk,545491
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=nJ0Ia38mEIiLPxr72qKSgJMJz6uR1BamLjlNts-ObDk,545491
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=vQmRDk0bfOl-AzV2UB0z2hiEo_7oahWZLQQOCCizX6I,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.116.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.34.116.dist-info/METADATA,sha256=7-mOQMNVCpiy8FkGfxF323ZPYB-ji4UtqKzeoDxWdxY,25769
|
|
18
|
+
mypy_boto3_sagemaker-1.34.116.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
+
mypy_boto3_sagemaker-1.34.116.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.34.116.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_sagemaker/__init__.py,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
2
|
-
mypy_boto3_sagemaker/__init__.pyi,sha256=RaUXvRI-OVL0aIBxpAM-52Mn3M9MLQRXSVM31BmWKnY,19369
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=k1SZD5Buzjzhb7jauwIUuwDt4lcaNvBFIYYp2jH0HHk,930
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=6qTjxYcKZbGXkZDW9jRSJZmn-u-FiPUoTjelWJQQ464,279188
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=EkMLzbMMeZxsyTe5rRBgaHtf_oi_47t1e8zf6mVCiEI,279185
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=FulWGLFGXxQ-p0g0TU78SGthNbXOvEfQNLi3wOirmWs,68785
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=FulWGLFGXxQ-p0g0TU78SGthNbXOvEfQNLi3wOirmWs,68785
|
|
8
|
-
mypy_boto3_sagemaker/paginator.py,sha256=q2jVJQEHSxSRpulbl9pWG8bBzHVP9di7T2JScL33WdE,102768
|
|
9
|
-
mypy_boto3_sagemaker/paginator.pyi,sha256=WEXKsc8Cb7_Rx4ngfAJJ0LHm0eE7r0W-TM9G7HOZAco,102695
|
|
10
|
-
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=a7GdkwgFXxOp8rgyZsdEAhaKFhZx1TBdiMLFYAgKWh0,544460
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=a7GdkwgFXxOp8rgyZsdEAhaKFhZx1TBdiMLFYAgKWh0,544460
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=gmsxsaCiqAreYSW5Xlr4yGmLgL7AeE1Aj2iNBkl7fbc,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.107.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.34.107.dist-info/METADATA,sha256=PiDVRH1q012tghtSopJzpz5tV-ERkVqpFxBODkedXG8,25769
|
|
18
|
-
mypy_boto3_sagemaker-1.34.107.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
-
mypy_boto3_sagemaker-1.34.107.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.34.107.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_sagemaker-1.34.107.dist-info → mypy_boto3_sagemaker-1.34.116.dist-info}/top_level.txt
RENAMED
|
File without changes
|