Reputation: 76
I have used the databricks API to create users/groups, clusters, workspace folders, etc.
I have used the Azure API to create a resource group and a V2 storage resource, but I can't seem to figure out/find any documentation on how to create a databricks programmatically.
I have found some ways using Python, but I can't seem to find what package or any examples in C#.
Upvotes: 0
Views: 581
Reputation: 72171
Looking at the source repo for the C# SDK, I dont see any references to Azure DataBricks resource provider. Seems you can only create a DataBricks linked service in Azure Data Factory, thats it.
I dont see DataBricks in the api reference as well.
Seems it is impossible with native SDK methods. you can call the rest api directly.
Upvotes: 2