-
Notifications
You must be signed in to change notification settings - Fork 841
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[azcore] Add text [un]marshalling support to ResourceID #23381
base: main
Are you sure you want to change the base?
Conversation
Thank you for your contribution @mbarnes! We will review the pull request and get back to you soon. |
This is a thinly wrappered azcorearm.ResourceID that implements the encoding.TextMarshaler and encoding.TextUnmarshaler interfaces, so that ResourceID can be used directly in structs that get built from JSON data. I proposed this for azcorearm.ResourceID in: Azure/azure-sdk-for-go#23381
This is a thinly wrappered azcorearm.ResourceID that implements the encoding.TextMarshaler and encoding.TextUnmarshaler interfaces, so that ResourceID can be used directly in structs that get built from JSON data. I proposed this for azcorearm.ResourceID in: Azure/azure-sdk-for-go#23381
Hi @mbarnes. Thank you for your interest in helping to improve the Azure SDK experience and for your contribution. We've noticed that there hasn't been recent engagement on this pull request. If this is still an active work stream, please let us know by pushing some changes or leaving a comment. Otherwise, we'll close this out in 7 days. |
My suggestion is still valid. Please leave open. |
Mind rebasing on |
12cd44f
to
a4bea91
Compare
It would be handy for ResourceID to support the encoding.TextMarshaler and encoding.TextUnmarshaler interfaces so that, for example, JSON data that includes a resource ID string can be unmarshaled directly to a ResourceID struct (and vice versa for marshaling).