Skip to content

Commit

Permalink
Add Feature Store support for MachineLearningService in API Version 2…
Browse files Browse the repository at this point in the history
…022-12-01-preview (#22414)

* Feature store update

* add Kind property
  • Loading branch information
ZhidaLiu authored Feb 7, 2023
1 parent 0202d27 commit 41645a4
Showing 1 changed file with 41 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2165,6 +2165,9 @@
"sku": {
"$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/Sku",
"description": "The sku of the workspace."
},
"kind": {
"type": "string"
}
}
},
Expand Down Expand Up @@ -2333,6 +2336,10 @@
"systemDatastoresAuthMode": {
"description": "The auth mode used for accessing the system datastores of the workspace",
"type": "string"
},
"featureStoreSettings": {
"description": "Settings for feature store type workspace.",
"$ref": "#/definitions/FeatureStoreSettings"
}
}
},
Expand Down Expand Up @@ -2409,6 +2416,10 @@
"encryption": {
"$ref": "#/definitions/EncryptionUpdateProperties",
"description": "The encryption settings of the workspace."
},
"featureStoreSettings": {
"description": "Settings for feature store type workspace.",
"$ref": "#/definitions/FeatureStoreSettings"
}
}
},
Expand Down Expand Up @@ -5794,7 +5805,11 @@
"S3",
"Snowflake",
"AzureSqlDb",
"AzureSynapseAnalytics"
"AzureSynapseAnalytics",
"AzureMySqlDb",
"AzurePostgresDb",
"AzureDataLakeGen2",
"Redis"
],
"type": "string",
"description": "Category of the connection",
Expand Down Expand Up @@ -6227,6 +6242,31 @@
"description": "Time is defined in ISO8601 format. Minimum is 15 min, maximum is 3 days."
}
}
},
"FeatureStoreSettings": {
"type": "object",
"properties": {
"computeRuntime": {
"$ref": "#/definitions/ComputeRuntimeDto"
},
"offlineStoreConnectionName": {
"type": "string"
},
"onlineStoreConnectionName": {
"type": "string"
},
"allowRoleAssignmentsOnResourceGroupLevel": {
"type": "boolean"
}
}
},
"ComputeRuntimeDto": {
"type": "object",
"properties": {
"sparkRuntimeVersion": {
"type": "string"
}
}
}
}
}

0 comments on commit 41645a4

Please sign in to comment.