Skip to main content

◆ dropDatasource() [1/2]

DropDatasourceResponse kinetica.Kinetica.dropDatasource (DropDatasourceRequestrequest_)
inline

Drops an existing data source.

Any external tables that depend on the data source must be dropped before it can be dropped.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 33211 of file KineticaFunctions.cs.

◆ dropDatasource() [2/2]

DropDatasourceResponse kinetica.Kinetica.dropDatasource (stringname,
IDictionary< string, string >options = null )
inline

Drops an existing data source.

Any external tables that depend on the data source must be dropped before it can be dropped.

Parameters
nameName of the data source to be dropped. Must be an existing data source.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 33248 of file KineticaFunctions.cs.

◆ DropDatasourceAsync() [1/2]

async System.Threading.Tasks.Task< DropDatasourceResponse > kinetica.Kinetica.DropDatasourceAsync (DropDatasourceRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Drops an existing data source.

(async)

Any external tables that depend on the data source must be dropped before it can be dropped.

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 33229 of file KineticaFunctions.cs.

◆ DropDatasourceAsync() [2/2]

async System.Threading.Tasks.Task< DropDatasourceResponse > kinetica.Kinetica.DropDatasourceAsync (stringname,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Drops an existing data source.

(async)

Any external tables that depend on the data source must be dropped before it can be dropped.

Parameters
nameName of the data source to be dropped. Must be an existing data source.
optionsOptional parameters. The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 33267 of file KineticaFunctions.cs.