From 90768e7a7ce8cfd3e3bed133cd3a4079cf41ccbe Mon Sep 17 00:00:00 2001 From: ZhidaLiu <86350902+ZhidaLiu@users.noreply.github.com> Date: Sat, 7 Oct 2023 23:44:40 -0700 Subject: [PATCH] Revert "remove featurestore settings for lint" This reverts commit f4d7ae352baf966aeba9085bd06df3456bd17bef. --- .../2023-10-01/machineLearningServices.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2023-10-01/machineLearningServices.json b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2023-10-01/machineLearningServices.json index 468587358b00..010a3fac2899 100644 --- a/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2023-10-01/machineLearningServices.json +++ b/specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2023-10-01/machineLearningServices.json @@ -2547,6 +2547,10 @@ }, "managedNetwork": { "$ref": "#/definitions/ManagedNetworkSettings" + }, + "featureStoreSettings": { + "description": "Settings for feature store type workspace.", + "$ref": "#/definitions/FeatureStoreSettings" } } }, @@ -2623,6 +2627,10 @@ "containerRegistry": { "description": "ARM id of the container registry associated with this workspace.", "type": "string" + }, + "featureStoreSettings": { + "description": "Settings for feature store type workspace.", + "$ref": "#/definitions/FeatureStoreSettings" } } }, @@ -6799,6 +6807,30 @@ ] } } + }, + "FeatureStoreSettings": { + "type": "object", + "description": "Settings for feature store type workspace.", + "properties": { + "computeRuntime": { + "$ref": "#/definitions/ComputeRuntimeDto" + }, + "offlineStoreConnectionName": { + "type": "string" + }, + "onlineStoreConnectionName": { + "type": "string" + } + } + }, + "ComputeRuntimeDto": { + "type": "object", + "description": "Compute runtime config for feature store type workspace.", + "properties": { + "sparkRuntimeVersion": { + "type": "string" + } + } } } }