Skip to content

Commit bc42167

Browse files
author
msftbot[bot]
authored
[ReleasePR machinelearningservices] Add Feature Store support for MachineLearningService in API Version 2022-12-01-preview (#2768)
Create to sync Azure/azure-rest-api-specs#22414 [ReCreate this PR](https://github.com/azure-resource-manager-schemas/compare/main...azure-sdk:sdkAuto/machinelearningservices?expand=1)
2 parents 01575f4 + 71ad825 commit bc42167

File tree

1 file changed

+57
-1
lines changed

1 file changed

+57
-1
lines changed

schemas/2022-12-01-preview/Microsoft.MachineLearningServices.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,9 @@
479479
],
480480
"description": "Managed service identity (system assigned and/or user assigned identities)"
481481
},
482+
"kind": {
483+
"type": "string"
484+
},
482485
"location": {
483486
"type": "string",
484487
"description": "Specifies the location of the resource."
@@ -2960,6 +2963,14 @@
29602963
},
29612964
"description": "Machine Learning compute object."
29622965
},
2966+
"ComputeRuntimeDto": {
2967+
"type": "object",
2968+
"properties": {
2969+
"sparkRuntimeVersion": {
2970+
"type": "string"
2971+
}
2972+
}
2973+
},
29632974
"ContainerResourceRequirements": {
29642975
"type": "object",
29652976
"properties": {
@@ -3709,6 +3720,37 @@
37093720
},
37103721
"description": "Environment version details."
37113722
},
3723+
"FeatureStoreSettings": {
3724+
"type": "object",
3725+
"properties": {
3726+
"allowRoleAssignmentsOnResourceGroupLevel": {
3727+
"oneOf": [
3728+
{
3729+
"type": "boolean"
3730+
},
3731+
{
3732+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
3733+
}
3734+
]
3735+
},
3736+
"computeRuntime": {
3737+
"oneOf": [
3738+
{
3739+
"$ref": "#/definitions/ComputeRuntimeDto"
3740+
},
3741+
{
3742+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
3743+
}
3744+
]
3745+
},
3746+
"offlineStoreConnectionName": {
3747+
"type": "string"
3748+
},
3749+
"onlineStoreConnectionName": {
3750+
"type": "string"
3751+
}
3752+
}
3753+
},
37123754
"FlavorData": {
37133755
"type": "object",
37143756
"properties": {
@@ -7538,7 +7580,11 @@
75387580
"S3",
75397581
"Snowflake",
75407582
"AzureSqlDb",
7541-
"AzureSynapseAnalytics"
7583+
"AzureSynapseAnalytics",
7584+
"AzureMySqlDb",
7585+
"AzurePostgresDb",
7586+
"AzureDataLakeGen2",
7587+
"Redis"
75427588
]
75437589
},
75447590
{
@@ -7643,6 +7689,16 @@
76437689
}
76447690
]
76457691
},
7692+
"featureStoreSettings": {
7693+
"oneOf": [
7694+
{
7695+
"$ref": "#/definitions/FeatureStoreSettings"
7696+
},
7697+
{
7698+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
7699+
}
7700+
]
7701+
},
76467702
"friendlyName": {
76477703
"type": "string",
76487704
"description": "The friendly name for this workspace. This name in mutable"

0 commit comments

Comments
 (0)