github.com/vmware/govmomi@v0.43.0/govc/library/evict.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 library 18 19 import ( 20 "context" 21 "flag" 22 "fmt" 23 24 "github.com/vmware/govmomi/govc/cli" 25 "github.com/vmware/govmomi/govc/flags" 26 "github.com/vmware/govmomi/vapi/library" 27 ) 28 29 type evict struct { 30 *flags.ClientFlag 31 } 32 33 func init() { 34 cli.Register("library.evict", &evict{}) 35 } 36 37 func (cmd *evict) 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 *evict) Usage() string { 43 return "LIBRARY NAME | ITEM NAME" 44 } 45 46 func (cmd *evict) Description() string { 47 return `Evict library NAME or item NAME. 48 49 Examples: 50 govc library.evict subscribed-library 51 govc library.evict subscribed-library/item` 52 } 53 54 func (cmd *evict) Run(ctx context.Context, f *flag.FlagSet) error { 55 if f.NArg() != 1 { 56 return flag.ErrHelp 57 } 58 59 c, err := cmd.RestClient() 60 if err != nil { 61 return err 62 } 63 64 m := library.NewManager(c) 65 66 res, err := flags.ContentLibraryResult(ctx, c, "", f.Arg(0)) 67 if err != nil { 68 return err 69 } 70 71 switch t := res.GetResult().(type) { 72 case library.Library: 73 return m.EvictSubscribedLibrary(ctx, &t) 74 case library.Item: 75 return m.EvictSubscribedLibraryItem(ctx, &t) 76 default: 77 return fmt.Errorf("%q is a %T", f.Arg(0), t) 78 } 79 }