1 //go:build windows 2 3 package uvm 4 5 import ( 6 "context" 7 8 hcsschema "github.com/Microsoft/hcsshim/internal/hcs/schema2" 9 ) 10 11 // GuestRequest send an arbitrary guest request to the UVM. 12 func (uvm *UtilityVM) GuestRequest(ctx context.Context, guestReq interface{}) error { 13 msr := &hcsschema.ModifySettingRequest{ 14 GuestRequest: guestReq, 15 } 16 return uvm.modify(ctx, msr) 17 } 18