mirror of https://github.com/databricks/cli.git
10 lines
268 B
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"`
|
||
|
}
|