Travis
Travis

Reputation: 76

How can I create a databricks programmatically?

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

Answers (1)

4c74356b41
4c74356b41

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

Related Questions