Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateDirectory.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
25  {
26 
67  public struct Options
68  {
69 
74  public const string CREATE_HOME_DIRECTORY = "create_home_directory";
75 
79  public const string DATA_LIMIT = "data_limit";
80 
96  public const string NO_ERROR_IF_EXISTS = "no_error_if_exists";
97  public const string TRUE = "true";
98  public const string FALSE = "false";
99  } // end struct Options
100 
101 
103  public string directory_name { get; set; }
104 
143  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
144 
145 
149 
195  IDictionary<string, string> options = null)
196  {
197  this.directory_name = directory_name ?? "";
198  this.options = options ?? new Dictionary<string, string>();
199  } // end constructor
200 
201  } // end class CreateDirectoryRequest
202 
203 
204 
209  {
210 
213  public string directory_name { get; set; }
214 
216  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
217 
218  } // end class CreateDirectoryResponse
219 
220 
221 
222 
223 } // end namespace kinetica
const string NO_ERROR_IF_EXISTS
If true, does not return an error if the directory already exists Supported values: TRUE FALSE The ...
const string DATA_LIMIT
The maximum capacity, in bytes, to apply to the created directory.
const string CREATE_HOME_DIRECTORY
When set, a home directory is created for the user name provided in the value.
CreateDirectoryRequest()
Constructs a CreateDirectoryRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.createDirectory(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.createDirectory(string,IDictionary{string, string}).
string directory_name
Name of the directory in KiFS to be created.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
CreateDirectoryRequest(string directory_name, IDictionary< string, string > options=null)
Constructs a CreateDirectoryRequest object with the specified parameters.