mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
98 lines
2.3 KiB
Go
98 lines
2.3 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 guest
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/vmware/govmomi/vim25"
|
|
"github.com/vmware/govmomi/vim25/methods"
|
|
"github.com/vmware/govmomi/vim25/types"
|
|
)
|
|
|
|
type ProcessManager struct {
|
|
types.ManagedObjectReference
|
|
|
|
vm types.ManagedObjectReference
|
|
|
|
c *vim25.Client
|
|
}
|
|
|
|
func (m ProcessManager) Reference() types.ManagedObjectReference {
|
|
return m.ManagedObjectReference
|
|
}
|
|
|
|
func (m ProcessManager) ListProcesses(ctx context.Context, auth types.BaseGuestAuthentication, pids []int64) ([]types.GuestProcessInfo, error) {
|
|
req := types.ListProcessesInGuest{
|
|
This: m.Reference(),
|
|
Vm: m.vm,
|
|
Auth: auth,
|
|
Pids: pids,
|
|
}
|
|
|
|
res, err := methods.ListProcessesInGuest(ctx, m.c, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return res.Returnval, err
|
|
}
|
|
|
|
func (m ProcessManager) ReadEnvironmentVariable(ctx context.Context, auth types.BaseGuestAuthentication, names []string) ([]string, error) {
|
|
req := types.ReadEnvironmentVariableInGuest{
|
|
This: m.Reference(),
|
|
Vm: m.vm,
|
|
Auth: auth,
|
|
Names: names,
|
|
}
|
|
|
|
res, err := methods.ReadEnvironmentVariableInGuest(ctx, m.c, &req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return res.Returnval, err
|
|
}
|
|
|
|
func (m ProcessManager) StartProgram(ctx context.Context, auth types.BaseGuestAuthentication, spec types.BaseGuestProgramSpec) (int64, error) {
|
|
req := types.StartProgramInGuest{
|
|
This: m.Reference(),
|
|
Vm: m.vm,
|
|
Auth: auth,
|
|
Spec: spec,
|
|
}
|
|
|
|
res, err := methods.StartProgramInGuest(ctx, m.c, &req)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return res.Returnval, err
|
|
}
|
|
|
|
func (m ProcessManager) TerminateProcess(ctx context.Context, auth types.BaseGuestAuthentication, pid int64) error {
|
|
req := types.TerminateProcessInGuest{
|
|
This: m.Reference(),
|
|
Vm: m.vm,
|
|
Auth: auth,
|
|
Pid: pid,
|
|
}
|
|
|
|
_, err := methods.TerminateProcessInGuest(ctx, m.c, &req)
|
|
return err
|
|
}
|