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
# Import Azure Resource Graph library
import azure.mgmt.resourcegraph as arg
# Import specific methods and models from other libraries
from azure.mgmt.resource import SubscriptionClient
from azure.identity import AzureCliCredential
# Wrap all the work in a function
def getresources( strQuery ):
# Get your credentials from Azure CLI (development only!) and get your subscription list
credential = AzureCliCredential()
subsClient = SubscriptionClient(credential)
subsRaw = []
for sub in subsClient.subscriptions.list():
subsRaw.append(sub.as_dict())
subsList = []
for sub in subsRaw:
subsList.append(sub.get('subscription_id'))
# Create Azure Resource Graph client and set options
argClient = arg.ResourceGraphClient(credential)
argQueryOptions = arg.models.QueryRequestOptions(result_format="objectArray")
# Create query
argQuery = arg.models.QueryRequest(subscriptions=subsList, query=strQuery, options=argQueryOptions)
# Run query
argResults = argClient.resources(argQuery)
argResultsData = argResults.data
# If data is paginated the previous query will have a skip_token for itteration
while argResults.skip_token:
token = argResults.skip_token
argQueryOptions.skip_token = argResults.skip_token
query = arg.models.QueryRequest(subscriptions=subsList, query=strQuery, options=argQueryOptions)
argResults = argClient.resources(query)
argResultsData.extend(argResults.data)
# Display total records returned
print(f"Total Records: {argResults.total_records}")
return(argResultsData)
getresources("Resources | project name, type ")
Based on the example here: Quickstart: Your first Python query - Azure Resource Graph | Microsoft Learn
Is there an example showing how to properly use the QueryRequestOptions skip_token for pagination?
The text was updated successfully, but these errors were encountered: