Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
kinetica.CreateDirectoryRequest Class Reference

A set of parameters for Kinetica.createDirectory(string,IDictionary{string, string}). More...

+ Inheritance diagram for kinetica.CreateDirectoryRequest:
+ Collaboration diagram for kinetica.CreateDirectoryRequest:

Classes

struct  Options
 Optional parameters. More...
 

Public Member Functions

 CreateDirectoryRequest ()
 Constructs a CreateDirectoryRequest object with default parameters. More...
 
 CreateDirectoryRequest (string directory_name, IDictionary< string, string > options=null)
 Constructs a CreateDirectoryRequest object with the specified parameters. More...
 
- Public Member Functions inherited from kinetica.KineticaData
 KineticaData (KineticaType type)
 Constructor from Kinetica Type More...
 
 KineticaData (System.Type type=null)
 Default constructor, with optional System.Type More...
 
object Get (int fieldPos)
 Retrieve a specific property from this object More...
 
void Put (int fieldPos, object fieldValue)
 Write a specific property to this object More...
 

Properties

string directory_name [get, set]
 Name of the directory in KiFS to be created. More...
 
IDictionary< string, string > options [get, set]
 Optional parameters. More...
 
- Properties inherited from kinetica.KineticaData
Schema Schema [get]
 Avro Schema for this class More...
 

Additional Inherited Members

- Static Public Member Functions inherited from kinetica.KineticaData
static RecordSchema SchemaFromType (System.Type t, KineticaType ktype=null)
 Create an Avro Schema from a System.Type and a KineticaType. More...
 

Detailed Description

A set of parameters for Kinetica.createDirectory(string,IDictionary{string, string}).


Creates a new directory in KiFS. The new directory serves as a location in which the user can upload files using Kinetica.uploadFiles(IList{string},IList{byte[]},IDictionary{string, string}).

Definition at line 24 of file CreateDirectory.cs.

Constructor & Destructor Documentation

kinetica.CreateDirectoryRequest.CreateDirectoryRequest ( )
inline

Constructs a CreateDirectoryRequest object with default parameters.

Definition at line 148 of file CreateDirectory.cs.

kinetica.CreateDirectoryRequest.CreateDirectoryRequest ( string  directory_name,
IDictionary< string, string >  options = null 
)
inline

Constructs a CreateDirectoryRequest object with the specified parameters.

Parameters
directory_nameName of the directory in KiFS to be created.
optionsOptional parameters.
  • CREATE_HOME_DIRECTORY: When set, a home directory is created for the user name provided in the value. The must be an empty string in this case. The user must exist.
  • DATA_LIMIT: The maximum capacity, in bytes, to apply to the created directory. Set to -1 to indicate no upper limit. If empty, the system default limit is applied.
  • NO_ERROR_IF_EXISTS: If true, does not return an error if the directory already exists Supported values: The default value is FALSE.
The default value is an empty Dictionary.

Definition at line 194 of file CreateDirectory.cs.

Property Documentation

string kinetica.CreateDirectoryRequest.directory_name
getset

Name of the directory in KiFS to be created.

Definition at line 103 of file CreateDirectory.cs.

IDictionary<string, string> kinetica.CreateDirectoryRequest.options
getset

Optional parameters.

  • CREATE_HOME_DIRECTORY: When set, a home directory is created for the user name provided in the value. The must be an empty string in this case. The user must exist.
  • DATA_LIMIT: The maximum capacity, in bytes, to apply to the created directory. Set to -1 to indicate no upper limit. If empty, the system default limit is applied.
  • NO_ERROR_IF_EXISTS: If true, does not return an error if the directory already exists Supported values: The default value is FALSE.

The default value is an empty Dictionary.

Definition at line 143 of file CreateDirectory.cs.


The documentation for this class was generated from the following file: