Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion sample/sagemaker/2017-07-24/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -16578,6 +16578,10 @@
"shape":"TrackingServerStatus",
"documentation":"<p>The current creation status of the described MLflow Tracking Server.</p>"
},
"TrackingServerMaintenanceStatus":{
"shape":"TrackingServerMaintenanceStatus",
"documentation":"<p> The current maintenance status of the described MLflow Tracking Server. </p>"
},
"IsActive":{
"shape":"IsTrackingServerActive",
"documentation":"<p>Whether the described MLflow Tracking Server is currently active.</p>"
Expand Down Expand Up @@ -36085,7 +36089,7 @@
"ReservedCapacityInstanceCount":{
"type":"integer",
"max":256,
"min":1
"min":0
},
"ReservedCapacityInstanceType":{
"type":"string",
Expand Down Expand Up @@ -39146,6 +39150,14 @@
"min":0,
"pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:mlflow-tracking-server/.*"
},
"TrackingServerMaintenanceStatus":{
"type":"string",
"enum":[
"MaintenanceInProgress",
"MaintenanceComplete",
"MaintenanceFailed"
]
},
"TrackingServerName":{
"type":"string",
"max":256,
Expand Down
5 changes: 5 additions & 0 deletions src/sagemaker_core/main/code_injection/shape_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -5098,6 +5098,11 @@
{"name": "MlflowVersion", "shape": "MlflowVersion", "type": "string"},
{"name": "RoleArn", "shape": "RoleArn", "type": "string"},
{"name": "TrackingServerStatus", "shape": "TrackingServerStatus", "type": "string"},
{
"name": "TrackingServerMaintenanceStatus",
"shape": "TrackingServerMaintenanceStatus",
"type": "string",
},
{"name": "IsActive", "shape": "IsTrackingServerActive", "type": "string"},
{"name": "TrackingServerUrl", "shape": "TrackingServerUrl", "type": "string"},
{
Expand Down
2 changes: 2 additions & 0 deletions src/sagemaker_core/main/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -17364,6 +17364,7 @@ class MlflowTrackingServer(Base):
mlflow_version: The MLflow version used for the described tracking server.
role_arn: The Amazon Resource Name (ARN) for an IAM role in your account that the described MLflow Tracking Server uses to access the artifact store in Amazon S3.
tracking_server_status: The current creation status of the described MLflow Tracking Server.
tracking_server_maintenance_status: The current maintenance status of the described MLflow Tracking Server.
is_active: Whether the described MLflow Tracking Server is currently active.
tracking_server_url: The URL to connect to the MLflow user interface for the described tracking server.
weekly_maintenance_window_start: The day and time of the week when weekly maintenance occurs on the described tracking server.
Expand All @@ -17382,6 +17383,7 @@ class MlflowTrackingServer(Base):
mlflow_version: Optional[str] = Unassigned()
role_arn: Optional[str] = Unassigned()
tracking_server_status: Optional[str] = Unassigned()
tracking_server_maintenance_status: Optional[str] = Unassigned()
is_active: Optional[str] = Unassigned()
tracking_server_url: Optional[str] = Unassigned()
weekly_maintenance_window_start: Optional[str] = Unassigned()
Expand Down
Loading