7 using System.Collections.Generic;
17 public class ShowDatasinkRequest : KineticaData
24 public string name {
get;
set; }
29 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
45 IDictionary<string, string>
options =
null)
47 this.name =
name ??
"";
55 public class ShowDatasinkResponse : KineticaData
61 public struct AdditionalInfo
72 public const string USER_NAME =
"user_name";
76 public IList<string>
datasink_names {
get;
set; } =
new List<string>();
104 public IList<IDictionary<string, string>>
additional_info {
get;
set; } =
new List<IDictionary<string, string>>();
107 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
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
ShowDatasinkRequest()
Constructs a ShowDatasinkRequest object with default parameters.
ShowDatasinkRequest(string name, IDictionary< string, string > options=null)
Constructs a ShowDatasinkRequest object with the specified parameters.
string name
Name of the data sink for which to retrieve information.
const string KAFKA_TOPIC_NAME
Kafka topic if the data sink type is a Kafka broker
IList< string > destination_types
The destination type of the data sinks named in datasink_names.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
const string DESTINATION
Destination for the output data in 'destination_type://path[:port]' format
IList< string > datasink_names
The data sink names.