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
Continuation token for pagination, capturing the next page size and offset, as well as the context of the query.
- top
- int
The maximum number of rows that the query should return. Overrides the page size
when $skipToken property is present.
- skip
- int
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
Defines in which format query result returned. Possible values include: "table", "objectArray". Default value: "objectArray".
- allow_partial_scopes
- bool
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.
Feedback
Submit and view feedback for