You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result = client.virtual_machine_scale_set_vms.list(
choice['resourceGroup'], choice['name'])
for item in result:
logger.info(item.name)
vmss_instances.append(item)
But we also need to consider paging.
The text was updated successfully, but these errors were encountered:
I tried to use stop_vmss action, but it doesn't work.
debug log is following.
Currently there is no advance_page attribute in ItemPaged class
https://docs.microsoft.com/en-us/python/api/azure-core/azure.core.paging.itempaged?view=azure-python
My environment is here
I think the following code is one way to fix it:
But we also need to consider paging.
The text was updated successfully, but these errors were encountered: