7 using System.Collections.Generic;
17 public class ShowWalRequest : KineticaData
39 public const string TRUE =
"true";
40 public const string FALSE =
"false";
45 public IList<string>
table_names {
get;
set; } =
new List<string>();
68 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
101 IDictionary<string, string>
options =
null)
103 this.table_names =
table_names ??
new List<string>();
111 public class ShowWalResponse : KineticaData
114 public IList<string>
table_names {
get;
set; } =
new List<string>();
117 public IList<IList<long>>
sizes {
get;
set; } =
new List<IList<long>>();
120 public IList<long>
capacities {
get;
set; } =
new List<long>();
123 public IList<IList<long>>
uncommitted {
get;
set; } =
new List<IList<long>>();
126 public IList<IDictionary<string, string>>
settings {
get;
set; } =
new List<IDictionary<string, string>>();
129 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IDictionary< string, string > info
Additional information.
IList< IList< long > > uncommitted
List of number of uncommitted entries.
IList< string > table_names
List of returned tables.
const string SHOW_SETTINGS
If TRUE include a map of the WAL settings for the requested tables.
ShowWalRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a ShowWalRequest object with the specified parameters.
IList< string > table_names
List of tables to query.
IList< IDictionary< string, string > > settings
List of table WAL settings.
ShowWalRequest()
Constructs a ShowWalRequest object with default parameters.
IList< long > capacities
List of WAL capacities.
IDictionary< string, string > options
Optional parameters.
IList< IList< long > > sizes
List of current WAL usage.