Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
18  {
22  public string directory_name { get; set; } = "";
23 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
32 
40  public ShowDirectoriesRequest( string directory_name = null,
41  IDictionary<string, string> options = null)
42  {
43  this.directory_name = directory_name ?? "";
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46  } // end class ShowDirectoriesRequest
47 
52  {
54  public IList<string> directories { get; set; } = new List<string>();
55 
58  public IList<string> users { get; set; } = new List<string>();
59 
63  public IList<long> creation_times { get; set; } = new List<long>();
64 
67  public IList<long> data_usages { get; set; } = new List<long>();
68 
71  public IList<long> data_limits { get; set; } = new List<long>();
72 
78  public IList<string> permissions { get; set; } = new List<string>();
79 
81  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
82  } // end class ShowDirectoriesResponse
83 } // end namespace kinetica
IList< string > users
User that created each directory for the respective directories in directories
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.
A set of results returned by Kinetica.showDirectories.
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 directories
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 d...
IList< string > permissions
Highest level of permission the calling user has for the respective directories in directories.
IList< string > directories
KiFS directory names
IList< long > data_usages
The data usage each directory in bytes, for the respective directories in directories
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14