From 4a09f19d790a9bbbed1790106a08bbbde3cd0826 Mon Sep 17 00:00:00 2001 From: fabriziopandini Date: Mon, 11 Dec 2023 15:20:45 +0100 Subject: [PATCH] vcsim: add PbmQueryAssociatedProfiles method --- pbm/simulator/simulator.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pbm/simulator/simulator.go b/pbm/simulator/simulator.go index 7e5868baf..d230ea9d8 100644 --- a/pbm/simulator/simulator.go +++ b/pbm/simulator/simulator.go @@ -126,6 +126,13 @@ func (m *ProfileManager) PbmQueryAssociatedProfile(req *types.PbmQueryAssociated return body } +func (m *ProfileManager) PbmQueryAssociatedProfiles(req *types.PbmQueryAssociatedProfiles) soap.HasFault { + body := new(methods.PbmQueryAssociatedProfilesBody) + body.Res = new(types.PbmQueryAssociatedProfilesResponse) + + return body +} + func (m *ProfileManager) PbmRetrieveContent(req *types.PbmRetrieveContent) soap.HasFault { body := new(methods.PbmRetrieveContentBody) if len(req.ProfileIds) == 0 {