Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminDeleteNode.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 
19  {
20 
23 
26  public int rank { get; set; }
27 
30  public string authorization { get; set; }
31 
34  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
35 
36 
41 
51  string authorization,
52  IDictionary<string, string> options = null)
53  {
54  this.rank = rank;
55  this.authorization = authorization ?? "";
56  this.options = options ?? new Dictionary<string, string>();
57  } // end constructor
58 
59 
62  } // end class AdminDeleteNodeRequest
63 
64 
65 
69  {
70 
73 
76  public int rank { get; set; }
77 
80  public IList<string> message { get; set; } = new List<string>();
81 
82 
85  } // end class AdminDeleteNodeResponse
86 
87 
88 
89 
90 } // end namespace kinetica
AdminDeleteNodeRequest(int rank, string authorization, IDictionary< string, string > options=null)
Constructs an AdminDeleteNodeRequest object with the specified parameters.
IDictionary< string, string > options
A set of results returned by /admin/delete/node.
AdminDeleteNodeRequest()
Constructs an AdminDeleteNodeRequest object with default parameters.
A set of parameters for /admin/delete/node.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14