Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowFiles.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 
22  {
23 
31  public IList<string> paths { get; set; } = new List<string>();
32 
35  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
36 
37 
40  public ShowFilesRequest() { }
41 
54  public ShowFilesRequest( IList<string> paths,
55  IDictionary<string, string> options = null)
56  {
57  this.paths = paths ?? new List<string>();
58  this.options = options ?? new Dictionary<string, string>();
59  } // end constructor
60 
61  } // end class ShowFilesRequest
62 
63 
64 
69  {
70 
83  public struct Info
84  {
85 
88  public const string MULTIPART_UPLOADS = "multipart_uploads";
89  } // end struct Info
90 
91 
93  public IList<string> file_names { get; set; } = new List<string>();
94 
96  public IList<long> sizes { get; set; } = new List<long>();
97 
99  public IList<string> users { get; set; } = new List<string>();
100 
103  public IList<long> creation_times { get; set; } = new List<long>();
104 
115  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
116 
117  } // end class ShowFilesResponse
118 
119 
120 
121 
122 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
Definition: ShowFiles.cs:115
A set of parameters for Kinetica.showFiles(IList{string},IDictionary{string, string}).
Definition: ShowFiles.cs:21
Additional information.
Definition: ShowFiles.cs:83
ShowFilesRequest()
Constructs a ShowFilesRequest object with default parameters.
Definition: ShowFiles.cs:40
IList< long > creation_times
Creation time for each file, in milliseconds since epoch
Definition: ShowFiles.cs:103
IList< string > users
User that created the file
Definition: ShowFiles.cs:99
IDictionary< string, string > options
Optional parameters.
Definition: ShowFiles.cs:35
IList< long > sizes
Size of each file, in bytes
Definition: ShowFiles.cs:96
IList< string > file_names
A listing of files in the paths specified
Definition: ShowFiles.cs:93
ShowFilesRequest(IList< string > paths, IDictionary< string, string > options=null)
Constructs a ShowFilesRequest object with the specified parameters.
Definition: ShowFiles.cs:54
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string MULTIPART_UPLOADS
JSON-encoded information about multipart uploads in progress
Definition: ShowFiles.cs:88
A set of results returned by Kinetica.showFiles(IList{string},IDictionary{string, string})...
Definition: ShowFiles.cs:68
IList< string > paths
File paths to show.
Definition: ShowFiles.cs:31