1/*
2Copyright (c) 2014-2015 VMware, Inc. All Rights Reserved.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17package vm
18
19import (
20	"context"
21	"flag"
22
23	"github.com/vmware/govmomi/govc/cli"
24	"github.com/vmware/govmomi/govc/flags"
25)
26
27type markastemplate struct {
28	*flags.SearchFlag
29}
30
31func init() {
32	cli.Register("vm.markastemplate", &markastemplate{})
33}
34
35func (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
40func (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
47func (cmd *markastemplate) Usage() string {
48	return "VM..."
49}
50
51func (cmd *markastemplate) Description() string {
52	return `Mark VM as a virtual machine template.
53
54Examples:
55  govc vm.markastemplate $name`
56}
57
58func (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}
73