mirror of https://github.com/databricks/cli.git
265 lines
8.3 KiB
Go
Executable File
265 lines
8.3 KiB
Go
Executable File
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
|
|
|
|
package cluster_policies
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/databricks/bricks/cmd/root"
|
|
"github.com/databricks/bricks/libs/cmdio"
|
|
"github.com/databricks/databricks-sdk-go/service/compute"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var Cmd = &cobra.Command{
|
|
Use: "cluster-policies",
|
|
Short: `Cluster policy limits the ability to configure clusters based on a set of rules.`,
|
|
Long: `Cluster policy limits the ability to configure clusters based on a set of
|
|
rules. The policy rules limit the attributes or attribute values available for
|
|
cluster creation. Cluster policies have ACLs that limit their use to specific
|
|
users and groups.
|
|
|
|
Cluster policies let you limit users to create clusters with prescribed
|
|
settings, simplify the user interface and enable more users to create their
|
|
own clusters (by fixing and hiding some values), control cost by limiting per
|
|
cluster maximum cost (by setting limits on attributes whose values contribute
|
|
to hourly price).
|
|
|
|
Cluster policy permissions limit which policies a user can select in the
|
|
Policy drop-down when the user creates a cluster: - A user who has cluster
|
|
create permission can select the Unrestricted policy and create
|
|
fully-configurable clusters. - A user who has both cluster create permission
|
|
and access to cluster policies can select the Unrestricted policy and policies
|
|
they have access to. - A user that has access to only cluster policies, can
|
|
select the policies they have access to.
|
|
|
|
If no policies have been created in the workspace, the Policy drop-down does
|
|
not display.
|
|
|
|
Only admin users can create, edit, and delete policies. Admin users also have
|
|
access to all policies.`,
|
|
}
|
|
|
|
// start create command
|
|
|
|
var createReq compute.CreatePolicy
|
|
|
|
func init() {
|
|
Cmd.AddCommand(createCmd)
|
|
// TODO: short flags
|
|
|
|
createCmd.Flags().StringVar(&createReq.Definition, "definition", createReq.Definition, `Policy definition document expressed in Databricks Cluster Policy Definition Language.`)
|
|
createCmd.Flags().StringVar(&createReq.Description, "description", createReq.Description, `Additional human-readable description of the cluster policy.`)
|
|
createCmd.Flags().Int64Var(&createReq.MaxClustersPerUser, "max-clusters-per-user", createReq.MaxClustersPerUser, `Max number of clusters per user that can be active using this policy.`)
|
|
createCmd.Flags().StringVar(&createReq.PolicyFamilyDefinitionOverrides, "policy-family-definition-overrides", createReq.PolicyFamilyDefinitionOverrides, `Policy definition JSON document expressed in Databricks Policy Definition Language.`)
|
|
createCmd.Flags().StringVar(&createReq.PolicyFamilyId, "policy-family-id", createReq.PolicyFamilyId, `ID of the policy family.`)
|
|
|
|
}
|
|
|
|
var createCmd = &cobra.Command{
|
|
Use: "create NAME",
|
|
Short: `Create a new policy.`,
|
|
Long: `Create a new policy.
|
|
|
|
Creates a new policy with prescribed settings.`,
|
|
|
|
Annotations: map[string]string{},
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
if len(args) == 0 {
|
|
names, err := w.ClusterPolicies.PolicyNameToPolicyIdMap(ctx, compute.ListClusterPoliciesRequest{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
id, err := cmdio.Select(ctx, names, "Cluster Policy name requested by the user")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
args = append(args, id)
|
|
}
|
|
if len(args) != 1 {
|
|
return fmt.Errorf("expected to have cluster policy name requested by the user")
|
|
}
|
|
createReq.Name = args[0]
|
|
|
|
response, err := w.ClusterPolicies.Create(ctx, createReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
},
|
|
}
|
|
|
|
// start delete command
|
|
|
|
var deleteReq compute.DeletePolicy
|
|
|
|
func init() {
|
|
Cmd.AddCommand(deleteCmd)
|
|
// TODO: short flags
|
|
|
|
}
|
|
|
|
var deleteCmd = &cobra.Command{
|
|
Use: "delete POLICY_ID",
|
|
Short: `Delete a cluster policy.`,
|
|
Long: `Delete a cluster policy.
|
|
|
|
Delete a policy for a cluster. Clusters governed by this policy can still run,
|
|
but cannot be edited.`,
|
|
|
|
Annotations: map[string]string{},
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
if len(args) == 0 {
|
|
names, err := w.ClusterPolicies.PolicyNameToPolicyIdMap(ctx, compute.ListClusterPoliciesRequest{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
id, err := cmdio.Select(ctx, names, "The ID of the policy to delete")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
args = append(args, id)
|
|
}
|
|
if len(args) != 1 {
|
|
return fmt.Errorf("expected to have the id of the policy to delete")
|
|
}
|
|
deleteReq.PolicyId = args[0]
|
|
|
|
err = w.ClusterPolicies.Delete(ctx, deleteReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// start edit command
|
|
|
|
var editReq compute.EditPolicy
|
|
|
|
func init() {
|
|
Cmd.AddCommand(editCmd)
|
|
// TODO: short flags
|
|
|
|
editCmd.Flags().StringVar(&editReq.Definition, "definition", editReq.Definition, `Policy definition document expressed in Databricks Cluster Policy Definition Language.`)
|
|
editCmd.Flags().StringVar(&editReq.Description, "description", editReq.Description, `Additional human-readable description of the cluster policy.`)
|
|
editCmd.Flags().Int64Var(&editReq.MaxClustersPerUser, "max-clusters-per-user", editReq.MaxClustersPerUser, `Max number of clusters per user that can be active using this policy.`)
|
|
editCmd.Flags().StringVar(&editReq.PolicyFamilyDefinitionOverrides, "policy-family-definition-overrides", editReq.PolicyFamilyDefinitionOverrides, `Policy definition JSON document expressed in Databricks Policy Definition Language.`)
|
|
editCmd.Flags().StringVar(&editReq.PolicyFamilyId, "policy-family-id", editReq.PolicyFamilyId, `ID of the policy family.`)
|
|
|
|
}
|
|
|
|
var editCmd = &cobra.Command{
|
|
Use: "edit POLICY_ID NAME",
|
|
Short: `Update a cluster policy.`,
|
|
Long: `Update a cluster policy.
|
|
|
|
Update an existing policy for cluster. This operation may make some clusters
|
|
governed by the previous policy invalid.`,
|
|
|
|
Annotations: map[string]string{},
|
|
Args: cobra.ExactArgs(2),
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
editReq.PolicyId = args[0]
|
|
editReq.Name = args[1]
|
|
|
|
err = w.ClusterPolicies.Edit(ctx, editReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// start get command
|
|
|
|
var getReq compute.GetClusterPolicyRequest
|
|
|
|
func init() {
|
|
Cmd.AddCommand(getCmd)
|
|
// TODO: short flags
|
|
|
|
}
|
|
|
|
var getCmd = &cobra.Command{
|
|
Use: "get POLICY_ID",
|
|
Short: `Get entity.`,
|
|
Long: `Get entity.
|
|
|
|
Get a cluster policy entity. Creation and editing is available to admins only.`,
|
|
|
|
Annotations: map[string]string{},
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
if len(args) == 0 {
|
|
names, err := w.ClusterPolicies.PolicyNameToPolicyIdMap(ctx, compute.ListClusterPoliciesRequest{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
id, err := cmdio.Select(ctx, names, "Canonical unique identifier for the cluster policy")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
args = append(args, id)
|
|
}
|
|
if len(args) != 1 {
|
|
return fmt.Errorf("expected to have canonical unique identifier for the cluster policy")
|
|
}
|
|
getReq.PolicyId = args[0]
|
|
|
|
response, err := w.ClusterPolicies.Get(ctx, getReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
},
|
|
}
|
|
|
|
// start list command
|
|
|
|
var listReq compute.ListClusterPoliciesRequest
|
|
|
|
func init() {
|
|
Cmd.AddCommand(listCmd)
|
|
// TODO: short flags
|
|
|
|
listCmd.Flags().Var(&listReq.SortColumn, "sort-column", `The cluster policy attribute to sort by.`)
|
|
listCmd.Flags().Var(&listReq.SortOrder, "sort-order", `The order in which the policies get listed.`)
|
|
|
|
}
|
|
|
|
var listCmd = &cobra.Command{
|
|
Use: "list",
|
|
Short: `Get a cluster policy.`,
|
|
Long: `Get a cluster policy.
|
|
|
|
Returns a list of policies accessible by the requesting user.`,
|
|
|
|
Annotations: map[string]string{},
|
|
Args: cobra.ExactArgs(0),
|
|
PreRunE: root.MustWorkspaceClient,
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
|
|
response, err := w.ClusterPolicies.ListAll(ctx, listReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
},
|
|
}
|
|
|
|
// end service ClusterPolicies
|