mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 11:36:51 +00:00
add vendoring with go dep
This commit is contained in:
146
vendor/github.com/vmware/govmomi/govc/host/vnic/info.go
generated
vendored
Normal file
146
vendor/github.com/vmware/govmomi/govc/host/vnic/info.go
generated
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
/*
|
||||
Copyright (c) 2015 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 vnic
|
||||
|
||||
import (
|
||||
"context"
|
||||
"flag"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
"text/tabwriter"
|
||||
|
||||
"github.com/vmware/govmomi/govc/cli"
|
||||
"github.com/vmware/govmomi/govc/flags"
|
||||
"github.com/vmware/govmomi/object"
|
||||
"github.com/vmware/govmomi/vim25/mo"
|
||||
"github.com/vmware/govmomi/vim25/types"
|
||||
)
|
||||
|
||||
type info struct {
|
||||
*flags.HostSystemFlag
|
||||
}
|
||||
|
||||
func init() {
|
||||
cli.Register("host.vnic.info", &info{})
|
||||
}
|
||||
|
||||
func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
|
||||
cmd.HostSystemFlag, ctx = flags.NewHostSystemFlag(ctx)
|
||||
cmd.HostSystemFlag.Register(ctx, f)
|
||||
}
|
||||
|
||||
func (cmd *info) Process(ctx context.Context) error {
|
||||
if err := cmd.HostSystemFlag.Process(ctx); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
|
||||
host, err := cmd.HostSystem()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
ns, err := cmd.HostNetworkSystem()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
var mns mo.HostNetworkSystem
|
||||
|
||||
m, err := host.ConfigManager().VirtualNicManager(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
info, err := m.Info(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
err = ns.Properties(ctx, ns.Reference(), []string{"networkInfo"}, &mns)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
tw := tabwriter.NewWriter(os.Stdout, 2, 0, 2, ' ', 0)
|
||||
|
||||
type dnet struct {
|
||||
dvp mo.DistributedVirtualPortgroup
|
||||
dvs mo.VmwareDistributedVirtualSwitch
|
||||
}
|
||||
|
||||
dnets := make(map[string]*dnet)
|
||||
|
||||
for _, nic := range mns.NetworkInfo.Vnic {
|
||||
fmt.Fprintf(tw, "Device:\t%s\n", nic.Device)
|
||||
|
||||
if dvp := nic.Spec.DistributedVirtualPort; dvp != nil {
|
||||
dn, ok := dnets[dvp.PortgroupKey]
|
||||
|
||||
if !ok {
|
||||
dn = new(dnet)
|
||||
o := object.NewDistributedVirtualPortgroup(host.Client(), types.ManagedObjectReference{
|
||||
Type: "DistributedVirtualPortgroup",
|
||||
Value: dvp.PortgroupKey,
|
||||
})
|
||||
|
||||
err = o.Properties(ctx, o.Reference(), []string{"name", "config.distributedVirtualSwitch"}, &dn.dvp)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
err = o.Properties(ctx, *dn.dvp.Config.DistributedVirtualSwitch, []string{"name"}, &dn.dvs)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
dnets[dvp.PortgroupKey] = dn
|
||||
}
|
||||
|
||||
fmt.Fprintf(tw, "Network label:\t%s\n", dn.dvp.Name)
|
||||
fmt.Fprintf(tw, "Switch:\t%s\n", dn.dvs.Name)
|
||||
} else {
|
||||
fmt.Fprintf(tw, "Network label:\t%s\n", nic.Portgroup)
|
||||
for _, pg := range mns.NetworkInfo.Portgroup {
|
||||
if pg.Spec.Name == nic.Portgroup {
|
||||
fmt.Fprintf(tw, "Switch:\t%s\n", pg.Spec.VswitchName)
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fmt.Fprintf(tw, "IP address:\t%s\n", nic.Spec.Ip.IpAddress)
|
||||
fmt.Fprintf(tw, "TCP/IP stack:\t%s\n", nic.Spec.NetStackInstanceKey)
|
||||
|
||||
var services []string
|
||||
for _, nc := range info.NetConfig {
|
||||
for _, dev := range nc.SelectedVnic {
|
||||
key := nc.NicType + "." + nic.Key
|
||||
if dev == key {
|
||||
services = append(services, nc.NicType)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
fmt.Fprintf(tw, "Enabled services:\t%s\n", strings.Join(services, ", "))
|
||||
}
|
||||
|
||||
return tw.Flush()
|
||||
}
|
114
vendor/github.com/vmware/govmomi/govc/host/vnic/service.go
generated
vendored
Normal file
114
vendor/github.com/vmware/govmomi/govc/host/vnic/service.go
generated
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
/*
|
||||
Copyright (c) 2015 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 vnic
|
||||
|
||||
import (
|
||||
"context"
|
||||
"flag"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/vmware/govmomi/govc/cli"
|
||||
"github.com/vmware/govmomi/govc/flags"
|
||||
"github.com/vmware/govmomi/vim25/types"
|
||||
)
|
||||
|
||||
type service struct {
|
||||
*flags.HostSystemFlag
|
||||
|
||||
Enable bool
|
||||
}
|
||||
|
||||
func init() {
|
||||
cli.Register("host.vnic.service", &service{})
|
||||
}
|
||||
|
||||
func (cmd *service) Register(ctx context.Context, f *flag.FlagSet) {
|
||||
cmd.HostSystemFlag, ctx = flags.NewHostSystemFlag(ctx)
|
||||
cmd.HostSystemFlag.Register(ctx, f)
|
||||
|
||||
f.BoolVar(&cmd.Enable, "enable", true, "Enable service")
|
||||
}
|
||||
|
||||
func (cmd *service) Process(ctx context.Context) error {
|
||||
if err := cmd.HostSystemFlag.Process(ctx); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (cmd *service) Usage() string {
|
||||
return "SERVICE DEVICE"
|
||||
}
|
||||
|
||||
func (cmd *service) Description() string {
|
||||
nicTypes := []string{
|
||||
string(types.HostVirtualNicManagerNicTypeVmotion),
|
||||
string(types.HostVirtualNicManagerNicTypeFaultToleranceLogging),
|
||||
string(types.HostVirtualNicManagerNicTypeVSphereReplication),
|
||||
string(types.HostVirtualNicManagerNicTypeVSphereReplicationNFC),
|
||||
string(types.HostVirtualNicManagerNicTypeManagement),
|
||||
string(types.HostVirtualNicManagerNicTypeVsan),
|
||||
string(types.HostVirtualNicManagerNicTypeVSphereProvisioning),
|
||||
}
|
||||
|
||||
return fmt.Sprintf(`
|
||||
Enable or disable service on a virtual nic device.
|
||||
|
||||
Where SERVICE is one of: %s
|
||||
Where DEVICE is one of: %s
|
||||
|
||||
Examples:
|
||||
govc host.vnic.service -host hostname -enable vsan vmk0
|
||||
govc host.vnic.service -host hostname -enable=false vmotion vmk1`,
|
||||
strings.Join(nicTypes, "|"),
|
||||
strings.Join([]string{"vmk0", "vmk1", "..."}, "|"))
|
||||
}
|
||||
|
||||
func (cmd *service) Run(ctx context.Context, f *flag.FlagSet) error {
|
||||
if f.NArg() != 2 {
|
||||
return flag.ErrHelp
|
||||
}
|
||||
|
||||
service := f.Arg(0)
|
||||
device := f.Arg(1)
|
||||
|
||||
host, err := cmd.HostSystem()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
m, err := host.ConfigManager().VirtualNicManager(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
var method func(context.Context, string, string) error
|
||||
|
||||
if cmd.Enable {
|
||||
method = m.SelectVnic
|
||||
} else {
|
||||
method = m.DeselectVnic
|
||||
}
|
||||
|
||||
if method == nil {
|
||||
return flag.ErrHelp
|
||||
}
|
||||
|
||||
return method(ctx, service, device)
|
||||
}
|
Reference in New Issue
Block a user