Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowDirectories.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 
26  public string directory_name { get; set; } = "";
27 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
36 
45  public ShowDirectoriesRequest( string directory_name = null,
46  IDictionary<string, string> options = null)
47  {
48  this.directory_name = directory_name ?? "";
49  this.options = options ?? new Dictionary<string, string>();
50  } // end constructor
51 
52  } // end class ShowDirectoriesRequest
53 
54 
55 
60  {
61 
63  public IList<string> directories { get; set; } = new List<string>();
64 
67  public IList<string> users { get; set; } = new List<string>();
68 
72  public IList<long> creation_times { get; set; } = new List<long>();
73 
76  public IList<long> data_usages { get; set; } = new List<long>();
77 
80  public IList<long> data_limits { get; set; } = new List<long>();
81 
87  public IList<string> permissions { get; set; } = new List<string>();
88 
90  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
91 
92  } // end class ShowDirectoriesResponse
93 
94 
95 
96 
97 } // end namespace kinetica
IList< string > users
User that created each directory for the respective directories in &lt;member name=&quot;directories&quot;&gt; ...
string directory_name
The KiFS directory name to show.
ShowDirectoriesRequest(string directory_name=null, IDictionary< string, string > options=null)
Constructs a ShowDirectoriesRequest object with the specified parameters.
A set of parameters for Kinetica.showDirectories(string,IDictionary{string, string}).
A set of results returned by Kinetica.showDirectories(string,IDictionary{string, string}).
ShowDirectoriesRequest()
Constructs a ShowDirectoriesRequest object with default parameters.
IList< long > data_limits
The data limit for each directory in bytes, for the respective directories in &lt;member name=&quot;directori...
IDictionary< string, string > options
Optional parameters.
IList< long > creation_times
The creation time for each directory in milliseconds since epoch, for the respective directories in &lt;...
IList< string > permissions
Highest level of permission the calling user has for the respective directories in &lt;member name=&quot;dire...
IList< string > directories
KiFS directory names
IList< long > data_usages
The data usage each directory in bytes, for the respective directories in &lt;member name=&quot;directories&quot;&gt;...
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14