Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
17  {
21  public struct Options
22  {
36  public const string RECURSIVE = "recursive";
37 
38  public const string TRUE = "true";
39  public const string FALSE = "false";
40 
54  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
55  } // end struct Options
56 
61  public string directory_name { get; set; }
62 
102  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
103 
107 
155  IDictionary<string, string> options = null)
156  {
157  this.directory_name = directory_name ?? "";
158  this.options = options ?? new Dictionary<string, string>();
159  } // end constructor
160  } // end class DeleteDirectoryRequest
161 
166  {
170  public string directory_name { get; set; }
171 
173  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
174  } // end class DeleteDirectoryResponse
175 } // end namespace kinetica
A set of results returned by Kinetica.deleteDirectory.
A set of string constants for the parameter options.
const string RECURSIVE
If TRUE, will delete directory and all files residing in it.
string directory_name
Value of directory_name.
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.
A set of parameters for Kinetica.deleteDirectory.
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.