ArmResourceGraphModelFactory.ResourcesHistoryRequestOptions Method
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.
Initializes a new instance of ResourcesHistoryRequestOptions.
public static Azure.ResourceManager.ResourceGraph.Models.ResourcesHistoryRequestOptions ResourcesHistoryRequestOptions(Azure.ResourceManager.ResourceGraph.Models.DateTimeInterval interval = default, int? top = default, int? skip = default, string skipToken = default, Azure.ResourceManager.ResourceGraph.Models.ResultFormat? resultFormat = default);
static member ResourcesHistoryRequestOptions : Azure.ResourceManager.ResourceGraph.Models.DateTimeInterval * Nullable<int> * Nullable<int> * string * Nullable<Azure.ResourceManager.ResourceGraph.Models.ResultFormat> -> Azure.ResourceManager.ResourceGraph.Models.ResourcesHistoryRequestOptions
Public Shared Function ResourcesHistoryRequestOptions (Optional interval As DateTimeInterval = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional skipToken As String = Nothing, Optional resultFormat As Nullable(Of ResultFormat) = Nothing) As ResourcesHistoryRequestOptions
Parameters
- interval
- DateTimeInterval
The time interval used to fetch history.
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.
- skipToken
- String
Continuation token for pagination, capturing the next page size and offset, as well as the context of the query.
- resultFormat
- Nullable<ResultFormat>
Defines in which format query result returned.
Returns
A new ResourcesHistoryRequestOptions instance for mocking.