Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DropDatasink.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 
26  {
27 
54  public struct Options
55  {
56 
73  public const string CLEAR_TABLE_MONITORS = "clear_table_monitors";
74  public const string TRUE = "true";
75  public const string FALSE = "false";
76  } // end struct Options
77 
78 
81  public string name { get; set; }
82 
107  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
108 
109 
112  public DropDatasinkRequest() { }
113 
144  public DropDatasinkRequest( string name,
145  IDictionary<string, string> options = null)
146  {
147  this.name = name ?? "";
148  this.options = options ?? new Dictionary<string, string>();
149  } // end constructor
150 
151  } // end class DropDatasinkRequest
152 
153 
154 
159  {
160 
163  public string name { get; set; }
164 
166  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
167 
168  } // end class DropDatasinkResponse
169 
170 
171 
172 
173 } // end namespace kinetica
A set of parameters for Kinetica.dropDatasink(string,IDictionary{string, string}).
Definition: DropDatasink.cs:25
DropDatasinkRequest()
Constructs a DropDatasinkRequest object with default parameters.
DropDatasinkRequest(string name, IDictionary< string, string > options=null)
Constructs a DropDatasinkRequest object with the specified parameters.
const string CLEAR_TABLE_MONITORS
If true, any table monitors that use this data sink will be cleared.
Definition: DropDatasink.cs:73
string name
Name of the data sink to be dropped.
Definition: DropDatasink.cs:81
A set of results returned by Kinetica.dropDatasink(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.