vSphere Cloud Provider: update vmware/gomvomi godeps
This commit is contained in:
86
vendor/github.com/vmware/govmomi/vim25/mo/mo.go
generated
vendored
86
vendor/github.com/vmware/govmomi/vim25/mo/mo.go
generated
vendored
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright (c) 2014-2017 VMware, Inc. All Rights Reserved.
|
||||
Copyright (c) 2014-2018 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.
|
||||
@@ -164,6 +164,22 @@ func init() {
|
||||
t["CryptoManager"] = reflect.TypeOf((*CryptoManager)(nil)).Elem()
|
||||
}
|
||||
|
||||
type CryptoManagerHost struct {
|
||||
CryptoManager
|
||||
}
|
||||
|
||||
func init() {
|
||||
t["CryptoManagerHost"] = reflect.TypeOf((*CryptoManagerHost)(nil)).Elem()
|
||||
}
|
||||
|
||||
type CryptoManagerHostKMS struct {
|
||||
CryptoManagerHost
|
||||
}
|
||||
|
||||
func init() {
|
||||
t["CryptoManagerHostKMS"] = reflect.TypeOf((*CryptoManagerHostKMS)(nil)).Elem()
|
||||
}
|
||||
|
||||
type CryptoManagerKmip struct {
|
||||
CryptoManager
|
||||
|
||||
@@ -759,9 +775,10 @@ func init() {
|
||||
type HostGraphicsManager struct {
|
||||
ExtensibleManagedObject
|
||||
|
||||
GraphicsInfo []types.HostGraphicsInfo `mo:"graphicsInfo"`
|
||||
GraphicsConfig *types.HostGraphicsConfig `mo:"graphicsConfig"`
|
||||
SharedPassthruGpuTypes []string `mo:"sharedPassthruGpuTypes"`
|
||||
GraphicsInfo []types.HostGraphicsInfo `mo:"graphicsInfo"`
|
||||
GraphicsConfig *types.HostGraphicsConfig `mo:"graphicsConfig"`
|
||||
SharedPassthruGpuTypes []string `mo:"sharedPassthruGpuTypes"`
|
||||
SharedGpuCapabilities []types.HostSharedGpuCapabilities `mo:"sharedGpuCapabilities"`
|
||||
}
|
||||
|
||||
func init() {
|
||||
@@ -853,6 +870,20 @@ func init() {
|
||||
t["HostNetworkSystem"] = reflect.TypeOf((*HostNetworkSystem)(nil)).Elem()
|
||||
}
|
||||
|
||||
type HostNvdimmSystem struct {
|
||||
Self types.ManagedObjectReference
|
||||
|
||||
NvdimmSystemInfo types.NvdimmSystemInfo `mo:"nvdimmSystemInfo"`
|
||||
}
|
||||
|
||||
func (m HostNvdimmSystem) Reference() types.ManagedObjectReference {
|
||||
return m.Self
|
||||
}
|
||||
|
||||
func init() {
|
||||
t["HostNvdimmSystem"] = reflect.TypeOf((*HostNvdimmSystem)(nil)).Elem()
|
||||
}
|
||||
|
||||
type HostPatchManager struct {
|
||||
Self types.ManagedObjectReference
|
||||
}
|
||||
@@ -894,7 +925,10 @@ func init() {
|
||||
type HostProfile struct {
|
||||
Profile
|
||||
|
||||
ReferenceHost *types.ManagedObjectReference `mo:"referenceHost"`
|
||||
ValidationState *string `mo:"validationState"`
|
||||
ValidationStateUpdateTime *time.Time `mo:"validationStateUpdateTime"`
|
||||
ValidationFailureInfo *types.HostProfileValidationFailureInfo `mo:"validationFailureInfo"`
|
||||
ReferenceHost *types.ManagedObjectReference `mo:"referenceHost"`
|
||||
}
|
||||
|
||||
func init() {
|
||||
@@ -962,18 +996,25 @@ func init() {
|
||||
type HostSystem struct {
|
||||
ManagedEntity
|
||||
|
||||
Runtime types.HostRuntimeInfo `mo:"runtime"`
|
||||
Summary types.HostListSummary `mo:"summary"`
|
||||
Hardware *types.HostHardwareInfo `mo:"hardware"`
|
||||
Capability *types.HostCapability `mo:"capability"`
|
||||
LicensableResource types.HostLicensableResourceInfo `mo:"licensableResource"`
|
||||
ConfigManager types.HostConfigManager `mo:"configManager"`
|
||||
Config *types.HostConfigInfo `mo:"config"`
|
||||
Vm []types.ManagedObjectReference `mo:"vm"`
|
||||
Datastore []types.ManagedObjectReference `mo:"datastore"`
|
||||
Network []types.ManagedObjectReference `mo:"network"`
|
||||
DatastoreBrowser types.ManagedObjectReference `mo:"datastoreBrowser"`
|
||||
SystemResources *types.HostSystemResourceInfo `mo:"systemResources"`
|
||||
Runtime types.HostRuntimeInfo `mo:"runtime"`
|
||||
Summary types.HostListSummary `mo:"summary"`
|
||||
Hardware *types.HostHardwareInfo `mo:"hardware"`
|
||||
Capability *types.HostCapability `mo:"capability"`
|
||||
LicensableResource types.HostLicensableResourceInfo `mo:"licensableResource"`
|
||||
RemediationState *types.HostSystemRemediationState `mo:"remediationState"`
|
||||
PrecheckRemediationResult *types.ApplyHostProfileConfigurationSpec `mo:"precheckRemediationResult"`
|
||||
RemediationResult *types.ApplyHostProfileConfigurationResult `mo:"remediationResult"`
|
||||
ComplianceCheckState *types.HostSystemComplianceCheckState `mo:"complianceCheckState"`
|
||||
ComplianceCheckResult *types.ComplianceResult `mo:"complianceCheckResult"`
|
||||
ConfigManager types.HostConfigManager `mo:"configManager"`
|
||||
Config *types.HostConfigInfo `mo:"config"`
|
||||
Vm []types.ManagedObjectReference `mo:"vm"`
|
||||
Datastore []types.ManagedObjectReference `mo:"datastore"`
|
||||
Network []types.ManagedObjectReference `mo:"network"`
|
||||
DatastoreBrowser types.ManagedObjectReference `mo:"datastoreBrowser"`
|
||||
SystemResources *types.HostSystemResourceInfo `mo:"systemResources"`
|
||||
AnswerFileValidationState *types.AnswerFileStatusResult `mo:"answerFileValidationState"`
|
||||
AnswerFileValidationResult *types.AnswerFileStatusResult `mo:"answerFileValidationResult"`
|
||||
}
|
||||
|
||||
func (m *HostSystem) Entity() *ManagedEntity {
|
||||
@@ -1056,10 +1097,13 @@ func init() {
|
||||
type HttpNfcLease struct {
|
||||
Self types.ManagedObjectReference
|
||||
|
||||
InitializeProgress int32 `mo:"initializeProgress"`
|
||||
Info *types.HttpNfcLeaseInfo `mo:"info"`
|
||||
State types.HttpNfcLeaseState `mo:"state"`
|
||||
Error *types.LocalizedMethodFault `mo:"error"`
|
||||
InitializeProgress int32 `mo:"initializeProgress"`
|
||||
TransferProgress int32 `mo:"transferProgress"`
|
||||
Mode string `mo:"mode"`
|
||||
Capabilities types.HttpNfcLeaseCapabilities `mo:"capabilities"`
|
||||
Info *types.HttpNfcLeaseInfo `mo:"info"`
|
||||
State types.HttpNfcLeaseState `mo:"state"`
|
||||
Error *types.LocalizedMethodFault `mo:"error"`
|
||||
}
|
||||
|
||||
func (m HttpNfcLease) Reference() types.ManagedObjectReference {
|
||||
|
||||
Reference in New Issue
Block a user