You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current go SDK, we do not have custom marshaler for every struct, and some of them may have read-only fields. Without a custom marshaler, the read-only fields will be marshaled into the request body.
For instance, the VirtualMachineProperties does not have a custom marshaler, despite the VMID field is read-only, it will still be in the request body if assigned.
In the current go SDK, we do not have custom marshaler for every struct, and some of them may have read-only fields. Without a custom marshaler, the read-only fields will be marshaled into the request body.
For instance, the
VirtualMachineProperties
does not have a custom marshaler, despite theVMID
field is read-only, it will still be in the request body if assigned.Sample code of reproduce:
Log:
The text was updated successfully, but these errors were encountered: