Kinetica   C#   API  Version 7.2.3.0
ShowWal.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 struct Options
23  {
37  public const string SHOW_SETTINGS = "show_settings";
38 
39  public const string TRUE = "true";
40  public const string FALSE = "false";
41  } // end struct Options
42 
45  public IList<string> table_names { get; set; } = new List<string>();
46 
68  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
69 
72  public ShowWalRequest() { }
73 
100  public ShowWalRequest( IList<string> table_names,
101  IDictionary<string, string> options = null)
102  {
103  this.table_names = table_names ?? new List<string>();
104  this.options = options ?? new Dictionary<string, string>();
105  } // end constructor
106  } // end class ShowWalRequest
107 
112  {
114  public IList<string> table_names { get; set; } = new List<string>();
115 
117  public IList<IList<long>> sizes { get; set; } = new List<IList<long>>();
118 
120  public IList<long> capacities { get; set; } = new List<long>();
121 
123  public IList<IList<long>> uncommitted { get; set; } = new List<IList<long>>();
124 
126  public IList<IDictionary<string, string>> settings { get; set; } = new List<IDictionary<string, string>>();
127 
129  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
130  } // end class ShowWalResponse
131 } // end namespace kinetica
IList< string > table_names
List of returned tables.
Definition: ShowWal.cs:114
A set of string constants for the parameter options.
Definition: ShowWal.cs:22
IList< IList< long > > sizes
List of current wal usage.
Definition: ShowWal.cs:117
IList< IDictionary< string, string > > settings
List of table wal settings.
Definition: ShowWal.cs:126
IList< IList< long > > uncommitted
List of number of uncommitted entries.
Definition: ShowWal.cs:123
ShowWalRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a ShowWalRequest object with the specified parameters.
Definition: ShowWal.cs:100
IList< string > table_names
List of tables to query.
Definition: ShowWal.cs:45
IList< long > capacities
List of wal capacities.
Definition: ShowWal.cs:120
IDictionary< string, string > info
Additional information.
Definition: ShowWal.cs:129
IDictionary< string, string > options
Optional parameters.
Definition: ShowWal.cs:68
const string SHOW_SETTINGS
If TRUE include a map of the wal settings for the requested tables.
Definition: ShowWal.cs:37
ShowWalRequest()
Constructs a ShowWalRequest object with default parameters.
Definition: ShowWal.cs:72
A set of results returned by Kinetica.showWal.
Definition: ShowWal.cs:111
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.showWal.
Definition: ShowWal.cs:17