Kinetica C# API  Version 7.0.19.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 
50  public struct Options
51  {
52 
71  public const string DELETE_PERSIST = "delete_persist";
72  public const string TRUE = "true";
73  public const string FALSE = "false";
74  } // end struct Options
75 
76 
78  public string graph_name { get; set; }
79 
106  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
107 
108 
111  public DeleteGraphRequest() { }
112 
145  IDictionary<string, string> options = null)
146  {
147  this.graph_name = graph_name ?? "";
148  this.options = options ?? new Dictionary<string, string>();
149  } // end constructor
150 
151  } // end class DeleteGraphRequest
152 
153 
154 
159  {
160 
162  public bool result { get; set; }
163 
165  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
166 
167  } // end class DeleteGraphResponse
168 
169 
170 
171 
172 } // end namespace kinetica
const string DELETE_PERSIST
If set to true, the graph is removed from the server and persist.
Definition: DeleteGraph.cs:71
bool result
Indicates a successful deletion.
Definition: DeleteGraph.cs:162
DeleteGraphRequest()
Constructs a DeleteGraphRequest object with default parameters.
Definition: DeleteGraph.cs:111
IDictionary< string, string > options
Optional parameters.
Definition: DeleteGraph.cs:106
DeleteGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a DeleteGraphRequest object with the specified parameters.
Definition: DeleteGraph.cs:144
string graph_name
Name of the graph to be deleted.
Definition: DeleteGraph.cs:78
IDictionary< string, string > info
Additional information.
Definition: DeleteGraph.cs:165
A set of results returned by Kinetica.deleteGraph(string,IDictionary{string, string}).
Definition: DeleteGraph.cs:158
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