github.com/vmware/govmomi@v0.43.0/govc/vm/check/config.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 check 18 19 import ( 20 "context" 21 "flag" 22 23 "github.com/vmware/govmomi/govc/cli" 24 "github.com/vmware/govmomi/vim25/types" 25 ) 26 27 type config struct { 28 checkFlag 29 } 30 31 func init() { 32 cli.Register("vm.check.config", &config{}, true) 33 } 34 35 func (cmd *config) Description() string { 36 return `Check if VM config spec can be applied. 37 38 Examples: 39 govc vm.create -spec ... | govc vm.check.config -pool $pool` 40 } 41 42 func (cmd *config) Run(ctx context.Context, f *flag.FlagSet) error { 43 var spec types.VirtualMachineConfigSpec 44 45 if err := cmd.Spec(&spec); err != nil { 46 return err 47 } 48 49 checker, err := cmd.compatChecker() 50 if err != nil { 51 return err 52 } 53 54 res, err := checker.CheckVmConfig(ctx, spec, cmd.Machine, cmd.Host, cmd.Pool, cmd.testTypes...) 55 if err != nil { 56 return err 57 } 58 59 return cmd.result(ctx, res) 60 }