Kinetica   C#   API  Version 7.2.3.1
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 
81  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
82 
85  public DeleteGraphRequest() { }
86 
122  IDictionary<string, string> options = null)
123  {
124  this.graph_name = graph_name ?? "";
125  this.options = options ?? new Dictionary<string, string>();
126  } // end constructor
127 } // end class DeleteGraphRequest
128 
133 {
135  public bool result { get; set; }
136 
138  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
139 } // end class DeleteGraphResponse
const string DELETE_PERSIST
If set to TRUE, the graph is removed from the server and persist.
Definition: DeleteGraph.cs:36
A set of parameters for Kinetica.deleteGraph.
Definition: DeleteGraph.cs:16
A set of string constants for the parameter options.
Definition: DeleteGraph.cs:21
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
IDictionary< string, string > info
Additional information.
Definition: DeleteGraph.cs:138
bool result
Indicates a successful deletion.
Definition: DeleteGraph.cs:135
DeleteGraphRequest()
Constructs a DeleteGraphRequest object with default parameters.
Definition: DeleteGraph.cs:85
string graph_name
Name of the graph to be deleted.
Definition: DeleteGraph.cs:49
DeleteGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a DeleteGraphRequest object with the specified parameters.
Definition: DeleteGraph.cs:121
IDictionary< string, string > options
Optional parameters.
Definition: DeleteGraph.cs:81
A set of results returned by Kinetica.deleteGraph.
Definition: DeleteGraph.cs:132