MockableChangeAnalysisTenantResource.GetResourceChangesAsync 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.
List the changes of a resource within the specified time range. Customer data will be masked if the user doesn't have access.
- Request Path: /{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges
- Operation Id: ResourceChanges_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.ChangeAnalysis.Models.DetectedChangeData> GetResourceChangesAsync (string resourceId, DateTimeOffset startTime, DateTimeOffset endTime, string skipToken = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetResourceChangesAsync : string * DateTimeOffset * DateTimeOffset * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ChangeAnalysis.Models.DetectedChangeData>
override this.GetResourceChangesAsync : string * DateTimeOffset * DateTimeOffset * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ChangeAnalysis.Models.DetectedChangeData>
Public Overridable Function GetResourceChangesAsync (resourceId As String, startTime As DateTimeOffset, endTime As DateTimeOffset, Optional skipToken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of DetectedChangeData)
Parameters
- resourceId
- String
The identifier of the resource.
- startTime
- DateTimeOffset
Specifies the start time of the changes request.
- endTime
- DateTimeOffset
Specifies the end time of the changes request.
- skipToken
- String
A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
An async collection of DetectedChangeData that may take multiple service requests to iterate over.
Exceptions
resourceId
is an empty string, and was expected to be non-empty.
resourceId
is null.
Applies to
Azure SDK for .NET