Kinetica   C#   API  Version 7.2.3.1
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 
16 {
20  public struct Options
21  {
35  public const string SHOW_SETTINGS = "show_settings";
36 
37  public const string TRUE = "true";
38  public const string FALSE = "false";
39  } // end struct Options
40 
43  public IList<string> table_names { get; set; } = new List<string>();
44 
66  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
67 
70  public ShowWalRequest() { }
71 
98  public ShowWalRequest( IList<string> table_names,
99  IDictionary<string, string> options = null)
100  {
101  this.table_names = table_names ?? new List<string>();
102  this.options = options ?? new Dictionary<string, string>();
103  } // end constructor
104 } // end class ShowWalRequest
105 
109 {
111  public IList<string> table_names { get; set; } = new List<string>();
112 
114  public IList<IList<long>> sizes { get; set; } = new List<IList<long>>();
115 
117  public IList<long> capacities { get; set; } = new List<long>();
118 
120  public IList<IList<long>> uncommitted { get; set; } = new List<IList<long>>();
121 
123  public IList<IDictionary<string, string>> settings { get; set; } = new List<IDictionary<string, string>>();
124 
126  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
127 } // end class ShowWalResponse
const string FALSE
Definition: ShowWal.cs:38
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > table_names
List of tables to query.
Definition: ShowWal.cs:43
IDictionary< string, string > options
Optional parameters.
Definition: ShowWal.cs:66
IList< IList< long > > sizes
List of current WAL usage.
Definition: ShowWal.cs:114
IDictionary< string, string > info
Additional information.
Definition: ShowWal.cs:126
const string SHOW_SETTINGS
If TRUE include a map of the WAL settings for the requested tables.
Definition: ShowWal.cs:35
A set of string constants for the parameter options.
Definition: ShowWal.cs:20
IList< long > capacities
List of WAL capacities.
Definition: ShowWal.cs:117
A set of parameters for Kinetica.showWal.
Definition: ShowWal.cs:15
const string TRUE
Definition: ShowWal.cs:37
IList< IDictionary< string, string > > settings
List of table WAL settings.
Definition: ShowWal.cs:123
IList< IList< long > > uncommitted
List of number of uncommitted entries.
Definition: ShowWal.cs:120
IList< string > table_names
List of returned tables.
Definition: ShowWal.cs:111
ShowWalRequest()
Constructs a ShowWalRequest object with default parameters.
Definition: ShowWal.cs:70
A set of results returned by Kinetica.showWal.
Definition: ShowWal.cs:108
ShowWalRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a ShowWalRequest object with the specified parameters.
Definition: ShowWal.cs:98