Interface ILogStreamsClient
- Namespace
- Auth0.ManagementApi.Clients
- Assembly
- Auth0.ManagementApi.dll
public interface ILogStreamsClient
Methods
CreateAsync(LogStreamCreateRequest, CancellationToken)
Creates a new log stream
Task<LogStream> CreateAsync(LogStreamCreateRequest request, CancellationToken cancellationToken = default)
Parameters
request
LogStreamCreateRequestThe LogStreamCreateRequest containing the information needed to create the log stream
cancellationToken
CancellationTokenThe cancellation token to cancel operation.
Returns
DeleteAsync(string, CancellationToken)
Deletes a log stream
Task DeleteAsync(string id, CancellationToken cancellationToken = default)
Parameters
id
stringThe id of the log stream to delete
cancellationToken
CancellationTokenThe cancellation token to cancel operation.
Returns
GetAllAsync(CancellationToken)
Gets all of the log streams
Task<IList<LogStream>> GetAllAsync(CancellationToken cancellationToken = default)
Parameters
cancellationToken
CancellationToken
Returns
GetAsync(string, CancellationToken)
Gets a log stream
Task<LogStream> GetAsync(string id, CancellationToken cancellationToken = default)
Parameters
id
stringThe id of the log stream to get
cancellationToken
CancellationTokenThe cancellation token to cancel operation.
Returns
UpdateAsync(string, LogStreamUpdateRequest, CancellationToken)
Updates a log stream
Task<LogStream> UpdateAsync(string id, LogStreamUpdateRequest request, CancellationToken cancellationToken = default)
Parameters
id
stringThe id of the log stream to update
request
LogStreamUpdateRequestThe information required to update the log stream
cancellationToken
CancellationTokenThe cancellation token to cancel operation.