Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
17  public class ShowDatasinkRequest : KineticaData
18  {
24  public string name { get; set; }
25 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
33  public ShowDatasinkRequest() { }
34 
44  public ShowDatasinkRequest( string name,
45  IDictionary<string, string> options = null)
46  {
47  this.name = name ?? "";
48  this.options = options ?? new Dictionary<string, string>();
49  } // end constructor
50  } // end class ShowDatasinkRequest
51 
55  public class ShowDatasinkResponse : KineticaData
56  {
61  public struct AdditionalInfo
62  {
65  public const string DESTINATION = "destination";
66 
69  public const string KAFKA_TOPIC_NAME = "kafka_topic_name";
70 
72  public const string USER_NAME = "user_name";
73  } // end struct AdditionalInfo
74 
76  public IList<string> datasink_names { get; set; } = new List<string>();
77 
80  public IList<string> destination_types { get; set; } = new List<string>();
81 
104  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
105 
107  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
108  } // end class ShowDatasinkResponse
109 } // end namespace kinetica
IList< IDictionary< string, string > > additional_info
Additional information about the respective data sinks in datasink_names.
const string USER_NAME
Name of the remote system user
Definition: ShowDatasink.cs:72
ShowDatasinkRequest()
Constructs a ShowDatasinkRequest object with default parameters.
Definition: ShowDatasink.cs:33
ShowDatasinkRequest(string name, IDictionary< string, string > options=null)
Constructs a ShowDatasinkRequest object with the specified parameters.
Definition: ShowDatasink.cs:44
string name
Name of the data sink for which to retrieve information.
Definition: ShowDatasink.cs:24
const string KAFKA_TOPIC_NAME
Kafka topic if the data sink type is a Kafka broker
Definition: ShowDatasink.cs:69
IList< string > destination_types
The destination type of the data sinks named in datasink_names.
Definition: ShowDatasink.cs:80
IDictionary< string, string > options
Optional parameters.
Definition: ShowDatasink.cs:29
IDictionary< string, string > info
Additional information.
const string DESTINATION
Destination for the output data in 'destination_type://path[:port]' format
Definition: ShowDatasink.cs:65
IList< string > datasink_names
The data sink names.
Definition: ShowDatasink.cs:76