| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /*
- Copyright (c) 2023-2023 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"
- "github.com/vmware/govmomi/vim25"
- "github.com/vmware/govmomi/vim25/methods"
- "github.com/vmware/govmomi/vim25/types"
- )
- type EnvironmentBrowser struct {
- Common
- }
- func NewEnvironmentBrowser(c *vim25.Client, ref types.ManagedObjectReference) *EnvironmentBrowser {
- return &EnvironmentBrowser{
- Common: NewCommon(c, ref),
- }
- }
- func (b EnvironmentBrowser) QueryConfigTarget(ctx context.Context, host *HostSystem) (*types.ConfigTarget, error) {
- req := types.QueryConfigTarget{
- This: b.Reference(),
- }
- if host != nil {
- ref := host.Reference()
- req.Host = &ref
- }
- res, err := methods.QueryConfigTarget(ctx, b.Client(), &req)
- if err != nil {
- return nil, err
- }
- return res.Returnval, nil
- }
- func (b EnvironmentBrowser) QueryTargetCapabilities(ctx context.Context, host *HostSystem) (*types.HostCapability, error) {
- req := types.QueryTargetCapabilities{
- This: b.Reference(),
- }
- if host != nil {
- ref := host.Reference()
- req.Host = &ref
- }
- res, err := methods.QueryTargetCapabilities(ctx, b.Client(), &req)
- if err != nil {
- return nil, err
- }
- return res.Returnval, nil
- }
- func (b EnvironmentBrowser) QueryConfigOption(ctx context.Context, spec *types.EnvironmentBrowserConfigOptionQuerySpec) (*types.VirtualMachineConfigOption, error) {
- req := types.QueryConfigOptionEx{
- This: b.Reference(),
- Spec: spec,
- }
- res, err := methods.QueryConfigOptionEx(ctx, b.Client(), &req)
- if err != nil {
- return nil, err
- }
- return res.Returnval, nil
- }
- func (b EnvironmentBrowser) QueryConfigOptionDescriptor(ctx context.Context) ([]types.VirtualMachineConfigOptionDescriptor, error) {
- req := types.QueryConfigOptionDescriptor{
- This: b.Reference(),
- }
- res, err := methods.QueryConfigOptionDescriptor(ctx, b.Client(), &req)
- if err != nil {
- return nil, err
- }
- return res.Returnval, nil
- }
|