Kinetica C# API  Version 7.1.10.0
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
RepartitionGraph.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 {
13 
30  {
31 
67  public struct Options
68  {
69 
78  public const string NEW_GRAPH_NAME = "new_graph_name";
79 
88  public const string SOURCE_NODE = "source_node";
89 
91  public const string SQL_REQUEST_AVRO_JSON = "sql_request_avro_json";
92  } // end struct Options
93 
94 
96  public string graph_name { get; set; }
97 
131  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
132 
133 
137 
178  IDictionary<string, string> options = null)
179  {
180  this.graph_name = graph_name ?? "";
181  this.options = options ?? new Dictionary<string, string>();
182  } // end constructor
183 
184  } // end class RepartitionGraphRequest
185 
186 
187 
192  {
193 
196  public bool result { get; set; }
197 
199  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
200 
201  } // end class RepartitionGraphResponse
202 
203 
204 
205 
206 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
RepartitionGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a RepartitionGraphRequest object with the specified parameters.
const string NEW_GRAPH_NAME
If a non-empty value is specified, the original graph will be kept (non-default behaviour) and a new ...
IDictionary< string, string > info
Additional information.
A set of results returned by Kinetica.repartitionGraph(string,IDictionary{string, string})...
RepartitionGraphRequest()
Constructs a RepartitionGraphRequest object with default parameters.
const string SOURCE_NODE
The distributed shortest path solve is run from this source node to all the nodes in the graph to cre...
bool result
Indicates a successful rebalancing on all servers.
A set of parameters for Kinetica.repartitionGraph(string,IDictionary{string, string}).
const string SQL_REQUEST_AVRO_JSON
The default value is &#39;&#39;.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string graph_name
Name of the graph resource to rebalance.