Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
17  {
21  public struct Options
22  {
36  public const string DELETE_PERSIST = "delete_persist";
37 
38  public const string TRUE = "true";
39  public const string FALSE = "false";
40 
45  public const string SERVER_ID = "server_id";
46  } // end struct Options
47 
49  public string graph_name { get; set; }
50 
82  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
83 
86  public DeleteGraphRequest() { }
87 
124  IDictionary<string, string> options = null)
125  {
126  this.graph_name = graph_name ?? "";
127  this.options = options ?? new Dictionary<string, string>();
128  } // end constructor
129  } // end class DeleteGraphRequest
130 
135  {
137  public bool result { get; set; }
138 
140  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
141  } // end class DeleteGraphResponse
142 } // end namespace kinetica
const string DELETE_PERSIST
If set to TRUE, the graph is removed from the server and persist.
Definition: DeleteGraph.cs:36
bool result
Indicates a successful deletion.
Definition: DeleteGraph.cs:137
DeleteGraphRequest()
Constructs a DeleteGraphRequest object with default parameters.
Definition: DeleteGraph.cs:86
IDictionary< string, string > options
Optional parameters.
Definition: DeleteGraph.cs:82
DeleteGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a DeleteGraphRequest object with the specified parameters.
Definition: DeleteGraph.cs:123
string graph_name
Name of the graph to be deleted.
Definition: DeleteGraph.cs:49
A set of string constants for the parameter options.
Definition: DeleteGraph.cs:21
IDictionary< string, string > info
Additional information.
Definition: DeleteGraph.cs:140
A set of results returned by Kinetica.deleteGraph.
Definition: DeleteGraph.cs:134
const string SERVER_ID
Indicates which graph server(s) to send the request to.
Definition: DeleteGraph.cs:45
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.deleteGraph.
Definition: DeleteGraph.cs:16