Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterGraph.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 
10 
11 namespace kinetica
12 {
19  public class AlterGraphRequest : KineticaData
20  {
21 
64  public struct Action
65  {
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";
75  } // end struct Action
76 
77 
89  public struct Options
90  {
91  public const string SERVER_ID = "server_id";
92  } // end struct Options
93 
94  public string graph_name { get; set; }
95 
136  public string action { get; set; }
137  public string action_arg { get; set; }
138 
148  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
149 
150 
153  public AlterGraphRequest() { }
154 
210  public AlterGraphRequest( string graph_name,
211  string action,
212  string action_arg,
213  IDictionary<string, string> options = null)
214  {
215  this.graph_name = graph_name ?? "";
216  this.action = action ?? "";
217  this.action_arg = action_arg ?? "";
218  this.options = options ?? new Dictionary<string, string>();
219  } // end constructor
220 
221  } // end class AlterGraphRequest
223 
224 
225 
230  public class AlterGraphResponse : KineticaData
231  {
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>();
235 
236  } // end class AlterGraphResponse
238 
239 
240 
241 
242 
243 } // end namespace kinetica