github.com/vmware/govmomi@v0.43.0/govc/storage/policy/rm.go (about)

     1  /*
     2  Copyright (c) 2020 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 policy
    18  
    19  import (
    20  	"context"
    21  	"errors"
    22  	"flag"
    23  
    24  	"github.com/vmware/govmomi/govc/cli"
    25  	"github.com/vmware/govmomi/govc/flags"
    26  	"github.com/vmware/govmomi/pbm/types"
    27  )
    28  
    29  type rm struct {
    30  	*flags.ClientFlag
    31  }
    32  
    33  func init() {
    34  	cli.Register("storage.policy.rm", &rm{})
    35  }
    36  
    37  func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
    38  	cmd.ClientFlag, ctx = flags.NewClientFlag(ctx)
    39  	cmd.ClientFlag.Register(ctx, f)
    40  }
    41  
    42  func (cmd *rm) Usage() string {
    43  	return "ID"
    44  }
    45  
    46  func (cmd *rm) Description() string {
    47  	return `Remove Storage Policy ID.
    48  
    49  Examples:
    50    govc storage.policy.rm "my policy name"
    51    govc storage.policy.rm af7935ab-466d-4b0e-af3c-4ec6bce2112f`
    52  }
    53  
    54  func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
    55  	if f.NArg() != 1 {
    56  		return flag.ErrHelp
    57  	}
    58  
    59  	c, err := cmd.PbmClient()
    60  	if err != nil {
    61  		return err
    62  	}
    63  
    64  	arg := f.Arg(0)
    65  	id := types.PbmProfileId{UniqueId: arg}
    66  
    67  	profile, err := ListProfiles(ctx, c, arg)
    68  	if err != nil {
    69  		return err
    70  	}
    71  
    72  	if len(profile) == 1 {
    73  		id = profile[0].GetPbmProfile().ProfileId
    74  	}
    75  
    76  	res, err := c.DeleteProfile(ctx, []types.PbmProfileId{id})
    77  	if err != nil {
    78  		return err
    79  	}
    80  
    81  	if len(res) != 0 {
    82  		if f := res[0].Fault; f != nil {
    83  			return errors.New(f.LocalizedMessage)
    84  		}
    85  	}
    86  
    87  	return nil
    88  }