SyncGroupResource.GetLogs 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.
Gets a collection of sync group logs.
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/syncGroups/{syncGroupName}/logs
- Operation Id: SyncGroups_ListLogs
- Default Api Version: 2020-11-01-preview
- Resource: SyncGroupResource
public virtual Azure.Pageable<Azure.ResourceManager.Sql.Models.SyncGroupLogProperties> GetLogs (string startTime, string endTime, Azure.ResourceManager.Sql.Models.SyncGroupLogType type, string continuationToken = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetLogs : string * string * Azure.ResourceManager.Sql.Models.SyncGroupLogType * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Sql.Models.SyncGroupLogProperties>
override this.GetLogs : string * string * Azure.ResourceManager.Sql.Models.SyncGroupLogType * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Sql.Models.SyncGroupLogProperties>
Public Overridable Function GetLogs (startTime As String, endTime As String, type As SyncGroupLogType, Optional continuationToken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of SyncGroupLogProperties)
Parameters
- startTime
- String
Get logs generated after this time.
- endTime
- String
Get logs generated before this time.
- type
- SyncGroupLogType
The types of logs to retrieve.
- continuationToken
- String
The continuation token for this operation.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
A collection of SyncGroupLogProperties that may take multiple service requests to iterate over.
Exceptions
startTime
or endTime
is null.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET