-
Notifications
You must be signed in to change notification settings - Fork 206
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
Not all resources implement ResourceBase #1730
Milestone
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the current behavior
The resource manager schema implies that all resources implement
resourceBase
, which hastags
and a few other properties. This is not correct though, there are multiple "kinds" of ARM resources and some of the (Proxy) don't have to supporttags
. See this for details.Describe the improvement
The Swagger specifications seem to correctly encode this information, see for example the ASK AgentPool resource which doesn't support
tags
according to Swagger, but which incorrectly is marked as supportingtags
according to the resource manager schema JSON document.We should stop forcing all types to inherit these
ResourceBase
properties, as not all of them do.The text was updated successfully, but these errors were encountered: