cancel
Showing results for 
Search instead for 
Did you mean: 
Machine Learning
Dive into the world of machine learning on the Databricks platform. Explore discussions on algorithms, model training, deployment, and more. Connect with ML enthusiasts and experts.
cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a way to add an instance profile to a Databricks group using REST API?

User15787040559
Databricks Employee
Databricks Employee

Please see

https://docs.databricks.com/dev-tools/api/latest/scim/scim-groups.html

An example

curl -X PATCH -n 'https://test-fw-us-1.cloud.databricks.com/api/2.0/preview/scim/v2/Groups/4062877510650442' -d \
"{ \"schemas\":[\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"],
\"Operations\":[{\"op\":\"add\",\"path\":\"roles\",
\"value\":[{\"value\":\"arn:aws:iam::557839012409:instance-profile/shard-demo-s3-access\"}]
}]
 }"

2 REPLIES 2

gbrueckl
Contributor II

Cary
Databricks Employee
Databricks Employee

Without knowing all that you are trying to do, the answer is yes, with the Instance Profile API. https://docs.databricks.com/dev-tools/api/latest/instance-profiles.html. You might also check out the SCIM APIs to associate the Instance Profile to a group.