mypy-boto3-sagemaker 1.38.39__py3-none-any.whl → 1.38.40__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/type_defs.py +109 -41
- mypy_boto3_sagemaker/type_defs.pyi +96 -38
- mypy_boto3_sagemaker/version.py +1 -1
- {mypy_boto3_sagemaker-1.38.39.dist-info → mypy_boto3_sagemaker-1.38.40.dist-info}/METADATA +4 -4
- {mypy_boto3_sagemaker-1.38.39.dist-info → mypy_boto3_sagemaker-1.38.40.dist-info}/RECORD +9 -9
- {mypy_boto3_sagemaker-1.38.39.dist-info → mypy_boto3_sagemaker-1.38.40.dist-info}/WHEEL +0 -0
- {mypy_boto3_sagemaker-1.38.39.dist-info → mypy_boto3_sagemaker-1.38.40.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_sagemaker-1.38.39.dist-info → mypy_boto3_sagemaker-1.38.40.dist-info}/top_level.txt +0 -0
mypy_boto3_sagemaker/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 SageMaker 1.38.
|
|
16
|
-
"Version: 1.38.
|
|
15
|
+
"Type annotations for boto3 SageMaker 1.38.40\n"
|
|
16
|
+
"Version: 1.38.40\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#sagemaker\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.38.
|
|
29
|
+
sys.stdout.write("1.38.40\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -443,6 +443,13 @@ __all__ = (
|
|
|
443
443
|
"CategoricalParameterRangeTypeDef",
|
|
444
444
|
"CategoricalParameterRangeUnionTypeDef",
|
|
445
445
|
"CategoricalParameterTypeDef",
|
|
446
|
+
"CfnCreateTemplateProviderTypeDef",
|
|
447
|
+
"CfnStackCreateParameterTypeDef",
|
|
448
|
+
"CfnStackDetailTypeDef",
|
|
449
|
+
"CfnStackParameterTypeDef",
|
|
450
|
+
"CfnStackUpdateParameterTypeDef",
|
|
451
|
+
"CfnTemplateProviderDetailTypeDef",
|
|
452
|
+
"CfnUpdateTemplateProviderTypeDef",
|
|
446
453
|
"ChannelOutputTypeDef",
|
|
447
454
|
"ChannelSpecificationOutputTypeDef",
|
|
448
455
|
"ChannelSpecificationTypeDef",
|
|
@@ -611,6 +618,7 @@ __all__ = (
|
|
|
611
618
|
"CreateSpaceResponseTypeDef",
|
|
612
619
|
"CreateStudioLifecycleConfigRequestTypeDef",
|
|
613
620
|
"CreateStudioLifecycleConfigResponseTypeDef",
|
|
621
|
+
"CreateTemplateProviderTypeDef",
|
|
614
622
|
"CreateTrainingJobRequestTypeDef",
|
|
615
623
|
"CreateTrainingJobResponseTypeDef",
|
|
616
624
|
"CreateTrainingPlanRequestTypeDef",
|
|
@@ -1752,6 +1760,7 @@ __all__ = (
|
|
|
1752
1760
|
"TagTypeDef",
|
|
1753
1761
|
"TargetPlatformTypeDef",
|
|
1754
1762
|
"TargetTrackingScalingPolicyConfigurationTypeDef",
|
|
1763
|
+
"TemplateProviderDetailTypeDef",
|
|
1755
1764
|
"TensorBoardAppSettingsTypeDef",
|
|
1756
1765
|
"TensorBoardOutputConfigTypeDef",
|
|
1757
1766
|
"TextClassificationJobConfigTypeDef",
|
|
@@ -1888,6 +1897,7 @@ __all__ = (
|
|
|
1888
1897
|
"UpdateProjectOutputTypeDef",
|
|
1889
1898
|
"UpdateSpaceRequestTypeDef",
|
|
1890
1899
|
"UpdateSpaceResponseTypeDef",
|
|
1900
|
+
"UpdateTemplateProviderTypeDef",
|
|
1891
1901
|
"UpdateTrainingJobRequestTypeDef",
|
|
1892
1902
|
"UpdateTrainingJobResponseTypeDef",
|
|
1893
1903
|
"UpdateTrialComponentRequestTypeDef",
|
|
@@ -2317,6 +2327,27 @@ class CategoricalParameterTypeDef(TypedDict):
|
|
|
2317
2327
|
Value: Sequence[str]
|
|
2318
2328
|
|
|
2319
2329
|
|
|
2330
|
+
class CfnStackCreateParameterTypeDef(TypedDict):
|
|
2331
|
+
Key: str
|
|
2332
|
+
Value: NotRequired[str]
|
|
2333
|
+
|
|
2334
|
+
|
|
2335
|
+
class CfnStackDetailTypeDef(TypedDict):
|
|
2336
|
+
StatusMessage: str
|
|
2337
|
+
Name: NotRequired[str]
|
|
2338
|
+
Id: NotRequired[str]
|
|
2339
|
+
|
|
2340
|
+
|
|
2341
|
+
class CfnStackParameterTypeDef(TypedDict):
|
|
2342
|
+
Key: str
|
|
2343
|
+
Value: NotRequired[str]
|
|
2344
|
+
|
|
2345
|
+
|
|
2346
|
+
class CfnStackUpdateParameterTypeDef(TypedDict):
|
|
2347
|
+
Key: str
|
|
2348
|
+
Value: NotRequired[str]
|
|
2349
|
+
|
|
2350
|
+
|
|
2320
2351
|
class ShuffleConfigTypeDef(TypedDict):
|
|
2321
2352
|
Seed: int
|
|
2322
2353
|
|
|
@@ -6589,6 +6620,27 @@ class EnvironmentParameterRangesTypeDef(TypedDict):
|
|
|
6589
6620
|
CategoricalParameterRanges: NotRequired[Sequence[CategoricalParameterTypeDef]]
|
|
6590
6621
|
|
|
6591
6622
|
|
|
6623
|
+
class CfnCreateTemplateProviderTypeDef(TypedDict):
|
|
6624
|
+
TemplateName: str
|
|
6625
|
+
TemplateURL: str
|
|
6626
|
+
RoleARN: NotRequired[str]
|
|
6627
|
+
Parameters: NotRequired[Sequence[CfnStackCreateParameterTypeDef]]
|
|
6628
|
+
|
|
6629
|
+
|
|
6630
|
+
class CfnTemplateProviderDetailTypeDef(TypedDict):
|
|
6631
|
+
TemplateName: str
|
|
6632
|
+
TemplateURL: str
|
|
6633
|
+
RoleARN: NotRequired[str]
|
|
6634
|
+
Parameters: NotRequired[List[CfnStackParameterTypeDef]]
|
|
6635
|
+
StackDetail: NotRequired[CfnStackDetailTypeDef]
|
|
6636
|
+
|
|
6637
|
+
|
|
6638
|
+
class CfnUpdateTemplateProviderTypeDef(TypedDict):
|
|
6639
|
+
TemplateName: str
|
|
6640
|
+
TemplateURL: str
|
|
6641
|
+
Parameters: NotRequired[Sequence[CfnStackUpdateParameterTypeDef]]
|
|
6642
|
+
|
|
6643
|
+
|
|
6592
6644
|
class ClarifyShapConfigTypeDef(TypedDict):
|
|
6593
6645
|
ShapBaselineConfig: ClarifyShapBaselineConfigTypeDef
|
|
6594
6646
|
NumberOfSamples: NotRequired[int]
|
|
@@ -10221,6 +10273,18 @@ class EndpointInputConfigurationTypeDef(TypedDict):
|
|
|
10221
10273
|
EnvironmentParameterRanges: NotRequired[EnvironmentParameterRangesTypeDef]
|
|
10222
10274
|
|
|
10223
10275
|
|
|
10276
|
+
class CreateTemplateProviderTypeDef(TypedDict):
|
|
10277
|
+
CfnTemplateProvider: NotRequired[CfnCreateTemplateProviderTypeDef]
|
|
10278
|
+
|
|
10279
|
+
|
|
10280
|
+
class TemplateProviderDetailTypeDef(TypedDict):
|
|
10281
|
+
CfnTemplateProviderDetail: NotRequired[CfnTemplateProviderDetailTypeDef]
|
|
10282
|
+
|
|
10283
|
+
|
|
10284
|
+
class UpdateTemplateProviderTypeDef(TypedDict):
|
|
10285
|
+
CfnTemplateProvider: NotRequired[CfnUpdateTemplateProviderTypeDef]
|
|
10286
|
+
|
|
10287
|
+
|
|
10224
10288
|
class ClarifyExplainerConfigOutputTypeDef(TypedDict):
|
|
10225
10289
|
ShapConfig: ClarifyShapConfigTypeDef
|
|
10226
10290
|
EnableExplanations: NotRequired[str]
|
|
@@ -11137,52 +11201,11 @@ class GetSearchSuggestionsRequestTypeDef(TypedDict):
|
|
|
11137
11201
|
SuggestionQuery: NotRequired[SuggestionQueryTypeDef]
|
|
11138
11202
|
|
|
11139
11203
|
|
|
11140
|
-
class DescribeProjectOutputTypeDef(TypedDict):
|
|
11141
|
-
ProjectArn: str
|
|
11142
|
-
ProjectName: str
|
|
11143
|
-
ProjectId: str
|
|
11144
|
-
ProjectDescription: str
|
|
11145
|
-
ServiceCatalogProvisioningDetails: ServiceCatalogProvisioningDetailsOutputTypeDef
|
|
11146
|
-
ServiceCatalogProvisionedProductDetails: ServiceCatalogProvisionedProductDetailsTypeDef
|
|
11147
|
-
ProjectStatus: ProjectStatusType
|
|
11148
|
-
CreatedBy: UserContextTypeDef
|
|
11149
|
-
CreationTime: datetime
|
|
11150
|
-
LastModifiedTime: datetime
|
|
11151
|
-
LastModifiedBy: UserContextTypeDef
|
|
11152
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
11153
|
-
|
|
11154
|
-
|
|
11155
|
-
class ProjectTypeDef(TypedDict):
|
|
11156
|
-
ProjectArn: NotRequired[str]
|
|
11157
|
-
ProjectName: NotRequired[str]
|
|
11158
|
-
ProjectId: NotRequired[str]
|
|
11159
|
-
ProjectDescription: NotRequired[str]
|
|
11160
|
-
ServiceCatalogProvisioningDetails: NotRequired[ServiceCatalogProvisioningDetailsOutputTypeDef]
|
|
11161
|
-
ServiceCatalogProvisionedProductDetails: NotRequired[
|
|
11162
|
-
ServiceCatalogProvisionedProductDetailsTypeDef
|
|
11163
|
-
]
|
|
11164
|
-
ProjectStatus: NotRequired[ProjectStatusType]
|
|
11165
|
-
CreatedBy: NotRequired[UserContextTypeDef]
|
|
11166
|
-
CreationTime: NotRequired[datetime]
|
|
11167
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
11168
|
-
LastModifiedTime: NotRequired[datetime]
|
|
11169
|
-
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
11170
|
-
|
|
11171
|
-
|
|
11172
11204
|
ServiceCatalogProvisioningDetailsUnionTypeDef = Union[
|
|
11173
11205
|
ServiceCatalogProvisioningDetailsTypeDef, ServiceCatalogProvisioningDetailsOutputTypeDef
|
|
11174
11206
|
]
|
|
11175
11207
|
|
|
11176
11208
|
|
|
11177
|
-
class UpdateProjectInputTypeDef(TypedDict):
|
|
11178
|
-
ProjectName: str
|
|
11179
|
-
ProjectDescription: NotRequired[str]
|
|
11180
|
-
ServiceCatalogProvisioningUpdateDetails: NotRequired[
|
|
11181
|
-
ServiceCatalogProvisioningUpdateDetailsTypeDef
|
|
11182
|
-
]
|
|
11183
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11184
|
-
|
|
11185
|
-
|
|
11186
11209
|
class HumanLoopConfigOutputTypeDef(TypedDict):
|
|
11187
11210
|
WorkteamArn: str
|
|
11188
11211
|
HumanTaskUiArn: str
|
|
@@ -11581,6 +11604,50 @@ class RecommendationJobInputConfigTypeDef(TypedDict):
|
|
|
11581
11604
|
VpcConfig: NotRequired[RecommendationJobVpcConfigTypeDef]
|
|
11582
11605
|
|
|
11583
11606
|
|
|
11607
|
+
class DescribeProjectOutputTypeDef(TypedDict):
|
|
11608
|
+
ProjectArn: str
|
|
11609
|
+
ProjectName: str
|
|
11610
|
+
ProjectId: str
|
|
11611
|
+
ProjectDescription: str
|
|
11612
|
+
ServiceCatalogProvisioningDetails: ServiceCatalogProvisioningDetailsOutputTypeDef
|
|
11613
|
+
ServiceCatalogProvisionedProductDetails: ServiceCatalogProvisionedProductDetailsTypeDef
|
|
11614
|
+
ProjectStatus: ProjectStatusType
|
|
11615
|
+
TemplateProviderDetails: List[TemplateProviderDetailTypeDef]
|
|
11616
|
+
CreatedBy: UserContextTypeDef
|
|
11617
|
+
CreationTime: datetime
|
|
11618
|
+
LastModifiedTime: datetime
|
|
11619
|
+
LastModifiedBy: UserContextTypeDef
|
|
11620
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
11621
|
+
|
|
11622
|
+
|
|
11623
|
+
class ProjectTypeDef(TypedDict):
|
|
11624
|
+
ProjectArn: NotRequired[str]
|
|
11625
|
+
ProjectName: NotRequired[str]
|
|
11626
|
+
ProjectId: NotRequired[str]
|
|
11627
|
+
ProjectDescription: NotRequired[str]
|
|
11628
|
+
ServiceCatalogProvisioningDetails: NotRequired[ServiceCatalogProvisioningDetailsOutputTypeDef]
|
|
11629
|
+
ServiceCatalogProvisionedProductDetails: NotRequired[
|
|
11630
|
+
ServiceCatalogProvisionedProductDetailsTypeDef
|
|
11631
|
+
]
|
|
11632
|
+
ProjectStatus: NotRequired[ProjectStatusType]
|
|
11633
|
+
CreatedBy: NotRequired[UserContextTypeDef]
|
|
11634
|
+
CreationTime: NotRequired[datetime]
|
|
11635
|
+
TemplateProviderDetails: NotRequired[List[TemplateProviderDetailTypeDef]]
|
|
11636
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
11637
|
+
LastModifiedTime: NotRequired[datetime]
|
|
11638
|
+
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
11639
|
+
|
|
11640
|
+
|
|
11641
|
+
class UpdateProjectInputTypeDef(TypedDict):
|
|
11642
|
+
ProjectName: str
|
|
11643
|
+
ProjectDescription: NotRequired[str]
|
|
11644
|
+
ServiceCatalogProvisioningUpdateDetails: NotRequired[
|
|
11645
|
+
ServiceCatalogProvisioningUpdateDetailsTypeDef
|
|
11646
|
+
]
|
|
11647
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
11648
|
+
TemplateProvidersToUpdate: NotRequired[Sequence[UpdateTemplateProviderTypeDef]]
|
|
11649
|
+
|
|
11650
|
+
|
|
11584
11651
|
class ExplainerConfigOutputTypeDef(TypedDict):
|
|
11585
11652
|
ClarifyExplainerConfig: NotRequired[ClarifyExplainerConfigOutputTypeDef]
|
|
11586
11653
|
|
|
@@ -12149,6 +12216,7 @@ class CreateProjectInputTypeDef(TypedDict):
|
|
|
12149
12216
|
ProjectDescription: NotRequired[str]
|
|
12150
12217
|
ServiceCatalogProvisioningDetails: NotRequired[ServiceCatalogProvisioningDetailsUnionTypeDef]
|
|
12151
12218
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
12219
|
+
TemplateProviders: NotRequired[Sequence[CreateTemplateProviderTypeDef]]
|
|
12152
12220
|
|
|
12153
12221
|
|
|
12154
12222
|
class DescribeFlowDefinitionResponseTypeDef(TypedDict):
|
|
@@ -442,6 +442,13 @@ __all__ = (
|
|
|
442
442
|
"CategoricalParameterRangeTypeDef",
|
|
443
443
|
"CategoricalParameterRangeUnionTypeDef",
|
|
444
444
|
"CategoricalParameterTypeDef",
|
|
445
|
+
"CfnCreateTemplateProviderTypeDef",
|
|
446
|
+
"CfnStackCreateParameterTypeDef",
|
|
447
|
+
"CfnStackDetailTypeDef",
|
|
448
|
+
"CfnStackParameterTypeDef",
|
|
449
|
+
"CfnStackUpdateParameterTypeDef",
|
|
450
|
+
"CfnTemplateProviderDetailTypeDef",
|
|
451
|
+
"CfnUpdateTemplateProviderTypeDef",
|
|
445
452
|
"ChannelOutputTypeDef",
|
|
446
453
|
"ChannelSpecificationOutputTypeDef",
|
|
447
454
|
"ChannelSpecificationTypeDef",
|
|
@@ -610,6 +617,7 @@ __all__ = (
|
|
|
610
617
|
"CreateSpaceResponseTypeDef",
|
|
611
618
|
"CreateStudioLifecycleConfigRequestTypeDef",
|
|
612
619
|
"CreateStudioLifecycleConfigResponseTypeDef",
|
|
620
|
+
"CreateTemplateProviderTypeDef",
|
|
613
621
|
"CreateTrainingJobRequestTypeDef",
|
|
614
622
|
"CreateTrainingJobResponseTypeDef",
|
|
615
623
|
"CreateTrainingPlanRequestTypeDef",
|
|
@@ -1751,6 +1759,7 @@ __all__ = (
|
|
|
1751
1759
|
"TagTypeDef",
|
|
1752
1760
|
"TargetPlatformTypeDef",
|
|
1753
1761
|
"TargetTrackingScalingPolicyConfigurationTypeDef",
|
|
1762
|
+
"TemplateProviderDetailTypeDef",
|
|
1754
1763
|
"TensorBoardAppSettingsTypeDef",
|
|
1755
1764
|
"TensorBoardOutputConfigTypeDef",
|
|
1756
1765
|
"TextClassificationJobConfigTypeDef",
|
|
@@ -1887,6 +1896,7 @@ __all__ = (
|
|
|
1887
1896
|
"UpdateProjectOutputTypeDef",
|
|
1888
1897
|
"UpdateSpaceRequestTypeDef",
|
|
1889
1898
|
"UpdateSpaceResponseTypeDef",
|
|
1899
|
+
"UpdateTemplateProviderTypeDef",
|
|
1890
1900
|
"UpdateTrainingJobRequestTypeDef",
|
|
1891
1901
|
"UpdateTrainingJobResponseTypeDef",
|
|
1892
1902
|
"UpdateTrialComponentRequestTypeDef",
|
|
@@ -2243,6 +2253,23 @@ class CategoricalParameterTypeDef(TypedDict):
|
|
|
2243
2253
|
Name: str
|
|
2244
2254
|
Value: Sequence[str]
|
|
2245
2255
|
|
|
2256
|
+
class CfnStackCreateParameterTypeDef(TypedDict):
|
|
2257
|
+
Key: str
|
|
2258
|
+
Value: NotRequired[str]
|
|
2259
|
+
|
|
2260
|
+
class CfnStackDetailTypeDef(TypedDict):
|
|
2261
|
+
StatusMessage: str
|
|
2262
|
+
Name: NotRequired[str]
|
|
2263
|
+
Id: NotRequired[str]
|
|
2264
|
+
|
|
2265
|
+
class CfnStackParameterTypeDef(TypedDict):
|
|
2266
|
+
Key: str
|
|
2267
|
+
Value: NotRequired[str]
|
|
2268
|
+
|
|
2269
|
+
class CfnStackUpdateParameterTypeDef(TypedDict):
|
|
2270
|
+
Key: str
|
|
2271
|
+
Value: NotRequired[str]
|
|
2272
|
+
|
|
2246
2273
|
class ShuffleConfigTypeDef(TypedDict):
|
|
2247
2274
|
Seed: int
|
|
2248
2275
|
|
|
@@ -5774,6 +5801,24 @@ CategoricalParameterRangeUnionTypeDef = Union[
|
|
|
5774
5801
|
class EnvironmentParameterRangesTypeDef(TypedDict):
|
|
5775
5802
|
CategoricalParameterRanges: NotRequired[Sequence[CategoricalParameterTypeDef]]
|
|
5776
5803
|
|
|
5804
|
+
class CfnCreateTemplateProviderTypeDef(TypedDict):
|
|
5805
|
+
TemplateName: str
|
|
5806
|
+
TemplateURL: str
|
|
5807
|
+
RoleARN: NotRequired[str]
|
|
5808
|
+
Parameters: NotRequired[Sequence[CfnStackCreateParameterTypeDef]]
|
|
5809
|
+
|
|
5810
|
+
class CfnTemplateProviderDetailTypeDef(TypedDict):
|
|
5811
|
+
TemplateName: str
|
|
5812
|
+
TemplateURL: str
|
|
5813
|
+
RoleARN: NotRequired[str]
|
|
5814
|
+
Parameters: NotRequired[List[CfnStackParameterTypeDef]]
|
|
5815
|
+
StackDetail: NotRequired[CfnStackDetailTypeDef]
|
|
5816
|
+
|
|
5817
|
+
class CfnUpdateTemplateProviderTypeDef(TypedDict):
|
|
5818
|
+
TemplateName: str
|
|
5819
|
+
TemplateURL: str
|
|
5820
|
+
Parameters: NotRequired[Sequence[CfnStackUpdateParameterTypeDef]]
|
|
5821
|
+
|
|
5777
5822
|
class ClarifyShapConfigTypeDef(TypedDict):
|
|
5778
5823
|
ShapBaselineConfig: ClarifyShapBaselineConfigTypeDef
|
|
5779
5824
|
NumberOfSamples: NotRequired[int]
|
|
@@ -8982,6 +9027,15 @@ class EndpointInputConfigurationTypeDef(TypedDict):
|
|
|
8982
9027
|
InferenceSpecificationName: NotRequired[str]
|
|
8983
9028
|
EnvironmentParameterRanges: NotRequired[EnvironmentParameterRangesTypeDef]
|
|
8984
9029
|
|
|
9030
|
+
class CreateTemplateProviderTypeDef(TypedDict):
|
|
9031
|
+
CfnTemplateProvider: NotRequired[CfnCreateTemplateProviderTypeDef]
|
|
9032
|
+
|
|
9033
|
+
class TemplateProviderDetailTypeDef(TypedDict):
|
|
9034
|
+
CfnTemplateProviderDetail: NotRequired[CfnTemplateProviderDetailTypeDef]
|
|
9035
|
+
|
|
9036
|
+
class UpdateTemplateProviderTypeDef(TypedDict):
|
|
9037
|
+
CfnTemplateProvider: NotRequired[CfnUpdateTemplateProviderTypeDef]
|
|
9038
|
+
|
|
8985
9039
|
class ClarifyExplainerConfigOutputTypeDef(TypedDict):
|
|
8986
9040
|
ShapConfig: ClarifyShapConfigTypeDef
|
|
8987
9041
|
EnableExplanations: NotRequired[str]
|
|
@@ -9800,48 +9854,10 @@ class GetSearchSuggestionsRequestTypeDef(TypedDict):
|
|
|
9800
9854
|
Resource: ResourceTypeType
|
|
9801
9855
|
SuggestionQuery: NotRequired[SuggestionQueryTypeDef]
|
|
9802
9856
|
|
|
9803
|
-
class DescribeProjectOutputTypeDef(TypedDict):
|
|
9804
|
-
ProjectArn: str
|
|
9805
|
-
ProjectName: str
|
|
9806
|
-
ProjectId: str
|
|
9807
|
-
ProjectDescription: str
|
|
9808
|
-
ServiceCatalogProvisioningDetails: ServiceCatalogProvisioningDetailsOutputTypeDef
|
|
9809
|
-
ServiceCatalogProvisionedProductDetails: ServiceCatalogProvisionedProductDetailsTypeDef
|
|
9810
|
-
ProjectStatus: ProjectStatusType
|
|
9811
|
-
CreatedBy: UserContextTypeDef
|
|
9812
|
-
CreationTime: datetime
|
|
9813
|
-
LastModifiedTime: datetime
|
|
9814
|
-
LastModifiedBy: UserContextTypeDef
|
|
9815
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
9816
|
-
|
|
9817
|
-
class ProjectTypeDef(TypedDict):
|
|
9818
|
-
ProjectArn: NotRequired[str]
|
|
9819
|
-
ProjectName: NotRequired[str]
|
|
9820
|
-
ProjectId: NotRequired[str]
|
|
9821
|
-
ProjectDescription: NotRequired[str]
|
|
9822
|
-
ServiceCatalogProvisioningDetails: NotRequired[ServiceCatalogProvisioningDetailsOutputTypeDef]
|
|
9823
|
-
ServiceCatalogProvisionedProductDetails: NotRequired[
|
|
9824
|
-
ServiceCatalogProvisionedProductDetailsTypeDef
|
|
9825
|
-
]
|
|
9826
|
-
ProjectStatus: NotRequired[ProjectStatusType]
|
|
9827
|
-
CreatedBy: NotRequired[UserContextTypeDef]
|
|
9828
|
-
CreationTime: NotRequired[datetime]
|
|
9829
|
-
Tags: NotRequired[List[TagTypeDef]]
|
|
9830
|
-
LastModifiedTime: NotRequired[datetime]
|
|
9831
|
-
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
9832
|
-
|
|
9833
9857
|
ServiceCatalogProvisioningDetailsUnionTypeDef = Union[
|
|
9834
9858
|
ServiceCatalogProvisioningDetailsTypeDef, ServiceCatalogProvisioningDetailsOutputTypeDef
|
|
9835
9859
|
]
|
|
9836
9860
|
|
|
9837
|
-
class UpdateProjectInputTypeDef(TypedDict):
|
|
9838
|
-
ProjectName: str
|
|
9839
|
-
ProjectDescription: NotRequired[str]
|
|
9840
|
-
ServiceCatalogProvisioningUpdateDetails: NotRequired[
|
|
9841
|
-
ServiceCatalogProvisioningUpdateDetailsTypeDef
|
|
9842
|
-
]
|
|
9843
|
-
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
9844
|
-
|
|
9845
9861
|
class HumanLoopConfigOutputTypeDef(TypedDict):
|
|
9846
9862
|
WorkteamArn: str
|
|
9847
9863
|
HumanTaskUiArn: str
|
|
@@ -10198,6 +10214,47 @@ class RecommendationJobInputConfigTypeDef(TypedDict):
|
|
|
10198
10214
|
Endpoints: NotRequired[Sequence[EndpointInfoTypeDef]]
|
|
10199
10215
|
VpcConfig: NotRequired[RecommendationJobVpcConfigTypeDef]
|
|
10200
10216
|
|
|
10217
|
+
class DescribeProjectOutputTypeDef(TypedDict):
|
|
10218
|
+
ProjectArn: str
|
|
10219
|
+
ProjectName: str
|
|
10220
|
+
ProjectId: str
|
|
10221
|
+
ProjectDescription: str
|
|
10222
|
+
ServiceCatalogProvisioningDetails: ServiceCatalogProvisioningDetailsOutputTypeDef
|
|
10223
|
+
ServiceCatalogProvisionedProductDetails: ServiceCatalogProvisionedProductDetailsTypeDef
|
|
10224
|
+
ProjectStatus: ProjectStatusType
|
|
10225
|
+
TemplateProviderDetails: List[TemplateProviderDetailTypeDef]
|
|
10226
|
+
CreatedBy: UserContextTypeDef
|
|
10227
|
+
CreationTime: datetime
|
|
10228
|
+
LastModifiedTime: datetime
|
|
10229
|
+
LastModifiedBy: UserContextTypeDef
|
|
10230
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
10231
|
+
|
|
10232
|
+
class ProjectTypeDef(TypedDict):
|
|
10233
|
+
ProjectArn: NotRequired[str]
|
|
10234
|
+
ProjectName: NotRequired[str]
|
|
10235
|
+
ProjectId: NotRequired[str]
|
|
10236
|
+
ProjectDescription: NotRequired[str]
|
|
10237
|
+
ServiceCatalogProvisioningDetails: NotRequired[ServiceCatalogProvisioningDetailsOutputTypeDef]
|
|
10238
|
+
ServiceCatalogProvisionedProductDetails: NotRequired[
|
|
10239
|
+
ServiceCatalogProvisionedProductDetailsTypeDef
|
|
10240
|
+
]
|
|
10241
|
+
ProjectStatus: NotRequired[ProjectStatusType]
|
|
10242
|
+
CreatedBy: NotRequired[UserContextTypeDef]
|
|
10243
|
+
CreationTime: NotRequired[datetime]
|
|
10244
|
+
TemplateProviderDetails: NotRequired[List[TemplateProviderDetailTypeDef]]
|
|
10245
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
10246
|
+
LastModifiedTime: NotRequired[datetime]
|
|
10247
|
+
LastModifiedBy: NotRequired[UserContextTypeDef]
|
|
10248
|
+
|
|
10249
|
+
class UpdateProjectInputTypeDef(TypedDict):
|
|
10250
|
+
ProjectName: str
|
|
10251
|
+
ProjectDescription: NotRequired[str]
|
|
10252
|
+
ServiceCatalogProvisioningUpdateDetails: NotRequired[
|
|
10253
|
+
ServiceCatalogProvisioningUpdateDetailsTypeDef
|
|
10254
|
+
]
|
|
10255
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10256
|
+
TemplateProvidersToUpdate: NotRequired[Sequence[UpdateTemplateProviderTypeDef]]
|
|
10257
|
+
|
|
10201
10258
|
class ExplainerConfigOutputTypeDef(TypedDict):
|
|
10202
10259
|
ClarifyExplainerConfig: NotRequired[ClarifyExplainerConfigOutputTypeDef]
|
|
10203
10260
|
|
|
@@ -10708,6 +10765,7 @@ class CreateProjectInputTypeDef(TypedDict):
|
|
|
10708
10765
|
ProjectDescription: NotRequired[str]
|
|
10709
10766
|
ServiceCatalogProvisioningDetails: NotRequired[ServiceCatalogProvisioningDetailsUnionTypeDef]
|
|
10710
10767
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
10768
|
+
TemplateProviders: NotRequired[Sequence[CreateTemplateProviderTypeDef]]
|
|
10711
10769
|
|
|
10712
10770
|
class DescribeFlowDefinitionResponseTypeDef(TypedDict):
|
|
10713
10771
|
FlowDefinitionArn: str
|
mypy_boto3_sagemaker/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-sagemaker
|
|
3
|
-
Version: 1.38.
|
|
4
|
-
Summary: Type annotations for boto3 SageMaker 1.38.
|
|
3
|
+
Version: 1.38.40
|
|
4
|
+
Summary: Type annotations for boto3 SageMaker 1.38.40 service generated with mypy-boto3-builder 8.11.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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 SageMaker 1.38.
|
|
59
|
+
Type annotations for [boto3 SageMaker 1.38.40](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.38.
|
|
122
|
+
`uvx --with 'boto3==1.38.40' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `SageMaker` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mypy_boto3_sagemaker/__init__.py,sha256=opHkjuIms4oAULgt6RpiQM_b3MlcLpgp8MMTkCReC3o,20862
|
|
2
2
|
mypy_boto3_sagemaker/__init__.pyi,sha256=tbdiUUr5WXkYKgsTJGeNm8nf-W6kCYBvkDpK4kvX654,20861
|
|
3
|
-
mypy_boto3_sagemaker/__main__.py,sha256=
|
|
3
|
+
mypy_boto3_sagemaker/__main__.py,sha256=Rr5mXqib3aN8wSPs2EIGgVnROTTP30-IHhoD6XXYOcw,992
|
|
4
4
|
mypy_boto3_sagemaker/client.py,sha256=mIVQ5pCAuGzbrjzSBUjFos3al4bIAkDwfyPoMAsonjs,269493
|
|
5
5
|
mypy_boto3_sagemaker/client.pyi,sha256=GSQQDofiZ9Uwc3Z3wNJxmISvrqwatSVMHLhrXaBMRSk,269490
|
|
6
6
|
mypy_boto3_sagemaker/literals.py,sha256=VkA_M99YOSBQ_azE928XUf5otzVx8acaWSqswz7bZis,83592
|
|
@@ -8,13 +8,13 @@ mypy_boto3_sagemaker/literals.pyi,sha256=DqQqFQbYVLFD6GxmNd7cL0bk818wlTcI7iA9vIx
|
|
|
8
8
|
mypy_boto3_sagemaker/paginator.py,sha256=6L2do5UDlW6ag_KUhRla4QbZORaFO-AulDv7A4nXEh8,113965
|
|
9
9
|
mypy_boto3_sagemaker/paginator.pyi,sha256=HJgYz9NiQOAITGAFA-ySnltWarPIVrk7wB-8nuAMYhQ,113730
|
|
10
10
|
mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_sagemaker/type_defs.py,sha256=
|
|
12
|
-
mypy_boto3_sagemaker/type_defs.pyi,sha256=
|
|
13
|
-
mypy_boto3_sagemaker/version.py,sha256=
|
|
11
|
+
mypy_boto3_sagemaker/type_defs.py,sha256=NwW87Aty3CrQNRWD3mKf3KFO5BmZmq4I3XnwatEF1pY,463514
|
|
12
|
+
mypy_boto3_sagemaker/type_defs.pyi,sha256=Q3Msv09UTSxEr21U5M8YRW1hHa4kJYGye29NNTBo8_4,461927
|
|
13
|
+
mypy_boto3_sagemaker/version.py,sha256=UcxXCg9y9FroN114pOwMru91YTGSC4pwBxoNfDFNqTI,93
|
|
14
14
|
mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
|
|
15
15
|
mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
|
|
16
|
-
mypy_boto3_sagemaker-1.38.
|
|
17
|
-
mypy_boto3_sagemaker-1.38.
|
|
18
|
-
mypy_boto3_sagemaker-1.38.
|
|
19
|
-
mypy_boto3_sagemaker-1.38.
|
|
20
|
-
mypy_boto3_sagemaker-1.38.
|
|
16
|
+
mypy_boto3_sagemaker-1.38.40.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_sagemaker-1.38.40.dist-info/METADATA,sha256=lReCMhcnHxz8uNHIKncXReKVDIeYP6XpI-o203RWxxY,28898
|
|
18
|
+
mypy_boto3_sagemaker-1.38.40.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_sagemaker-1.38.40.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
|
|
20
|
+
mypy_boto3_sagemaker-1.38.40.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_sagemaker-1.38.39.dist-info → mypy_boto3_sagemaker-1.38.40.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_sagemaker-1.38.39.dist-info → mypy_boto3_sagemaker-1.38.40.dist-info}/top_level.txt
RENAMED
|
File without changes
|