Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
23  {
27  public struct Options
28  {
43  public const string CLEAR_TABLE_MONITORS = "clear_table_monitors";
44 
45  public const string TRUE = "true";
46  public const string FALSE = "false";
47  } // end struct Options
48 
51  public string name { get; set; }
52 
77  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
78 
81  public DropDatasinkRequest() { }
82 
112  public DropDatasinkRequest( string name,
113  IDictionary<string, string> options = null)
114  {
115  this.name = name ?? "";
116  this.options = options ?? new Dictionary<string, string>();
117  } // end constructor
118  } // end class DropDatasinkRequest
119 
124  {
127  public string name { get; set; }
128 
130  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
131  } // end class DropDatasinkResponse
132 } // end namespace kinetica
A set of parameters for Kinetica.dropDatasink.
Definition: DropDatasink.cs:22
string name
Value of name.
DropDatasinkRequest()
Constructs a DropDatasinkRequest object with default parameters.
Definition: DropDatasink.cs:81
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:43
A set of string constants for the parameter options.
Definition: DropDatasink.cs:27
string name
Name of the data sink to be dropped.
Definition: DropDatasink.cs:51
A set of results returned by Kinetica.dropDatasink.
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.
Definition: DropDatasink.cs:77