Skip to content

Commit ae8161d

Browse files
committedOct 13, 2021
Update pbm types to vCenter 7.0U3 (build 18700403)
1 parent f2d167d commit ae8161d

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎pbm/types/enum.go

+1
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ const (
171171
PbmObjectTypeVirtualDiskId = PbmObjectType("virtualDiskId")
172172
PbmObjectTypeVirtualDiskUUID = PbmObjectType("virtualDiskUUID")
173173
PbmObjectTypeDatastore = PbmObjectType("datastore")
174+
PbmObjectTypeVsanObjectId = PbmObjectType("vsanObjectId")
174175
PbmObjectTypeFileShareId = PbmObjectType("fileShareId")
175176
PbmObjectTypeUnknown = PbmObjectType("unknown")
176177
)

‎pbm/types/types.go

+11
Original file line numberDiff line numberDiff line change
@@ -997,6 +997,17 @@ type PbmFetchComplianceResultResponse struct {
997997
Returnval []PbmComplianceResult `xml:"returnval,omitempty"`
998998
}
999999

1000+
type PbmFetchEntityHealthStatusSpec struct {
1001+
types.DynamicData
1002+
1003+
ObjectRef PbmServerObjectRef `xml:"objectRef"`
1004+
BackingId string `xml:"backingId,omitempty"`
1005+
}
1006+
1007+
func init() {
1008+
types.Add("pbm:PbmFetchEntityHealthStatusSpec", reflect.TypeOf((*PbmFetchEntityHealthStatusSpec)(nil)).Elem())
1009+
}
1010+
10001011
type PbmFetchResourceType PbmFetchResourceTypeRequestType
10011012

10021013
func init() {

0 commit comments

Comments
 (0)
Please sign in to comment.