Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowDatasink.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 
21  {
22 
27  public string name { get; set; }
28 
31  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
32 
33 
36  public ShowDatasinkRequest() { }
37 
48  public ShowDatasinkRequest( string name,
49  IDictionary<string, string> options = null)
50  {
51  this.name = name ?? "";
52  this.options = options ?? new Dictionary<string, string>();
53  } // end constructor
54 
55  } // end class ShowDatasinkRequest
56 
57 
58 
63  {
64 
72  public struct AdditionalInfo
73  {
74 
77  public const string DESTINATION = "destination";
78 
81  public const string KAFKA_TOPIC_NAME = "kafka_topic_name";
82 
84  public const string USER_NAME = "user_name";
85  } // end struct AdditionalInfo
86 
87 
89  public IList<string> datasink_names { get; set; } = new List<string>();
90 
93  public IList<string> destination_types { get; set; } = new List<string>();
94 
100  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
101 
103  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
104 
105  } // end class ShowDatasinkResponse
106 
107 
108 
109 
110 } // end namespace kinetica
string name
Name of the data sink for which to retrieve information.
Definition: ShowDatasink.cs:27
IDictionary< string, string > info
Additional information.
IList< string > destination_types
The destination type of the data sinks named in &lt;member name=&quot;datasink_names&quot;&gt;.
Definition: ShowDatasink.cs:93
ShowDatasinkRequest()
Constructs a ShowDatasinkRequest object with default parameters.
Definition: ShowDatasink.cs:36
A set of parameters for Kinetica.showDatasink(string,IDictionary{string, string}).
Definition: ShowDatasink.cs:20
ShowDatasinkRequest(string name, IDictionary< string, string > options=null)
Constructs a ShowDatasinkRequest object with the specified parameters.
Definition: ShowDatasink.cs:48
Additional information about the respective data sinks in &lt;member name=&quot;datasink_names&quot;&gt;.
Definition: ShowDatasink.cs:72
IList< IDictionary< string, string > > additional_info
Additional information about the respective data sinks in &lt;member name=&quot;datasink_names&quot;&gt;.
A set of results returned by Kinetica.showDatasink(string,IDictionary{string, string}).
Definition: ShowDatasink.cs:62
const string DESTINATION
Destination for the output data in &#39;destination_type://path[:port]&#39; format
Definition: ShowDatasink.cs:77
const string USER_NAME
Name of the remote system user
Definition: ShowDatasink.cs:84
IList< string > datasink_names
The data sink names.
Definition: ShowDatasink.cs:89
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string KAFKA_TOPIC_NAME
Kafka topic if the data sink type is a Kafka broker
Definition: ShowDatasink.cs:81
IDictionary< string, string > options
Optional parameters.
Definition: ShowDatasink.cs:31