7 using System.Collections.Generic;
19 public class AlterGraphRequest : KineticaData
66 public const string ADD_TABLE_MONITOR =
"add_table_monitor";
67 public const string RESET_CLIENT =
"reset_client";
68 public const string RESET_SERVER =
"reset_server";
69 public const string CANCEL_TASK =
"cancel_task";
70 public const string ALTER_LOGGER =
"alter_logger";
71 public const string DELETE_ALL =
"delete_all";
72 public const string STATUS =
"status";
73 public const string COLLECT_GRAPHS =
"collect_graphs";
74 public const string RESTORE_GRAPHS =
"restore_graphs";
91 public const string SERVER_ID =
"server_id";
94 public string graph_name {
get; set; }
136 public string action {
get; set; }
137 public string action_arg {
get; set; }
148 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
153 public AlterGraphRequest() { }
210 public AlterGraphRequest(
string graph_name,
213 IDictionary<string, string> options = null)
215 this.graph_name = graph_name ??
"";
216 this.action = action ??
"";
217 this.action_arg = action_arg ??
"";
218 this.options = options ??
new Dictionary<string, string>();
230 public class AlterGraphResponse : KineticaData
232 public string action {
get; set; }
233 public string action_arg {
get; set; }
234 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();