Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MachineLearningService]Add featurestore property to stable version #26121

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
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"
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@ suppressions:
reason: server side don't support Patch yet track with https://msdata.visualstudio.com/Vienna/_workitems/edit/2702298.
where:
- $.definitions.PrivateEndpointConnection
tag: package-2023-10
```


### Tag: package-2023-10

These settings apply only when `--tag=package-2023-10` is specified on the command line.
Expand All @@ -65,6 +63,7 @@ input-file:
- Microsoft.MachineLearningServices/stable/2023-10-01/registries.json
- Microsoft.MachineLearningServices/stable/2023-10-01/workspaceFeatures.json
```

### Tag: package-preview-2023-06

These settings apply only when `--tag=package-preview-2023-06` is specified on the command line.
Expand Down