Will az command return resource list with polling next link. #19291
-
for example Get-AzSubscription, Get-AzResourcegroup, Get-AzResource,Invoke-AzRestMethod will continue to fetch the resource list by next link if response contains next link? |
Beta Was this translation helpful? Give feedback.
Answered by
dingmeng-xue
Aug 25, 2022
Replies: 1 comment 1 reply
-
Ideally, Get cmdlet respects nextlink and get all results till value of nextlink is empty. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dingmeng-xue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ideally, Get cmdlet respects nextlink and get all results till value of nextlink is empty.
Invoke-AzRestMethod
is a special case because this general cmdlet cannot predict which property and path is used for nextlink. If you find any cmdlet doesn't navigate next link, please let us know.