PagedResult doesn't return full response
Meshi Houri (Biton)
0
Reputation points
Hi,
I'm using azure sdk , and I have found out that few methods don't return the full response.
They returned only one resource group , for example using this ->
networkManager.localNetworkGateways.list().stream().collect(Collectors.toList());
(tried different approaches like block and etc) return only gws from one resource group
, but when I am going through all the resources groups I am getting the full response.
networkManager.resourceManager().resourceGroups().list().forEach(resourceGroup -> {
List
Sign in to answer