mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
93 lines
1.9 KiB
Go
93 lines
1.9 KiB
Go
/*
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package object
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
|
|
"github.com/vmware/govmomi/govc/cli"
|
|
"github.com/vmware/govmomi/govc/flags"
|
|
)
|
|
|
|
type mv struct {
|
|
*flags.DatacenterFlag
|
|
}
|
|
|
|
func init() {
|
|
cli.Register("object.mv", &mv{})
|
|
}
|
|
|
|
func (cmd *mv) Register(ctx context.Context, f *flag.FlagSet) {
|
|
cmd.DatacenterFlag, ctx = flags.NewDatacenterFlag(ctx)
|
|
cmd.DatacenterFlag.Register(ctx, f)
|
|
}
|
|
|
|
func (cmd *mv) Usage() string {
|
|
return "PATH... FOLDER"
|
|
}
|
|
|
|
func (cmd *mv) Description() string {
|
|
return `Move managed entities to FOLDER.
|
|
|
|
Examples:
|
|
govc folder.create /dc1/host/example
|
|
govc object.mv /dc2/host/*.example.com /dc1/host/example`
|
|
}
|
|
|
|
func (cmd *mv) Process(ctx context.Context) error {
|
|
if err := cmd.DatacenterFlag.Process(ctx); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (cmd *mv) Run(ctx context.Context, f *flag.FlagSet) error {
|
|
if f.NArg() < 2 {
|
|
return flag.ErrHelp
|
|
}
|
|
|
|
finder, err := cmd.Finder()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
n := f.NArg() - 1
|
|
|
|
folder, err := finder.Folder(ctx, f.Arg(n))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
objs, err := cmd.ManagedObjects(ctx, f.Args()[:n])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
task, err := folder.MoveInto(ctx, objs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
logger := cmd.ProgressLogger(fmt.Sprintf("moving %d objects to %s... ", len(objs), folder.InventoryPath))
|
|
_, err = task.WaitForResult(ctx, logger)
|
|
logger.Wait()
|
|
|
|
return err
|
|
}
|