QueryRequestOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
QueryRequestOptions() |
Initializes a new instance of the QueryRequestOptions class. |
QueryRequestOptions(String, Nullable<Int32>, Nullable<Int32>, Nullable<ResultFormat>, Nullable<Boolean>) |
Initializes a new instance of the QueryRequestOptions class. |
QueryRequestOptions()
Initializes a new instance of the QueryRequestOptions class.
public QueryRequestOptions ();
Public Sub New ()
Applies to
QueryRequestOptions(String, Nullable<Int32>, Nullable<Int32>, Nullable<ResultFormat>, Nullable<Boolean>)
Initializes a new instance of the QueryRequestOptions class.
public QueryRequestOptions (string skipToken = default, int? top = default, int? skip = default, Microsoft.Azure.Management.ResourceGraph.Models.ResultFormat? resultFormat = default, bool? allowPartialScopes = default);
new Microsoft.Azure.Management.ResourceGraph.Models.QueryRequestOptions : string * Nullable<int> * Nullable<int> * Nullable<Microsoft.Azure.Management.ResourceGraph.Models.ResultFormat> * Nullable<bool> -> Microsoft.Azure.Management.ResourceGraph.Models.QueryRequestOptions
Public Sub New (Optional skipToken As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional resultFormat As Nullable(Of ResultFormat) = Nothing, Optional allowPartialScopes As Nullable(Of Boolean) = Nothing)
Parameters
- skipToken
- String
Continuation token for pagination, capturing the next page size and offset, as well as the context of the query.
The maximum number of rows that the query should
return. Overrides the page size when $skipToken
property is
present.
The number of rows to skip from the beginning of
the results. Overrides the next page offset when $skipToken
property is present.
- resultFormat
- Nullable<ResultFormat>
Defines in which format query result returned. Possible values include: 'table', 'objectArray'
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.