sagemaker-core 1.0.48__py3-none-any.whl → 1.0.50__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 sagemaker-core might be problematic. Click here for more details.
- sagemaker_core/main/code_injection/shape_dag.py +397 -0
- sagemaker_core/main/resources.py +27 -1
- sagemaker_core/main/shapes.py +399 -0
- {sagemaker_core-1.0.48.dist-info → sagemaker_core-1.0.50.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.48.dist-info → sagemaker_core-1.0.50.dist-info}/RECORD +8 -8
- {sagemaker_core-1.0.48.dist-info → sagemaker_core-1.0.50.dist-info}/WHEEL +0 -0
- {sagemaker_core-1.0.48.dist-info → sagemaker_core-1.0.50.dist-info}/licenses/LICENSE +0 -0
- {sagemaker_core-1.0.48.dist-info → sagemaker_core-1.0.50.dist-info}/top_level.txt +0 -0
|
@@ -43,6 +43,22 @@ SHAPE_DAG = {
|
|
|
43
43
|
],
|
|
44
44
|
"type": "structure",
|
|
45
45
|
},
|
|
46
|
+
"AddClusterNodeSpecification": {
|
|
47
|
+
"members": [
|
|
48
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
49
|
+
{
|
|
50
|
+
"name": "IncrementTargetCountBy",
|
|
51
|
+
"shape": "AddClusterNodeSpecificationIncrementTargetCountByInteger",
|
|
52
|
+
"type": "integer",
|
|
53
|
+
},
|
|
54
|
+
],
|
|
55
|
+
"type": "structure",
|
|
56
|
+
},
|
|
57
|
+
"AddClusterNodeSpecificationList": {
|
|
58
|
+
"member_shape": "AddClusterNodeSpecification",
|
|
59
|
+
"member_type": "structure",
|
|
60
|
+
"type": "list",
|
|
61
|
+
},
|
|
46
62
|
"AddTagsInput": {
|
|
47
63
|
"members": [
|
|
48
64
|
{"name": "ResourceArn", "shape": "ResourceArn", "type": "string"},
|
|
@@ -59,6 +75,10 @@ SHAPE_DAG = {
|
|
|
59
75
|
"member_type": "string",
|
|
60
76
|
"type": "list",
|
|
61
77
|
},
|
|
78
|
+
"AdditionalEnis": {
|
|
79
|
+
"members": [{"name": "EfaEnis", "shape": "EfaEnis", "type": "list"}],
|
|
80
|
+
"type": "structure",
|
|
81
|
+
},
|
|
62
82
|
"AdditionalInferenceSpecificationDefinition": {
|
|
63
83
|
"members": [
|
|
64
84
|
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
@@ -782,6 +802,39 @@ SHAPE_DAG = {
|
|
|
782
802
|
"members": [{"name": "Mode", "shape": "AutotuneMode", "type": "string"}],
|
|
783
803
|
"type": "structure",
|
|
784
804
|
},
|
|
805
|
+
"BatchAddClusterNodesError": {
|
|
806
|
+
"members": [
|
|
807
|
+
{"name": "InstanceGroupName", "shape": "InstanceGroupName", "type": "string"},
|
|
808
|
+
{"name": "ErrorCode", "shape": "BatchAddClusterNodesErrorCode", "type": "string"},
|
|
809
|
+
{"name": "FailedCount", "shape": "BatchAddFailureCount", "type": "integer"},
|
|
810
|
+
{"name": "Message", "shape": "String", "type": "string"},
|
|
811
|
+
],
|
|
812
|
+
"type": "structure",
|
|
813
|
+
},
|
|
814
|
+
"BatchAddClusterNodesErrorList": {
|
|
815
|
+
"member_shape": "BatchAddClusterNodesError",
|
|
816
|
+
"member_type": "structure",
|
|
817
|
+
"type": "list",
|
|
818
|
+
},
|
|
819
|
+
"BatchAddClusterNodesRequest": {
|
|
820
|
+
"members": [
|
|
821
|
+
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
822
|
+
{
|
|
823
|
+
"name": "ClientToken",
|
|
824
|
+
"shape": "BatchAddClusterNodesRequestClientTokenString",
|
|
825
|
+
"type": "string",
|
|
826
|
+
},
|
|
827
|
+
{"name": "NodesToAdd", "shape": "AddClusterNodeSpecificationList", "type": "list"},
|
|
828
|
+
],
|
|
829
|
+
"type": "structure",
|
|
830
|
+
},
|
|
831
|
+
"BatchAddClusterNodesResponse": {
|
|
832
|
+
"members": [
|
|
833
|
+
{"name": "Successful", "shape": "NodeAdditionResultList", "type": "list"},
|
|
834
|
+
{"name": "Failed", "shape": "BatchAddClusterNodesErrorList", "type": "list"},
|
|
835
|
+
],
|
|
836
|
+
"type": "structure",
|
|
837
|
+
},
|
|
785
838
|
"BatchDataCaptureConfig": {
|
|
786
839
|
"members": [
|
|
787
840
|
{"name": "DestinationS3Uri", "shape": "S3Uri", "type": "string"},
|
|
@@ -790,6 +843,19 @@ SHAPE_DAG = {
|
|
|
790
843
|
],
|
|
791
844
|
"type": "structure",
|
|
792
845
|
},
|
|
846
|
+
"BatchDeleteClusterNodeLogicalIdsError": {
|
|
847
|
+
"members": [
|
|
848
|
+
{"name": "Code", "shape": "BatchDeleteClusterNodesErrorCode", "type": "string"},
|
|
849
|
+
{"name": "Message", "shape": "String", "type": "string"},
|
|
850
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
851
|
+
],
|
|
852
|
+
"type": "structure",
|
|
853
|
+
},
|
|
854
|
+
"BatchDeleteClusterNodeLogicalIdsErrorList": {
|
|
855
|
+
"member_shape": "BatchDeleteClusterNodeLogicalIdsError",
|
|
856
|
+
"member_type": "structure",
|
|
857
|
+
"type": "list",
|
|
858
|
+
},
|
|
793
859
|
"BatchDeleteClusterNodesError": {
|
|
794
860
|
"members": [
|
|
795
861
|
{"name": "Code", "shape": "BatchDeleteClusterNodesErrorCode", "type": "string"},
|
|
@@ -807,6 +873,7 @@ SHAPE_DAG = {
|
|
|
807
873
|
"members": [
|
|
808
874
|
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
809
875
|
{"name": "NodeIds", "shape": "ClusterNodeIds", "type": "list"},
|
|
876
|
+
{"name": "NodeLogicalIds", "shape": "ClusterNodeLogicalIdList", "type": "list"},
|
|
810
877
|
],
|
|
811
878
|
"type": "structure",
|
|
812
879
|
},
|
|
@@ -814,6 +881,16 @@ SHAPE_DAG = {
|
|
|
814
881
|
"members": [
|
|
815
882
|
{"name": "Failed", "shape": "BatchDeleteClusterNodesErrorList", "type": "list"},
|
|
816
883
|
{"name": "Successful", "shape": "ClusterNodeIds", "type": "list"},
|
|
884
|
+
{
|
|
885
|
+
"name": "FailedNodeLogicalIds",
|
|
886
|
+
"shape": "BatchDeleteClusterNodeLogicalIdsErrorList",
|
|
887
|
+
"type": "list",
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"name": "SuccessfulNodeLogicalIds",
|
|
891
|
+
"shape": "ClusterNodeLogicalIdList",
|
|
892
|
+
"type": "list",
|
|
893
|
+
},
|
|
817
894
|
],
|
|
818
895
|
"type": "structure",
|
|
819
896
|
},
|
|
@@ -1102,6 +1179,13 @@ SHAPE_DAG = {
|
|
|
1102
1179
|
],
|
|
1103
1180
|
"type": "structure",
|
|
1104
1181
|
},
|
|
1182
|
+
"CapacityReservation": {
|
|
1183
|
+
"members": [
|
|
1184
|
+
{"name": "Arn", "shape": "String", "type": "string"},
|
|
1185
|
+
{"name": "Type", "shape": "CapacityReservationType", "type": "string"},
|
|
1186
|
+
],
|
|
1187
|
+
"type": "structure",
|
|
1188
|
+
},
|
|
1105
1189
|
"CapacitySize": {
|
|
1106
1190
|
"members": [
|
|
1107
1191
|
{"name": "Type", "shape": "CapacitySizeType", "type": "string"},
|
|
@@ -1367,6 +1451,38 @@ SHAPE_DAG = {
|
|
|
1367
1451
|
],
|
|
1368
1452
|
"type": "structure",
|
|
1369
1453
|
},
|
|
1454
|
+
"ClusterEventDetail": {
|
|
1455
|
+
"members": [
|
|
1456
|
+
{"name": "EventId", "shape": "EventId", "type": "string"},
|
|
1457
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1458
|
+
{"name": "ClusterName", "shape": "ClusterName", "type": "string"},
|
|
1459
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1460
|
+
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1461
|
+
{"name": "ResourceType", "shape": "ClusterEventResourceType", "type": "string"},
|
|
1462
|
+
{"name": "EventTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1463
|
+
{"name": "EventDetails", "shape": "EventDetails", "type": "structure"},
|
|
1464
|
+
{"name": "Description", "shape": "String", "type": "string"},
|
|
1465
|
+
],
|
|
1466
|
+
"type": "structure",
|
|
1467
|
+
},
|
|
1468
|
+
"ClusterEventSummaries": {
|
|
1469
|
+
"member_shape": "ClusterEventSummary",
|
|
1470
|
+
"member_type": "structure",
|
|
1471
|
+
"type": "list",
|
|
1472
|
+
},
|
|
1473
|
+
"ClusterEventSummary": {
|
|
1474
|
+
"members": [
|
|
1475
|
+
{"name": "EventId", "shape": "EventId", "type": "string"},
|
|
1476
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1477
|
+
{"name": "ClusterName", "shape": "ClusterName", "type": "string"},
|
|
1478
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1479
|
+
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1480
|
+
{"name": "ResourceType", "shape": "ClusterEventResourceType", "type": "string"},
|
|
1481
|
+
{"name": "EventTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1482
|
+
{"name": "Description", "shape": "String", "type": "string"},
|
|
1483
|
+
],
|
|
1484
|
+
"type": "structure",
|
|
1485
|
+
},
|
|
1370
1486
|
"ClusterInstanceGroupDetails": {
|
|
1371
1487
|
"members": [
|
|
1372
1488
|
{"name": "CurrentCount", "shape": "ClusterNonNegativeInstanceCount", "type": "integer"},
|
|
@@ -1395,6 +1511,8 @@ SHAPE_DAG = {
|
|
|
1395
1511
|
"shape": "ScheduledUpdateConfig",
|
|
1396
1512
|
"type": "structure",
|
|
1397
1513
|
},
|
|
1514
|
+
{"name": "CurrentImageId", "shape": "ImageId", "type": "string"},
|
|
1515
|
+
{"name": "DesiredImageId", "shape": "ImageId", "type": "string"},
|
|
1398
1516
|
],
|
|
1399
1517
|
"type": "structure",
|
|
1400
1518
|
},
|
|
@@ -1424,6 +1542,7 @@ SHAPE_DAG = {
|
|
|
1424
1542
|
"shape": "ScheduledUpdateConfig",
|
|
1425
1543
|
"type": "structure",
|
|
1426
1544
|
},
|
|
1545
|
+
{"name": "ImageId", "shape": "ImageId", "type": "string"},
|
|
1427
1546
|
],
|
|
1428
1547
|
"type": "structure",
|
|
1429
1548
|
},
|
|
@@ -1469,10 +1588,19 @@ SHAPE_DAG = {
|
|
|
1469
1588
|
],
|
|
1470
1589
|
"type": "structure",
|
|
1471
1590
|
},
|
|
1591
|
+
"ClusterMetadata": {
|
|
1592
|
+
"members": [
|
|
1593
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
1594
|
+
{"name": "EksRoleAccessEntries", "shape": "EksRoleAccessEntries", "type": "list"},
|
|
1595
|
+
{"name": "SlrAccessEntry", "shape": "String", "type": "string"},
|
|
1596
|
+
],
|
|
1597
|
+
"type": "structure",
|
|
1598
|
+
},
|
|
1472
1599
|
"ClusterNodeDetails": {
|
|
1473
1600
|
"members": [
|
|
1474
1601
|
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1475
1602
|
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1603
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
1476
1604
|
{
|
|
1477
1605
|
"name": "InstanceStatus",
|
|
1478
1606
|
"shape": "ClusterInstanceStatusDetails",
|
|
@@ -1493,10 +1621,18 @@ SHAPE_DAG = {
|
|
|
1493
1621
|
{"name": "PrivatePrimaryIpv6", "shape": "ClusterPrivatePrimaryIpv6", "type": "string"},
|
|
1494
1622
|
{"name": "PrivateDnsHostname", "shape": "ClusterPrivateDnsHostname", "type": "string"},
|
|
1495
1623
|
{"name": "Placement", "shape": "ClusterInstancePlacement", "type": "structure"},
|
|
1624
|
+
{"name": "CurrentImageId", "shape": "ImageId", "type": "string"},
|
|
1625
|
+
{"name": "DesiredImageId", "shape": "ImageId", "type": "string"},
|
|
1626
|
+
{"name": "UltraServerInfo", "shape": "UltraServerInfo", "type": "structure"},
|
|
1496
1627
|
],
|
|
1497
1628
|
"type": "structure",
|
|
1498
1629
|
},
|
|
1499
1630
|
"ClusterNodeIds": {"member_shape": "ClusterNodeId", "member_type": "string", "type": "list"},
|
|
1631
|
+
"ClusterNodeLogicalIdList": {
|
|
1632
|
+
"member_shape": "ClusterNodeLogicalId",
|
|
1633
|
+
"member_type": "string",
|
|
1634
|
+
"type": "list",
|
|
1635
|
+
},
|
|
1500
1636
|
"ClusterNodeSummaries": {
|
|
1501
1637
|
"member_shape": "ClusterNodeSummary",
|
|
1502
1638
|
"member_type": "structure",
|
|
@@ -1506,6 +1642,7 @@ SHAPE_DAG = {
|
|
|
1506
1642
|
"members": [
|
|
1507
1643
|
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
1508
1644
|
{"name": "InstanceId", "shape": "String", "type": "string"},
|
|
1645
|
+
{"name": "NodeLogicalId", "shape": "String", "type": "string"},
|
|
1509
1646
|
{"name": "InstanceType", "shape": "ClusterInstanceType", "type": "string"},
|
|
1510
1647
|
{"name": "LaunchTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1511
1648
|
{"name": "LastSoftwareUpdateTime", "shape": "Timestamp", "type": "timestamp"},
|
|
@@ -1514,6 +1651,7 @@ SHAPE_DAG = {
|
|
|
1514
1651
|
"shape": "ClusterInstanceStatusDetails",
|
|
1515
1652
|
"type": "structure",
|
|
1516
1653
|
},
|
|
1654
|
+
{"name": "UltraServerInfo", "shape": "UltraServerInfo", "type": "structure"},
|
|
1517
1655
|
],
|
|
1518
1656
|
"type": "structure",
|
|
1519
1657
|
},
|
|
@@ -2103,6 +2241,11 @@ SHAPE_DAG = {
|
|
|
2103
2241
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
2104
2242
|
{"name": "Orchestrator", "shape": "ClusterOrchestrator", "type": "structure"},
|
|
2105
2243
|
{"name": "NodeRecovery", "shape": "ClusterNodeRecovery", "type": "string"},
|
|
2244
|
+
{
|
|
2245
|
+
"name": "NodeProvisioningMode",
|
|
2246
|
+
"shape": "ClusterNodeProvisioningMode",
|
|
2247
|
+
"type": "string",
|
|
2248
|
+
},
|
|
2106
2249
|
],
|
|
2107
2250
|
"type": "structure",
|
|
2108
2251
|
},
|
|
@@ -3297,6 +3440,11 @@ SHAPE_DAG = {
|
|
|
3297
3440
|
"members": [
|
|
3298
3441
|
{"name": "TrainingPlanName", "shape": "TrainingPlanName", "type": "string"},
|
|
3299
3442
|
{"name": "TrainingPlanOfferingId", "shape": "TrainingPlanOfferingId", "type": "string"},
|
|
3443
|
+
{
|
|
3444
|
+
"name": "SpareInstanceCountPerUltraServer",
|
|
3445
|
+
"shape": "SpareInstanceCountPerUltraServer",
|
|
3446
|
+
"type": "integer",
|
|
3447
|
+
},
|
|
3300
3448
|
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
3301
3449
|
],
|
|
3302
3450
|
"type": "structure",
|
|
@@ -4441,10 +4589,22 @@ SHAPE_DAG = {
|
|
|
4441
4589
|
],
|
|
4442
4590
|
"type": "structure",
|
|
4443
4591
|
},
|
|
4592
|
+
"DescribeClusterEventRequest": {
|
|
4593
|
+
"members": [
|
|
4594
|
+
{"name": "EventId", "shape": "EventId", "type": "string"},
|
|
4595
|
+
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
4596
|
+
],
|
|
4597
|
+
"type": "structure",
|
|
4598
|
+
},
|
|
4599
|
+
"DescribeClusterEventResponse": {
|
|
4600
|
+
"members": [{"name": "EventDetails", "shape": "ClusterEventDetail", "type": "structure"}],
|
|
4601
|
+
"type": "structure",
|
|
4602
|
+
},
|
|
4444
4603
|
"DescribeClusterNodeRequest": {
|
|
4445
4604
|
"members": [
|
|
4446
4605
|
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
4447
4606
|
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
4607
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
4448
4608
|
],
|
|
4449
4609
|
"type": "structure",
|
|
4450
4610
|
},
|
|
@@ -4472,6 +4632,11 @@ SHAPE_DAG = {
|
|
|
4472
4632
|
{"name": "VpcConfig", "shape": "VpcConfig", "type": "structure"},
|
|
4473
4633
|
{"name": "Orchestrator", "shape": "ClusterOrchestrator", "type": "structure"},
|
|
4474
4634
|
{"name": "NodeRecovery", "shape": "ClusterNodeRecovery", "type": "string"},
|
|
4635
|
+
{
|
|
4636
|
+
"name": "NodeProvisioningMode",
|
|
4637
|
+
"shape": "ClusterNodeProvisioningMode",
|
|
4638
|
+
"type": "string",
|
|
4639
|
+
},
|
|
4475
4640
|
],
|
|
4476
4641
|
"type": "structure",
|
|
4477
4642
|
},
|
|
@@ -5954,6 +6119,34 @@ SHAPE_DAG = {
|
|
|
5954
6119
|
],
|
|
5955
6120
|
"type": "structure",
|
|
5956
6121
|
},
|
|
6122
|
+
"DescribeReservedCapacityRequest": {
|
|
6123
|
+
"members": [
|
|
6124
|
+
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"}
|
|
6125
|
+
],
|
|
6126
|
+
"type": "structure",
|
|
6127
|
+
},
|
|
6128
|
+
"DescribeReservedCapacityResponse": {
|
|
6129
|
+
"members": [
|
|
6130
|
+
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"},
|
|
6131
|
+
{"name": "ReservedCapacityType", "shape": "ReservedCapacityType", "type": "string"},
|
|
6132
|
+
{"name": "Status", "shape": "ReservedCapacityStatus", "type": "string"},
|
|
6133
|
+
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
6134
|
+
{"name": "DurationHours", "shape": "ReservedCapacityDurationHours", "type": "long"},
|
|
6135
|
+
{"name": "DurationMinutes", "shape": "ReservedCapacityDurationMinutes", "type": "long"},
|
|
6136
|
+
{"name": "StartTime", "shape": "Timestamp", "type": "timestamp"},
|
|
6137
|
+
{"name": "EndTime", "shape": "Timestamp", "type": "timestamp"},
|
|
6138
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
6139
|
+
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
6140
|
+
{
|
|
6141
|
+
"name": "AvailableInstanceCount",
|
|
6142
|
+
"shape": "AvailableInstanceCount",
|
|
6143
|
+
"type": "integer",
|
|
6144
|
+
},
|
|
6145
|
+
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
6146
|
+
{"name": "UltraServerSummary", "shape": "UltraServerSummary", "type": "structure"},
|
|
6147
|
+
],
|
|
6148
|
+
"type": "structure",
|
|
6149
|
+
},
|
|
5957
6150
|
"DescribeSpaceRequest": {
|
|
5958
6151
|
"members": [
|
|
5959
6152
|
{"name": "DomainId", "shape": "DomainId", "type": "string"},
|
|
@@ -6129,6 +6322,17 @@ SHAPE_DAG = {
|
|
|
6129
6322
|
"type": "integer",
|
|
6130
6323
|
},
|
|
6131
6324
|
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
6325
|
+
{
|
|
6326
|
+
"name": "UnhealthyInstanceCount",
|
|
6327
|
+
"shape": "UnhealthyInstanceCount",
|
|
6328
|
+
"type": "integer",
|
|
6329
|
+
},
|
|
6330
|
+
{
|
|
6331
|
+
"name": "AvailableSpareInstanceCount",
|
|
6332
|
+
"shape": "AvailableSpareInstanceCount",
|
|
6333
|
+
"type": "integer",
|
|
6334
|
+
},
|
|
6335
|
+
{"name": "TotalUltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
6132
6336
|
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
6133
6337
|
{
|
|
6134
6338
|
"name": "ReservedCapacitySummaries",
|
|
@@ -6693,6 +6897,8 @@ SHAPE_DAG = {
|
|
|
6693
6897
|
"type": "structure",
|
|
6694
6898
|
},
|
|
6695
6899
|
"Edges": {"member_shape": "Edge", "member_type": "structure", "type": "list"},
|
|
6900
|
+
"EfaEnis": {"member_shape": "String", "member_type": "string", "type": "list"},
|
|
6901
|
+
"EksRoleAccessEntries": {"member_shape": "String", "member_type": "string", "type": "list"},
|
|
6696
6902
|
"EmrServerlessComputeConfig": {
|
|
6697
6903
|
"members": [{"name": "ExecutionRoleARN", "shape": "RoleArn", "type": "string"}],
|
|
6698
6904
|
"type": "structure",
|
|
@@ -6908,6 +7114,23 @@ SHAPE_DAG = {
|
|
|
6908
7114
|
],
|
|
6909
7115
|
"type": "structure",
|
|
6910
7116
|
},
|
|
7117
|
+
"EventDetails": {
|
|
7118
|
+
"members": [{"name": "EventMetadata", "shape": "EventMetadata", "type": "structure"}],
|
|
7119
|
+
"type": "structure",
|
|
7120
|
+
},
|
|
7121
|
+
"EventMetadata": {
|
|
7122
|
+
"members": [
|
|
7123
|
+
{"name": "Cluster", "shape": "ClusterMetadata", "type": "structure"},
|
|
7124
|
+
{"name": "InstanceGroup", "shape": "InstanceGroupMetadata", "type": "structure"},
|
|
7125
|
+
{
|
|
7126
|
+
"name": "InstanceGroupScaling",
|
|
7127
|
+
"shape": "InstanceGroupScalingMetadata",
|
|
7128
|
+
"type": "structure",
|
|
7129
|
+
},
|
|
7130
|
+
{"name": "Instance", "shape": "InstanceMetadata", "type": "structure"},
|
|
7131
|
+
],
|
|
7132
|
+
"type": "structure",
|
|
7133
|
+
},
|
|
6911
7134
|
"ExecutionRoleArns": {"member_shape": "RoleArn", "member_type": "string", "type": "list"},
|
|
6912
7135
|
"Experiment": {
|
|
6913
7136
|
"members": [
|
|
@@ -8366,12 +8589,42 @@ SHAPE_DAG = {
|
|
|
8366
8589
|
],
|
|
8367
8590
|
"type": "structure",
|
|
8368
8591
|
},
|
|
8592
|
+
"InstanceGroupMetadata": {
|
|
8593
|
+
"members": [
|
|
8594
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
8595
|
+
{"name": "AvailabilityZoneId", "shape": "String", "type": "string"},
|
|
8596
|
+
{"name": "CapacityReservation", "shape": "CapacityReservation", "type": "structure"},
|
|
8597
|
+
{"name": "SubnetId", "shape": "String", "type": "string"},
|
|
8598
|
+
{"name": "SecurityGroupIds", "shape": "SecurityGroupIds", "type": "list"},
|
|
8599
|
+
{"name": "AmiOverride", "shape": "String", "type": "string"},
|
|
8600
|
+
],
|
|
8601
|
+
"type": "structure",
|
|
8602
|
+
},
|
|
8369
8603
|
"InstanceGroupNames": {
|
|
8370
8604
|
"member_shape": "InstanceGroupName",
|
|
8371
8605
|
"member_type": "string",
|
|
8372
8606
|
"type": "list",
|
|
8373
8607
|
},
|
|
8608
|
+
"InstanceGroupScalingMetadata": {
|
|
8609
|
+
"members": [
|
|
8610
|
+
{"name": "InstanceCount", "shape": "InstanceCount", "type": "integer"},
|
|
8611
|
+
{"name": "TargetCount", "shape": "TargetCount", "type": "integer"},
|
|
8612
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
8613
|
+
],
|
|
8614
|
+
"type": "structure",
|
|
8615
|
+
},
|
|
8374
8616
|
"InstanceGroups": {"member_shape": "InstanceGroup", "member_type": "structure", "type": "list"},
|
|
8617
|
+
"InstanceMetadata": {
|
|
8618
|
+
"members": [
|
|
8619
|
+
{"name": "CustomerEni", "shape": "String", "type": "string"},
|
|
8620
|
+
{"name": "AdditionalEnis", "shape": "AdditionalEnis", "type": "structure"},
|
|
8621
|
+
{"name": "CapacityReservation", "shape": "CapacityReservation", "type": "structure"},
|
|
8622
|
+
{"name": "FailureMessage", "shape": "String", "type": "string"},
|
|
8623
|
+
{"name": "LcsExecutionState", "shape": "String", "type": "string"},
|
|
8624
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
8625
|
+
],
|
|
8626
|
+
"type": "structure",
|
|
8627
|
+
},
|
|
8375
8628
|
"InstanceMetadataServiceConfiguration": {
|
|
8376
8629
|
"members": [
|
|
8377
8630
|
{
|
|
@@ -8382,6 +8635,13 @@ SHAPE_DAG = {
|
|
|
8382
8635
|
],
|
|
8383
8636
|
"type": "structure",
|
|
8384
8637
|
},
|
|
8638
|
+
"InstancePlacementConfig": {
|
|
8639
|
+
"members": [
|
|
8640
|
+
{"name": "EnableMultipleJobs", "shape": "Boolean", "type": "boolean"},
|
|
8641
|
+
{"name": "PlacementSpecifications", "shape": "PlacementSpecifications", "type": "list"},
|
|
8642
|
+
],
|
|
8643
|
+
"type": "structure",
|
|
8644
|
+
},
|
|
8385
8645
|
"IntegerParameterRange": {
|
|
8386
8646
|
"members": [
|
|
8387
8647
|
{"name": "Name", "shape": "ParameterKey", "type": "string"},
|
|
@@ -8943,6 +9203,28 @@ SHAPE_DAG = {
|
|
|
8943
9203
|
],
|
|
8944
9204
|
"type": "structure",
|
|
8945
9205
|
},
|
|
9206
|
+
"ListClusterEventsRequest": {
|
|
9207
|
+
"members": [
|
|
9208
|
+
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
9209
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
9210
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
9211
|
+
{"name": "EventTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
9212
|
+
{"name": "EventTimeBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
9213
|
+
{"name": "SortBy", "shape": "EventSortBy", "type": "string"},
|
|
9214
|
+
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
9215
|
+
{"name": "ResourceType", "shape": "ClusterEventResourceType", "type": "string"},
|
|
9216
|
+
{"name": "MaxResults", "shape": "ClusterEventMaxResults", "type": "integer"},
|
|
9217
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
9218
|
+
],
|
|
9219
|
+
"type": "structure",
|
|
9220
|
+
},
|
|
9221
|
+
"ListClusterEventsResponse": {
|
|
9222
|
+
"members": [
|
|
9223
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
9224
|
+
{"name": "Events", "shape": "ClusterEventSummaries", "type": "list"},
|
|
9225
|
+
],
|
|
9226
|
+
"type": "structure",
|
|
9227
|
+
},
|
|
8946
9228
|
"ListClusterNodesRequest": {
|
|
8947
9229
|
"members": [
|
|
8948
9230
|
{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"},
|
|
@@ -8957,6 +9239,11 @@ SHAPE_DAG = {
|
|
|
8957
9239
|
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
8958
9240
|
{"name": "SortBy", "shape": "ClusterSortBy", "type": "string"},
|
|
8959
9241
|
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
9242
|
+
{
|
|
9243
|
+
"name": "IncludeNodeLogicalIds",
|
|
9244
|
+
"shape": "IncludeNodeLogicalIdsBoolean",
|
|
9245
|
+
"type": "boolean",
|
|
9246
|
+
},
|
|
8960
9247
|
],
|
|
8961
9248
|
"type": "structure",
|
|
8962
9249
|
},
|
|
@@ -10522,6 +10809,21 @@ SHAPE_DAG = {
|
|
|
10522
10809
|
],
|
|
10523
10810
|
"type": "structure",
|
|
10524
10811
|
},
|
|
10812
|
+
"ListUltraServersByReservedCapacityRequest": {
|
|
10813
|
+
"members": [
|
|
10814
|
+
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"},
|
|
10815
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
10816
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
10817
|
+
],
|
|
10818
|
+
"type": "structure",
|
|
10819
|
+
},
|
|
10820
|
+
"ListUltraServersByReservedCapacityResponse": {
|
|
10821
|
+
"members": [
|
|
10822
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
10823
|
+
{"name": "UltraServers", "shape": "UltraServers", "type": "list"},
|
|
10824
|
+
],
|
|
10825
|
+
"type": "structure",
|
|
10826
|
+
},
|
|
10525
10827
|
"ListUserProfilesRequest": {
|
|
10526
10828
|
"members": [
|
|
10527
10829
|
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
@@ -11803,6 +12105,19 @@ SHAPE_DAG = {
|
|
|
11803
12105
|
],
|
|
11804
12106
|
"type": "structure",
|
|
11805
12107
|
},
|
|
12108
|
+
"NodeAdditionResult": {
|
|
12109
|
+
"members": [
|
|
12110
|
+
{"name": "NodeLogicalId", "shape": "ClusterNodeLogicalId", "type": "string"},
|
|
12111
|
+
{"name": "InstanceGroupName", "shape": "ClusterInstanceGroupName", "type": "string"},
|
|
12112
|
+
{"name": "Status", "shape": "ClusterInstanceStatus", "type": "string"},
|
|
12113
|
+
],
|
|
12114
|
+
"type": "structure",
|
|
12115
|
+
},
|
|
12116
|
+
"NodeAdditionResultList": {
|
|
12117
|
+
"member_shape": "NodeAdditionResult",
|
|
12118
|
+
"member_type": "structure",
|
|
12119
|
+
"type": "list",
|
|
12120
|
+
},
|
|
11806
12121
|
"NotebookInstanceAcceleratorTypes": {
|
|
11807
12122
|
"member_shape": "NotebookInstanceAcceleratorType",
|
|
11808
12123
|
"member_type": "string",
|
|
@@ -12553,6 +12868,18 @@ SHAPE_DAG = {
|
|
|
12553
12868
|
"member_type": "structure",
|
|
12554
12869
|
"type": "list",
|
|
12555
12870
|
},
|
|
12871
|
+
"PlacementSpecification": {
|
|
12872
|
+
"members": [
|
|
12873
|
+
{"name": "UltraServerId", "shape": "String256", "type": "string"},
|
|
12874
|
+
{"name": "InstanceCount", "shape": "TrainingInstanceCount", "type": "integer"},
|
|
12875
|
+
],
|
|
12876
|
+
"type": "structure",
|
|
12877
|
+
},
|
|
12878
|
+
"PlacementSpecifications": {
|
|
12879
|
+
"member_shape": "PlacementSpecification",
|
|
12880
|
+
"member_type": "structure",
|
|
12881
|
+
"type": "list",
|
|
12882
|
+
},
|
|
12556
12883
|
"PredefinedMetricSpecification": {
|
|
12557
12884
|
"members": [{"name": "PredefinedMetricType", "shape": "String", "type": "string"}],
|
|
12558
12885
|
"type": "structure",
|
|
@@ -13490,6 +13817,9 @@ SHAPE_DAG = {
|
|
|
13490
13817
|
},
|
|
13491
13818
|
"ReservedCapacityOffering": {
|
|
13492
13819
|
"members": [
|
|
13820
|
+
{"name": "ReservedCapacityType", "shape": "ReservedCapacityType", "type": "string"},
|
|
13821
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
13822
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
13493
13823
|
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
13494
13824
|
{"name": "InstanceCount", "shape": "ReservedCapacityInstanceCount", "type": "integer"},
|
|
13495
13825
|
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
@@ -13513,6 +13843,9 @@ SHAPE_DAG = {
|
|
|
13513
13843
|
"ReservedCapacitySummary": {
|
|
13514
13844
|
"members": [
|
|
13515
13845
|
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"},
|
|
13846
|
+
{"name": "ReservedCapacityType", "shape": "ReservedCapacityType", "type": "string"},
|
|
13847
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
13848
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
13516
13849
|
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
13517
13850
|
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
13518
13851
|
{"name": "Status", "shape": "ReservedCapacityStatus", "type": "string"},
|
|
@@ -13563,6 +13896,11 @@ SHAPE_DAG = {
|
|
|
13563
13896
|
},
|
|
13564
13897
|
{"name": "InstanceGroups", "shape": "InstanceGroups", "type": "list"},
|
|
13565
13898
|
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
13899
|
+
{
|
|
13900
|
+
"name": "InstancePlacementConfig",
|
|
13901
|
+
"shape": "InstancePlacementConfig",
|
|
13902
|
+
"type": "structure",
|
|
13903
|
+
},
|
|
13566
13904
|
],
|
|
13567
13905
|
"type": "structure",
|
|
13568
13906
|
},
|
|
@@ -13885,6 +14223,8 @@ SHAPE_DAG = {
|
|
|
13885
14223
|
"members": [
|
|
13886
14224
|
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
13887
14225
|
{"name": "InstanceCount", "shape": "ReservedCapacityInstanceCount", "type": "integer"},
|
|
14226
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
14227
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
13888
14228
|
{"name": "StartTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
13889
14229
|
{"name": "EndTimeBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
13890
14230
|
{"name": "DurationHours", "shape": "TrainingPlanDurationHoursInput", "type": "long"},
|
|
@@ -14906,6 +15246,7 @@ SHAPE_DAG = {
|
|
|
14906
15246
|
"type": "integer",
|
|
14907
15247
|
},
|
|
14908
15248
|
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
15249
|
+
{"name": "TotalUltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
14909
15250
|
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
14910
15251
|
{
|
|
14911
15252
|
"name": "ReservedCapacitySummaries",
|
|
@@ -15305,6 +15646,61 @@ SHAPE_DAG = {
|
|
|
15305
15646
|
],
|
|
15306
15647
|
"type": "structure",
|
|
15307
15648
|
},
|
|
15649
|
+
"UltraServer": {
|
|
15650
|
+
"members": [
|
|
15651
|
+
{"name": "UltraServerId", "shape": "NonEmptyString256", "type": "string"},
|
|
15652
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
15653
|
+
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
15654
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
15655
|
+
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
15656
|
+
{
|
|
15657
|
+
"name": "ConfiguredSpareInstanceCount",
|
|
15658
|
+
"shape": "ConfiguredSpareInstanceCount",
|
|
15659
|
+
"type": "integer",
|
|
15660
|
+
},
|
|
15661
|
+
{
|
|
15662
|
+
"name": "AvailableInstanceCount",
|
|
15663
|
+
"shape": "AvailableInstanceCount",
|
|
15664
|
+
"type": "integer",
|
|
15665
|
+
},
|
|
15666
|
+
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
15667
|
+
{
|
|
15668
|
+
"name": "AvailableSpareInstanceCount",
|
|
15669
|
+
"shape": "AvailableSpareInstanceCount",
|
|
15670
|
+
"type": "integer",
|
|
15671
|
+
},
|
|
15672
|
+
{
|
|
15673
|
+
"name": "UnhealthyInstanceCount",
|
|
15674
|
+
"shape": "UnhealthyInstanceCount",
|
|
15675
|
+
"type": "integer",
|
|
15676
|
+
},
|
|
15677
|
+
{"name": "HealthStatus", "shape": "UltraServerHealthStatus", "type": "string"},
|
|
15678
|
+
],
|
|
15679
|
+
"type": "structure",
|
|
15680
|
+
},
|
|
15681
|
+
"UltraServerInfo": {
|
|
15682
|
+
"members": [{"name": "Id", "shape": "String", "type": "string"}],
|
|
15683
|
+
"type": "structure",
|
|
15684
|
+
},
|
|
15685
|
+
"UltraServerSummary": {
|
|
15686
|
+
"members": [
|
|
15687
|
+
{"name": "UltraServerType", "shape": "UltraServerType", "type": "string"},
|
|
15688
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
15689
|
+
{"name": "UltraServerCount", "shape": "UltraServerCount", "type": "integer"},
|
|
15690
|
+
{
|
|
15691
|
+
"name": "AvailableSpareInstanceCount",
|
|
15692
|
+
"shape": "AvailableSpareInstanceCount",
|
|
15693
|
+
"type": "integer",
|
|
15694
|
+
},
|
|
15695
|
+
{
|
|
15696
|
+
"name": "UnhealthyInstanceCount",
|
|
15697
|
+
"shape": "UnhealthyInstanceCount",
|
|
15698
|
+
"type": "integer",
|
|
15699
|
+
},
|
|
15700
|
+
],
|
|
15701
|
+
"type": "structure",
|
|
15702
|
+
},
|
|
15703
|
+
"UltraServers": {"member_shape": "UltraServer", "member_type": "structure", "type": "list"},
|
|
15308
15704
|
"UnifiedStudioSettings": {
|
|
15309
15705
|
"members": [
|
|
15310
15706
|
{"name": "StudioWebPortalAccess", "shape": "FeatureStatus", "type": "string"},
|
|
@@ -15457,6 +15853,7 @@ SHAPE_DAG = {
|
|
|
15457
15853
|
"type": "list",
|
|
15458
15854
|
},
|
|
15459
15855
|
{"name": "DeploymentConfig", "shape": "DeploymentConfiguration", "type": "structure"},
|
|
15856
|
+
{"name": "ImageId", "shape": "ImageId", "type": "string"},
|
|
15460
15857
|
],
|
|
15461
15858
|
"type": "structure",
|
|
15462
15859
|
},
|