IngestionClient.DeleteSourceAsync Method

Definition

Overloads

Name Description
DeleteSourceAsync(Guid, CancellationToken)

Delete an ingestion source from a geo-catalog.

DeleteSourceAsync(Guid, RequestContext)

[Protocol Method] Delete an ingestion source from a geo-catalog

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.

DeleteSourceAsync(Guid, CancellationToken)

Source:
IngestionClient.cs

Delete an ingestion source from a geo-catalog.

public virtual System.Threading.Tasks.Task<Azure.Response> DeleteSourceAsync(Guid sourceId, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteSourceAsync : Guid * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.DeleteSourceAsync : Guid * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function DeleteSourceAsync (sourceId As Guid, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)

Parameters

sourceId
Guid

Ingestion source id.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

Exceptions

Service returned a non-success status code.

Applies to

DeleteSourceAsync(Guid, RequestContext)

Source:
IngestionClient.cs

[Protocol Method] Delete an ingestion source from a geo-catalog

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<Azure.Response> DeleteSourceAsync(Guid sourceId, Azure.RequestContext context);
abstract member DeleteSourceAsync : Guid * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.DeleteSourceAsync : Guid * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function DeleteSourceAsync (sourceId As Guid, context As RequestContext) As Task(Of Response)

Parameters

sourceId
Guid

Ingestion source id.

context
RequestContext

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

Service returned a non-success status code.

Applies to