armresourcegraph: Inconsistent casing causes resources not to be found from graph API #23446
Labels
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
Mgmt
This issue is related to a management-plane library.
needs-team-attention
Workflow: This issue needs attention from Azure service team or SDK team
question
The issue doesn't require a change to the product in order to be resolved. Most issues start as that
Resource Graph
Service Attention
Workflow: This issue is responsible by Azure service team.
Inconsistent casing, combined with ids being case-sensitive, causes resources not to be found from graph API.
Note: This seems to originate from the graph api itself, since https://portal.azure.com/#view/HubsExtension/ArgQueryBlade shows the same results.
I have a list of resource ids that originate from
armauthorization.RoleAssignmentsClient
, which I take from the responsesProperties.Scope
. I then use armresourcegraph to load the various types of resources to obtain tags.This works in most cases, however, not for redis. The casing of the ID returned by armauthorization differs from what is expected by the graph API.
I run use these queries via:
Some inconsistencies can be observed throughout the Azure landscape that make the graph API hard to navigate.
Inconsistent strictness of id casing: When using cli
az resource show --ids "<id-with-lowercase-redis">
this gives the result. The graph API does not. Theaz resource
cli command uses dedicated per-resource APIs under the hood. Nevertheless confusingInconsistent casing of types in ids: In id
Microsoft.Cache/redis
is incorrect, howeverMicrosoft.KeyVault/vaults
is correctInconsistent response casing: The graph response
type
values are casted to lowercase, unlike the JSON response ofaz resource show
. Querying the graph API by type requires this lower case. So querying by id and by type both use strict casing, but require a differently cased value.I can imagine strict casing is important for all naming entered by users (rg names, resource names, tags, etc.). However the type attribute has a limited and well-defined set of values. Not checking for exact casing would make the armresources SDK and the graph API a lot easier to navigate.
To illustrate, I now have this code fragment to work around this issue:
The text was updated successfully, but these errors were encountered: