Skip to content

Commit

Permalink
vcsim: add PbmQueryAssociatedProfile method
Browse files Browse the repository at this point in the history
Issue #1779
  • Loading branch information
dougm committed Jun 12, 2020
1 parent 363a08b commit e63ec00
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pbm/simulator/simulator.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@ func (m *ProfileManager) PbmQueryProfile(req *types.PbmQueryProfile) soap.HasFau
return body
}

func (m *ProfileManager) PbmQueryAssociatedProfile(req *types.PbmQueryAssociatedProfile) soap.HasFault {
body := new(methods.PbmQueryAssociatedProfileBody)
body.Res = new(types.PbmQueryAssociatedProfileResponse)

return body
}

func (m *ProfileManager) PbmRetrieveContent(req *types.PbmRetrieveContent) soap.HasFault {
body := new(methods.PbmRetrieveContentBody)
if len(req.ProfileIds) == 0 {
Expand Down

0 comments on commit e63ec00

Please sign in to comment.