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 {
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 
49  public const string SQL_REQUEST_AVRO_JSON = "sql_request_avro_json";
50  } // end struct Options
51 
53  public string graph_name { get; set; }
54 
86  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
87 
91 
129  IDictionary<string, string> options = null)
130  {
131  this.graph_name = graph_name ?? "";
132  this.options = options ?? new Dictionary<string, string>();
133  } // end constructor
134  } // end class RepartitionGraphRequest
135 
140  {
143  public bool result { get; set; }
144 
146  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
147  } // end class RepartitionGraphResponse
148 } // 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.
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.
A set of string constants for the parameter options.
const string SQL_REQUEST_AVRO_JSON
The default value is ''.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string graph_name
Name of the graph resource to rebalance.