sagemaker-core 1.0.16__py3-none-any.whl → 1.0.17__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/codec.py +16 -2
- sagemaker_core/main/code_injection/shape_dag.py +708 -2
- sagemaker_core/main/config_schema.py +4 -0
- sagemaker_core/main/resources.py +10568 -8616
- sagemaker_core/main/shapes.py +401 -0
- sagemaker_core/tools/method.py +3 -2
- sagemaker_core/tools/resources_codegen.py +7 -2
- sagemaker_core/tools/shapes_extractor.py +12 -7
- {sagemaker_core-1.0.16.dist-info → sagemaker_core-1.0.17.dist-info}/METADATA +2 -2
- {sagemaker_core-1.0.16.dist-info → sagemaker_core-1.0.17.dist-info}/RECORD +13 -13
- {sagemaker_core-1.0.16.dist-info → sagemaker_core-1.0.17.dist-info}/LICENSE +0 -0
- {sagemaker_core-1.0.16.dist-info → sagemaker_core-1.0.17.dist-info}/WHEEL +0 -0
- {sagemaker_core-1.0.16.dist-info → sagemaker_core-1.0.17.dist-info}/top_level.txt +0 -0
|
@@ -1263,6 +1263,13 @@ SHAPE_DAG = {
|
|
|
1263
1263
|
"type": "list",
|
|
1264
1264
|
},
|
|
1265
1265
|
{"name": "OnStartDeepHealthChecks", "shape": "OnStartDeepHealthChecks", "type": "list"},
|
|
1266
|
+
{"name": "Status", "shape": "InstanceGroupStatus", "type": "string"},
|
|
1267
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
1268
|
+
{
|
|
1269
|
+
"name": "TrainingPlanStatus",
|
|
1270
|
+
"shape": "InstanceGroupTrainingPlanStatus",
|
|
1271
|
+
"type": "string",
|
|
1272
|
+
},
|
|
1266
1273
|
{"name": "OverrideVpcConfig", "shape": "VpcConfig", "type": "structure"},
|
|
1267
1274
|
],
|
|
1268
1275
|
"type": "structure",
|
|
@@ -1286,6 +1293,7 @@ SHAPE_DAG = {
|
|
|
1286
1293
|
"type": "list",
|
|
1287
1294
|
},
|
|
1288
1295
|
{"name": "OnStartDeepHealthChecks", "shape": "OnStartDeepHealthChecks", "type": "list"},
|
|
1296
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
1289
1297
|
{"name": "OverrideVpcConfig", "shape": "VpcConfig", "type": "structure"},
|
|
1290
1298
|
],
|
|
1291
1299
|
"type": "structure",
|
|
@@ -1380,6 +1388,32 @@ SHAPE_DAG = {
|
|
|
1380
1388
|
"members": [{"name": "ClusterArn", "shape": "EksClusterArn", "type": "string"}],
|
|
1381
1389
|
"type": "structure",
|
|
1382
1390
|
},
|
|
1391
|
+
"ClusterSchedulerConfigSummary": {
|
|
1392
|
+
"members": [
|
|
1393
|
+
{
|
|
1394
|
+
"name": "ClusterSchedulerConfigArn",
|
|
1395
|
+
"shape": "ClusterSchedulerConfigArn",
|
|
1396
|
+
"type": "string",
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"name": "ClusterSchedulerConfigId",
|
|
1400
|
+
"shape": "ClusterSchedulerConfigId",
|
|
1401
|
+
"type": "string",
|
|
1402
|
+
},
|
|
1403
|
+
{"name": "ClusterSchedulerConfigVersion", "shape": "Integer", "type": "integer"},
|
|
1404
|
+
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
1405
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1406
|
+
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1407
|
+
{"name": "Status", "shape": "SchedulerResourceStatus", "type": "string"},
|
|
1408
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1409
|
+
],
|
|
1410
|
+
"type": "structure",
|
|
1411
|
+
},
|
|
1412
|
+
"ClusterSchedulerConfigSummaryList": {
|
|
1413
|
+
"member_shape": "ClusterSchedulerConfigSummary",
|
|
1414
|
+
"member_type": "structure",
|
|
1415
|
+
"type": "list",
|
|
1416
|
+
},
|
|
1383
1417
|
"ClusterSummaries": {
|
|
1384
1418
|
"member_shape": "ClusterSummary",
|
|
1385
1419
|
"member_type": "structure",
|
|
@@ -1391,6 +1425,7 @@ SHAPE_DAG = {
|
|
|
1391
1425
|
{"name": "ClusterName", "shape": "ClusterName", "type": "string"},
|
|
1392
1426
|
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1393
1427
|
{"name": "ClusterStatus", "shape": "ClusterStatus", "type": "string"},
|
|
1428
|
+
{"name": "TrainingPlanArns", "shape": "TrainingPlanArns", "type": "list"},
|
|
1394
1429
|
],
|
|
1395
1430
|
"type": "structure",
|
|
1396
1431
|
},
|
|
@@ -1515,6 +1550,62 @@ SHAPE_DAG = {
|
|
|
1515
1550
|
"member_type": "string",
|
|
1516
1551
|
"type": "list",
|
|
1517
1552
|
},
|
|
1553
|
+
"ComputeQuotaConfig": {
|
|
1554
|
+
"members": [
|
|
1555
|
+
{
|
|
1556
|
+
"name": "ComputeQuotaResources",
|
|
1557
|
+
"shape": "ComputeQuotaResourceConfigList",
|
|
1558
|
+
"type": "list",
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"name": "ResourceSharingConfig",
|
|
1562
|
+
"shape": "ResourceSharingConfig",
|
|
1563
|
+
"type": "structure",
|
|
1564
|
+
},
|
|
1565
|
+
{"name": "PreemptTeamTasks", "shape": "PreemptTeamTasks", "type": "string"},
|
|
1566
|
+
],
|
|
1567
|
+
"type": "structure",
|
|
1568
|
+
},
|
|
1569
|
+
"ComputeQuotaResourceConfig": {
|
|
1570
|
+
"members": [
|
|
1571
|
+
{"name": "InstanceType", "shape": "ClusterInstanceType", "type": "string"},
|
|
1572
|
+
{"name": "Count", "shape": "InstanceCount", "type": "integer"},
|
|
1573
|
+
],
|
|
1574
|
+
"type": "structure",
|
|
1575
|
+
},
|
|
1576
|
+
"ComputeQuotaResourceConfigList": {
|
|
1577
|
+
"member_shape": "ComputeQuotaResourceConfig",
|
|
1578
|
+
"member_type": "structure",
|
|
1579
|
+
"type": "list",
|
|
1580
|
+
},
|
|
1581
|
+
"ComputeQuotaSummary": {
|
|
1582
|
+
"members": [
|
|
1583
|
+
{"name": "ComputeQuotaArn", "shape": "ComputeQuotaArn", "type": "string"},
|
|
1584
|
+
{"name": "ComputeQuotaId", "shape": "ComputeQuotaId", "type": "string"},
|
|
1585
|
+
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
1586
|
+
{"name": "ComputeQuotaVersion", "shape": "Integer", "type": "integer"},
|
|
1587
|
+
{"name": "Status", "shape": "SchedulerResourceStatus", "type": "string"},
|
|
1588
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1589
|
+
{"name": "ComputeQuotaConfig", "shape": "ComputeQuotaConfig", "type": "structure"},
|
|
1590
|
+
{"name": "ComputeQuotaTarget", "shape": "ComputeQuotaTarget", "type": "structure"},
|
|
1591
|
+
{"name": "ActivationState", "shape": "ActivationState", "type": "string"},
|
|
1592
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1593
|
+
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
1594
|
+
],
|
|
1595
|
+
"type": "structure",
|
|
1596
|
+
},
|
|
1597
|
+
"ComputeQuotaSummaryList": {
|
|
1598
|
+
"member_shape": "ComputeQuotaSummary",
|
|
1599
|
+
"member_type": "structure",
|
|
1600
|
+
"type": "list",
|
|
1601
|
+
},
|
|
1602
|
+
"ComputeQuotaTarget": {
|
|
1603
|
+
"members": [
|
|
1604
|
+
{"name": "TeamName", "shape": "ComputeQuotaTargetTeamName", "type": "string"},
|
|
1605
|
+
{"name": "FairShareWeight", "shape": "FairShareWeight", "type": "integer"},
|
|
1606
|
+
],
|
|
1607
|
+
"type": "structure",
|
|
1608
|
+
},
|
|
1518
1609
|
"ConditionStepMetadata": {
|
|
1519
1610
|
"members": [{"name": "Outcome", "shape": "ConditionOutcome", "type": "string"}],
|
|
1520
1611
|
"type": "structure",
|
|
@@ -1811,6 +1902,31 @@ SHAPE_DAG = {
|
|
|
1811
1902
|
"members": [{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"}],
|
|
1812
1903
|
"type": "structure",
|
|
1813
1904
|
},
|
|
1905
|
+
"CreateClusterSchedulerConfigRequest": {
|
|
1906
|
+
"members": [
|
|
1907
|
+
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
1908
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1909
|
+
{"name": "SchedulerConfig", "shape": "SchedulerConfig", "type": "structure"},
|
|
1910
|
+
{"name": "Description", "shape": "EntityDescription", "type": "string"},
|
|
1911
|
+
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
1912
|
+
],
|
|
1913
|
+
"type": "structure",
|
|
1914
|
+
},
|
|
1915
|
+
"CreateClusterSchedulerConfigResponse": {
|
|
1916
|
+
"members": [
|
|
1917
|
+
{
|
|
1918
|
+
"name": "ClusterSchedulerConfigArn",
|
|
1919
|
+
"shape": "ClusterSchedulerConfigArn",
|
|
1920
|
+
"type": "string",
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"name": "ClusterSchedulerConfigId",
|
|
1924
|
+
"shape": "ClusterSchedulerConfigId",
|
|
1925
|
+
"type": "string",
|
|
1926
|
+
},
|
|
1927
|
+
],
|
|
1928
|
+
"type": "structure",
|
|
1929
|
+
},
|
|
1814
1930
|
"CreateCodeRepositoryInput": {
|
|
1815
1931
|
"members": [
|
|
1816
1932
|
{"name": "CodeRepositoryName", "shape": "EntityName", "type": "string"},
|
|
@@ -1840,6 +1956,25 @@ SHAPE_DAG = {
|
|
|
1840
1956
|
"members": [{"name": "CompilationJobArn", "shape": "CompilationJobArn", "type": "string"}],
|
|
1841
1957
|
"type": "structure",
|
|
1842
1958
|
},
|
|
1959
|
+
"CreateComputeQuotaRequest": {
|
|
1960
|
+
"members": [
|
|
1961
|
+
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
1962
|
+
{"name": "Description", "shape": "EntityDescription", "type": "string"},
|
|
1963
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
1964
|
+
{"name": "ComputeQuotaConfig", "shape": "ComputeQuotaConfig", "type": "structure"},
|
|
1965
|
+
{"name": "ComputeQuotaTarget", "shape": "ComputeQuotaTarget", "type": "structure"},
|
|
1966
|
+
{"name": "ActivationState", "shape": "ActivationState", "type": "string"},
|
|
1967
|
+
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
1968
|
+
],
|
|
1969
|
+
"type": "structure",
|
|
1970
|
+
},
|
|
1971
|
+
"CreateComputeQuotaResponse": {
|
|
1972
|
+
"members": [
|
|
1973
|
+
{"name": "ComputeQuotaArn", "shape": "ComputeQuotaArn", "type": "string"},
|
|
1974
|
+
{"name": "ComputeQuotaId", "shape": "ComputeQuotaId", "type": "string"},
|
|
1975
|
+
],
|
|
1976
|
+
"type": "structure",
|
|
1977
|
+
},
|
|
1843
1978
|
"CreateContextRequest": {
|
|
1844
1979
|
"members": [
|
|
1845
1980
|
{"name": "ContextName", "shape": "ContextName", "type": "string"},
|
|
@@ -2648,6 +2783,45 @@ SHAPE_DAG = {
|
|
|
2648
2783
|
],
|
|
2649
2784
|
"type": "structure",
|
|
2650
2785
|
},
|
|
2786
|
+
"CreatePartnerAppPresignedUrlRequest": {
|
|
2787
|
+
"members": [
|
|
2788
|
+
{"name": "Arn", "shape": "PartnerAppArn", "type": "string"},
|
|
2789
|
+
{"name": "ExpiresInSeconds", "shape": "ExpiresInSeconds", "type": "integer"},
|
|
2790
|
+
{
|
|
2791
|
+
"name": "SessionExpirationDurationInSeconds",
|
|
2792
|
+
"shape": "SessionExpirationDurationInSeconds",
|
|
2793
|
+
"type": "integer",
|
|
2794
|
+
},
|
|
2795
|
+
],
|
|
2796
|
+
"type": "structure",
|
|
2797
|
+
},
|
|
2798
|
+
"CreatePartnerAppPresignedUrlResponse": {
|
|
2799
|
+
"members": [{"name": "Url", "shape": "String2048", "type": "string"}],
|
|
2800
|
+
"type": "structure",
|
|
2801
|
+
},
|
|
2802
|
+
"CreatePartnerAppRequest": {
|
|
2803
|
+
"members": [
|
|
2804
|
+
{"name": "Name", "shape": "PartnerAppName", "type": "string"},
|
|
2805
|
+
{"name": "Type", "shape": "PartnerAppType", "type": "string"},
|
|
2806
|
+
{"name": "ExecutionRoleArn", "shape": "RoleArn", "type": "string"},
|
|
2807
|
+
{
|
|
2808
|
+
"name": "MaintenanceConfig",
|
|
2809
|
+
"shape": "PartnerAppMaintenanceConfig",
|
|
2810
|
+
"type": "structure",
|
|
2811
|
+
},
|
|
2812
|
+
{"name": "Tier", "shape": "NonEmptyString64", "type": "string"},
|
|
2813
|
+
{"name": "ApplicationConfig", "shape": "PartnerAppConfig", "type": "structure"},
|
|
2814
|
+
{"name": "AuthType", "shape": "PartnerAppAuthType", "type": "string"},
|
|
2815
|
+
{"name": "EnableIamSessionBasedIdentity", "shape": "Boolean", "type": "boolean"},
|
|
2816
|
+
{"name": "ClientToken", "shape": "ClientToken", "type": "string"},
|
|
2817
|
+
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
2818
|
+
],
|
|
2819
|
+
"type": "structure",
|
|
2820
|
+
},
|
|
2821
|
+
"CreatePartnerAppResponse": {
|
|
2822
|
+
"members": [{"name": "Arn", "shape": "PartnerAppArn", "type": "string"}],
|
|
2823
|
+
"type": "structure",
|
|
2824
|
+
},
|
|
2651
2825
|
"CreatePipelineRequest": {
|
|
2652
2826
|
"members": [
|
|
2653
2827
|
{"name": "PipelineName", "shape": "PipelineName", "type": "string"},
|
|
@@ -2873,6 +3047,18 @@ SHAPE_DAG = {
|
|
|
2873
3047
|
"members": [{"name": "TrainingJobArn", "shape": "TrainingJobArn", "type": "string"}],
|
|
2874
3048
|
"type": "structure",
|
|
2875
3049
|
},
|
|
3050
|
+
"CreateTrainingPlanRequest": {
|
|
3051
|
+
"members": [
|
|
3052
|
+
{"name": "TrainingPlanName", "shape": "TrainingPlanName", "type": "string"},
|
|
3053
|
+
{"name": "TrainingPlanOfferingId", "shape": "TrainingPlanOfferingId", "type": "string"},
|
|
3054
|
+
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
3055
|
+
],
|
|
3056
|
+
"type": "structure",
|
|
3057
|
+
},
|
|
3058
|
+
"CreateTrainingPlanResponse": {
|
|
3059
|
+
"members": [{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"}],
|
|
3060
|
+
"type": "structure",
|
|
3061
|
+
},
|
|
2876
3062
|
"CreateTransformJobRequest": {
|
|
2877
3063
|
"members": [
|
|
2878
3064
|
{"name": "TransformJobName", "shape": "TransformJobName", "type": "string"},
|
|
@@ -2997,12 +3183,20 @@ SHAPE_DAG = {
|
|
|
2997
3183
|
},
|
|
2998
3184
|
"CsvContentTypes": {"member_shape": "CsvContentType", "member_type": "string", "type": "list"},
|
|
2999
3185
|
"CustomFileSystem": {
|
|
3000
|
-
"members": [
|
|
3186
|
+
"members": [
|
|
3187
|
+
{"name": "EFSFileSystem", "shape": "EFSFileSystem", "type": "structure"},
|
|
3188
|
+
{"name": "FSxLustreFileSystem", "shape": "FSxLustreFileSystem", "type": "structure"},
|
|
3189
|
+
],
|
|
3001
3190
|
"type": "structure",
|
|
3002
3191
|
},
|
|
3003
3192
|
"CustomFileSystemConfig": {
|
|
3004
3193
|
"members": [
|
|
3005
|
-
{"name": "EFSFileSystemConfig", "shape": "EFSFileSystemConfig", "type": "structure"}
|
|
3194
|
+
{"name": "EFSFileSystemConfig", "shape": "EFSFileSystemConfig", "type": "structure"},
|
|
3195
|
+
{
|
|
3196
|
+
"name": "FSxLustreFileSystemConfig",
|
|
3197
|
+
"shape": "FSxLustreFileSystemConfig",
|
|
3198
|
+
"type": "structure",
|
|
3199
|
+
},
|
|
3006
3200
|
],
|
|
3007
3201
|
"type": "structure",
|
|
3008
3202
|
},
|
|
@@ -3333,6 +3527,16 @@ SHAPE_DAG = {
|
|
|
3333
3527
|
"members": [{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"}],
|
|
3334
3528
|
"type": "structure",
|
|
3335
3529
|
},
|
|
3530
|
+
"DeleteClusterSchedulerConfigRequest": {
|
|
3531
|
+
"members": [
|
|
3532
|
+
{
|
|
3533
|
+
"name": "ClusterSchedulerConfigId",
|
|
3534
|
+
"shape": "ClusterSchedulerConfigId",
|
|
3535
|
+
"type": "string",
|
|
3536
|
+
}
|
|
3537
|
+
],
|
|
3538
|
+
"type": "structure",
|
|
3539
|
+
},
|
|
3336
3540
|
"DeleteCodeRepositoryInput": {
|
|
3337
3541
|
"members": [{"name": "CodeRepositoryName", "shape": "EntityName", "type": "string"}],
|
|
3338
3542
|
"type": "structure",
|
|
@@ -3341,6 +3545,10 @@ SHAPE_DAG = {
|
|
|
3341
3545
|
"members": [{"name": "CompilationJobName", "shape": "EntityName", "type": "string"}],
|
|
3342
3546
|
"type": "structure",
|
|
3343
3547
|
},
|
|
3548
|
+
"DeleteComputeQuotaRequest": {
|
|
3549
|
+
"members": [{"name": "ComputeQuotaId", "shape": "ComputeQuotaId", "type": "string"}],
|
|
3550
|
+
"type": "structure",
|
|
3551
|
+
},
|
|
3344
3552
|
"DeleteContextRequest": {
|
|
3345
3553
|
"members": [{"name": "ContextName", "shape": "ContextName", "type": "string"}],
|
|
3346
3554
|
"type": "structure",
|
|
@@ -3546,6 +3754,17 @@ SHAPE_DAG = {
|
|
|
3546
3754
|
"members": [{"name": "OptimizationJobName", "shape": "EntityName", "type": "string"}],
|
|
3547
3755
|
"type": "structure",
|
|
3548
3756
|
},
|
|
3757
|
+
"DeletePartnerAppRequest": {
|
|
3758
|
+
"members": [
|
|
3759
|
+
{"name": "Arn", "shape": "PartnerAppArn", "type": "string"},
|
|
3760
|
+
{"name": "ClientToken", "shape": "ClientToken", "type": "string"},
|
|
3761
|
+
],
|
|
3762
|
+
"type": "structure",
|
|
3763
|
+
},
|
|
3764
|
+
"DeletePartnerAppResponse": {
|
|
3765
|
+
"members": [{"name": "Arn", "shape": "PartnerAppArn", "type": "string"}],
|
|
3766
|
+
"type": "structure",
|
|
3767
|
+
},
|
|
3549
3768
|
"DeletePipelineRequest": {
|
|
3550
3769
|
"members": [
|
|
3551
3770
|
{"name": "PipelineName", "shape": "PipelineName", "type": "string"},
|
|
@@ -3985,6 +4204,43 @@ SHAPE_DAG = {
|
|
|
3985
4204
|
],
|
|
3986
4205
|
"type": "structure",
|
|
3987
4206
|
},
|
|
4207
|
+
"DescribeClusterSchedulerConfigRequest": {
|
|
4208
|
+
"members": [
|
|
4209
|
+
{
|
|
4210
|
+
"name": "ClusterSchedulerConfigId",
|
|
4211
|
+
"shape": "ClusterSchedulerConfigId",
|
|
4212
|
+
"type": "string",
|
|
4213
|
+
},
|
|
4214
|
+
{"name": "ClusterSchedulerConfigVersion", "shape": "Integer", "type": "integer"},
|
|
4215
|
+
],
|
|
4216
|
+
"type": "structure",
|
|
4217
|
+
},
|
|
4218
|
+
"DescribeClusterSchedulerConfigResponse": {
|
|
4219
|
+
"members": [
|
|
4220
|
+
{
|
|
4221
|
+
"name": "ClusterSchedulerConfigArn",
|
|
4222
|
+
"shape": "ClusterSchedulerConfigArn",
|
|
4223
|
+
"type": "string",
|
|
4224
|
+
},
|
|
4225
|
+
{
|
|
4226
|
+
"name": "ClusterSchedulerConfigId",
|
|
4227
|
+
"shape": "ClusterSchedulerConfigId",
|
|
4228
|
+
"type": "string",
|
|
4229
|
+
},
|
|
4230
|
+
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
4231
|
+
{"name": "ClusterSchedulerConfigVersion", "shape": "Integer", "type": "integer"},
|
|
4232
|
+
{"name": "Status", "shape": "SchedulerResourceStatus", "type": "string"},
|
|
4233
|
+
{"name": "FailureReason", "shape": "FailureReason", "type": "string"},
|
|
4234
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
4235
|
+
{"name": "SchedulerConfig", "shape": "SchedulerConfig", "type": "structure"},
|
|
4236
|
+
{"name": "Description", "shape": "EntityDescription", "type": "string"},
|
|
4237
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
4238
|
+
{"name": "CreatedBy", "shape": "UserContext", "type": "structure"},
|
|
4239
|
+
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
4240
|
+
{"name": "LastModifiedBy", "shape": "UserContext", "type": "structure"},
|
|
4241
|
+
],
|
|
4242
|
+
"type": "structure",
|
|
4243
|
+
},
|
|
3988
4244
|
"DescribeCodeRepositoryInput": {
|
|
3989
4245
|
"members": [{"name": "CodeRepositoryName", "shape": "EntityName", "type": "string"}],
|
|
3990
4246
|
"type": "structure",
|
|
@@ -4026,6 +4282,33 @@ SHAPE_DAG = {
|
|
|
4026
4282
|
],
|
|
4027
4283
|
"type": "structure",
|
|
4028
4284
|
},
|
|
4285
|
+
"DescribeComputeQuotaRequest": {
|
|
4286
|
+
"members": [
|
|
4287
|
+
{"name": "ComputeQuotaId", "shape": "ComputeQuotaId", "type": "string"},
|
|
4288
|
+
{"name": "ComputeQuotaVersion", "shape": "Integer", "type": "integer"},
|
|
4289
|
+
],
|
|
4290
|
+
"type": "structure",
|
|
4291
|
+
},
|
|
4292
|
+
"DescribeComputeQuotaResponse": {
|
|
4293
|
+
"members": [
|
|
4294
|
+
{"name": "ComputeQuotaArn", "shape": "ComputeQuotaArn", "type": "string"},
|
|
4295
|
+
{"name": "ComputeQuotaId", "shape": "ComputeQuotaId", "type": "string"},
|
|
4296
|
+
{"name": "Name", "shape": "EntityName", "type": "string"},
|
|
4297
|
+
{"name": "Description", "shape": "EntityDescription", "type": "string"},
|
|
4298
|
+
{"name": "ComputeQuotaVersion", "shape": "Integer", "type": "integer"},
|
|
4299
|
+
{"name": "Status", "shape": "SchedulerResourceStatus", "type": "string"},
|
|
4300
|
+
{"name": "FailureReason", "shape": "FailureReason", "type": "string"},
|
|
4301
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
4302
|
+
{"name": "ComputeQuotaConfig", "shape": "ComputeQuotaConfig", "type": "structure"},
|
|
4303
|
+
{"name": "ComputeQuotaTarget", "shape": "ComputeQuotaTarget", "type": "structure"},
|
|
4304
|
+
{"name": "ActivationState", "shape": "ActivationState", "type": "string"},
|
|
4305
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
4306
|
+
{"name": "CreatedBy", "shape": "UserContext", "type": "structure"},
|
|
4307
|
+
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
4308
|
+
{"name": "LastModifiedBy", "shape": "UserContext", "type": "structure"},
|
|
4309
|
+
],
|
|
4310
|
+
"type": "structure",
|
|
4311
|
+
},
|
|
4029
4312
|
"DescribeContextRequest": {
|
|
4030
4313
|
"members": [{"name": "ContextName", "shape": "ContextNameOrArn", "type": "string"}],
|
|
4031
4314
|
"type": "structure",
|
|
@@ -5188,6 +5471,33 @@ SHAPE_DAG = {
|
|
|
5188
5471
|
],
|
|
5189
5472
|
"type": "structure",
|
|
5190
5473
|
},
|
|
5474
|
+
"DescribePartnerAppRequest": {
|
|
5475
|
+
"members": [{"name": "Arn", "shape": "PartnerAppArn", "type": "string"}],
|
|
5476
|
+
"type": "structure",
|
|
5477
|
+
},
|
|
5478
|
+
"DescribePartnerAppResponse": {
|
|
5479
|
+
"members": [
|
|
5480
|
+
{"name": "Arn", "shape": "PartnerAppArn", "type": "string"},
|
|
5481
|
+
{"name": "Name", "shape": "PartnerAppName", "type": "string"},
|
|
5482
|
+
{"name": "Type", "shape": "PartnerAppType", "type": "string"},
|
|
5483
|
+
{"name": "Status", "shape": "PartnerAppStatus", "type": "string"},
|
|
5484
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
5485
|
+
{"name": "ExecutionRoleArn", "shape": "RoleArn", "type": "string"},
|
|
5486
|
+
{"name": "BaseUrl", "shape": "String2048", "type": "string"},
|
|
5487
|
+
{
|
|
5488
|
+
"name": "MaintenanceConfig",
|
|
5489
|
+
"shape": "PartnerAppMaintenanceConfig",
|
|
5490
|
+
"type": "structure",
|
|
5491
|
+
},
|
|
5492
|
+
{"name": "Tier", "shape": "NonEmptyString64", "type": "string"},
|
|
5493
|
+
{"name": "Version", "shape": "NonEmptyString64", "type": "string"},
|
|
5494
|
+
{"name": "ApplicationConfig", "shape": "PartnerAppConfig", "type": "structure"},
|
|
5495
|
+
{"name": "AuthType", "shape": "PartnerAppAuthType", "type": "string"},
|
|
5496
|
+
{"name": "EnableIamSessionBasedIdentity", "shape": "Boolean", "type": "boolean"},
|
|
5497
|
+
{"name": "Error", "shape": "ErrorInfo", "type": "structure"},
|
|
5498
|
+
],
|
|
5499
|
+
"type": "structure",
|
|
5500
|
+
},
|
|
5191
5501
|
"DescribePipelineDefinitionForExecutionRequest": {
|
|
5192
5502
|
"members": [
|
|
5193
5503
|
{"name": "PipelineExecutionArn", "shape": "PipelineExecutionArn", "type": "string"}
|
|
@@ -5493,6 +5803,38 @@ SHAPE_DAG = {
|
|
|
5493
5803
|
],
|
|
5494
5804
|
"type": "structure",
|
|
5495
5805
|
},
|
|
5806
|
+
"DescribeTrainingPlanRequest": {
|
|
5807
|
+
"members": [{"name": "TrainingPlanName", "shape": "TrainingPlanName", "type": "string"}],
|
|
5808
|
+
"type": "structure",
|
|
5809
|
+
},
|
|
5810
|
+
"DescribeTrainingPlanResponse": {
|
|
5811
|
+
"members": [
|
|
5812
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
5813
|
+
{"name": "TrainingPlanName", "shape": "TrainingPlanName", "type": "string"},
|
|
5814
|
+
{"name": "Status", "shape": "TrainingPlanStatus", "type": "string"},
|
|
5815
|
+
{"name": "StatusMessage", "shape": "TrainingPlanStatusMessage", "type": "string"},
|
|
5816
|
+
{"name": "DurationHours", "shape": "TrainingPlanDurationHours", "type": "long"},
|
|
5817
|
+
{"name": "DurationMinutes", "shape": "TrainingPlanDurationMinutes", "type": "long"},
|
|
5818
|
+
{"name": "StartTime", "shape": "Timestamp", "type": "timestamp"},
|
|
5819
|
+
{"name": "EndTime", "shape": "Timestamp", "type": "timestamp"},
|
|
5820
|
+
{"name": "UpfrontFee", "shape": "String256", "type": "string"},
|
|
5821
|
+
{"name": "CurrencyCode", "shape": "CurrencyCode", "type": "string"},
|
|
5822
|
+
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
5823
|
+
{
|
|
5824
|
+
"name": "AvailableInstanceCount",
|
|
5825
|
+
"shape": "AvailableInstanceCount",
|
|
5826
|
+
"type": "integer",
|
|
5827
|
+
},
|
|
5828
|
+
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
5829
|
+
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
5830
|
+
{
|
|
5831
|
+
"name": "ReservedCapacitySummaries",
|
|
5832
|
+
"shape": "ReservedCapacitySummaries",
|
|
5833
|
+
"type": "list",
|
|
5834
|
+
},
|
|
5835
|
+
],
|
|
5836
|
+
"type": "structure",
|
|
5837
|
+
},
|
|
5496
5838
|
"DescribeTransformJobRequest": {
|
|
5497
5839
|
"members": [{"name": "TransformJobName", "shape": "TransformJobName", "type": "string"}],
|
|
5498
5840
|
"type": "structure",
|
|
@@ -6198,6 +6540,13 @@ SHAPE_DAG = {
|
|
|
6198
6540
|
"member_type": "structure",
|
|
6199
6541
|
"type": "list",
|
|
6200
6542
|
},
|
|
6543
|
+
"ErrorInfo": {
|
|
6544
|
+
"members": [
|
|
6545
|
+
{"name": "Code", "shape": "NonEmptyString64", "type": "string"},
|
|
6546
|
+
{"name": "Reason", "shape": "NonEmptyString256", "type": "string"},
|
|
6547
|
+
],
|
|
6548
|
+
"type": "structure",
|
|
6549
|
+
},
|
|
6201
6550
|
"ExecutionRoleArns": {"member_shape": "RoleArn", "member_type": "string", "type": "list"},
|
|
6202
6551
|
"Experiment": {
|
|
6203
6552
|
"members": [
|
|
@@ -6264,6 +6613,17 @@ SHAPE_DAG = {
|
|
|
6264
6613
|
],
|
|
6265
6614
|
"type": "structure",
|
|
6266
6615
|
},
|
|
6616
|
+
"FSxLustreFileSystem": {
|
|
6617
|
+
"members": [{"name": "FileSystemId", "shape": "FileSystemId", "type": "string"}],
|
|
6618
|
+
"type": "structure",
|
|
6619
|
+
},
|
|
6620
|
+
"FSxLustreFileSystemConfig": {
|
|
6621
|
+
"members": [
|
|
6622
|
+
{"name": "FileSystemId", "shape": "FileSystemId", "type": "string"},
|
|
6623
|
+
{"name": "FileSystemPath", "shape": "FileSystemPath", "type": "string"},
|
|
6624
|
+
],
|
|
6625
|
+
"type": "structure",
|
|
6626
|
+
},
|
|
6267
6627
|
"FailStepMetadata": {
|
|
6268
6628
|
"members": [{"name": "ErrorMessage", "shape": "String3072", "type": "string"}],
|
|
6269
6629
|
"type": "structure",
|
|
@@ -8187,6 +8547,31 @@ SHAPE_DAG = {
|
|
|
8187
8547
|
],
|
|
8188
8548
|
"type": "structure",
|
|
8189
8549
|
},
|
|
8550
|
+
"ListClusterSchedulerConfigsRequest": {
|
|
8551
|
+
"members": [
|
|
8552
|
+
{"name": "CreatedAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
8553
|
+
{"name": "CreatedBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
8554
|
+
{"name": "NameContains", "shape": "EntityName", "type": "string"},
|
|
8555
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
8556
|
+
{"name": "Status", "shape": "SchedulerResourceStatus", "type": "string"},
|
|
8557
|
+
{"name": "SortBy", "shape": "SortClusterSchedulerConfigBy", "type": "string"},
|
|
8558
|
+
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
8559
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
8560
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
8561
|
+
],
|
|
8562
|
+
"type": "structure",
|
|
8563
|
+
},
|
|
8564
|
+
"ListClusterSchedulerConfigsResponse": {
|
|
8565
|
+
"members": [
|
|
8566
|
+
{
|
|
8567
|
+
"name": "ClusterSchedulerConfigSummaries",
|
|
8568
|
+
"shape": "ClusterSchedulerConfigSummaryList",
|
|
8569
|
+
"type": "list",
|
|
8570
|
+
},
|
|
8571
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
8572
|
+
],
|
|
8573
|
+
"type": "structure",
|
|
8574
|
+
},
|
|
8190
8575
|
"ListClustersRequest": {
|
|
8191
8576
|
"members": [
|
|
8192
8577
|
{"name": "CreationTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
@@ -8196,6 +8581,7 @@ SHAPE_DAG = {
|
|
|
8196
8581
|
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
8197
8582
|
{"name": "SortBy", "shape": "ClusterSortBy", "type": "string"},
|
|
8198
8583
|
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
8584
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
8199
8585
|
],
|
|
8200
8586
|
"type": "structure",
|
|
8201
8587
|
},
|
|
@@ -8253,6 +8639,27 @@ SHAPE_DAG = {
|
|
|
8253
8639
|
],
|
|
8254
8640
|
"type": "structure",
|
|
8255
8641
|
},
|
|
8642
|
+
"ListComputeQuotasRequest": {
|
|
8643
|
+
"members": [
|
|
8644
|
+
{"name": "CreatedAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
8645
|
+
{"name": "CreatedBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
8646
|
+
{"name": "NameContains", "shape": "EntityName", "type": "string"},
|
|
8647
|
+
{"name": "Status", "shape": "SchedulerResourceStatus", "type": "string"},
|
|
8648
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
8649
|
+
{"name": "SortBy", "shape": "SortQuotaBy", "type": "string"},
|
|
8650
|
+
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
8651
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
8652
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
8653
|
+
],
|
|
8654
|
+
"type": "structure",
|
|
8655
|
+
},
|
|
8656
|
+
"ListComputeQuotasResponse": {
|
|
8657
|
+
"members": [
|
|
8658
|
+
{"name": "ComputeQuotaSummaries", "shape": "ComputeQuotaSummaryList", "type": "list"},
|
|
8659
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
8660
|
+
],
|
|
8661
|
+
"type": "structure",
|
|
8662
|
+
},
|
|
8256
8663
|
"ListContextsRequest": {
|
|
8257
8664
|
"members": [
|
|
8258
8665
|
{"name": "SourceUri", "shape": "SourceUri", "type": "string"},
|
|
@@ -9290,6 +9697,20 @@ SHAPE_DAG = {
|
|
|
9290
9697
|
],
|
|
9291
9698
|
"type": "structure",
|
|
9292
9699
|
},
|
|
9700
|
+
"ListPartnerAppsRequest": {
|
|
9701
|
+
"members": [
|
|
9702
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
9703
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
9704
|
+
],
|
|
9705
|
+
"type": "structure",
|
|
9706
|
+
},
|
|
9707
|
+
"ListPartnerAppsResponse": {
|
|
9708
|
+
"members": [
|
|
9709
|
+
{"name": "Summaries", "shape": "PartnerAppSummaries", "type": "list"},
|
|
9710
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
9711
|
+
],
|
|
9712
|
+
"type": "structure",
|
|
9713
|
+
},
|
|
9293
9714
|
"ListPipelineExecutionStepsRequest": {
|
|
9294
9715
|
"members": [
|
|
9295
9716
|
{"name": "PipelineExecutionArn", "shape": "PipelineExecutionArn", "type": "string"},
|
|
@@ -9561,6 +9982,7 @@ SHAPE_DAG = {
|
|
|
9561
9982
|
{"name": "SortBy", "shape": "SortBy", "type": "string"},
|
|
9562
9983
|
{"name": "SortOrder", "shape": "SortOrder", "type": "string"},
|
|
9563
9984
|
{"name": "WarmPoolStatusEquals", "shape": "WarmPoolResourceStatus", "type": "string"},
|
|
9985
|
+
{"name": "TrainingPlanArnEquals", "shape": "TrainingPlanArn", "type": "string"},
|
|
9564
9986
|
],
|
|
9565
9987
|
"type": "structure",
|
|
9566
9988
|
},
|
|
@@ -9571,6 +9993,25 @@ SHAPE_DAG = {
|
|
|
9571
9993
|
],
|
|
9572
9994
|
"type": "structure",
|
|
9573
9995
|
},
|
|
9996
|
+
"ListTrainingPlansRequest": {
|
|
9997
|
+
"members": [
|
|
9998
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
9999
|
+
{"name": "MaxResults", "shape": "MaxResults", "type": "integer"},
|
|
10000
|
+
{"name": "StartTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
10001
|
+
{"name": "StartTimeBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
10002
|
+
{"name": "SortBy", "shape": "TrainingPlanSortBy", "type": "string"},
|
|
10003
|
+
{"name": "SortOrder", "shape": "TrainingPlanSortOrder", "type": "string"},
|
|
10004
|
+
{"name": "Filters", "shape": "TrainingPlanFilters", "type": "list"},
|
|
10005
|
+
],
|
|
10006
|
+
"type": "structure",
|
|
10007
|
+
},
|
|
10008
|
+
"ListTrainingPlansResponse": {
|
|
10009
|
+
"members": [
|
|
10010
|
+
{"name": "NextToken", "shape": "NextToken", "type": "string"},
|
|
10011
|
+
{"name": "TrainingPlanSummaries", "shape": "TrainingPlanSummaries", "type": "list"},
|
|
10012
|
+
],
|
|
10013
|
+
"type": "structure",
|
|
10014
|
+
},
|
|
9574
10015
|
"ListTransformJobsRequest": {
|
|
9575
10016
|
"members": [
|
|
9576
10017
|
{"name": "CreationTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
@@ -11304,6 +11745,50 @@ SHAPE_DAG = {
|
|
|
11304
11745
|
"type": "list",
|
|
11305
11746
|
},
|
|
11306
11747
|
"Parents": {"member_shape": "Parent", "member_type": "structure", "type": "list"},
|
|
11748
|
+
"PartnerAppAdminUserList": {
|
|
11749
|
+
"member_shape": "NonEmptyString256",
|
|
11750
|
+
"member_type": "string",
|
|
11751
|
+
"type": "list",
|
|
11752
|
+
},
|
|
11753
|
+
"PartnerAppArguments": {
|
|
11754
|
+
"key_shape": "NonEmptyString256",
|
|
11755
|
+
"key_type": "string",
|
|
11756
|
+
"type": "map",
|
|
11757
|
+
"value_shape": "String1024",
|
|
11758
|
+
"value_type": "string",
|
|
11759
|
+
},
|
|
11760
|
+
"PartnerAppConfig": {
|
|
11761
|
+
"members": [
|
|
11762
|
+
{"name": "AdminUsers", "shape": "PartnerAppAdminUserList", "type": "list"},
|
|
11763
|
+
{"name": "Arguments", "shape": "PartnerAppArguments", "type": "map"},
|
|
11764
|
+
],
|
|
11765
|
+
"type": "structure",
|
|
11766
|
+
},
|
|
11767
|
+
"PartnerAppMaintenanceConfig": {
|
|
11768
|
+
"members": [
|
|
11769
|
+
{
|
|
11770
|
+
"name": "MaintenanceWindowStart",
|
|
11771
|
+
"shape": "WeeklyScheduleTimeFormat",
|
|
11772
|
+
"type": "string",
|
|
11773
|
+
}
|
|
11774
|
+
],
|
|
11775
|
+
"type": "structure",
|
|
11776
|
+
},
|
|
11777
|
+
"PartnerAppSummaries": {
|
|
11778
|
+
"member_shape": "PartnerAppSummary",
|
|
11779
|
+
"member_type": "structure",
|
|
11780
|
+
"type": "list",
|
|
11781
|
+
},
|
|
11782
|
+
"PartnerAppSummary": {
|
|
11783
|
+
"members": [
|
|
11784
|
+
{"name": "Arn", "shape": "PartnerAppArn", "type": "string"},
|
|
11785
|
+
{"name": "Name", "shape": "PartnerAppName", "type": "string"},
|
|
11786
|
+
{"name": "Type", "shape": "PartnerAppType", "type": "string"},
|
|
11787
|
+
{"name": "Status", "shape": "PartnerAppStatus", "type": "string"},
|
|
11788
|
+
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
11789
|
+
],
|
|
11790
|
+
"type": "structure",
|
|
11791
|
+
},
|
|
11307
11792
|
"PayloadPart": {
|
|
11308
11793
|
"members": [{"name": "Bytes", "shape": "PartBlob", "type": "blob"}],
|
|
11309
11794
|
"type": "structure",
|
|
@@ -11553,6 +12038,18 @@ SHAPE_DAG = {
|
|
|
11553
12038
|
"members": [{"name": "PredefinedMetricType", "shape": "String", "type": "string"}],
|
|
11554
12039
|
"type": "structure",
|
|
11555
12040
|
},
|
|
12041
|
+
"PriorityClass": {
|
|
12042
|
+
"members": [
|
|
12043
|
+
{"name": "Name", "shape": "ClusterSchedulerPriorityClassName", "type": "string"},
|
|
12044
|
+
{"name": "Weight", "shape": "PriorityWeight", "type": "integer"},
|
|
12045
|
+
],
|
|
12046
|
+
"type": "structure",
|
|
12047
|
+
},
|
|
12048
|
+
"PriorityClassList": {
|
|
12049
|
+
"member_shape": "PriorityClass",
|
|
12050
|
+
"member_type": "structure",
|
|
12051
|
+
"type": "list",
|
|
12052
|
+
},
|
|
11556
12053
|
"ProcessingClusterConfig": {
|
|
11557
12054
|
"members": [
|
|
11558
12055
|
{"name": "InstanceCount", "shape": "ProcessingInstanceCount", "type": "integer"},
|
|
@@ -12420,6 +12917,42 @@ SHAPE_DAG = {
|
|
|
12420
12917
|
],
|
|
12421
12918
|
"type": "structure",
|
|
12422
12919
|
},
|
|
12920
|
+
"ReservedCapacityOffering": {
|
|
12921
|
+
"members": [
|
|
12922
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
12923
|
+
{"name": "InstanceCount", "shape": "ReservedCapacityInstanceCount", "type": "integer"},
|
|
12924
|
+
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
12925
|
+
{"name": "DurationHours", "shape": "ReservedCapacityDurationHours", "type": "long"},
|
|
12926
|
+
{"name": "DurationMinutes", "shape": "ReservedCapacityDurationMinutes", "type": "long"},
|
|
12927
|
+
{"name": "StartTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12928
|
+
{"name": "EndTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12929
|
+
],
|
|
12930
|
+
"type": "structure",
|
|
12931
|
+
},
|
|
12932
|
+
"ReservedCapacityOfferings": {
|
|
12933
|
+
"member_shape": "ReservedCapacityOffering",
|
|
12934
|
+
"member_type": "structure",
|
|
12935
|
+
"type": "list",
|
|
12936
|
+
},
|
|
12937
|
+
"ReservedCapacitySummaries": {
|
|
12938
|
+
"member_shape": "ReservedCapacitySummary",
|
|
12939
|
+
"member_type": "structure",
|
|
12940
|
+
"type": "list",
|
|
12941
|
+
},
|
|
12942
|
+
"ReservedCapacitySummary": {
|
|
12943
|
+
"members": [
|
|
12944
|
+
{"name": "ReservedCapacityArn", "shape": "ReservedCapacityArn", "type": "string"},
|
|
12945
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
12946
|
+
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
12947
|
+
{"name": "Status", "shape": "ReservedCapacityStatus", "type": "string"},
|
|
12948
|
+
{"name": "AvailabilityZone", "shape": "AvailabilityZone", "type": "string"},
|
|
12949
|
+
{"name": "DurationHours", "shape": "ReservedCapacityDurationHours", "type": "long"},
|
|
12950
|
+
{"name": "DurationMinutes", "shape": "ReservedCapacityDurationMinutes", "type": "long"},
|
|
12951
|
+
{"name": "StartTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12952
|
+
{"name": "EndTime", "shape": "Timestamp", "type": "timestamp"},
|
|
12953
|
+
],
|
|
12954
|
+
"type": "structure",
|
|
12955
|
+
},
|
|
12423
12956
|
"ResolvedAttributes": {
|
|
12424
12957
|
"members": [
|
|
12425
12958
|
{"name": "AutoMLJobObjective", "shape": "AutoMLJobObjective", "type": "structure"},
|
|
@@ -12458,6 +12991,7 @@ SHAPE_DAG = {
|
|
|
12458
12991
|
"type": "integer",
|
|
12459
12992
|
},
|
|
12460
12993
|
{"name": "InstanceGroups", "shape": "InstanceGroups", "type": "list"},
|
|
12994
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
12461
12995
|
],
|
|
12462
12996
|
"type": "structure",
|
|
12463
12997
|
},
|
|
@@ -12503,6 +13037,13 @@ SHAPE_DAG = {
|
|
|
12503
13037
|
"members": [{"name": "Message", "shape": "FailureReason", "type": "string"}],
|
|
12504
13038
|
"type": "structure",
|
|
12505
13039
|
},
|
|
13040
|
+
"ResourceSharingConfig": {
|
|
13041
|
+
"members": [
|
|
13042
|
+
{"name": "Strategy", "shape": "ResourceSharingStrategy", "type": "string"},
|
|
13043
|
+
{"name": "BorrowLimit", "shape": "BorrowLimit", "type": "integer"},
|
|
13044
|
+
],
|
|
13045
|
+
"type": "structure",
|
|
13046
|
+
},
|
|
12506
13047
|
"ResourceSpec": {
|
|
12507
13048
|
"members": [
|
|
12508
13049
|
{"name": "SageMakerImageArn", "shape": "ImageArn", "type": "string"},
|
|
@@ -12618,6 +13159,11 @@ SHAPE_DAG = {
|
|
|
12618
13159
|
"member_type": "string",
|
|
12619
13160
|
"type": "list",
|
|
12620
13161
|
},
|
|
13162
|
+
"SageMakerResourceNames": {
|
|
13163
|
+
"member_shape": "SageMakerResourceName",
|
|
13164
|
+
"member_type": "string",
|
|
13165
|
+
"type": "list",
|
|
13166
|
+
},
|
|
12621
13167
|
"ScalingPolicies": {
|
|
12622
13168
|
"member_shape": "ScalingPolicy",
|
|
12623
13169
|
"member_type": "structure",
|
|
@@ -12655,6 +13201,13 @@ SHAPE_DAG = {
|
|
|
12655
13201
|
],
|
|
12656
13202
|
"type": "structure",
|
|
12657
13203
|
},
|
|
13204
|
+
"SchedulerConfig": {
|
|
13205
|
+
"members": [
|
|
13206
|
+
{"name": "PriorityClasses", "shape": "PriorityClassList", "type": "list"},
|
|
13207
|
+
{"name": "FairShare", "shape": "FairShare", "type": "string"},
|
|
13208
|
+
],
|
|
13209
|
+
"type": "structure",
|
|
13210
|
+
},
|
|
12658
13211
|
"SearchExpression": {
|
|
12659
13212
|
"members": [
|
|
12660
13213
|
{"name": "Filters", "shape": "FilterList", "type": "list"},
|
|
@@ -12722,6 +13275,23 @@ SHAPE_DAG = {
|
|
|
12722
13275
|
"member_type": "structure",
|
|
12723
13276
|
"type": "list",
|
|
12724
13277
|
},
|
|
13278
|
+
"SearchTrainingPlanOfferingsRequest": {
|
|
13279
|
+
"members": [
|
|
13280
|
+
{"name": "InstanceType", "shape": "ReservedCapacityInstanceType", "type": "string"},
|
|
13281
|
+
{"name": "InstanceCount", "shape": "ReservedCapacityInstanceCount", "type": "integer"},
|
|
13282
|
+
{"name": "StartTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
13283
|
+
{"name": "EndTimeBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
13284
|
+
{"name": "DurationHours", "shape": "TrainingPlanDurationHoursInput", "type": "long"},
|
|
13285
|
+
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
13286
|
+
],
|
|
13287
|
+
"type": "structure",
|
|
13288
|
+
},
|
|
13289
|
+
"SearchTrainingPlanOfferingsResponse": {
|
|
13290
|
+
"members": [
|
|
13291
|
+
{"name": "TrainingPlanOfferings", "shape": "TrainingPlanOfferings", "type": "list"}
|
|
13292
|
+
],
|
|
13293
|
+
"type": "structure",
|
|
13294
|
+
},
|
|
12725
13295
|
"SecondaryStatusTransition": {
|
|
12726
13296
|
"members": [
|
|
12727
13297
|
{"name": "Status", "shape": "SecondaryStatus", "type": "string"},
|
|
@@ -13621,6 +14191,80 @@ SHAPE_DAG = {
|
|
|
13621
14191
|
{"name": "TrainingJobStatus", "shape": "TrainingJobStatus", "type": "string"},
|
|
13622
14192
|
{"name": "SecondaryStatus", "shape": "SecondaryStatus", "type": "string"},
|
|
13623
14193
|
{"name": "WarmPoolStatus", "shape": "WarmPoolStatus", "type": "structure"},
|
|
14194
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
14195
|
+
],
|
|
14196
|
+
"type": "structure",
|
|
14197
|
+
},
|
|
14198
|
+
"TrainingPlanArns": {
|
|
14199
|
+
"member_shape": "TrainingPlanArn",
|
|
14200
|
+
"member_type": "string",
|
|
14201
|
+
"type": "list",
|
|
14202
|
+
},
|
|
14203
|
+
"TrainingPlanFilter": {
|
|
14204
|
+
"members": [
|
|
14205
|
+
{"name": "Name", "shape": "TrainingPlanFilterName", "type": "string"},
|
|
14206
|
+
{"name": "Value", "shape": "String64", "type": "string"},
|
|
14207
|
+
],
|
|
14208
|
+
"type": "structure",
|
|
14209
|
+
},
|
|
14210
|
+
"TrainingPlanFilters": {
|
|
14211
|
+
"member_shape": "TrainingPlanFilter",
|
|
14212
|
+
"member_type": "structure",
|
|
14213
|
+
"type": "list",
|
|
14214
|
+
},
|
|
14215
|
+
"TrainingPlanOffering": {
|
|
14216
|
+
"members": [
|
|
14217
|
+
{"name": "TrainingPlanOfferingId", "shape": "TrainingPlanOfferingId", "type": "string"},
|
|
14218
|
+
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
14219
|
+
{"name": "RequestedStartTimeAfter", "shape": "Timestamp", "type": "timestamp"},
|
|
14220
|
+
{"name": "RequestedEndTimeBefore", "shape": "Timestamp", "type": "timestamp"},
|
|
14221
|
+
{"name": "DurationHours", "shape": "TrainingPlanDurationHours", "type": "long"},
|
|
14222
|
+
{"name": "DurationMinutes", "shape": "TrainingPlanDurationMinutes", "type": "long"},
|
|
14223
|
+
{"name": "UpfrontFee", "shape": "String256", "type": "string"},
|
|
14224
|
+
{"name": "CurrencyCode", "shape": "CurrencyCode", "type": "string"},
|
|
14225
|
+
{
|
|
14226
|
+
"name": "ReservedCapacityOfferings",
|
|
14227
|
+
"shape": "ReservedCapacityOfferings",
|
|
14228
|
+
"type": "list",
|
|
14229
|
+
},
|
|
14230
|
+
],
|
|
14231
|
+
"type": "structure",
|
|
14232
|
+
},
|
|
14233
|
+
"TrainingPlanOfferings": {
|
|
14234
|
+
"member_shape": "TrainingPlanOffering",
|
|
14235
|
+
"member_type": "structure",
|
|
14236
|
+
"type": "list",
|
|
14237
|
+
},
|
|
14238
|
+
"TrainingPlanSummaries": {
|
|
14239
|
+
"member_shape": "TrainingPlanSummary",
|
|
14240
|
+
"member_type": "structure",
|
|
14241
|
+
"type": "list",
|
|
14242
|
+
},
|
|
14243
|
+
"TrainingPlanSummary": {
|
|
14244
|
+
"members": [
|
|
14245
|
+
{"name": "TrainingPlanArn", "shape": "TrainingPlanArn", "type": "string"},
|
|
14246
|
+
{"name": "TrainingPlanName", "shape": "TrainingPlanName", "type": "string"},
|
|
14247
|
+
{"name": "Status", "shape": "TrainingPlanStatus", "type": "string"},
|
|
14248
|
+
{"name": "StatusMessage", "shape": "TrainingPlanStatusMessage", "type": "string"},
|
|
14249
|
+
{"name": "DurationHours", "shape": "TrainingPlanDurationHours", "type": "long"},
|
|
14250
|
+
{"name": "DurationMinutes", "shape": "TrainingPlanDurationMinutes", "type": "long"},
|
|
14251
|
+
{"name": "StartTime", "shape": "Timestamp", "type": "timestamp"},
|
|
14252
|
+
{"name": "EndTime", "shape": "Timestamp", "type": "timestamp"},
|
|
14253
|
+
{"name": "UpfrontFee", "shape": "String256", "type": "string"},
|
|
14254
|
+
{"name": "CurrencyCode", "shape": "CurrencyCode", "type": "string"},
|
|
14255
|
+
{"name": "TotalInstanceCount", "shape": "TotalInstanceCount", "type": "integer"},
|
|
14256
|
+
{
|
|
14257
|
+
"name": "AvailableInstanceCount",
|
|
14258
|
+
"shape": "AvailableInstanceCount",
|
|
14259
|
+
"type": "integer",
|
|
14260
|
+
},
|
|
14261
|
+
{"name": "InUseInstanceCount", "shape": "InUseInstanceCount", "type": "integer"},
|
|
14262
|
+
{"name": "TargetResources", "shape": "SageMakerResourceNames", "type": "list"},
|
|
14263
|
+
{
|
|
14264
|
+
"name": "ReservedCapacitySummaries",
|
|
14265
|
+
"shape": "ReservedCapacitySummaries",
|
|
14266
|
+
"type": "list",
|
|
14267
|
+
},
|
|
13624
14268
|
],
|
|
13625
14269
|
"type": "structure",
|
|
13626
14270
|
},
|
|
@@ -14094,6 +14738,30 @@ SHAPE_DAG = {
|
|
|
14094
14738
|
"members": [{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"}],
|
|
14095
14739
|
"type": "structure",
|
|
14096
14740
|
},
|
|
14741
|
+
"UpdateClusterSchedulerConfigRequest": {
|
|
14742
|
+
"members": [
|
|
14743
|
+
{
|
|
14744
|
+
"name": "ClusterSchedulerConfigId",
|
|
14745
|
+
"shape": "ClusterSchedulerConfigId",
|
|
14746
|
+
"type": "string",
|
|
14747
|
+
},
|
|
14748
|
+
{"name": "TargetVersion", "shape": "Integer", "type": "integer"},
|
|
14749
|
+
{"name": "SchedulerConfig", "shape": "SchedulerConfig", "type": "structure"},
|
|
14750
|
+
{"name": "Description", "shape": "EntityDescription", "type": "string"},
|
|
14751
|
+
],
|
|
14752
|
+
"type": "structure",
|
|
14753
|
+
},
|
|
14754
|
+
"UpdateClusterSchedulerConfigResponse": {
|
|
14755
|
+
"members": [
|
|
14756
|
+
{
|
|
14757
|
+
"name": "ClusterSchedulerConfigArn",
|
|
14758
|
+
"shape": "ClusterSchedulerConfigArn",
|
|
14759
|
+
"type": "string",
|
|
14760
|
+
},
|
|
14761
|
+
{"name": "ClusterSchedulerConfigVersion", "shape": "Integer", "type": "integer"},
|
|
14762
|
+
],
|
|
14763
|
+
"type": "structure",
|
|
14764
|
+
},
|
|
14097
14765
|
"UpdateClusterSoftwareRequest": {
|
|
14098
14766
|
"members": [{"name": "ClusterName", "shape": "ClusterNameOrArn", "type": "string"}],
|
|
14099
14767
|
"type": "structure",
|
|
@@ -14113,6 +14781,24 @@ SHAPE_DAG = {
|
|
|
14113
14781
|
"members": [{"name": "CodeRepositoryArn", "shape": "CodeRepositoryArn", "type": "string"}],
|
|
14114
14782
|
"type": "structure",
|
|
14115
14783
|
},
|
|
14784
|
+
"UpdateComputeQuotaRequest": {
|
|
14785
|
+
"members": [
|
|
14786
|
+
{"name": "ComputeQuotaId", "shape": "ComputeQuotaId", "type": "string"},
|
|
14787
|
+
{"name": "TargetVersion", "shape": "Integer", "type": "integer"},
|
|
14788
|
+
{"name": "ComputeQuotaConfig", "shape": "ComputeQuotaConfig", "type": "structure"},
|
|
14789
|
+
{"name": "ComputeQuotaTarget", "shape": "ComputeQuotaTarget", "type": "structure"},
|
|
14790
|
+
{"name": "ActivationState", "shape": "ActivationState", "type": "string"},
|
|
14791
|
+
{"name": "Description", "shape": "EntityDescription", "type": "string"},
|
|
14792
|
+
],
|
|
14793
|
+
"type": "structure",
|
|
14794
|
+
},
|
|
14795
|
+
"UpdateComputeQuotaResponse": {
|
|
14796
|
+
"members": [
|
|
14797
|
+
{"name": "ComputeQuotaArn", "shape": "ComputeQuotaArn", "type": "string"},
|
|
14798
|
+
{"name": "ComputeQuotaVersion", "shape": "Integer", "type": "integer"},
|
|
14799
|
+
],
|
|
14800
|
+
"type": "structure",
|
|
14801
|
+
},
|
|
14116
14802
|
"UpdateContextRequest": {
|
|
14117
14803
|
"members": [
|
|
14118
14804
|
{"name": "ContextName", "shape": "ContextName", "type": "string"},
|
|
@@ -14517,6 +15203,26 @@ SHAPE_DAG = {
|
|
|
14517
15203
|
},
|
|
14518
15204
|
"UpdateNotebookInstanceLifecycleConfigOutput": {"members": [], "type": "structure"},
|
|
14519
15205
|
"UpdateNotebookInstanceOutput": {"members": [], "type": "structure"},
|
|
15206
|
+
"UpdatePartnerAppRequest": {
|
|
15207
|
+
"members": [
|
|
15208
|
+
{"name": "Arn", "shape": "PartnerAppArn", "type": "string"},
|
|
15209
|
+
{
|
|
15210
|
+
"name": "MaintenanceConfig",
|
|
15211
|
+
"shape": "PartnerAppMaintenanceConfig",
|
|
15212
|
+
"type": "structure",
|
|
15213
|
+
},
|
|
15214
|
+
{"name": "Tier", "shape": "NonEmptyString64", "type": "string"},
|
|
15215
|
+
{"name": "ApplicationConfig", "shape": "PartnerAppConfig", "type": "structure"},
|
|
15216
|
+
{"name": "EnableIamSessionBasedIdentity", "shape": "Boolean", "type": "boolean"},
|
|
15217
|
+
{"name": "ClientToken", "shape": "ClientToken", "type": "string"},
|
|
15218
|
+
{"name": "Tags", "shape": "TagList", "type": "list"},
|
|
15219
|
+
],
|
|
15220
|
+
"type": "structure",
|
|
15221
|
+
},
|
|
15222
|
+
"UpdatePartnerAppResponse": {
|
|
15223
|
+
"members": [{"name": "Arn", "shape": "PartnerAppArn", "type": "string"}],
|
|
15224
|
+
"type": "structure",
|
|
15225
|
+
},
|
|
14520
15226
|
"UpdatePipelineExecutionRequest": {
|
|
14521
15227
|
"members": [
|
|
14522
15228
|
{"name": "PipelineExecutionArn", "shape": "PipelineExecutionArn", "type": "string"},
|