Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
22  public class RepartitionGraphRequest : KineticaData
23  {
27  public struct Options
28  {
36  public const string NEW_GRAPH_NAME = "new_graph_name";
37 
46  public const string SOURCE_NODE = "source_node";
47  } // end struct Options
48 
50  public string graph_name { get; set; }
51 
77  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
78 
82 
114  IDictionary<string, string> options = null)
115  {
116  this.graph_name = graph_name ?? "";
117  this.options = options ?? new Dictionary<string, string>();
118  } // end constructor
119  } // end class RepartitionGraphRequest
120 
124  public class RepartitionGraphResponse : KineticaData
125  {
128  public bool result { get; set; }
129 
131  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
132  } // end class RepartitionGraphResponse
133 } // end namespace kinetica
string graph_name
Name of the graph resource to rebalance.
RepartitionGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a RepartitionGraphRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
bool result
Indicates a successful rebalancing on all servers.
RepartitionGraphRequest()
Constructs a RepartitionGraphRequest object with default parameters.
IDictionary< string, string > info
Additional information.
const string SOURCE_NODE
The distributed shortest path solve is run from this source node to all the nodes in the graph to cre...
const string NEW_GRAPH_NAME
If a non-empty value is specified, the original graph will be kept (non-default behavior) and a new b...