github.com/vmware/govmomi@v0.43.0/govc/host/portgroup/remove.go (about) 1 /* 2 Copyright (c) 2014-2015 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 portgroup 18 19 import ( 20 "context" 21 "flag" 22 23 "github.com/vmware/govmomi/govc/cli" 24 "github.com/vmware/govmomi/govc/flags" 25 ) 26 27 type remove struct { 28 *flags.HostSystemFlag 29 } 30 31 func init() { 32 cli.Register("host.portgroup.remove", &remove{}) 33 } 34 35 func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) { 36 cmd.HostSystemFlag, ctx = flags.NewHostSystemFlag(ctx) 37 cmd.HostSystemFlag.Register(ctx, f) 38 } 39 40 func (cmd *remove) Description() string { 41 return `Remove portgroup from HOST. 42 43 Examples: 44 govc host.portgroup.remove bridge` 45 } 46 47 func (cmd *remove) Usage() string { 48 return "NAME" 49 } 50 51 func (cmd *remove) Process(ctx context.Context) error { 52 if err := cmd.HostSystemFlag.Process(ctx); err != nil { 53 return err 54 } 55 return nil 56 } 57 58 func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error { 59 ns, err := cmd.HostNetworkSystem() 60 if err != nil { 61 return err 62 } 63 64 return ns.RemovePortGroup(ctx, f.Arg(0)) 65 }