github.com/vmware/govmomi@v0.37.1/govc/vm/markastemplate.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 vm
    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 markastemplate struct {
    28  	*flags.SearchFlag
    29  }
    30  
    31  func init() {
    32  	cli.Register("vm.markastemplate", &markastemplate{})
    33  }
    34  
    35  func (cmd *markastemplate) Register(ctx context.Context, f *flag.FlagSet) {
    36  	cmd.SearchFlag, ctx = flags.NewSearchFlag(ctx, flags.SearchVirtualMachines)
    37  	cmd.SearchFlag.Register(ctx, f)
    38  }
    39  
    40  func (cmd *markastemplate) Process(ctx context.Context) error {
    41  	if err := cmd.SearchFlag.Process(ctx); err != nil {
    42  		return err
    43  	}
    44  	return nil
    45  }
    46  
    47  func (cmd *markastemplate) Usage() string {
    48  	return "VM..."
    49  }
    50  
    51  func (cmd *markastemplate) Description() string {
    52  	return `Mark VM as a virtual machine template.
    53  
    54  Examples:
    55    govc vm.markastemplate $name`
    56  }
    57  
    58  func (cmd *markastemplate) Run(ctx context.Context, f *flag.FlagSet) error {
    59  	vms, err := cmd.VirtualMachines(f.Args())
    60  	if err != nil {
    61  		return err
    62  	}
    63  
    64  	for _, vm := range vms {
    65  		err := vm.MarkAsTemplate(ctx)
    66  		if err != nil {
    67  			return err
    68  		}
    69  	}
    70  
    71  	return nil
    72  }