Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
19  {
22  public string name { get; set; }
23 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
31  public DropDatasourceRequest() { }
32 
40  public DropDatasourceRequest( string name,
41  IDictionary<string, string> options = null)
42  {
43  this.name = name ?? "";
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46  } // end class DropDatasourceRequest
47 
52  {
55  public string name { get; set; }
56 
58  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
59  } // end class DropDatasourceResponse
60 } // 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.
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.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14