databricks-cli/bundle/config/resources/grant.go

10 lines
268 B
Go

package resources
// Grant holds the grant level settings for a single principal in Unity Catalog.
// Multiple of these can be defined on any Unity Catalog resource.
type Grant struct {
Privileges []string `json:"privileges"`
Principal string `json:"principal"`
}