Skip to main content

◆ alterDirectory() [1/2]

AlterDirectoryResponse kinetica.Kinetica.alterDirectory (AlterDirectoryRequestrequest_)
inline

Alters an existing directory in KiFS.

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

Definition at line 10405 of file KineticaFunctions.cs.

◆ alterDirectory() [2/2]

AlterDirectoryResponse kinetica.Kinetica.alterDirectory (stringdirectory_name,
IDictionary< string, string >directory_updates_map,
IDictionary< string, string >options = null )
inline

Alters an existing directory in KiFS.

Parameters
directory_nameName of the directory in KiFS to be altered.
directory_updates_mapMap containing the properties of the directory to be altered. Error if empty.
  • DATA_LIMIT: The maximum capacity, in bytes, to apply to the directory. Set to -1 to indicate no upper limit.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 10449 of file KineticaFunctions.cs.

◆ AlterDirectoryAsync() [1/2]

async System.Threading.Tasks.Task< AlterDirectoryResponse > kinetica.Kinetica.AlterDirectoryAsync (AlterDirectoryRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Alters an existing directory in KiFS.

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

◆ AlterDirectoryAsync() [2/2]

async System.Threading.Tasks.Task< AlterDirectoryResponse > kinetica.Kinetica.AlterDirectoryAsync (stringdirectory_name,
IDictionary< string, string >directory_updates_map,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Alters an existing directory in KiFS.

(async)

Parameters
directory_nameName of the directory in KiFS to be altered.
directory_updates_mapMap containing the properties of the directory to be altered. Error if empty.
  • DATA_LIMIT: The maximum capacity, in bytes, to apply to the directory. Set to -1 to indicate no upper limit.
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 10479 of file KineticaFunctions.cs.