mypy-boto3-sagemaker 1.40.3__py3-none-any.whl → 1.40.8__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.

@@ -236,6 +236,7 @@ from .literals import (
236
236
  RepositoryAccessModeType,
237
237
  ReservedCapacityInstanceTypeType,
238
238
  ReservedCapacityStatusType,
239
+ ReservedCapacityTypeType,
239
240
  ResourceCatalogSortOrderType,
240
241
  ResourceSharingStrategyType,
241
242
  ResourceTypeType,
@@ -306,6 +307,7 @@ from .literals import (
306
307
  TransformJobStatusType,
307
308
  TrialComponentPrimaryStatusType,
308
309
  TtlDurationUnitType,
310
+ UltraServerHealthStatusType,
309
311
  UserProfileSortKeyType,
310
312
  UserProfileStatusType,
311
313
  VariantPropertyTypeType,
@@ -896,6 +898,8 @@ __all__ = (
896
898
  "DescribeProcessingJobResponseTypeDef",
897
899
  "DescribeProjectInputTypeDef",
898
900
  "DescribeProjectOutputTypeDef",
901
+ "DescribeReservedCapacityRequestTypeDef",
902
+ "DescribeReservedCapacityResponseTypeDef",
899
903
  "DescribeSpaceRequestTypeDef",
900
904
  "DescribeSpaceResponseTypeDef",
901
905
  "DescribeStudioLifecycleConfigRequestTypeDef",
@@ -1119,6 +1123,9 @@ __all__ = (
1119
1123
  "InstanceGroupTypeDef",
1120
1124
  "InstanceMetadataServiceConfigurationTypeDef",
1121
1125
  "InstanceMetadataTypeDef",
1126
+ "InstancePlacementConfigOutputTypeDef",
1127
+ "InstancePlacementConfigTypeDef",
1128
+ "InstancePlacementConfigUnionTypeDef",
1122
1129
  "IntegerParameterRangeSpecificationTypeDef",
1123
1130
  "IntegerParameterRangeTypeDef",
1124
1131
  "JupyterLabAppImageConfigOutputTypeDef",
@@ -1394,6 +1401,9 @@ __all__ = (
1394
1401
  "ListTrialsRequestPaginateTypeDef",
1395
1402
  "ListTrialsRequestTypeDef",
1396
1403
  "ListTrialsResponseTypeDef",
1404
+ "ListUltraServersByReservedCapacityRequestPaginateTypeDef",
1405
+ "ListUltraServersByReservedCapacityRequestTypeDef",
1406
+ "ListUltraServersByReservedCapacityResponseTypeDef",
1397
1407
  "ListUserProfilesRequestPaginateTypeDef",
1398
1408
  "ListUserProfilesRequestTypeDef",
1399
1409
  "ListUserProfilesResponseTypeDef",
@@ -1598,6 +1608,7 @@ __all__ = (
1598
1608
  "PipelineTypeDef",
1599
1609
  "PipelineVersionSummaryTypeDef",
1600
1610
  "PipelineVersionTypeDef",
1611
+ "PlacementSpecificationTypeDef",
1601
1612
  "PredefinedMetricSpecificationTypeDef",
1602
1613
  "PresignedUrlAccessConfigTypeDef",
1603
1614
  "PriorityClassTypeDef",
@@ -1867,6 +1878,7 @@ __all__ = (
1867
1878
  "TrialSourceTypeDef",
1868
1879
  "TrialSummaryTypeDef",
1869
1880
  "TrialTypeDef",
1881
+ "TrustedIdentityPropagationSettingsTypeDef",
1870
1882
  "TtlDurationTypeDef",
1871
1883
  "TuningJobCompletionCriteriaTypeDef",
1872
1884
  "TuningJobStepMetaDataTypeDef",
@@ -1874,6 +1886,9 @@ __all__ = (
1874
1886
  "UiConfigTypeDef",
1875
1887
  "UiTemplateInfoTypeDef",
1876
1888
  "UiTemplateTypeDef",
1889
+ "UltraServerInfoTypeDef",
1890
+ "UltraServerSummaryTypeDef",
1891
+ "UltraServerTypeDef",
1877
1892
  "UnifiedStudioSettingsTypeDef",
1878
1893
  "UpdateActionRequestTypeDef",
1879
1894
  "UpdateActionResponseTypeDef",
@@ -2459,6 +2474,9 @@ class ClusterMetadataTypeDef(TypedDict):
2459
2474
  EksRoleAccessEntries: NotRequired[List[str]]
2460
2475
  SlrAccessEntry: NotRequired[str]
2461
2476
 
2477
+ class UltraServerInfoTypeDef(TypedDict):
2478
+ Id: NotRequired[str]
2479
+
2462
2480
  class ClusterOrchestratorEksConfigTypeDef(TypedDict):
2463
2481
  ClusterArn: str
2464
2482
 
@@ -3514,6 +3532,16 @@ class ServiceCatalogProvisionedProductDetailsTypeDef(TypedDict):
3514
3532
  ProvisionedProductId: NotRequired[str]
3515
3533
  ProvisionedProductStatusMessage: NotRequired[str]
3516
3534
 
3535
+ class DescribeReservedCapacityRequestTypeDef(TypedDict):
3536
+ ReservedCapacityArn: str
3537
+
3538
+ class UltraServerSummaryTypeDef(TypedDict):
3539
+ UltraServerType: str
3540
+ InstanceType: ReservedCapacityInstanceTypeType
3541
+ UltraServerCount: NotRequired[int]
3542
+ AvailableSpareInstanceCount: NotRequired[int]
3543
+ UnhealthyInstanceCount: NotRequired[int]
3544
+
3517
3545
  class DescribeSpaceRequestTypeDef(TypedDict):
3518
3546
  DomainId: str
3519
3547
  SpaceName: str
@@ -3580,6 +3608,9 @@ class ReservedCapacitySummaryTypeDef(TypedDict):
3580
3608
  InstanceType: ReservedCapacityInstanceTypeType
3581
3609
  TotalInstanceCount: int
3582
3610
  Status: ReservedCapacityStatusType
3611
+ ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
3612
+ UltraServerType: NotRequired[str]
3613
+ UltraServerCount: NotRequired[int]
3583
3614
  AvailabilityZone: NotRequired[str]
3584
3615
  DurationHours: NotRequired[int]
3585
3616
  DurationMinutes: NotRequired[int]
@@ -3692,6 +3723,9 @@ class DomainDetailsTypeDef(TypedDict):
3692
3723
  LastModifiedTime: NotRequired[datetime]
3693
3724
  Url: NotRequired[str]
3694
3725
 
3726
+ class TrustedIdentityPropagationSettingsTypeDef(TypedDict):
3727
+ Status: FeatureStatusType
3728
+
3695
3729
  class UnifiedStudioSettingsTypeDef(TypedDict):
3696
3730
  StudioWebPortalAccess: NotRequired[FeatureStatusType]
3697
3731
  DomainAccountId: NotRequired[str]
@@ -4026,6 +4060,10 @@ class InstanceGroupTypeDef(TypedDict):
4026
4060
  InstanceCount: int
4027
4061
  InstanceGroupName: str
4028
4062
 
4063
+ class PlacementSpecificationTypeDef(TypedDict):
4064
+ InstanceCount: int
4065
+ UltraServerId: NotRequired[str]
4066
+
4029
4067
  class IntegerParameterRangeSpecificationTypeDef(TypedDict):
4030
4068
  MinValue: str
4031
4069
  MaxValue: str
@@ -4341,6 +4379,24 @@ class TransformJobSummaryTypeDef(TypedDict):
4341
4379
  LastModifiedTime: NotRequired[datetime]
4342
4380
  FailureReason: NotRequired[str]
4343
4381
 
4382
+ class ListUltraServersByReservedCapacityRequestTypeDef(TypedDict):
4383
+ ReservedCapacityArn: str
4384
+ MaxResults: NotRequired[int]
4385
+ NextToken: NotRequired[str]
4386
+
4387
+ class UltraServerTypeDef(TypedDict):
4388
+ UltraServerId: str
4389
+ UltraServerType: str
4390
+ AvailabilityZone: str
4391
+ InstanceType: ReservedCapacityInstanceTypeType
4392
+ TotalInstanceCount: int
4393
+ ConfiguredSpareInstanceCount: NotRequired[int]
4394
+ AvailableInstanceCount: NotRequired[int]
4395
+ InUseInstanceCount: NotRequired[int]
4396
+ AvailableSpareInstanceCount: NotRequired[int]
4397
+ UnhealthyInstanceCount: NotRequired[int]
4398
+ HealthStatus: NotRequired[UltraServerHealthStatusType]
4399
+
4344
4400
  class ListUserProfilesRequestTypeDef(TypedDict):
4345
4401
  NextToken: NotRequired[str]
4346
4402
  MaxResults: NotRequired[int]
@@ -4719,6 +4775,9 @@ class RenderingErrorTypeDef(TypedDict):
4719
4775
  class ReservedCapacityOfferingTypeDef(TypedDict):
4720
4776
  InstanceType: ReservedCapacityInstanceTypeType
4721
4777
  InstanceCount: int
4778
+ ReservedCapacityType: NotRequired[ReservedCapacityTypeType]
4779
+ UltraServerType: NotRequired[str]
4780
+ UltraServerCount: NotRequired[int]
4722
4781
  AvailabilityZone: NotRequired[str]
4723
4782
  DurationHours: NotRequired[int]
4724
4783
  DurationMinutes: NotRequired[int]
@@ -5654,6 +5713,7 @@ class CreateStudioLifecycleConfigRequestTypeDef(TypedDict):
5654
5713
  class CreateTrainingPlanRequestTypeDef(TypedDict):
5655
5714
  TrainingPlanName: str
5656
5715
  TrainingPlanOfferingId: str
5716
+ SpareInstanceCountPerUltraServer: NotRequired[int]
5657
5717
  Tags: NotRequired[Sequence[TagTypeDef]]
5658
5718
 
5659
5719
  class ImportHubContentRequestTypeDef(TypedDict):
@@ -5730,6 +5790,7 @@ class DescribeAppResponseTypeDef(TypedDict):
5730
5790
  UserProfileName: str
5731
5791
  SpaceName: str
5732
5792
  Status: AppStatusType
5793
+ EffectiveTrustedIdentityPropagationStatus: FeatureStatusType
5733
5794
  RecoveryMode: bool
5734
5795
  LastHealthCheckTimestamp: datetime
5735
5796
  LastUserActivityTimestamp: datetime
@@ -6059,6 +6120,7 @@ class ClusterNodeSummaryTypeDef(TypedDict):
6059
6120
  InstanceStatus: ClusterInstanceStatusDetailsTypeDef
6060
6121
  NodeLogicalId: NotRequired[str]
6061
6122
  LastSoftwareUpdateTime: NotRequired[datetime]
6123
+ UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
6062
6124
 
6063
6125
  class ClusterOrchestratorTypeDef(TypedDict):
6064
6126
  Eks: ClusterOrchestratorEksConfigTypeDef
@@ -6316,6 +6378,10 @@ class ListTrainingJobsForHyperParameterTuningJobRequestPaginateTypeDef(TypedDict
6316
6378
  SortOrder: NotRequired[SortOrderType]
6317
6379
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
6318
6380
 
6381
+ class ListUltraServersByReservedCapacityRequestPaginateTypeDef(TypedDict):
6382
+ ReservedCapacityArn: str
6383
+ PaginationConfig: NotRequired[PaginatorConfigTypeDef]
6384
+
6319
6385
  class ListUserProfilesRequestPaginateTypeDef(TypedDict):
6320
6386
  SortOrder: NotRequired[SortOrderType]
6321
6387
  SortBy: NotRequired[UserProfileSortKeyType]
@@ -7838,6 +7904,8 @@ class SearchTrainingPlanOfferingsRequestTypeDef(TypedDict):
7838
7904
  TargetResources: Sequence[SageMakerResourceNameType]
7839
7905
  InstanceType: NotRequired[ReservedCapacityInstanceTypeType]
7840
7906
  InstanceCount: NotRequired[int]
7907
+ UltraServerType: NotRequired[str]
7908
+ UltraServerCount: NotRequired[int]
7841
7909
  StartTimeAfter: NotRequired[TimestampTypeDef]
7842
7910
  EndTimeBefore: NotRequired[TimestampTypeDef]
7843
7911
 
@@ -8154,6 +8222,22 @@ DescribePartnerAppResponseTypeDef = TypedDict(
8154
8222
  },
8155
8223
  )
8156
8224
 
8225
+ class DescribeReservedCapacityResponseTypeDef(TypedDict):
8226
+ ReservedCapacityArn: str
8227
+ ReservedCapacityType: ReservedCapacityTypeType
8228
+ Status: ReservedCapacityStatusType
8229
+ AvailabilityZone: str
8230
+ DurationHours: int
8231
+ DurationMinutes: int
8232
+ StartTime: datetime
8233
+ EndTime: datetime
8234
+ InstanceType: ReservedCapacityInstanceTypeType
8235
+ TotalInstanceCount: int
8236
+ AvailableInstanceCount: int
8237
+ InUseInstanceCount: int
8238
+ UltraServerSummary: UltraServerSummaryTypeDef
8239
+ ResponseMetadata: ResponseMetadataTypeDef
8240
+
8157
8241
  class DescribeSubscribedWorkteamResponseTypeDef(TypedDict):
8158
8242
  SubscribedWorkteam: SubscribedWorkteamTypeDef
8159
8243
  ResponseMetadata: ResponseMetadataTypeDef
@@ -8188,6 +8272,9 @@ class DescribeTrainingPlanResponseTypeDef(TypedDict):
8188
8272
  TotalInstanceCount: int
8189
8273
  AvailableInstanceCount: int
8190
8274
  InUseInstanceCount: int
8275
+ UnhealthyInstanceCount: int
8276
+ AvailableSpareInstanceCount: int
8277
+ TotalUltraServerCount: int
8191
8278
  TargetResources: List[SageMakerResourceNameType]
8192
8279
  ReservedCapacitySummaries: List[ReservedCapacitySummaryTypeDef]
8193
8280
  ResponseMetadata: ResponseMetadataTypeDef
@@ -8206,6 +8293,7 @@ class TrainingPlanSummaryTypeDef(TypedDict):
8206
8293
  TotalInstanceCount: NotRequired[int]
8207
8294
  AvailableInstanceCount: NotRequired[int]
8208
8295
  InUseInstanceCount: NotRequired[int]
8296
+ TotalUltraServerCount: NotRequired[int]
8209
8297
  TargetResources: NotRequired[List[SageMakerResourceNameType]]
8210
8298
  ReservedCapacitySummaries: NotRequired[List[ReservedCapacitySummaryTypeDef]]
8211
8299
 
@@ -8504,23 +8592,13 @@ class ListInferenceRecommendationsJobsResponseTypeDef(TypedDict):
8504
8592
  ResponseMetadata: ResponseMetadataTypeDef
8505
8593
  NextToken: NotRequired[str]
8506
8594
 
8507
- class ResourceConfigOutputTypeDef(TypedDict):
8508
- VolumeSizeInGB: int
8509
- InstanceType: NotRequired[TrainingInstanceTypeType]
8510
- InstanceCount: NotRequired[int]
8511
- VolumeKmsKeyId: NotRequired[str]
8512
- KeepAlivePeriodInSeconds: NotRequired[int]
8513
- InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
8514
- TrainingPlanArn: NotRequired[str]
8595
+ class InstancePlacementConfigOutputTypeDef(TypedDict):
8596
+ EnableMultipleJobs: NotRequired[bool]
8597
+ PlacementSpecifications: NotRequired[List[PlacementSpecificationTypeDef]]
8515
8598
 
8516
- class ResourceConfigTypeDef(TypedDict):
8517
- VolumeSizeInGB: int
8518
- InstanceType: NotRequired[TrainingInstanceTypeType]
8519
- InstanceCount: NotRequired[int]
8520
- VolumeKmsKeyId: NotRequired[str]
8521
- KeepAlivePeriodInSeconds: NotRequired[int]
8522
- InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
8523
- TrainingPlanArn: NotRequired[str]
8599
+ class InstancePlacementConfigTypeDef(TypedDict):
8600
+ EnableMultipleJobs: NotRequired[bool]
8601
+ PlacementSpecifications: NotRequired[Sequence[PlacementSpecificationTypeDef]]
8524
8602
 
8525
8603
  class ParameterRangeOutputTypeDef(TypedDict):
8526
8604
  IntegerParameterRangeSpecification: NotRequired[IntegerParameterRangeSpecificationTypeDef]
@@ -8714,6 +8792,11 @@ class ListTransformJobsResponseTypeDef(TypedDict):
8714
8792
  ResponseMetadata: ResponseMetadataTypeDef
8715
8793
  NextToken: NotRequired[str]
8716
8794
 
8795
+ class ListUltraServersByReservedCapacityResponseTypeDef(TypedDict):
8796
+ UltraServers: List[UltraServerTypeDef]
8797
+ ResponseMetadata: ResponseMetadataTypeDef
8798
+ NextToken: NotRequired[str]
8799
+
8717
8800
  class ListUserProfilesResponseTypeDef(TypedDict):
8718
8801
  UserProfiles: List[UserProfileDetailsTypeDef]
8719
8802
  ResponseMetadata: ResponseMetadataTypeDef
@@ -9082,6 +9165,7 @@ class DomainSettingsOutputTypeDef(TypedDict):
9082
9165
  SecurityGroupIds: NotRequired[List[str]]
9083
9166
  RStudioServerProDomainSettings: NotRequired[RStudioServerProDomainSettingsTypeDef]
9084
9167
  ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
9168
+ TrustedIdentityPropagationSettings: NotRequired[TrustedIdentityPropagationSettingsTypeDef]
9085
9169
  DockerSettings: NotRequired[DockerSettingsOutputTypeDef]
9086
9170
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
9087
9171
  UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
@@ -9090,6 +9174,7 @@ class DomainSettingsTypeDef(TypedDict):
9090
9174
  SecurityGroupIds: NotRequired[Sequence[str]]
9091
9175
  RStudioServerProDomainSettings: NotRequired[RStudioServerProDomainSettingsTypeDef]
9092
9176
  ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
9177
+ TrustedIdentityPropagationSettings: NotRequired[TrustedIdentityPropagationSettingsTypeDef]
9093
9178
  DockerSettings: NotRequired[DockerSettingsTypeDef]
9094
9179
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
9095
9180
  UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
@@ -9364,6 +9449,7 @@ class ClusterNodeDetailsTypeDef(TypedDict):
9364
9449
  Placement: NotRequired[ClusterInstancePlacementTypeDef]
9365
9450
  CurrentImageId: NotRequired[str]
9366
9451
  DesiredImageId: NotRequired[str]
9452
+ UltraServerInfo: NotRequired[UltraServerInfoTypeDef]
9367
9453
 
9368
9454
  class ListClusterNodesResponseTypeDef(TypedDict):
9369
9455
  ClusterNodeSummaries: List[ClusterNodeSummaryTypeDef]
@@ -9511,6 +9597,7 @@ class DomainSettingsForUpdateTypeDef(TypedDict):
9511
9597
  ]
9512
9598
  ExecutionRoleIdentityConfig: NotRequired[ExecutionRoleIdentityConfigType]
9513
9599
  SecurityGroupIds: NotRequired[Sequence[str]]
9600
+ TrustedIdentityPropagationSettings: NotRequired[TrustedIdentityPropagationSettingsTypeDef]
9514
9601
  DockerSettings: NotRequired[DockerSettingsUnionTypeDef]
9515
9602
  AmazonQSettings: NotRequired[AmazonQSettingsTypeDef]
9516
9603
  UnifiedStudioSettings: NotRequired[UnifiedStudioSettingsTypeDef]
@@ -9896,7 +9983,19 @@ class CreateInferenceComponentInputTypeDef(TypedDict):
9896
9983
  RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
9897
9984
  Tags: NotRequired[Sequence[TagTypeDef]]
9898
9985
 
9899
- ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
9986
+ class ResourceConfigOutputTypeDef(TypedDict):
9987
+ VolumeSizeInGB: int
9988
+ InstanceType: NotRequired[TrainingInstanceTypeType]
9989
+ InstanceCount: NotRequired[int]
9990
+ VolumeKmsKeyId: NotRequired[str]
9991
+ KeepAlivePeriodInSeconds: NotRequired[int]
9992
+ InstanceGroups: NotRequired[List[InstanceGroupTypeDef]]
9993
+ TrainingPlanArn: NotRequired[str]
9994
+ InstancePlacementConfig: NotRequired[InstancePlacementConfigOutputTypeDef]
9995
+
9996
+ InstancePlacementConfigUnionTypeDef = Union[
9997
+ InstancePlacementConfigTypeDef, InstancePlacementConfigOutputTypeDef
9998
+ ]
9900
9999
  HyperParameterSpecificationOutputTypeDef = TypedDict(
9901
10000
  "HyperParameterSpecificationOutputTypeDef",
9902
10001
  {
@@ -10774,6 +10873,16 @@ InferenceComponentDeploymentConfigUnionTypeDef = Union[
10774
10873
  InferenceComponentDeploymentConfigTypeDef, InferenceComponentDeploymentConfigOutputTypeDef
10775
10874
  ]
10776
10875
 
10876
+ class ResourceConfigTypeDef(TypedDict):
10877
+ VolumeSizeInGB: int
10878
+ InstanceType: NotRequired[TrainingInstanceTypeType]
10879
+ InstanceCount: NotRequired[int]
10880
+ VolumeKmsKeyId: NotRequired[str]
10881
+ KeepAlivePeriodInSeconds: NotRequired[int]
10882
+ InstanceGroups: NotRequired[Sequence[InstanceGroupTypeDef]]
10883
+ TrainingPlanArn: NotRequired[str]
10884
+ InstancePlacementConfig: NotRequired[InstancePlacementConfigUnionTypeDef]
10885
+
10777
10886
  class TrainingSpecificationOutputTypeDef(TypedDict):
10778
10887
  TrainingImage: str
10779
10888
  SupportedTrainingInstanceTypes: List[TrainingInstanceTypeType]
@@ -11511,6 +11620,7 @@ class UpdateInferenceComponentInputTypeDef(TypedDict):
11511
11620
  RuntimeConfig: NotRequired[InferenceComponentRuntimeConfigTypeDef]
11512
11621
  DeploymentConfig: NotRequired[InferenceComponentDeploymentConfigUnionTypeDef]
11513
11622
 
11623
+ ResourceConfigUnionTypeDef = Union[ResourceConfigTypeDef, ResourceConfigOutputTypeDef]
11514
11624
  TrainingSpecificationUnionTypeDef = Union[
11515
11625
  TrainingSpecificationTypeDef, TrainingSpecificationOutputTypeDef
11516
11626
  ]
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.40.3"
7
+ __version__ = "1.40.8"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-sagemaker
3
- Version: 1.40.3
4
- Summary: Type annotations for boto3 SageMaker 1.40.3 service generated with mypy-boto3-builder 8.11.0
3
+ Version: 1.40.8
4
+ Summary: Type annotations for boto3 SageMaker 1.40.8 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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 SageMaker 1.40.3](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 SageMaker 1.40.8](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.40.3' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.40.8' 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.
@@ -430,6 +430,7 @@ from mypy_boto3_sagemaker.paginator import (
430
430
  ListTransformJobsPaginator,
431
431
  ListTrialComponentsPaginator,
432
432
  ListTrialsPaginator,
433
+ ListUltraServersByReservedCapacityPaginator,
433
434
  ListUserProfilesPaginator,
434
435
  ListWorkforcesPaginator,
435
436
  ListWorkteamsPaginator,
@@ -619,6 +620,9 @@ list_trial_components_paginator: ListTrialComponentsPaginator = client.get_pagin
619
620
  "list_trial_components"
620
621
  )
621
622
  list_trials_paginator: ListTrialsPaginator = client.get_paginator("list_trials")
623
+ list_ultra_servers_by_reserved_capacity_paginator: ListUltraServersByReservedCapacityPaginator = (
624
+ client.get_paginator("list_ultra_servers_by_reserved_capacity")
625
+ )
622
626
  list_user_profiles_paginator: ListUserProfilesPaginator = client.get_paginator("list_user_profiles")
623
627
  list_workforces_paginator: ListWorkforcesPaginator = client.get_paginator("list_workforces")
624
628
  list_workteams_paginator: ListWorkteamsPaginator = client.get_paginator("list_workteams")
@@ -0,0 +1,20 @@
1
+ mypy_boto3_sagemaker/__init__.py,sha256=8u1GoCuYZL3XnYrn9wOzROItqTTiuPlw5sf0_gSkS8M,21904
2
+ mypy_boto3_sagemaker/__init__.pyi,sha256=U5FxNumwWVegSjatfeS1b91q5XdHYIpWK6LMpwX7tm8,21903
3
+ mypy_boto3_sagemaker/__main__.py,sha256=kcRC8khBzQWy4TSoxlCd4W_8bFFSygVXXx3bdXOPcbY,989
4
+ mypy_boto3_sagemaker/client.py,sha256=WToZFdhC7Wt5_LYM2mf6njFcflnQ2Yr9pW9SnnA5fHo,279028
5
+ mypy_boto3_sagemaker/client.pyi,sha256=pTVBeGJHBzypeZskLqfg02PVHfxyVsRbc3BscqByYo8,279025
6
+ mypy_boto3_sagemaker/literals.py,sha256=wpRBWYwErAf5AhKFygp9m_Ck8RMPuwg-QvXsiXdNDzo,85495
7
+ mypy_boto3_sagemaker/literals.pyi,sha256=Cvz7lM-5HhuwuS1SGv5wneKzOzLlvwwE5_u-XuGwtRg,85493
8
+ mypy_boto3_sagemaker/paginator.py,sha256=1fUjKHghqFE04mdXf0-FmZ4wBf-xX55GGpT-Pl-fqKU,120255
9
+ mypy_boto3_sagemaker/paginator.pyi,sha256=vGQCLe7DjQ93tq2SzKgEpW8M90mp74xVWeBB03Bklck,120008
10
+ mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_sagemaker/type_defs.py,sha256=Zcm8BWEG6rQdfIIb80X-u_pWJZM7ycpKmMet6RnRHRU,482216
12
+ mypy_boto3_sagemaker/type_defs.pyi,sha256=Aqe2o4XF7HWPnimXwmFD3DcSzNodScIM72AQOoIzkF0,480573
13
+ mypy_boto3_sagemaker/version.py,sha256=DzOGA28WQMuwB5MyD2S0onEkRo5It_yYd4uuwIOrTss,92
14
+ mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
15
+ mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
16
+ mypy_boto3_sagemaker-1.40.8.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_sagemaker-1.40.8.dist-info/METADATA,sha256=KZ--E3maO0ZMJ7L9Cy88dLaNlt-nBKhdhb31vaxlsxc,29604
18
+ mypy_boto3_sagemaker-1.40.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ mypy_boto3_sagemaker-1.40.8.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
+ mypy_boto3_sagemaker-1.40.8.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_sagemaker/__init__.py,sha256=Mu_JJX9Q2vMD-MP2RcTjMEfhsBUoiyjHt6564iwutjo,21586
2
- mypy_boto3_sagemaker/__init__.pyi,sha256=N-YC1wMclcq-joidhaY0DQfNKvHjTlmS1M9hZG4A0N8,21585
3
- mypy_boto3_sagemaker/__main__.py,sha256=S9Qk5_YEJ2FQEXbBSbjGSpy8h2KfpS0aie-vb_CW-PI,989
4
- mypy_boto3_sagemaker/client.py,sha256=SAwL-q2dJpKl6EXIW_28d2LV-tUXA35W1DFBCuK2MtA,277052
5
- mypy_boto3_sagemaker/client.pyi,sha256=qcMGKcUTJzfVCIheTDCuKQTv5apP9K7cQAQchk8rxAw,277049
6
- mypy_boto3_sagemaker/literals.py,sha256=C2IkvoNylJr9_W5CeZeK_TVM1mMX5Br8nr8Sr8YWsV8,85028
7
- mypy_boto3_sagemaker/literals.pyi,sha256=s3NSAiYQlJnXIDozbpIXsfwFSfD-DMsqhXZCMIabkAg,85026
8
- mypy_boto3_sagemaker/paginator.py,sha256=TdsEWzAa34x49Jse7TkrCt-wcQ5cL2YoiZACKsqLQPQ,118492
9
- mypy_boto3_sagemaker/paginator.pyi,sha256=4QBcLVG1_XsBg7_nTp72VcsXHo1kvkIqJiM4wxT7XTY,118248
10
- mypy_boto3_sagemaker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_sagemaker/type_defs.py,sha256=Rl-J5JSTnUFKUxcW9aGGcu2IIQRwk4g5ic6BavMjkOA,477784
12
- mypy_boto3_sagemaker/type_defs.pyi,sha256=brNd8CGZVLmy_se6CQFkLsx371r253_x82utJSdIOhI,476153
13
- mypy_boto3_sagemaker/version.py,sha256=ZaA0naREa9WFnH-K5V-P-k3aAPEqNIuS6J9mLa1hDFk,92
14
- mypy_boto3_sagemaker/waiter.py,sha256=CWKbdLxujS5uPtFCtjnxryB6GkxzSMreu3bFG45JkOE,15080
15
- mypy_boto3_sagemaker/waiter.pyi,sha256=d9EJ9YokPWmsmmOMw-2-ani-JeFoBp6kadvGYQFtx3o,15053
16
- mypy_boto3_sagemaker-1.40.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_sagemaker-1.40.3.dist-info/METADATA,sha256=nn-etNzQyUSqFJW4zyTumJI-PCRjuz7d5B9nS6V3jtA,29386
18
- mypy_boto3_sagemaker-1.40.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- mypy_boto3_sagemaker-1.40.3.dist-info/top_level.txt,sha256=N0zhVlxG0hEXnfadzaPv0wPRAikaGUW7bvn1WBVrZXg,21
20
- mypy_boto3_sagemaker-1.40.3.dist-info/RECORD,,