
Bumping version to include changes that better handle TLS errors. Bump nescessary to prepare for when the version of Go is bumped to 1.20 Signed-off-by: Madhav Jivrajani <madhav.jiv@gmail.com>
155 lines
3.7 KiB
Go
155 lines
3.7 KiB
Go
/*
|
|
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 object
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
|
|
"github.com/vmware/govmomi/internal"
|
|
"github.com/vmware/govmomi/vim25"
|
|
"github.com/vmware/govmomi/vim25/methods"
|
|
"github.com/vmware/govmomi/vim25/mo"
|
|
"github.com/vmware/govmomi/vim25/types"
|
|
)
|
|
|
|
type HostSystem struct {
|
|
Common
|
|
}
|
|
|
|
func NewHostSystem(c *vim25.Client, ref types.ManagedObjectReference) *HostSystem {
|
|
return &HostSystem{
|
|
Common: NewCommon(c, ref),
|
|
}
|
|
}
|
|
|
|
func (h HostSystem) ConfigManager() *HostConfigManager {
|
|
return NewHostConfigManager(h.c, h.Reference())
|
|
}
|
|
|
|
func (h HostSystem) ResourcePool(ctx context.Context) (*ResourcePool, error) {
|
|
var mh mo.HostSystem
|
|
|
|
err := h.Properties(ctx, h.Reference(), []string{"parent"}, &mh)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var mcr *mo.ComputeResource
|
|
var parent interface{}
|
|
|
|
switch mh.Parent.Type {
|
|
case "ComputeResource":
|
|
mcr = new(mo.ComputeResource)
|
|
parent = mcr
|
|
case "ClusterComputeResource":
|
|
mcc := new(mo.ClusterComputeResource)
|
|
mcr = &mcc.ComputeResource
|
|
parent = mcc
|
|
default:
|
|
return nil, fmt.Errorf("unknown host parent type: %s", mh.Parent.Type)
|
|
}
|
|
|
|
err = h.Properties(ctx, *mh.Parent, []string{"resourcePool"}, parent)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
pool := NewResourcePool(h.c, *mcr.ResourcePool)
|
|
return pool, nil
|
|
}
|
|
|
|
func (h HostSystem) ManagementIPs(ctx context.Context) ([]net.IP, error) {
|
|
var mh mo.HostSystem
|
|
|
|
err := h.Properties(ctx, h.Reference(), []string{"config.virtualNicManagerInfo.netConfig"}, &mh)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
config := mh.Config
|
|
if config == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
info := config.VirtualNicManagerInfo
|
|
if info == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
return internal.HostSystemManagementIPs(info.NetConfig), nil
|
|
}
|
|
|
|
func (h HostSystem) Disconnect(ctx context.Context) (*Task, error) {
|
|
req := types.DisconnectHost_Task{
|
|
This: h.Reference(),
|
|
}
|
|
|
|
res, err := methods.DisconnectHost_Task(ctx, h.c, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return NewTask(h.c, res.Returnval), nil
|
|
}
|
|
|
|
func (h HostSystem) Reconnect(ctx context.Context, cnxSpec *types.HostConnectSpec, reconnectSpec *types.HostSystemReconnectSpec) (*Task, error) {
|
|
req := types.ReconnectHost_Task{
|
|
This: h.Reference(),
|
|
CnxSpec: cnxSpec,
|
|
ReconnectSpec: reconnectSpec,
|
|
}
|
|
|
|
res, err := methods.ReconnectHost_Task(ctx, h.c, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return NewTask(h.c, res.Returnval), nil
|
|
}
|
|
|
|
func (h HostSystem) EnterMaintenanceMode(ctx context.Context, timeout int32, evacuate bool, spec *types.HostMaintenanceSpec) (*Task, error) {
|
|
req := types.EnterMaintenanceMode_Task{
|
|
This: h.Reference(),
|
|
Timeout: timeout,
|
|
EvacuatePoweredOffVms: types.NewBool(evacuate),
|
|
MaintenanceSpec: spec,
|
|
}
|
|
|
|
res, err := methods.EnterMaintenanceMode_Task(ctx, h.c, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return NewTask(h.c, res.Returnval), nil
|
|
}
|
|
|
|
func (h HostSystem) ExitMaintenanceMode(ctx context.Context, timeout int32) (*Task, error) {
|
|
req := types.ExitMaintenanceMode_Task{
|
|
This: h.Reference(),
|
|
Timeout: timeout,
|
|
}
|
|
|
|
res, err := methods.ExitMaintenanceMode_Task(ctx, h.c, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return NewTask(h.c, res.Returnval), nil
|
|
}
|