mypy-boto3-sagemaker 1.34.98__py3-none-any.whl → 1.34.107__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 +4 -1
- mypy_boto3_sagemaker/client.pyi +4 -1
- mypy_boto3_sagemaker/literals.py +18 -0
- mypy_boto3_sagemaker/literals.pyi +18 -0
- mypy_boto3_sagemaker/type_defs.py +67 -41
- mypy_boto3_sagemaker/type_defs.pyi +67 -41
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.34.98.dist-info → mypy_boto3_sagemaker-1.34.107.dist-info}/METADATA +3 -3
- mypy_boto3_sagemaker-1.34.107.dist-info/RECORD +20 -0
- mypy_boto3_sagemaker-1.34.98.dist-info/RECORD +0 -20
- {mypy_boto3_sagemaker-1.34.98.dist-info → mypy_boto3_sagemaker-1.34.107.dist-info}/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.34.98.dist-info → mypy_boto3_sagemaker-1.34.107.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.34.98.dist-info → mypy_boto3_sagemaker-1.34.107.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.107\n"
|
|
14
|
+
"Version: 1.34.107\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.107")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_sagemaker/client.py
CHANGED
|
@@ -624,6 +624,7 @@ from .type_defs import (
|
|
|
624
624
|
VariantPropertyTypeDef,
|
|
625
625
|
VisibilityConditionsTypeDef,
|
|
626
626
|
VpcConfigUnionTypeDef,
|
|
627
|
+
WorkerAccessConfigurationTypeDef,
|
|
627
628
|
WorkforceVpcConfigRequestTypeDef,
|
|
628
629
|
)
|
|
629
630
|
from .waiter import (
|
|
@@ -1624,7 +1625,7 @@ class SageMakerClient(BaseClient):
|
|
|
1624
1625
|
SpaceDisplayName: str = ...,
|
|
1625
1626
|
) -> CreateSpaceResponseTypeDef:
|
|
1626
1627
|
"""
|
|
1627
|
-
Creates a space used for real time collaboration in a domain.
|
|
1628
|
+
Creates a private space or a space used for real time collaboration in a domain.
|
|
1628
1629
|
|
|
1629
1630
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.create_space)
|
|
1630
1631
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_space)
|
|
@@ -1785,6 +1786,7 @@ class SageMakerClient(BaseClient):
|
|
|
1785
1786
|
Description: str,
|
|
1786
1787
|
WorkforceName: str = ...,
|
|
1787
1788
|
NotificationConfiguration: NotificationConfigurationTypeDef = ...,
|
|
1789
|
+
WorkerAccessConfiguration: WorkerAccessConfigurationTypeDef = ...,
|
|
1788
1790
|
Tags: Sequence[TagTypeDef] = ...,
|
|
1789
1791
|
) -> CreateWorkteamResponseTypeDef:
|
|
1790
1792
|
"""
|
|
@@ -5258,6 +5260,7 @@ class SageMakerClient(BaseClient):
|
|
|
5258
5260
|
MemberDefinitions: Sequence[MemberDefinitionUnionTypeDef] = ...,
|
|
5259
5261
|
Description: str = ...,
|
|
5260
5262
|
NotificationConfiguration: NotificationConfigurationTypeDef = ...,
|
|
5263
|
+
WorkerAccessConfiguration: WorkerAccessConfigurationTypeDef = ...,
|
|
5261
5264
|
) -> UpdateWorkteamResponseTypeDef:
|
|
5262
5265
|
"""
|
|
5263
5266
|
Updates an existing work team with new member definitions or description.
|
mypy_boto3_sagemaker/client.pyi
CHANGED
|
@@ -624,6 +624,7 @@ from .type_defs import (
|
|
|
624
624
|
VariantPropertyTypeDef,
|
|
625
625
|
VisibilityConditionsTypeDef,
|
|
626
626
|
VpcConfigUnionTypeDef,
|
|
627
|
+
WorkerAccessConfigurationTypeDef,
|
|
627
628
|
WorkforceVpcConfigRequestTypeDef,
|
|
628
629
|
)
|
|
629
630
|
from .waiter import (
|
|
@@ -1621,7 +1622,7 @@ class SageMakerClient(BaseClient):
|
|
|
1621
1622
|
SpaceDisplayName: str = ...,
|
|
1622
1623
|
) -> CreateSpaceResponseTypeDef:
|
|
1623
1624
|
"""
|
|
1624
|
-
Creates a space used for real time collaboration in a domain.
|
|
1625
|
+
Creates a private space or a space used for real time collaboration in a domain.
|
|
1625
1626
|
|
|
1626
1627
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.create_space)
|
|
1627
1628
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/client/#create_space)
|
|
@@ -1782,6 +1783,7 @@ class SageMakerClient(BaseClient):
|
|
|
1782
1783
|
Description: str,
|
|
1783
1784
|
WorkforceName: str = ...,
|
|
1784
1785
|
NotificationConfiguration: NotificationConfigurationTypeDef = ...,
|
|
1786
|
+
WorkerAccessConfiguration: WorkerAccessConfigurationTypeDef = ...,
|
|
1785
1787
|
Tags: Sequence[TagTypeDef] = ...,
|
|
1786
1788
|
) -> CreateWorkteamResponseTypeDef:
|
|
1787
1789
|
"""
|
|
@@ -5255,6 +5257,7 @@ class SageMakerClient(BaseClient):
|
|
|
5255
5257
|
MemberDefinitions: Sequence[MemberDefinitionUnionTypeDef] = ...,
|
|
5256
5258
|
Description: str = ...,
|
|
5257
5259
|
NotificationConfiguration: NotificationConfigurationTypeDef = ...,
|
|
5260
|
+
WorkerAccessConfiguration: WorkerAccessConfigurationTypeDef = ...,
|
|
5258
5261
|
) -> UpdateWorkteamResponseTypeDef:
|
|
5259
5262
|
"""
|
|
5260
5263
|
Updates an existing work team with new member definitions or description.
|
mypy_boto3_sagemaker/literals.py
CHANGED
|
@@ -91,6 +91,7 @@ __all__ = (
|
|
|
91
91
|
"EdgePackagingJobStatusType",
|
|
92
92
|
"EdgePresetDeploymentStatusType",
|
|
93
93
|
"EdgePresetDeploymentTypeType",
|
|
94
|
+
"EnabledOrDisabledType",
|
|
94
95
|
"EndpointConfigSortKeyType",
|
|
95
96
|
"EndpointDeletedWaiterName",
|
|
96
97
|
"EndpointInServiceWaiterName",
|
|
@@ -432,6 +433,14 @@ AppInstanceTypeType = Literal[
|
|
|
432
433
|
"ml.g5.4xlarge",
|
|
433
434
|
"ml.g5.8xlarge",
|
|
434
435
|
"ml.g5.xlarge",
|
|
436
|
+
"ml.g6.12xlarge",
|
|
437
|
+
"ml.g6.16xlarge",
|
|
438
|
+
"ml.g6.24xlarge",
|
|
439
|
+
"ml.g6.2xlarge",
|
|
440
|
+
"ml.g6.48xlarge",
|
|
441
|
+
"ml.g6.4xlarge",
|
|
442
|
+
"ml.g6.8xlarge",
|
|
443
|
+
"ml.g6.xlarge",
|
|
435
444
|
"ml.geospatial.interactive",
|
|
436
445
|
"ml.m5.12xlarge",
|
|
437
446
|
"ml.m5.16xlarge",
|
|
@@ -802,6 +811,7 @@ EdgePackagingJobStatusType = Literal[
|
|
|
802
811
|
]
|
|
803
812
|
EdgePresetDeploymentStatusType = Literal["COMPLETED", "FAILED"]
|
|
804
813
|
EdgePresetDeploymentTypeType = Literal["GreengrassV2Component"]
|
|
814
|
+
EnabledOrDisabledType = Literal["Disabled", "Enabled"]
|
|
805
815
|
EndpointConfigSortKeyType = Literal["CreationTime", "Name"]
|
|
806
816
|
EndpointDeletedWaiterName = Literal["endpoint_deleted"]
|
|
807
817
|
EndpointInServiceWaiterName = Literal["endpoint_in_service"]
|
|
@@ -941,6 +951,14 @@ InstanceTypeType = Literal[
|
|
|
941
951
|
"ml.g5.4xlarge",
|
|
942
952
|
"ml.g5.8xlarge",
|
|
943
953
|
"ml.g5.xlarge",
|
|
954
|
+
"ml.g6.12xlarge",
|
|
955
|
+
"ml.g6.16xlarge",
|
|
956
|
+
"ml.g6.24xlarge",
|
|
957
|
+
"ml.g6.2xlarge",
|
|
958
|
+
"ml.g6.48xlarge",
|
|
959
|
+
"ml.g6.4xlarge",
|
|
960
|
+
"ml.g6.8xlarge",
|
|
961
|
+
"ml.g6.xlarge",
|
|
944
962
|
"ml.inf1.24xlarge",
|
|
945
963
|
"ml.inf1.2xlarge",
|
|
946
964
|
"ml.inf1.6xlarge",
|
|
@@ -91,6 +91,7 @@ __all__ = (
|
|
|
91
91
|
"EdgePackagingJobStatusType",
|
|
92
92
|
"EdgePresetDeploymentStatusType",
|
|
93
93
|
"EdgePresetDeploymentTypeType",
|
|
94
|
+
"EnabledOrDisabledType",
|
|
94
95
|
"EndpointConfigSortKeyType",
|
|
95
96
|
"EndpointDeletedWaiterName",
|
|
96
97
|
"EndpointInServiceWaiterName",
|
|
@@ -432,6 +433,14 @@ AppInstanceTypeType = Literal[
|
|
|
432
433
|
"ml.g5.4xlarge",
|
|
433
434
|
"ml.g5.8xlarge",
|
|
434
435
|
"ml.g5.xlarge",
|
|
436
|
+
"ml.g6.12xlarge",
|
|
437
|
+
"ml.g6.16xlarge",
|
|
438
|
+
"ml.g6.24xlarge",
|
|
439
|
+
"ml.g6.2xlarge",
|
|
440
|
+
"ml.g6.48xlarge",
|
|
441
|
+
"ml.g6.4xlarge",
|
|
442
|
+
"ml.g6.8xlarge",
|
|
443
|
+
"ml.g6.xlarge",
|
|
435
444
|
"ml.geospatial.interactive",
|
|
436
445
|
"ml.m5.12xlarge",
|
|
437
446
|
"ml.m5.16xlarge",
|
|
@@ -802,6 +811,7 @@ EdgePackagingJobStatusType = Literal[
|
|
|
802
811
|
]
|
|
803
812
|
EdgePresetDeploymentStatusType = Literal["COMPLETED", "FAILED"]
|
|
804
813
|
EdgePresetDeploymentTypeType = Literal["GreengrassV2Component"]
|
|
814
|
+
EnabledOrDisabledType = Literal["Disabled", "Enabled"]
|
|
805
815
|
EndpointConfigSortKeyType = Literal["CreationTime", "Name"]
|
|
806
816
|
EndpointDeletedWaiterName = Literal["endpoint_deleted"]
|
|
807
817
|
EndpointInServiceWaiterName = Literal["endpoint_in_service"]
|
|
@@ -941,6 +951,14 @@ InstanceTypeType = Literal[
|
|
|
941
951
|
"ml.g5.4xlarge",
|
|
942
952
|
"ml.g5.8xlarge",
|
|
943
953
|
"ml.g5.xlarge",
|
|
954
|
+
"ml.g6.12xlarge",
|
|
955
|
+
"ml.g6.16xlarge",
|
|
956
|
+
"ml.g6.24xlarge",
|
|
957
|
+
"ml.g6.2xlarge",
|
|
958
|
+
"ml.g6.48xlarge",
|
|
959
|
+
"ml.g6.4xlarge",
|
|
960
|
+
"ml.g6.8xlarge",
|
|
961
|
+
"ml.g6.xlarge",
|
|
944
962
|
"ml.inf1.24xlarge",
|
|
945
963
|
"ml.inf1.2xlarge",
|
|
946
964
|
"ml.inf1.6xlarge",
|
|
@@ -85,6 +85,7 @@ from .literals import (
|
|
|
85
85
|
DomainStatusType,
|
|
86
86
|
EdgePackagingJobStatusType,
|
|
87
87
|
EdgePresetDeploymentStatusType,
|
|
88
|
+
EnabledOrDisabledType,
|
|
88
89
|
EndpointConfigSortKeyType,
|
|
89
90
|
EndpointSortKeyType,
|
|
90
91
|
EndpointStatusType,
|
|
@@ -661,6 +662,7 @@ __all__ = (
|
|
|
661
662
|
"HyperbandStrategyConfigTypeDef",
|
|
662
663
|
"ParentHyperParameterTuningJobTypeDef",
|
|
663
664
|
"IamIdentityTypeDef",
|
|
665
|
+
"IamPolicyConstraintsTypeDef",
|
|
664
666
|
"RepositoryAuthConfigTypeDef",
|
|
665
667
|
"ImageTypeDef",
|
|
666
668
|
"ImageVersionTypeDef",
|
|
@@ -1225,6 +1227,7 @@ __all__ = (
|
|
|
1225
1227
|
"HyperParameterTuningJobWarmStartConfigOutputTypeDef",
|
|
1226
1228
|
"HyperParameterTuningJobWarmStartConfigTypeDef",
|
|
1227
1229
|
"UserContextTypeDef",
|
|
1230
|
+
"S3PresignTypeDef",
|
|
1228
1231
|
"ImageConfigTypeDef",
|
|
1229
1232
|
"ListImagesResponseTypeDef",
|
|
1230
1233
|
"ListImageVersionsResponseTypeDef",
|
|
@@ -1488,6 +1491,7 @@ __all__ = (
|
|
|
1488
1491
|
"PipelineTypeDef",
|
|
1489
1492
|
"TrialComponentSimpleSummaryTypeDef",
|
|
1490
1493
|
"TrialComponentSummaryTypeDef",
|
|
1494
|
+
"WorkerAccessConfigurationTypeDef",
|
|
1491
1495
|
"CreateInferenceComponentInputRequestTypeDef",
|
|
1492
1496
|
"UpdateInferenceComponentInputRequestTypeDef",
|
|
1493
1497
|
"ResourceConfigUnionTypeDef",
|
|
@@ -1505,7 +1509,6 @@ __all__ = (
|
|
|
1505
1509
|
"LabelingJobInputConfigExtraOutputTypeDef",
|
|
1506
1510
|
"LabelingJobInputConfigOutputTypeDef",
|
|
1507
1511
|
"LabelingJobInputConfigTypeDef",
|
|
1508
|
-
"WorkteamTypeDef",
|
|
1509
1512
|
"MemberDefinitionUnionTypeDef",
|
|
1510
1513
|
"TargetTrackingScalingPolicyConfigurationTypeDef",
|
|
1511
1514
|
"ModelDataSourceTypeDef",
|
|
@@ -1596,15 +1599,13 @@ __all__ = (
|
|
|
1596
1599
|
"ListAssociationsResponseTypeDef",
|
|
1597
1600
|
"TrialTypeDef",
|
|
1598
1601
|
"ListTrialComponentsResponseTypeDef",
|
|
1602
|
+
"WorkteamTypeDef",
|
|
1599
1603
|
"TrainingSpecificationOutputTypeDef",
|
|
1600
1604
|
"TrainingSpecificationTypeDef",
|
|
1601
1605
|
"HyperParameterTuningJobConfigUnionTypeDef",
|
|
1602
1606
|
"ListAppImageConfigsResponseTypeDef",
|
|
1603
1607
|
"LabelingJobSummaryTypeDef",
|
|
1604
1608
|
"LabelingJobInputConfigUnionTypeDef",
|
|
1605
|
-
"DescribeWorkteamResponseTypeDef",
|
|
1606
|
-
"ListWorkteamsResponseTypeDef",
|
|
1607
|
-
"UpdateWorkteamResponseTypeDef",
|
|
1608
1609
|
"CreateWorkteamRequestRequestTypeDef",
|
|
1609
1610
|
"UpdateWorkteamRequestRequestTypeDef",
|
|
1610
1611
|
"ScalingPolicyTypeDef",
|
|
@@ -1671,6 +1672,9 @@ __all__ = (
|
|
|
1671
1672
|
"HyperParameterTrainingJobDefinitionUnionTypeDef",
|
|
1672
1673
|
"ListSpacesResponseTypeDef",
|
|
1673
1674
|
"ListInferenceRecommendationsJobStepsResponseTypeDef",
|
|
1675
|
+
"DescribeWorkteamResponseTypeDef",
|
|
1676
|
+
"ListWorkteamsResponseTypeDef",
|
|
1677
|
+
"UpdateWorkteamResponseTypeDef",
|
|
1674
1678
|
"TrainingSpecificationUnionTypeDef",
|
|
1675
1679
|
"ListLabelingJobsResponseTypeDef",
|
|
1676
1680
|
"DynamicScalingConfigurationTypeDef",
|
|
@@ -4549,6 +4553,13 @@ IamIdentityTypeDef = TypedDict(
|
|
|
4549
4553
|
"SourceIdentity": NotRequired[str],
|
|
4550
4554
|
},
|
|
4551
4555
|
)
|
|
4556
|
+
IamPolicyConstraintsTypeDef = TypedDict(
|
|
4557
|
+
"IamPolicyConstraintsTypeDef",
|
|
4558
|
+
{
|
|
4559
|
+
"SourceIp": NotRequired[EnabledOrDisabledType],
|
|
4560
|
+
"VpcSourceIp": NotRequired[EnabledOrDisabledType],
|
|
4561
|
+
},
|
|
4562
|
+
)
|
|
4552
4563
|
RepositoryAuthConfigTypeDef = TypedDict(
|
|
4553
4564
|
"RepositoryAuthConfigTypeDef",
|
|
4554
4565
|
{
|
|
@@ -9567,6 +9578,12 @@ UserContextTypeDef = TypedDict(
|
|
|
9567
9578
|
"IamIdentity": NotRequired[IamIdentityTypeDef],
|
|
9568
9579
|
},
|
|
9569
9580
|
)
|
|
9581
|
+
S3PresignTypeDef = TypedDict(
|
|
9582
|
+
"S3PresignTypeDef",
|
|
9583
|
+
{
|
|
9584
|
+
"IamPolicyConstraints": NotRequired[IamPolicyConstraintsTypeDef],
|
|
9585
|
+
},
|
|
9586
|
+
)
|
|
9570
9587
|
ImageConfigTypeDef = TypedDict(
|
|
9571
9588
|
"ImageConfigTypeDef",
|
|
9572
9589
|
{
|
|
@@ -12222,6 +12239,12 @@ TrialComponentSummaryTypeDef = TypedDict(
|
|
|
12222
12239
|
"LastModifiedBy": NotRequired[UserContextTypeDef],
|
|
12223
12240
|
},
|
|
12224
12241
|
)
|
|
12242
|
+
WorkerAccessConfigurationTypeDef = TypedDict(
|
|
12243
|
+
"WorkerAccessConfigurationTypeDef",
|
|
12244
|
+
{
|
|
12245
|
+
"S3Presign": NotRequired[S3PresignTypeDef],
|
|
12246
|
+
},
|
|
12247
|
+
)
|
|
12225
12248
|
CreateInferenceComponentInputRequestTypeDef = TypedDict(
|
|
12226
12249
|
"CreateInferenceComponentInputRequestTypeDef",
|
|
12227
12250
|
{
|
|
@@ -12381,21 +12404,6 @@ LabelingJobInputConfigTypeDef = TypedDict(
|
|
|
12381
12404
|
"DataAttributes": NotRequired[LabelingJobDataAttributesTypeDef],
|
|
12382
12405
|
},
|
|
12383
12406
|
)
|
|
12384
|
-
WorkteamTypeDef = TypedDict(
|
|
12385
|
-
"WorkteamTypeDef",
|
|
12386
|
-
{
|
|
12387
|
-
"WorkteamName": str,
|
|
12388
|
-
"MemberDefinitions": List[MemberDefinitionOutputTypeDef],
|
|
12389
|
-
"WorkteamArn": str,
|
|
12390
|
-
"Description": str,
|
|
12391
|
-
"WorkforceArn": NotRequired[str],
|
|
12392
|
-
"ProductListingIds": NotRequired[List[str]],
|
|
12393
|
-
"SubDomain": NotRequired[str],
|
|
12394
|
-
"CreateDate": NotRequired[datetime],
|
|
12395
|
-
"LastUpdatedDate": NotRequired[datetime],
|
|
12396
|
-
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
12397
|
-
},
|
|
12398
|
-
)
|
|
12399
12407
|
MemberDefinitionUnionTypeDef = Union[MemberDefinitionTypeDef, MemberDefinitionExtraOutputTypeDef]
|
|
12400
12408
|
TargetTrackingScalingPolicyConfigurationTypeDef = TypedDict(
|
|
12401
12409
|
"TargetTrackingScalingPolicyConfigurationTypeDef",
|
|
@@ -13410,6 +13418,22 @@ ListTrialComponentsResponseTypeDef = TypedDict(
|
|
|
13410
13418
|
"NextToken": NotRequired[str],
|
|
13411
13419
|
},
|
|
13412
13420
|
)
|
|
13421
|
+
WorkteamTypeDef = TypedDict(
|
|
13422
|
+
"WorkteamTypeDef",
|
|
13423
|
+
{
|
|
13424
|
+
"WorkteamName": str,
|
|
13425
|
+
"MemberDefinitions": List[MemberDefinitionOutputTypeDef],
|
|
13426
|
+
"WorkteamArn": str,
|
|
13427
|
+
"Description": str,
|
|
13428
|
+
"WorkforceArn": NotRequired[str],
|
|
13429
|
+
"ProductListingIds": NotRequired[List[str]],
|
|
13430
|
+
"SubDomain": NotRequired[str],
|
|
13431
|
+
"CreateDate": NotRequired[datetime],
|
|
13432
|
+
"LastUpdatedDate": NotRequired[datetime],
|
|
13433
|
+
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
13434
|
+
"WorkerAccessConfiguration": NotRequired[WorkerAccessConfigurationTypeDef],
|
|
13435
|
+
},
|
|
13436
|
+
)
|
|
13413
13437
|
TrainingSpecificationOutputTypeDef = TypedDict(
|
|
13414
13438
|
"TrainingSpecificationOutputTypeDef",
|
|
13415
13439
|
{
|
|
@@ -13473,28 +13497,6 @@ LabelingJobSummaryTypeDef = TypedDict(
|
|
|
13473
13497
|
LabelingJobInputConfigUnionTypeDef = Union[
|
|
13474
13498
|
LabelingJobInputConfigTypeDef, LabelingJobInputConfigExtraOutputTypeDef
|
|
13475
13499
|
]
|
|
13476
|
-
DescribeWorkteamResponseTypeDef = TypedDict(
|
|
13477
|
-
"DescribeWorkteamResponseTypeDef",
|
|
13478
|
-
{
|
|
13479
|
-
"Workteam": WorkteamTypeDef,
|
|
13480
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
13481
|
-
},
|
|
13482
|
-
)
|
|
13483
|
-
ListWorkteamsResponseTypeDef = TypedDict(
|
|
13484
|
-
"ListWorkteamsResponseTypeDef",
|
|
13485
|
-
{
|
|
13486
|
-
"Workteams": List[WorkteamTypeDef],
|
|
13487
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
13488
|
-
"NextToken": NotRequired[str],
|
|
13489
|
-
},
|
|
13490
|
-
)
|
|
13491
|
-
UpdateWorkteamResponseTypeDef = TypedDict(
|
|
13492
|
-
"UpdateWorkteamResponseTypeDef",
|
|
13493
|
-
{
|
|
13494
|
-
"Workteam": WorkteamTypeDef,
|
|
13495
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
13496
|
-
},
|
|
13497
|
-
)
|
|
13498
13500
|
CreateWorkteamRequestRequestTypeDef = TypedDict(
|
|
13499
13501
|
"CreateWorkteamRequestRequestTypeDef",
|
|
13500
13502
|
{
|
|
@@ -13503,6 +13505,7 @@ CreateWorkteamRequestRequestTypeDef = TypedDict(
|
|
|
13503
13505
|
"Description": str,
|
|
13504
13506
|
"WorkforceName": NotRequired[str],
|
|
13505
13507
|
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
13508
|
+
"WorkerAccessConfiguration": NotRequired[WorkerAccessConfigurationTypeDef],
|
|
13506
13509
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
13507
13510
|
},
|
|
13508
13511
|
)
|
|
@@ -13513,6 +13516,7 @@ UpdateWorkteamRequestRequestTypeDef = TypedDict(
|
|
|
13513
13516
|
"MemberDefinitions": NotRequired[Sequence[MemberDefinitionUnionTypeDef]],
|
|
13514
13517
|
"Description": NotRequired[str],
|
|
13515
13518
|
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
13519
|
+
"WorkerAccessConfiguration": NotRequired[WorkerAccessConfigurationTypeDef],
|
|
13516
13520
|
},
|
|
13517
13521
|
)
|
|
13518
13522
|
ScalingPolicyTypeDef = TypedDict(
|
|
@@ -14387,6 +14391,28 @@ ListInferenceRecommendationsJobStepsResponseTypeDef = TypedDict(
|
|
|
14387
14391
|
"NextToken": NotRequired[str],
|
|
14388
14392
|
},
|
|
14389
14393
|
)
|
|
14394
|
+
DescribeWorkteamResponseTypeDef = TypedDict(
|
|
14395
|
+
"DescribeWorkteamResponseTypeDef",
|
|
14396
|
+
{
|
|
14397
|
+
"Workteam": WorkteamTypeDef,
|
|
14398
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
14399
|
+
},
|
|
14400
|
+
)
|
|
14401
|
+
ListWorkteamsResponseTypeDef = TypedDict(
|
|
14402
|
+
"ListWorkteamsResponseTypeDef",
|
|
14403
|
+
{
|
|
14404
|
+
"Workteams": List[WorkteamTypeDef],
|
|
14405
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
14406
|
+
"NextToken": NotRequired[str],
|
|
14407
|
+
},
|
|
14408
|
+
)
|
|
14409
|
+
UpdateWorkteamResponseTypeDef = TypedDict(
|
|
14410
|
+
"UpdateWorkteamResponseTypeDef",
|
|
14411
|
+
{
|
|
14412
|
+
"Workteam": WorkteamTypeDef,
|
|
14413
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
14414
|
+
},
|
|
14415
|
+
)
|
|
14390
14416
|
TrainingSpecificationUnionTypeDef = Union[
|
|
14391
14417
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
14392
14418
|
]
|
|
@@ -85,6 +85,7 @@ from .literals import (
|
|
|
85
85
|
DomainStatusType,
|
|
86
86
|
EdgePackagingJobStatusType,
|
|
87
87
|
EdgePresetDeploymentStatusType,
|
|
88
|
+
EnabledOrDisabledType,
|
|
88
89
|
EndpointConfigSortKeyType,
|
|
89
90
|
EndpointSortKeyType,
|
|
90
91
|
EndpointStatusType,
|
|
@@ -661,6 +662,7 @@ __all__ = (
|
|
|
661
662
|
"HyperbandStrategyConfigTypeDef",
|
|
662
663
|
"ParentHyperParameterTuningJobTypeDef",
|
|
663
664
|
"IamIdentityTypeDef",
|
|
665
|
+
"IamPolicyConstraintsTypeDef",
|
|
664
666
|
"RepositoryAuthConfigTypeDef",
|
|
665
667
|
"ImageTypeDef",
|
|
666
668
|
"ImageVersionTypeDef",
|
|
@@ -1225,6 +1227,7 @@ __all__ = (
|
|
|
1225
1227
|
"HyperParameterTuningJobWarmStartConfigOutputTypeDef",
|
|
1226
1228
|
"HyperParameterTuningJobWarmStartConfigTypeDef",
|
|
1227
1229
|
"UserContextTypeDef",
|
|
1230
|
+
"S3PresignTypeDef",
|
|
1228
1231
|
"ImageConfigTypeDef",
|
|
1229
1232
|
"ListImagesResponseTypeDef",
|
|
1230
1233
|
"ListImageVersionsResponseTypeDef",
|
|
@@ -1488,6 +1491,7 @@ __all__ = (
|
|
|
1488
1491
|
"PipelineTypeDef",
|
|
1489
1492
|
"TrialComponentSimpleSummaryTypeDef",
|
|
1490
1493
|
"TrialComponentSummaryTypeDef",
|
|
1494
|
+
"WorkerAccessConfigurationTypeDef",
|
|
1491
1495
|
"CreateInferenceComponentInputRequestTypeDef",
|
|
1492
1496
|
"UpdateInferenceComponentInputRequestTypeDef",
|
|
1493
1497
|
"ResourceConfigUnionTypeDef",
|
|
@@ -1505,7 +1509,6 @@ __all__ = (
|
|
|
1505
1509
|
"LabelingJobInputConfigExtraOutputTypeDef",
|
|
1506
1510
|
"LabelingJobInputConfigOutputTypeDef",
|
|
1507
1511
|
"LabelingJobInputConfigTypeDef",
|
|
1508
|
-
"WorkteamTypeDef",
|
|
1509
1512
|
"MemberDefinitionUnionTypeDef",
|
|
1510
1513
|
"TargetTrackingScalingPolicyConfigurationTypeDef",
|
|
1511
1514
|
"ModelDataSourceTypeDef",
|
|
@@ -1596,15 +1599,13 @@ __all__ = (
|
|
|
1596
1599
|
"ListAssociationsResponseTypeDef",
|
|
1597
1600
|
"TrialTypeDef",
|
|
1598
1601
|
"ListTrialComponentsResponseTypeDef",
|
|
1602
|
+
"WorkteamTypeDef",
|
|
1599
1603
|
"TrainingSpecificationOutputTypeDef",
|
|
1600
1604
|
"TrainingSpecificationTypeDef",
|
|
1601
1605
|
"HyperParameterTuningJobConfigUnionTypeDef",
|
|
1602
1606
|
"ListAppImageConfigsResponseTypeDef",
|
|
1603
1607
|
"LabelingJobSummaryTypeDef",
|
|
1604
1608
|
"LabelingJobInputConfigUnionTypeDef",
|
|
1605
|
-
"DescribeWorkteamResponseTypeDef",
|
|
1606
|
-
"ListWorkteamsResponseTypeDef",
|
|
1607
|
-
"UpdateWorkteamResponseTypeDef",
|
|
1608
1609
|
"CreateWorkteamRequestRequestTypeDef",
|
|
1609
1610
|
"UpdateWorkteamRequestRequestTypeDef",
|
|
1610
1611
|
"ScalingPolicyTypeDef",
|
|
@@ -1671,6 +1672,9 @@ __all__ = (
|
|
|
1671
1672
|
"HyperParameterTrainingJobDefinitionUnionTypeDef",
|
|
1672
1673
|
"ListSpacesResponseTypeDef",
|
|
1673
1674
|
"ListInferenceRecommendationsJobStepsResponseTypeDef",
|
|
1675
|
+
"DescribeWorkteamResponseTypeDef",
|
|
1676
|
+
"ListWorkteamsResponseTypeDef",
|
|
1677
|
+
"UpdateWorkteamResponseTypeDef",
|
|
1674
1678
|
"TrainingSpecificationUnionTypeDef",
|
|
1675
1679
|
"ListLabelingJobsResponseTypeDef",
|
|
1676
1680
|
"DynamicScalingConfigurationTypeDef",
|
|
@@ -4549,6 +4553,13 @@ IamIdentityTypeDef = TypedDict(
|
|
|
4549
4553
|
"SourceIdentity": NotRequired[str],
|
|
4550
4554
|
},
|
|
4551
4555
|
)
|
|
4556
|
+
IamPolicyConstraintsTypeDef = TypedDict(
|
|
4557
|
+
"IamPolicyConstraintsTypeDef",
|
|
4558
|
+
{
|
|
4559
|
+
"SourceIp": NotRequired[EnabledOrDisabledType],
|
|
4560
|
+
"VpcSourceIp": NotRequired[EnabledOrDisabledType],
|
|
4561
|
+
},
|
|
4562
|
+
)
|
|
4552
4563
|
RepositoryAuthConfigTypeDef = TypedDict(
|
|
4553
4564
|
"RepositoryAuthConfigTypeDef",
|
|
4554
4565
|
{
|
|
@@ -9567,6 +9578,12 @@ UserContextTypeDef = TypedDict(
|
|
|
9567
9578
|
"IamIdentity": NotRequired[IamIdentityTypeDef],
|
|
9568
9579
|
},
|
|
9569
9580
|
)
|
|
9581
|
+
S3PresignTypeDef = TypedDict(
|
|
9582
|
+
"S3PresignTypeDef",
|
|
9583
|
+
{
|
|
9584
|
+
"IamPolicyConstraints": NotRequired[IamPolicyConstraintsTypeDef],
|
|
9585
|
+
},
|
|
9586
|
+
)
|
|
9570
9587
|
ImageConfigTypeDef = TypedDict(
|
|
9571
9588
|
"ImageConfigTypeDef",
|
|
9572
9589
|
{
|
|
@@ -12222,6 +12239,12 @@ TrialComponentSummaryTypeDef = TypedDict(
|
|
|
12222
12239
|
"LastModifiedBy": NotRequired[UserContextTypeDef],
|
|
12223
12240
|
},
|
|
12224
12241
|
)
|
|
12242
|
+
WorkerAccessConfigurationTypeDef = TypedDict(
|
|
12243
|
+
"WorkerAccessConfigurationTypeDef",
|
|
12244
|
+
{
|
|
12245
|
+
"S3Presign": NotRequired[S3PresignTypeDef],
|
|
12246
|
+
},
|
|
12247
|
+
)
|
|
12225
12248
|
CreateInferenceComponentInputRequestTypeDef = TypedDict(
|
|
12226
12249
|
"CreateInferenceComponentInputRequestTypeDef",
|
|
12227
12250
|
{
|
|
@@ -12381,21 +12404,6 @@ LabelingJobInputConfigTypeDef = TypedDict(
|
|
|
12381
12404
|
"DataAttributes": NotRequired[LabelingJobDataAttributesTypeDef],
|
|
12382
12405
|
},
|
|
12383
12406
|
)
|
|
12384
|
-
WorkteamTypeDef = TypedDict(
|
|
12385
|
-
"WorkteamTypeDef",
|
|
12386
|
-
{
|
|
12387
|
-
"WorkteamName": str,
|
|
12388
|
-
"MemberDefinitions": List[MemberDefinitionOutputTypeDef],
|
|
12389
|
-
"WorkteamArn": str,
|
|
12390
|
-
"Description": str,
|
|
12391
|
-
"WorkforceArn": NotRequired[str],
|
|
12392
|
-
"ProductListingIds": NotRequired[List[str]],
|
|
12393
|
-
"SubDomain": NotRequired[str],
|
|
12394
|
-
"CreateDate": NotRequired[datetime],
|
|
12395
|
-
"LastUpdatedDate": NotRequired[datetime],
|
|
12396
|
-
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
12397
|
-
},
|
|
12398
|
-
)
|
|
12399
12407
|
MemberDefinitionUnionTypeDef = Union[MemberDefinitionTypeDef, MemberDefinitionExtraOutputTypeDef]
|
|
12400
12408
|
TargetTrackingScalingPolicyConfigurationTypeDef = TypedDict(
|
|
12401
12409
|
"TargetTrackingScalingPolicyConfigurationTypeDef",
|
|
@@ -13410,6 +13418,22 @@ ListTrialComponentsResponseTypeDef = TypedDict(
|
|
|
13410
13418
|
"NextToken": NotRequired[str],
|
|
13411
13419
|
},
|
|
13412
13420
|
)
|
|
13421
|
+
WorkteamTypeDef = TypedDict(
|
|
13422
|
+
"WorkteamTypeDef",
|
|
13423
|
+
{
|
|
13424
|
+
"WorkteamName": str,
|
|
13425
|
+
"MemberDefinitions": List[MemberDefinitionOutputTypeDef],
|
|
13426
|
+
"WorkteamArn": str,
|
|
13427
|
+
"Description": str,
|
|
13428
|
+
"WorkforceArn": NotRequired[str],
|
|
13429
|
+
"ProductListingIds": NotRequired[List[str]],
|
|
13430
|
+
"SubDomain": NotRequired[str],
|
|
13431
|
+
"CreateDate": NotRequired[datetime],
|
|
13432
|
+
"LastUpdatedDate": NotRequired[datetime],
|
|
13433
|
+
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
13434
|
+
"WorkerAccessConfiguration": NotRequired[WorkerAccessConfigurationTypeDef],
|
|
13435
|
+
},
|
|
13436
|
+
)
|
|
13413
13437
|
TrainingSpecificationOutputTypeDef = TypedDict(
|
|
13414
13438
|
"TrainingSpecificationOutputTypeDef",
|
|
13415
13439
|
{
|
|
@@ -13473,28 +13497,6 @@ LabelingJobSummaryTypeDef = TypedDict(
|
|
|
13473
13497
|
LabelingJobInputConfigUnionTypeDef = Union[
|
|
13474
13498
|
LabelingJobInputConfigTypeDef, LabelingJobInputConfigExtraOutputTypeDef
|
|
13475
13499
|
]
|
|
13476
|
-
DescribeWorkteamResponseTypeDef = TypedDict(
|
|
13477
|
-
"DescribeWorkteamResponseTypeDef",
|
|
13478
|
-
{
|
|
13479
|
-
"Workteam": WorkteamTypeDef,
|
|
13480
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
13481
|
-
},
|
|
13482
|
-
)
|
|
13483
|
-
ListWorkteamsResponseTypeDef = TypedDict(
|
|
13484
|
-
"ListWorkteamsResponseTypeDef",
|
|
13485
|
-
{
|
|
13486
|
-
"Workteams": List[WorkteamTypeDef],
|
|
13487
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
13488
|
-
"NextToken": NotRequired[str],
|
|
13489
|
-
},
|
|
13490
|
-
)
|
|
13491
|
-
UpdateWorkteamResponseTypeDef = TypedDict(
|
|
13492
|
-
"UpdateWorkteamResponseTypeDef",
|
|
13493
|
-
{
|
|
13494
|
-
"Workteam": WorkteamTypeDef,
|
|
13495
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
13496
|
-
},
|
|
13497
|
-
)
|
|
13498
13500
|
CreateWorkteamRequestRequestTypeDef = TypedDict(
|
|
13499
13501
|
"CreateWorkteamRequestRequestTypeDef",
|
|
13500
13502
|
{
|
|
@@ -13503,6 +13505,7 @@ CreateWorkteamRequestRequestTypeDef = TypedDict(
|
|
|
13503
13505
|
"Description": str,
|
|
13504
13506
|
"WorkforceName": NotRequired[str],
|
|
13505
13507
|
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
13508
|
+
"WorkerAccessConfiguration": NotRequired[WorkerAccessConfigurationTypeDef],
|
|
13506
13509
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
13507
13510
|
},
|
|
13508
13511
|
)
|
|
@@ -13513,6 +13516,7 @@ UpdateWorkteamRequestRequestTypeDef = TypedDict(
|
|
|
13513
13516
|
"MemberDefinitions": NotRequired[Sequence[MemberDefinitionUnionTypeDef]],
|
|
13514
13517
|
"Description": NotRequired[str],
|
|
13515
13518
|
"NotificationConfiguration": NotRequired[NotificationConfigurationTypeDef],
|
|
13519
|
+
"WorkerAccessConfiguration": NotRequired[WorkerAccessConfigurationTypeDef],
|
|
13516
13520
|
},
|
|
13517
13521
|
)
|
|
13518
13522
|
ScalingPolicyTypeDef = TypedDict(
|
|
@@ -14387,6 +14391,28 @@ ListInferenceRecommendationsJobStepsResponseTypeDef = TypedDict(
|
|
|
14387
14391
|
"NextToken": NotRequired[str],
|
|
14388
14392
|
},
|
|
14389
14393
|
)
|
|
14394
|
+
DescribeWorkteamResponseTypeDef = TypedDict(
|
|
14395
|
+
"DescribeWorkteamResponseTypeDef",
|
|
14396
|
+
{
|
|
14397
|
+
"Workteam": WorkteamTypeDef,
|
|
14398
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
14399
|
+
},
|
|
14400
|
+
)
|
|
14401
|
+
ListWorkteamsResponseTypeDef = TypedDict(
|
|
14402
|
+
"ListWorkteamsResponseTypeDef",
|
|
14403
|
+
{
|
|
14404
|
+
"Workteams": List[WorkteamTypeDef],
|
|
14405
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
14406
|
+
"NextToken": NotRequired[str],
|
|
14407
|
+
},
|
|
14408
|
+
)
|
|
14409
|
+
UpdateWorkteamResponseTypeDef = TypedDict(
|
|
14410
|
+
"UpdateWorkteamResponseTypeDef",
|
|
14411
|
+
{
|
|
14412
|
+
"Workteam": WorkteamTypeDef,
|
|
14413
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
14414
|
+
},
|
|
14415
|
+
)
|
|
14390
14416
|
TrainingSpecificationUnionTypeDef = Union[
|
|
14391
14417
|
TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
|
|
14392
14418
|
]
|
mypy_boto3_sagemaker/version.py
CHANGED
|
@@ -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.107
|
|
4
|
+
Summary: Type annotations for boto3.SageMaker 1.34.107 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.107](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=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,,
|
|
@@ -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=fo2Vzl8YpnUx0mBswBZtvwqlquROLETfPfscqL0ux84,927
|
|
4
|
-
mypy_boto3_sagemaker/client.py,sha256=CJoKw9EeNs2S329cJ_Cwnya9N4eVfKKnkmnfChKb17g,278981
|
|
5
|
-
mypy_boto3_sagemaker/client.pyi,sha256=8xY0wnI5vKWh-9sYl8L2atz8daWKAhHklX9nKUcKp9c,278978
|
|
6
|
-
mypy_boto3_sagemaker/literals.py,sha256=PMFt1kil5JFb5hy4BFgDBddefQeVYstqDLGR1Pg0mIw,68359
|
|
7
|
-
mypy_boto3_sagemaker/literals.pyi,sha256=PMFt1kil5JFb5hy4BFgDBddefQeVYstqDLGR1Pg0mIw,68359
|
|
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=ao7-lNwA69FtLTzI2z3o4YCPkIMn5QCDu99BDOslpkM,543580
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=ao7-lNwA69FtLTzI2z3o4YCPkIMn5QCDu99BDOslpkM,543580
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=UQnSaYCW4TOuWVub1wuTdm1THyJToJL7ZJF6KzbC0ks,62
|
|
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.98.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_sagemaker-1.34.98.dist-info/METADATA,sha256=ItRhxw6QpYwnGzDV46Un92mNj6SvVN4y806CHQ5Xhto,25766
|
|
18
|
-
mypy_boto3_sagemaker-1.34.98.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
-
mypy_boto3_sagemaker-1.34.98.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
-
mypy_boto3_sagemaker-1.34.98.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{mypy_boto3_sagemaker-1.34.98.dist-info → mypy_boto3_sagemaker-1.34.107.dist-info}/top_level.txt
RENAMED
|
File without changes
|