7 using System.Collections.Generic;
22 public class DropDatasinkRequest : KineticaData
45 public const string TRUE =
"true";
46 public const string FALSE =
"false";
51 public string name {
get;
set; }
77 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
113 IDictionary<string, string>
options =
null)
115 this.name =
name ??
"";
123 public class DropDatasinkResponse : KineticaData
127 public string name {
get;
set; }
130 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IDictionary< string, string > options
Optional parameters.
string name
Name of the data sink to be dropped.
DropDatasinkRequest()
Constructs a DropDatasinkRequest object with default parameters.
const string CLEAR_TABLE_MONITORS
If TRUE, any table monitors that use this data sink will be cleared.
string name
Value of name.
DropDatasinkRequest(string name, IDictionary< string, string > options=null)
Constructs a DropDatasinkRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.