Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
17  {
21  public struct Options
22  {
36  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
37 
38  public const string TRUE = "true";
39  public const string FALSE = "false";
40  } // end struct Options
41 
48  public IList<string> file_names { get; set; } = new List<string>();
49 
72  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
73 
76  public DeleteFilesRequest() { }
77 
109  public DeleteFilesRequest( IList<string> file_names,
110  IDictionary<string, string> options = null)
111  {
112  this.file_names = file_names ?? new List<string>();
113  this.options = options ?? new Dictionary<string, string>();
114  } // end constructor
115  } // end class DeleteFilesRequest
116 
121  {
123  public IList<string> file_names { get; set; } = new List<string>();
124 
126  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
127  } // end class DeleteFilesResponse
128 } // end namespace kinetica
const string NO_ERROR_IF_NOT_EXISTS
If TRUE, no error is returned if a specified file does not exist.
Definition: DeleteFiles.cs:36
A set of parameters for Kinetica.deleteFiles.
Definition: DeleteFiles.cs:16
DeleteFilesRequest()
Constructs a DeleteFilesRequest object with default parameters.
Definition: DeleteFiles.cs:76
DeleteFilesRequest(IList< string > file_names, IDictionary< string, string > options=null)
Constructs a DeleteFilesRequest object with the specified parameters.
Definition: DeleteFiles.cs:109
IList< string > file_names
An array of names of files to be deleted.
Definition: DeleteFiles.cs:48
IDictionary< string, string > info
Additional information.
Definition: DeleteFiles.cs:126
A set of string constants for the parameter options.
Definition: DeleteFiles.cs:21
IDictionary< string, string > options
Optional parameters.
Definition: DeleteFiles.cs:72
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.deleteFiles.
Definition: DeleteFiles.cs:120
IList< string > file_names
Names of the files deleted from KiFS
Definition: DeleteFiles.cs:123