QueryRequestOptions Class

The options for query evaluation.

Inheritance
QueryRequestOptions

Constructor

QueryRequestOptions(*, skip_token: Optional[str] = None, top: Optional[int] = None, skip: Optional[int] = None, result_format: Optional[Union[str, azure.mgmt.resourcegraph.models._resource_graph_client_enums.ResultFormat]] = 'objectArray', allow_partial_scopes: Optional[bool] = False, **kwargs)

Parameters

skip_token
str
Required

Continuation token for pagination, capturing the next page size and offset, as well as the context of the query.

top
int
Required

The maximum number of rows that the query should return. Overrides the page size when $skipToken property is present.

skip
int
Required

The number of rows to skip from the beginning of the results. Overrides the next page offset when $skipToken property is present.

result_format
str or ResultFormat
Required

Defines in which format query result returned. Possible values include: "table", "objectArray". Default value: "objectArray".

allow_partial_scopes
bool
Required

Only applicable for tenant and management group level queries to decide whether to allow partial scopes for result in case the number of subscriptions exceed allowed limits.