github.com/vmware/govmomi@v0.37.2/govc/role/create.go (about)

     1  /*
     2  Copyright (c) 2016 VMware, Inc. All Rights Reserved.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package role
    18  
    19  import (
    20  	"context"
    21  	"flag"
    22  
    23  	"github.com/vmware/govmomi/govc/cli"
    24  	"github.com/vmware/govmomi/govc/permissions"
    25  )
    26  
    27  type create struct {
    28  	*permissions.PermissionFlag
    29  }
    30  
    31  func init() {
    32  	cli.Register("role.create", &create{})
    33  }
    34  
    35  func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
    36  	cmd.PermissionFlag, ctx = permissions.NewPermissionFlag(ctx)
    37  	cmd.PermissionFlag.Register(ctx, f)
    38  }
    39  
    40  func (cmd *create) Process(ctx context.Context) error {
    41  	if err := cmd.PermissionFlag.Process(ctx); err != nil {
    42  		return err
    43  	}
    44  	return nil
    45  }
    46  
    47  func (cmd *create) Usage() string {
    48  	return "NAME [PRIVILEGE]..."
    49  }
    50  
    51  func (cmd *create) Description() string {
    52  	return `Create authorization role.
    53  
    54  Optionally populate the role with the given PRIVILEGE(s).
    55  
    56  Examples:
    57    govc role.create MyRole
    58    govc role.create NoDC $(govc role.ls Admin | grep -v Datacenter.)`
    59  }
    60  
    61  func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
    62  	if f.NArg() == 0 {
    63  		return flag.ErrHelp
    64  	}
    65  
    66  	m, err := cmd.Manager(ctx)
    67  	if err != nil {
    68  		return err
    69  	}
    70  
    71  	_, err = m.AddRole(ctx, f.Arg(0), f.Args()[1:])
    72  	return err
    73  }