SearchIndexerClient.DeleteDataSourceConnection Method

Definition

Overloads

Name Description
DeleteDataSourceConnection(String, MatchConditions, CancellationToken)

Deletes a datasource.

DeleteDataSourceConnection(String, MatchConditions, RequestContext)

[Protocol Method] Deletes a datasource.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
DeleteDataSourceConnection(String, CancellationToken)

Deletes a data source connection.

DeleteDataSourceConnection(SearchIndexerDataSourceConnection, Boolean, CancellationToken)

Deletes a data source connection.

DeleteDataSourceConnection(String, MatchConditions, CancellationToken)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

Deletes a datasource.

public virtual Azure.Response DeleteDataSourceConnection(string dataSourceConnectionName, Azure.MatchConditions matchConditions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteDataSourceConnection : string * Azure.MatchConditions * System.Threading.CancellationToken -> Azure.Response
override this.DeleteDataSourceConnection : string * Azure.MatchConditions * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteDataSourceConnection (dataSourceConnectionName As String, Optional matchConditions As MatchConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

dataSourceConnectionName
String

The name of the datasource.

matchConditions
MatchConditions

The content to send as the request conditions of the request.

cancellationToken
CancellationToken

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

Returns

Exceptions

dataSourceConnectionName is null.

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

Service returned a non-success status code.

Applies to

DeleteDataSourceConnection(String, MatchConditions, RequestContext)

Source:
SearchIndexerClient.cs
Source:
SearchIndexerClient.cs

[Protocol Method] Deletes a datasource.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response DeleteDataSourceConnection(string dataSourceConnectionName, Azure.MatchConditions matchConditions, Azure.RequestContext context);
abstract member DeleteDataSourceConnection : string * Azure.MatchConditions * Azure.RequestContext -> Azure.Response
override this.DeleteDataSourceConnection : string * Azure.MatchConditions * Azure.RequestContext -> Azure.Response
Public Overridable Function DeleteDataSourceConnection (dataSourceConnectionName As String, matchConditions As MatchConditions, context As RequestContext) As Response

Parameters

dataSourceConnectionName
String

The name of the datasource.

matchConditions
MatchConditions

The content to send as the request conditions of the request.

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

dataSourceConnectionName is null.

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

Service returned a non-success status code.

Applies to

DeleteDataSourceConnection(String, CancellationToken)

Source:
SearchIndexerClient.DataSources.cs
Source:
SearchIndexerClient.DataSources.cs

Deletes a data source connection.

public virtual Azure.Response DeleteDataSourceConnection(string dataSourceConnectionName, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteDataSourceConnection : string * System.Threading.CancellationToken -> Azure.Response
override this.DeleteDataSourceConnection : string * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteDataSourceConnection (dataSourceConnectionName As String, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

dataSourceConnectionName
String

The name of the SearchIndexerDataSourceConnection to delete.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be canceled.

Returns

The Response from the server.

Exceptions

Thrown when dataSourceConnectionName is null.

Thrown when a failure is returned by the Search service.

Applies to

DeleteDataSourceConnection(SearchIndexerDataSourceConnection, Boolean, CancellationToken)

Source:
SearchIndexerClient.DataSources.cs
Source:
SearchIndexerClient.DataSources.cs

Deletes a data source connection.

public virtual Azure.Response DeleteDataSourceConnection(Azure.Search.Documents.Indexes.Models.SearchIndexerDataSourceConnection dataSourceConnection, bool onlyIfUnchanged = false, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteDataSourceConnection : Azure.Search.Documents.Indexes.Models.SearchIndexerDataSourceConnection * bool * System.Threading.CancellationToken -> Azure.Response
override this.DeleteDataSourceConnection : Azure.Search.Documents.Indexes.Models.SearchIndexerDataSourceConnection * bool * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteDataSourceConnection (dataSourceConnection As SearchIndexerDataSourceConnection, Optional onlyIfUnchanged As Boolean = false, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

onlyIfUnchanged
Boolean

True to throw a RequestFailedException if the ETag does not match the current service version; otherwise, the current service version will be overwritten.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be canceled.

Returns

The Response from the server.

Exceptions

Thrown when dataSourceConnection is null.

Thrown when a failure is returned by the Search service.

Applies to