github.com/vmware/govmomi@v0.43.0/govc/disk/detach.go (about) 1 /* 2 Copyright (c) 2024-2024 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 disk 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 detach struct { 28 *flags.VirtualMachineFlag 29 } 30 31 func init() { 32 cli.Register("disk.detach", &detach{}) 33 } 34 35 func (cmd *detach) Register(ctx context.Context, f *flag.FlagSet) { 36 cmd.VirtualMachineFlag, ctx = flags.NewVirtualMachineFlag(ctx) 37 cmd.VirtualMachineFlag.Register(ctx, f) 38 } 39 40 func (cmd *detach) Usage() string { 41 return "ID" 42 } 43 44 func (cmd *detach) Description() string { 45 return `Detach disk ID from VM. 46 47 See also: govc device.remove 48 49 Examples: 50 govc disk.detach -vm $vm ID` 51 } 52 53 func (cmd *detach) Run(ctx context.Context, f *flag.FlagSet) error { 54 if f.NArg() != 1 { 55 return flag.ErrHelp 56 } 57 58 vm, err := cmd.VirtualMachine() 59 if err != nil { 60 return err 61 } 62 63 id := f.Arg(0) 64 65 return vm.DetachDisk(ctx, id) 66 }