Kinetica   C#   API  Version 7.2.3.1
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 
22 {
26  public struct Options
27  {
42  public const string CLEAR_TABLE_MONITORS = "clear_table_monitors";
43 
44  public const string TRUE = "true";
45  public const string FALSE = "false";
46  } // end struct Options
47 
50  public string name { get; set; }
51 
75  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
76 
79  public DropDatasinkRequest() { }
80 
109  public DropDatasinkRequest( string name,
110  IDictionary<string, string> options = null)
111  {
112  this.name = name ?? "";
113  this.options = options ?? new Dictionary<string, string>();
114  } // end constructor
115 } // end class DropDatasinkRequest
116 
121 {
124  public string name { get; set; }
125 
127  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
128 } // end class DropDatasinkResponse
IDictionary< string, string > info
Additional information.
DropDatasinkRequest(string name, IDictionary< string, string > options=null)
Constructs a DropDatasinkRequest object with the specified parameters.
string name
Value of name.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.
Definition: DropDatasink.cs:75
A set of parameters for Kinetica.dropDatasink.
Definition: DropDatasink.cs:21
A set of results returned by Kinetica.dropDatasink.
DropDatasinkRequest()
Constructs a DropDatasinkRequest object with default parameters.
Definition: DropDatasink.cs:79
A set of string constants for the parameter options.
Definition: DropDatasink.cs:26
string name
Name of the data sink to be dropped.
Definition: DropDatasink.cs:50
const string CLEAR_TABLE_MONITORS
If TRUE, any table monitors that use this data sink will be cleared.
Definition: DropDatasink.cs:42