IngestionClient.Delete Method

Definition

Overloads

Name Description
Delete(WaitUntil, String, Guid, RequestContext)

Delete an ingestion from a catalog. All runs of the ingestion will be deleted. Ingestion must not have any runs in progress or queued.

Delete(WaitUntil, String, Guid, CancellationToken)

Delete an ingestion from a catalog. All runs of the ingestion will be deleted. Ingestion must not have any runs in progress or queued.

Delete(WaitUntil, String, Guid, RequestContext)

Source:
IngestionClient.cs

Delete an ingestion from a catalog. All runs of the ingestion will be deleted. Ingestion must not have any runs in progress or queued.

public virtual Azure.Operation Delete(Azure.WaitUntil waitUntil, string collectionId, Guid ingestionId, Azure.RequestContext context);
abstract member Delete : Azure.WaitUntil * string * Guid * Azure.RequestContext -> Azure.Operation
override this.Delete : Azure.WaitUntil * string * Guid * Azure.RequestContext -> Azure.Operation
Public Overridable Function Delete (waitUntil As WaitUntil, collectionId As String, ingestionId As Guid, context As RequestContext) As Operation

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

collectionId
String

Catalog collection id.

ingestionId
Guid

Ingestion 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

collectionId is null.

collectionId is an empty string, and was expected to be non-empty.

Applies to

Delete(WaitUntil, String, Guid, CancellationToken)

Source:
IngestionClient.cs

Delete an ingestion from a catalog. All runs of the ingestion will be deleted. Ingestion must not have any runs in progress or queued.

public virtual Azure.Operation Delete(Azure.WaitUntil waitUntil, string collectionId, Guid ingestionId, System.Threading.CancellationToken cancellationToken = default);
abstract member Delete : Azure.WaitUntil * string * Guid * System.Threading.CancellationToken -> Azure.Operation
override this.Delete : Azure.WaitUntil * string * Guid * System.Threading.CancellationToken -> Azure.Operation
Public Overridable Function Delete (waitUntil As WaitUntil, collectionId As String, ingestionId As Guid, Optional cancellationToken As CancellationToken = Nothing) As Operation

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

collectionId
String

Catalog collection id.

ingestionId
Guid

Ingestion id.

cancellationToken
CancellationToken

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

Returns

Exceptions

collectionId is null.

collectionId is an empty string, and was expected to be non-empty.

Applies to