I can’t seem to create a an Azure AI hub resource....
# azure
c
I can’t seem to create a an Azure AI hub resource. According to this docs there should be a
kind
property for
Microsoft.MachineLearningServices/workspaces
(
azure.machinelearningservices.Workspace
for pulumi if i’m not wrong) but there isn’t a kind property
m
Looks like you need to use a newer API version than the Pulumi default of 2023-04-01. For instance, in 2024-10-01, Workspace has a
Kind
. Depending on your programming language, you can import MachineLearningServices/V20241001 or similar.
c
In future when default api changes, if I revert back to using just
azure.machinelearningservices.Workspace
will it result a replace?
m
No, the same resources in different API versions are aliased to each other.