Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterTableColumns.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 
35  {
36 
41  public string table_name { get; set; }
42 
50  public IList<IDictionary<string, string>> column_alterations { get; set; } = new List<IDictionary<string, string>>();
51 
53  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
54 
55 
59 
79  IList<IDictionary<string, string>> column_alterations,
80  IDictionary<string, string> options)
81  {
82  this.table_name = table_name ?? "";
83  this.column_alterations = column_alterations ?? new List<IDictionary<string, string>>();
84  this.options = options ?? new Dictionary<string, string>();
85  } // end constructor
86 
87  } // end class AlterTableColumnsRequest
88 
89 
90 
95  {
96 
98  public string table_name { get; set; }
99 
102  public string type_id { get; set; }
103 
106  public string type_definition { get; set; }
107 
110  public IDictionary<string, IList<string>> properties { get; set; } = new Dictionary<string, IList<string>>();
111 
114  public string label { get; set; }
115 
123  public IList<IDictionary<string, string>> column_alterations { get; set; } = new List<IDictionary<string, string>>();
124 
126  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
127 
128  } // end class AlterTableColumnsResponse
129 
130 
131 
132 
133 } // end namespace kinetica
A set of parameters for Kinetica.alterTableColumns(string,IList{IDictionary{string, string}},IDictionary{string, string}).
IList< IDictionary< string, string > > column_alterations
List of alter table add/delete/change column requests - all for the same table.
string type_definition
return the type_definition (when changing a table, a new type may be created)
IDictionary< string, string > options
Optional parameters.
string type_id
return the type_id (when changing a table, a new type may be created)
AlterTableColumnsRequest()
Constructs an AlterTableColumnsRequest object with default parameters.
IDictionary< string, IList< string > > properties
return the type properties (when changing a table, a new type may be created)
AlterTableColumnsRequest(string table_name, IList< IDictionary< string, string >> column_alterations, IDictionary< string, string > options)
Constructs an AlterTableColumnsRequest object with the specified parameters.
A set of results returned by Kinetica.alterTableColumns(string,IList{IDictionary{string, string}},IDictionary{string, string}).
IList< IDictionary< string, string > > column_alterations
List of alter table add/delete/change column requests - all for the same table.
IDictionary< string, string > info
Additional information.
string table_name
Table on which the operation will be performed.
string label
return the type label (when changing a table, a new type may be created)
string table_name
Table on which the operation was performed.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14