Skip to content

Commit

Permalink
CodeGen from PR 22414 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Add Feature Store support for MachineLearningService in API Version 2022-12-01-preview (#22414)

* Feature store update

* add Kind property
  • Loading branch information
SDKAuto committed Feb 7, 2023
1 parent 01575f4 commit 71ad825
Showing 1 changed file with 57 additions and 1 deletion.
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

0 comments on commit 71ad825

Please sign in to comment.