QueryRequestOptions Class
The options for query evaluation.
- Inheritance
-
msrest.serialization.ModelQueryRequestOptions
Constructor
QueryRequestOptions(*, skip_token: str | None = None, top: int | None = None, skip: int | None = None, result_format: str | ResultFormat | None = 'objectArray', allow_partial_scopes: bool | None = False, **kwargs)
Parameters
Name | Description |
---|---|
skip_token
Required
|
Continuation token for pagination, capturing the next page size and offset, as well as the context of the query. |
top
Required
|
The maximum number of rows that the query should return. Overrides the page size
when |
skip
Required
|
The number of rows to skip from the beginning of the results. Overrides the next
page offset when |
result_format
Required
|
str or
ResultFormat
Defines in which format query result returned. Possible values include: "table", "objectArray". Default value: "objectArray". |
allow_partial_scopes
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. |
Keyword-Only Parameters
Name | Description |
---|---|
skip_token
Required
|
|
top
Required
|
|
skip
Required
|
|
result_format
|
Default value: objectArray
|
allow_partial_scopes
Required
|
|
Azure SDK for Python