1/*
2Copyright (c) 2018 VMware, Inc. All Rights Reserved.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17package user
18
19import (
20	"context"
21	"flag"
22
23	"github.com/vmware/govmomi/govc/cli"
24	"github.com/vmware/govmomi/govc/flags"
25	"github.com/vmware/govmomi/ssoadmin"
26)
27
28type rm struct {
29	*flags.ClientFlag
30}
31
32func init() {
33	cli.Register("sso.user.rm", &rm{})
34}
35
36func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
37	cmd.ClientFlag, ctx = flags.NewClientFlag(ctx)
38	cmd.ClientFlag.Register(ctx, f)
39}
40
41func (cmd *rm) Usage() string {
42	return "NAME"
43}
44
45func (cmd *rm) Description() string {
46	return `Remove SSO users.
47
48Examples:
49  govc sso.user.rm NAME`
50}
51
52func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
53	return withClient(ctx, cmd.ClientFlag, func(c *ssoadmin.Client) error {
54		return c.DeletePrincipal(ctx, f.Arg(0))
55	})
56}
57