Skip to content

Commit 86f42a3

Browse files
author
AWS
committed
Amazon SageMaker Service Update: Added support for Model Registry Staging construct. Users can define series of stages that models can progress through for model workflows and lifecycle. This simplifies tracking and managing models as they transition through development, testing, and production stages.
1 parent a1afa62 commit 86f42a3

File tree

2 files changed

+56
-4
lines changed

2 files changed

+56
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon SageMaker Service",
4+
"contributor": "",
5+
"description": "Added support for Model Registry Staging construct. Users can define series of stages that models can progress through for model workflows and lifecycle. This simplifies tracking and managing models as they transition through development, testing, and production stages."
6+
}

services/sagemaker/src/main/resources/codegen-resources/service-2.json

Lines changed: 50 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@
696696
"errors":[
697697
{"shape":"ResourceNotFound"}
698698
],
699-
"documentation":"<p>Creates a URL for a specified UserProfile in a Domain. When accessed in a web browser, the user will be automatically signed in to the domain, and granted access to all of the Apps and files associated with the Domain's Amazon Elastic File System volume. This operation can only be called when the authentication mode equals IAM. </p> <p>The IAM role or user passed to this API defines the permissions to access the app. Once the presigned URL is created, no additional permission is required to access this URL. IAM authorization policies for this API are also enforced for every HTTP request and WebSocket frame that attempts to connect to the app.</p> <p>You can restrict access to this API and to the URL that it returns to a list of IP addresses, Amazon VPCs or Amazon VPC Endpoints that you specify. For more information, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/studio-interface-endpoint.html\">Connect to Amazon SageMaker Studio Through an Interface VPC Endpoint</a> .</p> <note> <p>The URL that you get from a call to <code>CreatePresignedDomainUrl</code> has a default timeout of 5 minutes. You can configure this value using <code>ExpiresInSeconds</code>. If you try to use the URL after the timeout limit expires, you are directed to the Amazon Web Services console sign-in page.</p> </note>"
699+
"documentation":"<p>Creates a URL for a specified UserProfile in a Domain. When accessed in a web browser, the user will be automatically signed in to the domain, and granted access to all of the Apps and files associated with the Domain's Amazon Elastic File System volume. This operation can only be called when the authentication mode equals IAM. </p> <p>The IAM role or user passed to this API defines the permissions to access the app. Once the presigned URL is created, no additional permission is required to access this URL. IAM authorization policies for this API are also enforced for every HTTP request and WebSocket frame that attempts to connect to the app.</p> <p>You can restrict access to this API and to the URL that it returns to a list of IP addresses, Amazon VPCs or Amazon VPC Endpoints that you specify. For more information, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/studio-interface-endpoint.html\">Connect to Amazon SageMaker Studio Through an Interface VPC Endpoint</a> .</p> <note> <ul> <li> <p>The URL that you get from a call to <code>CreatePresignedDomainUrl</code> has a default timeout of 5 minutes. You can configure this value using <code>ExpiresInSeconds</code>. If you try to use the URL after the timeout limit expires, you are directed to the Amazon Web Services console sign-in page.</p> </li> <li> <p>The JupyterLab session default expiration time is 12 hours. You can configure this value using SessionExpirationDurationInSeconds.</p> </li> </ul> </note>"
700700
},
701701
"CreatePresignedMlflowTrackingServerUrl":{
702702
"name":"CreatePresignedMlflowTrackingServerUrl",
@@ -10206,6 +10206,10 @@
1020610206
"ModelCard":{
1020710207
"shape":"ModelPackageModelCard",
1020810208
"documentation":"<p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of <code>ModelCard</code>. The <code>ModelPackageModelCard</code> schema does not include <code>model_package_details</code>, and <code>model_overview</code> is composed of the <code>model_creator</code> and <code>model_artifact</code> properties. For more information about the model package model card schema, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema\">Model package model card schema</a>. For more information about the model card associated with the model package, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html\">View the Details of a Model Version</a>.</p>"
10209+
},
10210+
"ModelLifeCycle":{
10211+
"shape":"ModelLifeCycle",
10212+
"documentation":"<p> A structure describing the current state of the model in its life cycle. </p>"
1020910213
}
1021010214
}
1021110215
},
@@ -15724,6 +15728,10 @@
1572415728
"ModelCard":{
1572515729
"shape":"ModelPackageModelCard",
1572615730
"documentation":"<p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of <code>ModelCard</code>. The <code>ModelPackageModelCard</code> schema does not include <code>model_package_details</code>, and <code>model_overview</code> is composed of the <code>model_creator</code> and <code>model_artifact</code> properties. For more information about the model package model card schema, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema\">Model package model card schema</a>. For more information about the model card associated with the model package, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html\">View the Details of a Model Version</a>.</p>"
15731+
},
15732+
"ModelLifeCycle":{
15733+
"shape":"ModelLifeCycle",
15734+
"documentation":"<p> A structure describing the current state of the model in its life cycle. </p>"
1572715735
}
1572815736
}
1572915737
},
@@ -28104,6 +28112,28 @@
2810428112
"max":1,
2810528113
"min":1
2810628114
},
28115+
"ModelLifeCycle":{
28116+
"type":"structure",
28117+
"required":[
28118+
"Stage",
28119+
"StageStatus"
28120+
],
28121+
"members":{
28122+
"Stage":{
28123+
"shape":"EntityName",
28124+
"documentation":"<p> The current stage in the model life cycle. </p>"
28125+
},
28126+
"StageStatus":{
28127+
"shape":"EntityName",
28128+
"documentation":"<p> The current status of a stage in model life cycle. </p>"
28129+
},
28130+
"StageDescription":{
28131+
"shape":"StageDescription",
28132+
"documentation":"<p> Describes the stage related details. </p>"
28133+
}
28134+
},
28135+
"documentation":"<p> A structure describing the current state of the model in its life cycle. </p>"
28136+
},
2810728137
"ModelMetadataFilter":{
2810828138
"type":"structure",
2810928139
"required":[
@@ -28317,6 +28347,10 @@
2831728347
},
2831828348
"SecurityConfig":{"shape":"ModelPackageSecurityConfig"},
2831928349
"ModelCard":{"shape":"ModelPackageModelCard"},
28350+
"ModelLifeCycle":{
28351+
"shape":"ModelLifeCycle",
28352+
"documentation":"<p> A structure describing the current state of the model in its life cycle. </p>"
28353+
},
2832028354
"Tags":{
2832128355
"shape":"TagList",
2832228356
"documentation":"<p>A list of the tags associated with the model package. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html\">Tagging Amazon Web Services resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>"
@@ -35034,6 +35068,12 @@
3503435068
"TFRecord"
3503535069
]
3503635070
},
35071+
"StageDescription":{
35072+
"type":"string",
35073+
"max":1024,
35074+
"min":0,
35075+
"pattern":"^.{0,1024}$"
35076+
},
3503735077
"StageStatus":{
3503835078
"type":"string",
3503935079
"enum":[
@@ -36467,7 +36507,6 @@
3646736507
"ml.p4de.24xlarge",
3646836508
"ml.p5.48xlarge",
3646936509
"ml.p5e.48xlarge",
36470-
"ml.p5en.48xlarge",
3647136510
"ml.c5.xlarge",
3647236511
"ml.c5.2xlarge",
3647336512
"ml.c5.4xlarge",
@@ -36489,7 +36528,6 @@
3648936528
"ml.trn1.2xlarge",
3649036529
"ml.trn1.32xlarge",
3649136530
"ml.trn1n.32xlarge",
36492-
"ml.trn2.48xlarge",
3649336531
"ml.m6i.large",
3649436532
"ml.m6i.xlarge",
3649536533
"ml.m6i.2xlarge",
@@ -38659,6 +38697,14 @@
3865938697
"ModelCard":{
3866038698
"shape":"ModelPackageModelCard",
3866138699
"documentation":"<p>The model card associated with the model package. Since <code>ModelPackageModelCard</code> is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of <code>ModelCard</code>. The <code>ModelPackageModelCard</code> schema does not include <code>model_package_details</code>, and <code>model_overview</code> is composed of the <code>model_creator</code> and <code>model_artifact</code> properties. For more information about the model package model card schema, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema\">Model package model card schema</a>. For more information about the model card associated with the model package, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html\">View the Details of a Model Version</a>.</p>"
38700+
},
38701+
"ModelLifeCycle":{
38702+
"shape":"ModelLifeCycle",
38703+
"documentation":"<p> A structure describing the current state of the model in its life cycle. </p>"
38704+
},
38705+
"ClientToken":{
38706+
"shape":"ClientToken",
38707+
"documentation":"<p> A unique token that guarantees that the call to this API is idempotent. </p>"
3866238708
}
3866338709
}
3866438710
},
@@ -39452,7 +39498,7 @@
3945239498
"type":"string",
3945339499
"max":176,
3945439500
"min":1,
39455-
"pattern":"(arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:[a-z\\-]*\\/)?([a-zA-Z0-9]([a-zA-Z0-9-]){0,62})(?<!-)(\\/[0-9]{1,5})?$"
39501+
"pattern":"(arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:[a-z\\-]*\\/)?([a-zA-Z0-9]([a-zA-Z0-9-]){0,62})(?<!-)(\\/[0-9]{1,9})?$"
3945639502
},
3945739503
"Vertex":{
3945839504
"type":"structure",

0 commit comments

Comments
 (0)