Skip to content

Commit

Permalink
Revert "remove featurestore settings for lint"
Browse files Browse the repository at this point in the history
This reverts commit f4d7ae3.
  • Loading branch information
ZhidaLiu committed Oct 8, 2023
1 parent 5d97150 commit 90768e7
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2547,6 +2547,10 @@
},
"managedNetwork": {
"$ref": "#/definitions/ManagedNetworkSettings"
},
"featureStoreSettings": {
"description": "Settings for feature store type workspace.",
"$ref": "#/definitions/FeatureStoreSettings"
}
}
},
Expand Down Expand Up @@ -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"
}
}
},
Expand Down Expand Up @@ -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"
}
}
}
}
}

0 comments on commit 90768e7

Please sign in to comment.