debian-forge-composer/vendor/github.com/vmware/govmomi/vim25/mo/registry.go
Achilleas Koutsou bec893e37c go.mod: update github.com/vmware/govmomi to v0.48.0
Needs manual change of import paths.
2025-02-01 18:14:18 +01:00

27 lines
673 B
Go

// © Broadcom. All Rights Reserved.
// The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
// SPDX-License-Identifier: Apache-2.0
package mo
import (
"reflect"
"github.com/vmware/govmomi/vim25/types"
)
var t = map[string]reflect.Type{}
// TODO: 9.0 mo below, not included in the generate mo/mo.go, since the generator still uses older rbvmomi vmodl.db
type DirectPathProfileManager struct {
Self types.ManagedObjectReference `json:"self"`
}
func (m DirectPathProfileManager) Reference() types.ManagedObjectReference {
return m.Self
}
func init() {
t["DirectPathProfileManager"] = reflect.TypeOf((*DirectPathProfileManager)(nil)).Elem()
}