27 lines
673 B
Go
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()
|
|
}
|