Skip to main content

◆ dropBackup() [1/2]

DropBackupResponse kinetica.Kinetica.dropBackup (DropBackupRequestrequest_)
inline

Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name.

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

Definition at line 32654 of file KineticaFunctions.cs.

◆ dropBackup() [2/2]

DropBackupResponse kinetica.Kinetica.dropBackup (stringbackup_name,
stringdatasink_name,
IDictionary< string, string >options = null )
inline

Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name .

Parameters
backup_nameName of the backup to be deleted. An empty string or '' will delete all existing backups. Any text followed by a '' will delete backups whose name starts with that text. When deleting multiple backups, DELETE_ALL_BACKUPS must be set to TRUE.
datasink_nameData sink through which the backup is accessible.
optionsOptional parameters.The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 32771 of file KineticaFunctions.cs.

◆ DropBackupAsync() [1/2]

async System.Threading.Tasks.Task< DropBackupResponse > kinetica.Kinetica.DropBackupAsync (DropBackupRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name.

(async)

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 32675 of file KineticaFunctions.cs.

◆ DropBackupAsync() [2/2]

async System.Threading.Tasks.Task< DropBackupResponse > kinetica.Kinetica.DropBackupAsync (stringbackup_name,
stringdatasink_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasink_name .

(async)

Parameters
backup_nameName of the backup to be deleted. An empty string or '' will delete all existing backups. Any text followed by a '' will delete backups whose name starts with that text. When deleting multiple backups, DELETE_ALL_BACKUPS must be set to TRUE.
datasink_nameData sink through which the backup is accessible.
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 32868 of file KineticaFunctions.cs.