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

[ReleasePR machinelearningservices] Add Feature Store support for MachineLearningService in API Version 2022-12-01-preview #2768

Merged
1 commit merged into from
Feb 7, 2023
Merged
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 @@ -479,6 +479,9 @@
],
"description": "Managed service identity (system assigned and/or user assigned identities)"
},
"kind": {
"type": "string"
},
"location": {
"type": "string",
"description": "Specifies the location of the resource."
Expand Down Expand Up @@ -2960,6 +2963,14 @@
},
"description": "Machine Learning compute object."
},
"ComputeRuntimeDto": {
"type": "object",
"properties": {
"sparkRuntimeVersion": {
"type": "string"
}
}
},
"ContainerResourceRequirements": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3709,6 +3720,37 @@
},
"description": "Environment version details."
},
"FeatureStoreSettings": {
"type": "object",
"properties": {
"allowRoleAssignmentsOnResourceGroupLevel": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"computeRuntime": {
"oneOf": [
{
"$ref": "#/definitions/ComputeRuntimeDto"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"offlineStoreConnectionName": {
"type": "string"
},
"onlineStoreConnectionName": {
"type": "string"
}
}
},
"FlavorData": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -7538,7 +7580,11 @@
"S3",
"Snowflake",
"AzureSqlDb",
"AzureSynapseAnalytics"
"AzureSynapseAnalytics",
"AzureMySqlDb",
"AzurePostgresDb",
"AzureDataLakeGen2",
"Redis"
]
},
{
Expand Down Expand Up @@ -7643,6 +7689,16 @@
}
]
},
"featureStoreSettings": {
"oneOf": [
{
"$ref": "#/definitions/FeatureStoreSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"friendlyName": {
"type": "string",
"description": "The friendly name for this workspace. This name in mutable"
Expand Down