Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DeleteGraph.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 
20  {
21 
57  public struct Options
58  {
59 
78  public const string DELETE_PERSIST = "delete_persist";
79  public const string TRUE = "true";
80  public const string FALSE = "false";
81 
85  public const string SERVER_ID = "server_id";
86  } // end struct Options
87 
88 
90  public string graph_name { get; set; }
91 
125  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
126 
127 
130  public DeleteGraphRequest() { }
131 
171  IDictionary<string, string> options = null)
172  {
173  this.graph_name = graph_name ?? "";
174  this.options = options ?? new Dictionary<string, string>();
175  } // end constructor
176 
177  } // end class DeleteGraphRequest
178 
179 
180 
185  {
186 
188  public bool result { get; set; }
189 
191  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
192 
193  } // end class DeleteGraphResponse
194 
195 
196 
197 
198 } // end namespace kinetica
const string DELETE_PERSIST
If set to true, the graph is removed from the server and persist.
Definition: DeleteGraph.cs:78
bool result
Indicates a successful deletion.
Definition: DeleteGraph.cs:188
DeleteGraphRequest()
Constructs a DeleteGraphRequest object with default parameters.
Definition: DeleteGraph.cs:130
IDictionary< string, string > options
Optional parameters.
Definition: DeleteGraph.cs:125
DeleteGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a DeleteGraphRequest object with the specified parameters.
Definition: DeleteGraph.cs:170
string graph_name
Name of the graph to be deleted.
Definition: DeleteGraph.cs:90
IDictionary< string, string > info
Additional information.
Definition: DeleteGraph.cs:191
A set of results returned by Kinetica.deleteGraph(string,IDictionary{string, string}).
Definition: DeleteGraph.cs:184
const string SERVER_ID
Indicates which graph server(s) to send the request to.
Definition: DeleteGraph.cs:85
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.deleteGraph(string,IDictionary{string, string}). ...
Definition: DeleteGraph.cs:19