Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DeleteFiles.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 
48  public struct Options
49  {
50 
66  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
67  public const string TRUE = "true";
68  public const string FALSE = "false";
69  } // end struct Options
70 
71 
78  public IList<string> file_names { get; set; } = new List<string>();
79 
103  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
104 
105 
108  public DeleteFilesRequest() { }
109 
143  public DeleteFilesRequest( IList<string> file_names,
144  IDictionary<string, string> options = null)
145  {
146  this.file_names = file_names ?? new List<string>();
147  this.options = options ?? new Dictionary<string, string>();
148  } // end constructor
149 
150  } // end class DeleteFilesRequest
151 
152 
153 
158  {
159 
161  public IList<string> file_names { get; set; } = new List<string>();
162 
164  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
165 
166  } // end class DeleteFilesResponse
167 
168 
169 
170 
171 } // end namespace kinetica
const string NO_ERROR_IF_NOT_EXISTS
If true, no error is returned if a specified file does not exist Supported values: TRUE FALSE The d...
Definition: DeleteFiles.cs:66
A set of parameters for Kinetica.deleteFiles(IList{string},IDictionary{string, string}).
Definition: DeleteFiles.cs:20
DeleteFilesRequest()
Constructs a DeleteFilesRequest object with default parameters.
Definition: DeleteFiles.cs:108
DeleteFilesRequest(IList< string > file_names, IDictionary< string, string > options=null)
Constructs a DeleteFilesRequest object with the specified parameters.
Definition: DeleteFiles.cs:143
IList< string > file_names
An array of names of files to be deleted.
Definition: DeleteFiles.cs:78
IDictionary< string, string > info
Additional information.
Definition: DeleteFiles.cs:164
IDictionary< string, string > options
Optional parameters.
Definition: DeleteFiles.cs:103
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.deleteFiles(IList{string},IDictionary{string, string}).
Definition: DeleteFiles.cs:157
IList< string > file_names
Names of the files deleted from KiFS
Definition: DeleteFiles.cs:161