github.com/vmware/govmomi@v0.37.1/govc/importx/ova.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 importx 18 19 import ( 20 "context" 21 "flag" 22 23 "github.com/vmware/govmomi/govc/cli" 24 "github.com/vmware/govmomi/object" 25 "github.com/vmware/govmomi/vim25/types" 26 ) 27 28 type ova struct { 29 *ovfx 30 } 31 32 func init() { 33 cli.Register("import.ova", &ova{&ovfx{}}) 34 } 35 36 func (cmd *ova) Usage() string { 37 return "PATH_TO_OVA" 38 } 39 40 func (cmd *ova) Run(ctx context.Context, f *flag.FlagSet) error { 41 fpath, err := cmd.Prepare(f) 42 if err != nil { 43 return err 44 } 45 46 archive := &TapeArchive{Path: fpath} 47 archive.Client = cmd.Client 48 49 cmd.Archive = archive 50 51 moref, err := cmd.Import(fpath) 52 if err != nil { 53 return err 54 } 55 56 vm := object.NewVirtualMachine(cmd.Client, *moref) 57 return cmd.Deploy(vm, cmd.OutputFlag) 58 } 59 60 func (cmd *ova) Import(fpath string) (*types.ManagedObjectReference, error) { 61 ovf := "*.ovf" 62 return cmd.ovfx.Import(ovf) 63 }