Kinetica   C#   API  Version 7.2.3.1
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 
23 {
27  public struct Options
28  {
35  public const string NEW_GRAPH_NAME = "new_graph_name";
36 
44  public const string SOURCE_NODE = "source_node";
45  } // end struct Options
46 
48  public string graph_name { get; set; }
49 
74  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
75 
79 
110  IDictionary<string, string> options = null)
111  {
112  this.graph_name = graph_name ?? "";
113  this.options = options ?? new Dictionary<string, string>();
114  } // end constructor
115 } // end class RepartitionGraphRequest
116 
121 {
123  public bool result { get; set; }
124 
126  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
127 } // end class RepartitionGraphResponse
A set of parameters for Kinetica.repartitionGraph.
IDictionary< string, string > info
Additional information.
A set of results returned by Kinetica.repartitionGraph.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
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...
RepartitionGraphRequest()
Constructs a RepartitionGraphRequest object with default parameters.
bool result
Indicates a successful rebalancing on all servers.
RepartitionGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a RepartitionGraphRequest object with the specified 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...
string graph_name
Name of the graph resource to rebalance.
A set of string constants for the parameter options.