Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
19  {
27  public IList<string> paths { get; set; } = new List<string>();
28 
32  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
33 
36  public ShowFilesRequest() { }
37 
49  public ShowFilesRequest( IList<string> paths,
50  IDictionary<string, string> options = null)
51  {
52  this.paths = paths ?? new List<string>();
53  this.options = options ?? new Dictionary<string, string>();
54  } // end constructor
55  } // end class ShowFilesRequest
56 
61  {
65  public struct Info
66  {
69  public const string MULTIPART_UPLOADS = "multipart_uploads";
70  } // end struct Info
71 
73  public IList<string> file_names { get; set; } = new List<string>();
74 
76  public IList<long> sizes { get; set; } = new List<long>();
77 
79  public IList<string> users { get; set; } = new List<string>();
80 
83  public IList<long> creation_times { get; set; } = new List<long>();
84 
95  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
96  } // end class ShowFilesResponse
97 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
Definition: ShowFiles.cs:95
A set of parameters for Kinetica.showFiles.
Definition: ShowFiles.cs:18
A set of string constants for the parameter info.
Definition: ShowFiles.cs:65
ShowFilesRequest()
Constructs a ShowFilesRequest object with default parameters.
Definition: ShowFiles.cs:36
IList< long > creation_times
Creation time for each file, in milliseconds since epoch
Definition: ShowFiles.cs:83
IList< string > users
User that created the file
Definition: ShowFiles.cs:79
IDictionary< string, string > options
Optional parameters.
Definition: ShowFiles.cs:32
IList< long > sizes
Size of each file, in bytes
Definition: ShowFiles.cs:76
IList< string > file_names
A listing of files in the paths specified
Definition: ShowFiles.cs:73
ShowFilesRequest(IList< string > paths, IDictionary< string, string > options=null)
Constructs a ShowFilesRequest object with the specified parameters.
Definition: ShowFiles.cs:49
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:69
A set of results returned by Kinetica.showFiles.
Definition: ShowFiles.cs:60
IList< string > paths
File paths to show.
Definition: ShowFiles.cs:27