Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DropDatasource.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 
23  {
24 
27  public string name { get; set; }
28 
31  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
32 
33 
36  public DropDatasourceRequest() { }
37 
46  public DropDatasourceRequest( string name,
47  IDictionary<string, string> options = null)
48  {
49  this.name = name ?? "";
50  this.options = options ?? new Dictionary<string, string>();
51  } // end constructor
52 
53  } // end class DropDatasourceRequest
54 
55 
56 
61  {
62 
65  public string name { get; set; }
66 
68  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
69 
70  } // end class DropDatasourceResponse
71 
72 
73 
74 
75 } // end namespace kinetica
DropDatasourceRequest(string name, IDictionary< string, string > options=null)
Constructs a DropDatasourceRequest object with the specified parameters.
DropDatasourceRequest()
Constructs a DropDatasourceRequest object with default parameters.
A set of results returned by Kinetica.dropDatasource(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
string name
Name of the data source to be dropped.
IDictionary< string, string > options
Optional parameters.
A set of parameters for Kinetica.dropDatasource(string,IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14