Kinetica   C#   API  Version 7.2.3.1
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 
18 {
21  public string name { get; set; }
22 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
30  public DropDatasourceRequest() { }
31 
39  public DropDatasourceRequest( string name,
40  IDictionary<string, string> options = null)
41  {
42  this.name = name ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45 } // end class DropDatasourceRequest
46 
51 {
54  public string name { get; set; }
55 
57  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
58 } // end class DropDatasourceResponse
string name
Name of the data source to be dropped.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string name
Value of name.
DropDatasourceRequest()
Constructs a DropDatasourceRequest object with default parameters.
DropDatasourceRequest(string name, IDictionary< string, string > options=null)
Constructs a DropDatasourceRequest object with the specified parameters.
A set of results returned by Kinetica.dropDatasource.
A set of parameters for Kinetica.dropDatasource.