Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DeleteDirectory.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 
21  {
22 
68  public struct Options
69  {
70 
86  public const string RECURSIVE = "recursive";
87  public const string TRUE = "true";
88  public const string FALSE = "false";
89 
105  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
106  } // end struct Options
107 
108 
112  public string directory_name { get; set; }
113 
157  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
158 
159 
163 
215  IDictionary<string, string> options = null)
216  {
217  this.directory_name = directory_name ?? "";
218  this.options = options ?? new Dictionary<string, string>();
219  } // end constructor
220 
221  } // end class DeleteDirectoryRequest
222 
223 
224 
229  {
230 
233  public string directory_name { get; set; }
234 
236  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
237 
238  } // end class DeleteDirectoryResponse
239 
240 
241 
242 
243 } // end namespace kinetica
A set of results returned by Kinetica.deleteDirectory(string,IDictionary{string, string}).
const string RECURSIVE
If true, will delete directory and all files residing in it.
DeleteDirectoryRequest(string directory_name, IDictionary< string, string > options=null)
Constructs a DeleteDirectoryRequest object with the specified parameters.
const string NO_ERROR_IF_NOT_EXISTS
If true, no error is returned if specified directory does not exist Supported values: TRUE FALSE Th...
A set of parameters for Kinetica.deleteDirectory(string,IDictionary{string, string}).
string directory_name
Name of the directory in KiFS to be deleted.
IDictionary< string, string > options
Optional parameters.
DeleteDirectoryRequest()
Constructs a DeleteDirectoryRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.